diff --git a/README.md b/README.md
index 6679589ec5..18c50d63ee 100644
--- a/README.md
+++ b/README.md
@@ -1,10308 +1,661 @@
-# intersight
-Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and
-3rd party IT infrastructure. This platform offers an intelligent level of management that enables
-IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior
-generations of tools. Cisco Intersight provides an integrated and intuitive management experience for
-resources in the traditional data center as well as at the edge. With flexible deployment options to address
-complex security needs, getting started with Intersight is quick and easy.
-Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment,
-configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote
-location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment.
-It also streamlines maintaining those systems whether you are working with small or very large configurations.
-The Intersight OpenAPI document defines the complete set of properties that are returned in the
-HTTP response. From that perspective, a client can expect that no additional properties are returned,
-unless these properties are explicitly defined in the OpenAPI document.
-However, when a client uses an older version of the Intersight OpenAPI document, the server may
-send additional properties because the software is more recent than the client. In that case, the client
-may receive properties that it does not know about.
-Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document.
-This document was created on 2021-08-16T17:23:52Z.
-
-This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
-
-- API version: 1.0.9-4437
-- Package version: 1.0.9.4437
-- Build package: org.openapitools.codegen.languages.PythonClientCodegen
-For more information, please visit [https://intersight.com/help](https://intersight.com/help)
-
-## Requirements.
-
-Python >= 3.6
-
-## Installation & Usage
-### pip install
-
-If the python package is hosted on a repository, you can install directly using:
-
-```sh
-pip install git+https://github.com/GIT_USER_ID/GIT_REPO_ID.git
+# Cisco Intersight
+
+Cisco Intersight is a cloud operations platform that delivers intelligent visualization, optimization, and orchestration for applications and infrastructure across your hybrid environment. With Intersight, you get all of the benefits of SaaS delivery and full lifecycle management of distributed Intersight-connected servers and third-party storage across data centers, remote sites, branch offices, and edge environments. This empowers you to analyze, update, fix, and automate your environment in ways that were not possible with prior generations’ tools. As a result, your organization can achieve significant TCO savings and deliver applications faster in support of new business initiatives.
+
+The Cisco Intersight API is a programmatic interface that uses the REST architecture to provide access to the Intersight Management Information Model. The Intersight Python SDK is generated based on the Cisco Intersight OpenAPI 3.x specification. The latest specification can be downloaded from [here](https://intersight.com/apidocs/downloads/). The Cisco Intersight Python SDK is updated frequently to be in sync with the OpenAPI version deployed at https://intersight.com
+
+
+
+
+# Getting Started
+
+1. [ Installation ](#installation)
+
+ 1.1. [ Requirements ](#requirements)
+
+ 1.2. [ Install ](#install)
+
+2. [ Authentication ](#authentication)
+3. [ Creating an Object ](#creating-an-object)
+4. [ Creating an Object from JSON ](#creating-an-object-from-json)
+5. [ Reading Objects ](#reading-an-object)
+
+ 5.1. [ Reading Objects Using a Filter ](#reading-an-object-using-a-filter)
+
+6. [ Updating Objects ](#updating-an-object)
+7. [ Deleting Objects ](#deleting-an-object)
+8. [ Examples](#examples)
+
+ 8.1. [ Example - Server Configuration ](#server-configuration)
+
+ 8.2. [ Example - Firmware Upgrade ](#firmware-upgrade)
+
+ 8.3. [ Example - OS Install ](#os-install)
+
+9. [ Targets ](#targets)
+
+ 9.1. [ Claiming a Target ](#claiming-a-target)
+
+ 9.2. [ Unclaiming a Target ](#unclaiming-a-target)
+
+ 9.3. [ Claiming an Appliance ](#claiming-an-appliance)
+
+10. [ Triggering a Workflow ](#triggering-a-workflow)
+11. [ Monitoring a Workflow ](#monitoring-a-workflow)
+12. [ Debugging ](#debugging)
+
+
+
+
+
+
+## 1. Installation
+
+
+### 1.1. Requirements
+
+- Python >= 3.6
+
+
+### 1.2. Install
+
+- The latest intersight package can be installed using one of the following,
+ `pip install intersight`
+
+ `pip install git+https://github.com/CiscoDevNet/intersight-python`
+
+ `python setup.py install --user`
+
+
+
+## 2. Authentication
+
+- Start with creating an API Client object by specifying an API Key and an API Secret file path.
+- This method also specifies which endpoint will the client connect to.
+- There is no explicit login when using API Client and Secret. Every message carries the information required for authentication.
+
+```python
+import intersight
+import re
+
+
+def get_api_client(api_key_id, api_secret_file, endpoint="https://intersight.com"):
+ with open(api_secret_file, 'r') as f:
+ api_key = f.read()
+
+ if re.search('BEGIN RSA PRIVATE KEY', api_key):
+ # API Key v2 format
+ signing_algorithm = intersight.signing.ALGORITHM_RSASSA_PKCS1v15
+ signing_scheme = intersight.signing.SCHEME_RSA_SHA256
+ hash_algorithm = intersight.signing.HASH_SHA256
+
+ elif re.search('BEGIN EC PRIVATE KEY', api_key):
+ # API Key v3 format
+ signing_algorithm = intersight.signing.ALGORITHM_ECDSA_MODE_DETERMINISTIC_RFC6979
+ signing_scheme = intersight.signing.SCHEME_HS2019
+ hash_algorithm = intersight.signing.HASH_SHA256
+
+ configuration = intersight.Configuration(
+ host=endpoint,
+ signing_info=intersight.signing.HttpSigningConfiguration(
+ key_id=api_key_id,
+ private_key_path=api_secret_file,
+ signing_scheme=signing_scheme,
+ signing_algorithm=signing_algorithm,
+ hash_algorithm=hash_algorithm,
+ signed_headers=[
+ intersight.signing.HEADER_REQUEST_TARGET,
+ intersight.signing.HEADER_HOST,
+ intersight.signing.HEADER_DATE,
+ intersight.signing.HEADER_DIGEST,
+ ]
+ )
+ )
+
+ return intersight.ApiClient(configuration)
+```
+
+Once an API Client is created, it can be used to communicate with the Intersight server.
+```python
+
+from intersight.api import boot_api
+from intersight.model.boot_precision_policy import BootPrecisionPolicy
+
+
+api_client = get_api_client("api_key", "~/api_secret_file_path")
+
+# Create an api instance of the correct API type
+api_instance = boot_api.BootApi(api_client)
+
+# Create an object locally and populate the object properties
+boot_precision_policy = BootPrecisionPolicy()
+
+
+# Create an object in Intersight
+api_response = api_instance.create_boot_precision_policy(boot_precision_policy)
+```
+
+## 3. Creating an Object
+
+This step helps user to create an object with the help of python intersight SDK.
+In the below example we are going to create a boot precision policy.
+First the instance of Model: BootPrecisionPolicy is created and then all the attributes
+required to create the policy is set using the model object.
+
+```python
+from intersight.api import boot_api
+from intersight.model.boot_precision_policy import BootPrecisionPolicy
+from intersight.model.boot_device_base import BootDeviceBase
+from intersight.model.organization_organization_relationship import OrganizationOrganizationRelationship
+from pprint import pprint
+import intersight
+
+api_key = "api_key"
+api_key_file = "~/api_key_file_path"
+
+api_client = get_api_client(api_key, api_key_file)
+
+
+def create_boot_local_cdd():
+ # Creating an instance of boot_local_cdd
+ boot_local_cdd = BootDeviceBase(class_id="boot.LocalCdd",
+ object_type="boot.LocalCdd",
+ name="local_cdd1",
+ enabled=True)
+ return boot_local_cdd
+
+
+def create_boot_local_disk():
+ # Creating an instance of boot_local_disk
+ boot_local_disk = BootDeviceBase(class_id="boot.LocalDisk",
+ object_type="boot.LocalDisk",
+ name="local_disk1",
+ enabled=True)
+ return boot_local_disk
+
+
+def create_organization():
+ # Creating an instance of organization
+ organization = OrganizationOrganizationRelationship(class_id="mo.MoRef",
+ object_type="organization.Organization")
+
+ return organization
+
+
+# Create an instance of the API class.
+api_instance = boot_api.BootApi(api_client)
+
+# Create an instance of local_cdd, local_disk, organization and list of boot_devices.
+boot_local_cdd = create_boot_local_cdd()
+boot_local_disk = create_boot_local_disk()
+organization = create_organization()
+boot_devices = [
+ boot_local_disk,
+ boot_local_cdd,
+]
+
+# BootPrecisionPolicy | The 'boot.PrecisionPolicy' resource to create.
+boot_precision_policy = BootPrecisionPolicy()
+
+# Setting all the attributes for boot_precison_policy instance.
+boot_precision_policy.name = "sample_boot_policy1"
+boot_precision_policy.description = "sample boot precision policy"
+boot_precision_policy.boot_devices = boot_devices
+boot_precision_policy.organization = organization
+
+# example passing only required values which don't have defaults set
+try:
+ # Create a 'boot.PrecisionPolicy' resource.
+ api_response = api_instance.create_boot_precision_policy(boot_precision_policy)
+ pprint(api_response)
+except intersight.ApiException as e:
+ print("Exception when calling BootApi->create_boot_precision_policy: %s\n" % e)
+```
+
+
+## 4. Creating an Object from JSON
+
+This step helps user to create an object with the help of python intersight SDK.
+In the below example we are going to create a boot precision policy.
+The program will parse the input json file to fetch the json payload and use this data.
+The instance of Model: BootPrecisionPolicy is created using parsed json data is as a keyword arguement.
+
+Start with creating a json file contain the data which will be used to create boot precision policy.
+Create a file data.json with the following content:
+
+`data.json:`
+```json
+{
+ "Name":"sample_boot_policy1",
+ "ObjectType":"boot.PrecisionPolicy",
+ "ClassId":"boot.PrecisionPolicy",
+ "Description":"Create boot precision policy.",
+ "BootDevices":[
+ {
+ "ClassId":"boot.LocalCdd",
+ "ObjectType":"boot.LocalCdd",
+ "Enabled":true,
+ "Name":"local_cdd"
+ },
+ {
+ "ClassId":"boot.LocalDisk",
+ "ObjectType":"boot.LocalDisk",
+ "Enabled":true,
+ "Name":"local_disk"
+ }
+ ],
+ "Organization":{
+ "ObjectType":"organization.Organization",
+ "ClassId":"mo.MoRef"
+ }
+}
+```
+
+```python
+import json
+from intersight.api import boot_api
+from intersight.model.boot_precision_policy import BootPrecisionPolicy
+from intersight.model.boot_device_base import BootDeviceBase
+from intersight.model.organization_organization_relationship import OrganizationOrganizationRelationship
+from pprint import pprint
+import intersight
+
+api_key = "api_key"
+api_key_file = "~/api_key_file_path"
+
+api_client = get_api_client(api_key, api_key_file)
+
+
+# Create an instance of the API class.
+api_instance = boot_api.BootApi(api_client)
+
+data_json_file_path = "data.json"
+with open(data_json_file_path, "r") as json_data_file:
+ json_data = json_data_file.read()
+
+# Loading the json objects into python dictionary.
+data = json.loads(json_data)
+
+# BootPrecisionPolicy | The 'boot.PrecisionPolicy' resource to create.
+boot_precision_policy = BootPrecisionPolicy(**data, _spec_property_naming=True,
+ _configuration=api_client.configuration)
+
+# example passing only required values which don't have defaults set
+try:
+ # Create a 'boot.PrecisionPolicy' resource.
+ api_response = api_instance.create_boot_precision_policy(boot_precision_policy)
+ pprint(api_response)
+except intersight.ApiException as e:
+ print("Exception when calling BootApi->create_boot_precision_policy: %s\n" % e)
```
-(you may need to run `pip` with root permission: `sudo pip install git+https://github.com/GIT_USER_ID/GIT_REPO_ID.git`)
-Then import the package:
+
+## 5. Reading Objects
+
+This step helps user to read an object with the help of python intersight SDK.
+In the below example we are going to read all the results for boot precision policy.
+
```python
+from intersight.api import boot_api
+from pprint import pprint
import intersight
+
+api_key = "api_key"
+api_key_file = "~/api_key_file_path"
+
+api_client = get_api_client(api_key, api_key_file)
+
+
+# Create an instance of the API class
+api_instance = boot_api.BootApi(api_client)
+
+# example passing only required values which don't have defaults set
+# and optional values
+try:
+ # Read a 'boot.PrecisionPolicy' resource.
+ api_response = api_instance.get_boot_precision_policy_list()
+ pprint(api_response)
+except intersight.ApiException as e:
+ print("Exception when calling BootApi->get_boot_precision_policy_list: %s\n" % e)
```
-### Setuptools
+
+### 5.1. Reading Objects Using a Filter
+
+Intersight supports oData query format to return a filtered list of objects.
+An example is shown below. Here we filter devices that are in connected state.
+
+```python
+from intersight.api import asset_api
+
+api_key = "api_key"
+api_key_file = "~/api_key_file_path"
-Install via [Setuptools](http://pypi.python.org/pypi/setuptools).
+api_client = get_api_client(api_key, api_key_file)
+asset_api = asset_api.AssetApi(api_client)
+
+kwargs = dict(filter="ConnectionStatus eq 'Connected'")
-```sh
-python setup.py install --user
+# Get all device registration objects that are in connected state
+api_result= api.get_asset_device_registration_list(**kwargs)
+for device in api_result.results:
+ print(device.device_ip_address[0])
```
-(or `sudo python setup.py install` to install the package for all users)
-Then import the package:
+
+## 6. Updating Objects
+
+This step helps user to update an object with the help of python intersight SDK.
+In the below example we are going to update a boot precision policy.
+First the instance of Model: BootPrecisionPolicy is created and then all the attributes
+required to update the policy is set using the model object.
+
+The read object operation is performed to fetch:
+- Moid associated to boot precision policy.
+- Moid associated to organization to update the appropriate fields.
+
+In our example the first result of the response is updated i.e. first entry among all the entries for boot precision policy is updated.
+
```python
+from intersight.api import boot_api
+from intersight.model.boot_precision_policy import BootPrecisionPolicy
+from intersight.model.boot_device_base import BootDeviceBase
+from intersight.model.organization_organization_relationship import OrganizationOrganizationRelationship
+from pprint import pprint
import intersight
+
+api_key = "api_key"
+api_key_file = "~/api_key_file_path"
+
+api_client = get_api_client(api_key, api_key_file)
+
+
+def create_boot_sdcard():
+ # Creating an instance of boot_hdd_device
+ boot_sdcard = BootDeviceBase(class_id="boot.SdCard",
+ object_type="boot.SdCard",
+ name="sdcard1",
+ enabled=True)
+ return boot_sdcard
+
+
+def create_boot_iscsi():
+ # Creating an instance of boot_iscsi
+ boot_iscsi = BootDeviceBase(class_id="boot.Iscsi",
+ object_type="boot.Iscsi",
+ name="iscsi1",
+ enabled=True)
+ return boot_iscsi
+
+
+def create_boot_pxe():
+ # Creating an instance of boot_pxe
+ boot_pxe = BootDeviceBase(class_id="boot.Pxe",
+ object_type="boot.Pxe",
+ name="pxe1",
+ enabled=True,
+ interface_name="pxe1")
+ return boot_pxe
+
+
+def get_boot_precision_policy(api_client):
+ # Enter a context with an instance of the API client
+ with api_client:
+ # Create an instance of the API class
+ api_instance = boot_api.BootApi(api_client)
+
+ # example passing only required values which don't have defaults set
+ # and optional values
+ try:
+ # Read a 'boot.PrecisionPolicy' resource.
+ api_response = api_instance.get_boot_precision_policy_list()
+ except intersight.ApiException as e:
+ print("Exception when calling BootApi->get_boot_precision_policy_list: %s\n" % e)
+ return api_response
+
+
+def create_organization(moid):
+ # Creating an instance of organization
+ organization = OrganizationOrganizationRelationship(class_id="mo.MoRef",
+ object_type="organization.Organization",
+ moid=moid)
+
+ return organization
+
+
+# Create an instance of the API class.
+api_instance = boot_api.BootApi(api_client)
+
+# Getting the response for existing object.
+response = get_boot_precision_policy(api_client)
+
+# Handling error scenario if get_boot_precision_policy does not return any entry.
+if not response.results:
+ raise NotFoundException(reason="The response does not contain any entry for boot precision policy. "
+ "Please create a boot precision policy and then update it.")
+
+# Fetch the organization Moid and boot precision policy moid from the Result's first entry.
+organization_moid = response.results[0].organization['moid']
+moid = response.results[0].moid
+
+# Create an instance of hdd_device, iscsi, pxe, organization and list of boot_devices.
+boot_hdd_device = create_boot_sdcard()
+boot_iscsi = create_boot_iscsi()
+boot_pxe = create_boot_pxe()
+organization = create_organization(organization_moid)
+boot_devices = [
+ boot_hdd_device,
+ boot_iscsi,
+ boot_pxe,
+]
+
+# BootPrecisionPolicy | The 'boot.PrecisionPolicy' resource to create.
+boot_precision_policy = BootPrecisionPolicy()
+
+# Setting all the attributes for boot_precison_policy instance.
+boot_precision_policy.name = "updated_boot_policy1"
+boot_precision_policy.description = "Updated boot precision policy"
+boot_precision_policy.boot_devices = boot_devices
+boot_precision_policy.organization = organization
+
+# example passing only required values which don't have defaults set
+try:
+ # Update a 'boot.PrecisionPolicy' resource.
+ api_response = api_instance.update_boot_precision_policy(
+ boot_precision_policy=boot_precision_policy,
+ moid=moid)
+ pprint(api_response)
+except intersight.ApiException as e:
+ print("Exception when calling BootApi->update_boot_precision_policy: %s\n" % e)
```
-## Getting Started
+
+## 7. Deleting Objects
-Please follow the [installation procedure](#installation--usage) and then run the following:
+This step helps user to delete an object with the help of python intersight SDK.
+In the below example we are going to delete a boot precision policy.
+The read object operation is performed to fetch:
+- Moid associated to boot precision policy.
+
+In our example the first result of the response is deleted i.e. first entry among all the entries for boot precision policy is deleted.
```python
-import datetime
-import time
+from intersight.api import boot_api
+from intersight.exceptions import NotFoundException
+from pprint import pprint
import intersight
+
+api_key = "api_key"
+api_key_file = "~/api_key_file_path"
+
+api_client = get_api_client(api_key, api_key_file)
+
+
+def get_boot_precision_policy(api_client):
+ # Enter a context with an instance of the API client
+ with api_client:
+ # Create an instance of the API class
+ api_instance = boot_api.BootApi(api_client)
+
+ # example passing only required values which don't have defaults set
+ # and optional values
+ try:
+ # Read a 'boot.PrecisionPolicy' resource.
+ api_response = api_instance.get_boot_precision_policy_list()
+ except intersight.ApiException as e:
+ print("Exception when calling BootApi->get_boot_precision_policy_list: %s\n" % e)
+ return api_response
+
+
+# Create an instance of the API class
+api_instance = boot_api.BootApi(api_client)
+
+# Getting the response for existing object.
+response = get_boot_precision_policy(api_client)
+
+# Handling error scenario if get_boot_precision_policy does not return any entry.
+if not response.results:
+ raise NotFoundException(reason="The response does not contain any entry for boot precision policy. "
+ "Please create a boot precision policy and then delete it.")
+
+# Fetching the moid from the Result's first entry.
+moid = response.results[0].moid
+
+# example passing only required values which don't have defaults set
+try:
+ # Delete a 'boot.PrecisionPolicy' resource.
+ api_instance.delete_boot_precision_policy(moid)
+ print(f"Deletion for moid: %s was successful" % moid)
+except intersight.ApiException as e:
+ print("Exception when calling BootApi->delete_boot_precision_policy: %s\n" % e)
+```
+
+
+## 8. Examples
+
+
+### 8.1. Example: Server Configuration
+Please refer [Server Configuration](https://github.com/cisco-intersight/intersight_python_examples/blob/main/examples/server_configuration/server_configuration.py)
+
+
+### 8.2. Example: Firmware Upgrade
+Please refer [Direct Firmware Upgrade](https://github.com/cisco-intersight/intersight_python_examples/blob/main/examples/firmware_upgrade/firmware_upgrade_direct.py)
+
+Please refer [Network Firmware Upgrade](https://github.com/cisco-intersight/intersight_python_examples/blob/main/examples/firmware_upgrade/firmware_upgrade_network.py)
+
+
+
+### 8.3. Example: OS Install
+Please refer [OS Install](https://github.com/cisco-intersight/intersight_python_examples/blob/main/examples/os_install/os_install.py)
+
+
+
+## 9. Targets
+
+
+### 9.1. Claiming a Target
+
+```python
+from intersight.api import asset_api
+from intersight.model.asset_target import AssetTarget
from pprint import pprint
-from intersight.api import aaa_api
-from intersight.model.aaa_audit_record import AaaAuditRecord
-from intersight.model.aaa_audit_record_response import AaaAuditRecordResponse
-from intersight.model.error import Error
-# Defining the host is optional and defaults to https://intersight.com
-# See configuration.py for a list of all supported configuration parameters.
-configuration = intersight.Configuration(
- host = "https://intersight.com"
-)
-
-# The client must configure the authentication and authorization parameters
-# in accordance with the API server security policy.
-# Examples for each auth method are provided below, use the example that
-# satisfies your auth use case.
-
-# Configure API key authorization: cookieAuth
-configuration.api_key['cookieAuth'] = 'YOUR_API_KEY'
-
-# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
-# configuration.api_key_prefix['cookieAuth'] = 'Bearer'
-
-# Configure HTTP message signature: http_signature
-# The HTTP Signature Header mechanism that can be used by a client to
-# authenticate the sender of a message and ensure that particular headers
-# have not been modified in transit.
-#
-# You can specify the signing key-id, private key path, signing scheme,
-# signing algorithm, list of signed headers and signature max validity.
-# The 'key_id' parameter is an opaque string that the API server can use
-# to lookup the client and validate the signature.
-# The 'private_key_path' parameter should be the path to a file that
-# contains a DER or base-64 encoded private key.
-# The 'private_key_passphrase' parameter is optional. Set the passphrase
-# if the private key is encrypted.
-# The 'signed_headers' parameter is used to specify the list of
-# HTTP headers included when generating the signature for the message.
-# You can specify HTTP headers that you want to protect with a cryptographic
-# signature. Note that proxies may add, modify or remove HTTP headers
-# for legitimate reasons, so you should only add headers that you know
-# will not be modified. For example, if you want to protect the HTTP request
-# body, you can specify the Digest header. In that case, the client calculates
-# the digest of the HTTP request body and includes the digest in the message
-# signature.
-# The 'signature_max_validity' parameter is optional. It is configured as a
-# duration to express when the signature ceases to be valid. The client calculates
-# the expiration date every time it generates the cryptographic signature
-# of an HTTP request. The API server may have its own security policy
-# that controls the maximum validity of the signature. The client max validity
-# must be lower than the server max validity.
-# The time on the client and server must be synchronized, otherwise the
-# server may reject the client signature.
-#
-# The client must use a combination of private key, signing scheme,
-# signing algorithm and hash algorithm that matches the security policy of
-# the API server.
-#
-# See intersight.signing for a list of all supported parameters.
-configuration = intersight.Configuration(
- host = "https://intersight.com",
- signing_info = intersight.signing.HttpSigningConfiguration(
- key_id = 'my-key-id',
- private_key_path = 'private_key.pem',
- private_key_passphrase = 'YOUR_PASSPHRASE',
- signing_scheme = intersight.signing.SCHEME_HS2019,
- signing_algorithm = intersight.signing.ALGORITHM_ECDSA_MODE_FIPS_186_3,
- hash_algorithm = intersight.signing.SCHEME_RSA_SHA256,
- signed_headers = [
- intersight.signing.HEADER_REQUEST_TARGET,
- intersight.signing.HEADER_CREATED,
- intersight.signing.HEADER_EXPIRES,
- intersight.signing.HEADER_HOST,
- intersight.signing.HEADER_DATE,
- intersight.signing.HEADER_DIGEST,
- 'Content-Type',
- 'Content-Length',
- 'User-Agent'
- ],
- signature_max_validity = datetime.timedelta(minutes=5)
- )
-)
-
-# Configure OAuth2 access token for authorization: oAuth2
-configuration = intersight.Configuration(
- host = "https://intersight.com"
-)
-configuration.access_token = 'YOUR_ACCESS_TOKEN'
-
-# Configure OAuth2 access token for authorization: oAuth2
-configuration = intersight.Configuration(
- host = "https://intersight.com"
-)
-configuration.access_token = 'YOUR_ACCESS_TOKEN'
-
-
-# Enter a context with an instance of the API client
-with intersight.ApiClient(configuration) as api_client:
- # Create an instance of the API class
- api_instance = aaa_api.AaaApi(api_client)
- moid = "Moid_example" # str | The unique Moid identifier of a resource instance.
-
- try:
- # Read a 'aaa.AuditRecord' resource.
- api_response = api_instance.get_aaa_audit_record_by_moid(moid)
- pprint(api_response)
- except intersight.ApiException as e:
- print("Exception when calling AaaApi->get_aaa_audit_record_by_moid: %s\n" % e)
+import intersight
+
+api_key = "api_key"
+api_key_file = "~/api_key_file_path"
+
+api_client = get_api_client(api_key, api_key_file)
+
+api_instance = asset_api.AssetApi(api_client)
+
+# AssetTarget | The 'asset.Target' resource to create.
+asset_target = AssetTarget()
+
+# setting claim_code and device_id
+asset_target.security_token = "2Nxxx-int"
+asset_target.serial_number = "WZPxxxxxFMx"
+
+
+# Post the above payload to claim a target
+try:
+ # Create a 'asset.Target' resource.
+ claim_resp = api_instance.create_asset_device_claim(asset_target)
+ pprint(claim_resp)
+except intersight.ApiException as e:
+ print("Exception when calling AssetApi->create_asset_device_claim: %s\n" % e)
```
-## Documentation for API Endpoints
-
-All URIs are relative to *https://intersight.com*
-
-Class | Method | HTTP request | Description
------------- | ------------- | ------------- | -------------
-*AaaApi* | [**get_aaa_audit_record_by_moid**](docs/AaaApi.md#get_aaa_audit_record_by_moid) | **GET** /api/v1/aaa/AuditRecords/{Moid} | Read a 'aaa.AuditRecord' resource.
-*AaaApi* | [**get_aaa_audit_record_list**](docs/AaaApi.md#get_aaa_audit_record_list) | **GET** /api/v1/aaa/AuditRecords | Read a 'aaa.AuditRecord' resource.
-*AccessApi* | [**create_access_policy**](docs/AccessApi.md#create_access_policy) | **POST** /api/v1/access/Policies | Create a 'access.Policy' resource.
-*AccessApi* | [**delete_access_policy**](docs/AccessApi.md#delete_access_policy) | **DELETE** /api/v1/access/Policies/{Moid} | Delete a 'access.Policy' resource.
-*AccessApi* | [**get_access_policy_by_moid**](docs/AccessApi.md#get_access_policy_by_moid) | **GET** /api/v1/access/Policies/{Moid} | Read a 'access.Policy' resource.
-*AccessApi* | [**get_access_policy_list**](docs/AccessApi.md#get_access_policy_list) | **GET** /api/v1/access/Policies | Read a 'access.Policy' resource.
-*AccessApi* | [**patch_access_policy**](docs/AccessApi.md#patch_access_policy) | **PATCH** /api/v1/access/Policies/{Moid} | Update a 'access.Policy' resource.
-*AccessApi* | [**update_access_policy**](docs/AccessApi.md#update_access_policy) | **POST** /api/v1/access/Policies/{Moid} | Update a 'access.Policy' resource.
-*AdapterApi* | [**create_adapter_config_policy**](docs/AdapterApi.md#create_adapter_config_policy) | **POST** /api/v1/adapter/ConfigPolicies | Create a 'adapter.ConfigPolicy' resource.
-*AdapterApi* | [**delete_adapter_config_policy**](docs/AdapterApi.md#delete_adapter_config_policy) | **DELETE** /api/v1/adapter/ConfigPolicies/{Moid} | Delete a 'adapter.ConfigPolicy' resource.
-*AdapterApi* | [**get_adapter_config_policy_by_moid**](docs/AdapterApi.md#get_adapter_config_policy_by_moid) | **GET** /api/v1/adapter/ConfigPolicies/{Moid} | Read a 'adapter.ConfigPolicy' resource.
-*AdapterApi* | [**get_adapter_config_policy_list**](docs/AdapterApi.md#get_adapter_config_policy_list) | **GET** /api/v1/adapter/ConfigPolicies | Read a 'adapter.ConfigPolicy' resource.
-*AdapterApi* | [**get_adapter_ext_eth_interface_by_moid**](docs/AdapterApi.md#get_adapter_ext_eth_interface_by_moid) | **GET** /api/v1/adapter/ExtEthInterfaces/{Moid} | Read a 'adapter.ExtEthInterface' resource.
-*AdapterApi* | [**get_adapter_ext_eth_interface_list**](docs/AdapterApi.md#get_adapter_ext_eth_interface_list) | **GET** /api/v1/adapter/ExtEthInterfaces | Read a 'adapter.ExtEthInterface' resource.
-*AdapterApi* | [**get_adapter_host_eth_interface_by_moid**](docs/AdapterApi.md#get_adapter_host_eth_interface_by_moid) | **GET** /api/v1/adapter/HostEthInterfaces/{Moid} | Read a 'adapter.HostEthInterface' resource.
-*AdapterApi* | [**get_adapter_host_eth_interface_list**](docs/AdapterApi.md#get_adapter_host_eth_interface_list) | **GET** /api/v1/adapter/HostEthInterfaces | Read a 'adapter.HostEthInterface' resource.
-*AdapterApi* | [**get_adapter_host_fc_interface_by_moid**](docs/AdapterApi.md#get_adapter_host_fc_interface_by_moid) | **GET** /api/v1/adapter/HostFcInterfaces/{Moid} | Read a 'adapter.HostFcInterface' resource.
-*AdapterApi* | [**get_adapter_host_fc_interface_list**](docs/AdapterApi.md#get_adapter_host_fc_interface_list) | **GET** /api/v1/adapter/HostFcInterfaces | Read a 'adapter.HostFcInterface' resource.
-*AdapterApi* | [**get_adapter_host_iscsi_interface_by_moid**](docs/AdapterApi.md#get_adapter_host_iscsi_interface_by_moid) | **GET** /api/v1/adapter/HostIscsiInterfaces/{Moid} | Read a 'adapter.HostIscsiInterface' resource.
-*AdapterApi* | [**get_adapter_host_iscsi_interface_list**](docs/AdapterApi.md#get_adapter_host_iscsi_interface_list) | **GET** /api/v1/adapter/HostIscsiInterfaces | Read a 'adapter.HostIscsiInterface' resource.
-*AdapterApi* | [**get_adapter_unit_by_moid**](docs/AdapterApi.md#get_adapter_unit_by_moid) | **GET** /api/v1/adapter/Units/{Moid} | Read a 'adapter.Unit' resource.
-*AdapterApi* | [**get_adapter_unit_expander_by_moid**](docs/AdapterApi.md#get_adapter_unit_expander_by_moid) | **GET** /api/v1/adapter/UnitExpanders/{Moid} | Read a 'adapter.UnitExpander' resource.
-*AdapterApi* | [**get_adapter_unit_expander_list**](docs/AdapterApi.md#get_adapter_unit_expander_list) | **GET** /api/v1/adapter/UnitExpanders | Read a 'adapter.UnitExpander' resource.
-*AdapterApi* | [**get_adapter_unit_list**](docs/AdapterApi.md#get_adapter_unit_list) | **GET** /api/v1/adapter/Units | Read a 'adapter.Unit' resource.
-*AdapterApi* | [**patch_adapter_config_policy**](docs/AdapterApi.md#patch_adapter_config_policy) | **PATCH** /api/v1/adapter/ConfigPolicies/{Moid} | Update a 'adapter.ConfigPolicy' resource.
-*AdapterApi* | [**update_adapter_config_policy**](docs/AdapterApi.md#update_adapter_config_policy) | **POST** /api/v1/adapter/ConfigPolicies/{Moid} | Update a 'adapter.ConfigPolicy' resource.
-*ApplianceApi* | [**create_appliance_auto_rma_policy**](docs/ApplianceApi.md#create_appliance_auto_rma_policy) | **POST** /api/v1/appliance/AutoRmaPolicies | Create a 'appliance.AutoRmaPolicy' resource.
-*ApplianceApi* | [**create_appliance_backup**](docs/ApplianceApi.md#create_appliance_backup) | **POST** /api/v1/appliance/Backups | Create a 'appliance.Backup' resource.
-*ApplianceApi* | [**create_appliance_backup_policy**](docs/ApplianceApi.md#create_appliance_backup_policy) | **POST** /api/v1/appliance/BackupPolicies | Create a 'appliance.BackupPolicy' resource.
-*ApplianceApi* | [**create_appliance_data_export_policy**](docs/ApplianceApi.md#create_appliance_data_export_policy) | **POST** /api/v1/appliance/DataExportPolicies | Create a 'appliance.DataExportPolicy' resource.
-*ApplianceApi* | [**create_appliance_device_claim**](docs/ApplianceApi.md#create_appliance_device_claim) | **POST** /api/v1/appliance/DeviceClaims | Create a 'appliance.DeviceClaim' resource.
-*ApplianceApi* | [**create_appliance_diag_setting**](docs/ApplianceApi.md#create_appliance_diag_setting) | **POST** /api/v1/appliance/DiagSettings | Create a 'appliance.DiagSetting' resource.
-*ApplianceApi* | [**create_appliance_remote_file_import**](docs/ApplianceApi.md#create_appliance_remote_file_import) | **POST** /api/v1/appliance/RemoteFileImports | Create a 'appliance.RemoteFileImport' resource.
-*ApplianceApi* | [**create_appliance_restore**](docs/ApplianceApi.md#create_appliance_restore) | **POST** /api/v1/appliance/Restores | Create a 'appliance.Restore' resource.
-*ApplianceApi* | [**delete_appliance_backup**](docs/ApplianceApi.md#delete_appliance_backup) | **DELETE** /api/v1/appliance/Backups/{Moid} | Delete a 'appliance.Backup' resource.
-*ApplianceApi* | [**delete_appliance_restore**](docs/ApplianceApi.md#delete_appliance_restore) | **DELETE** /api/v1/appliance/Restores/{Moid} | Delete a 'appliance.Restore' resource.
-*ApplianceApi* | [**get_appliance_app_status_by_moid**](docs/ApplianceApi.md#get_appliance_app_status_by_moid) | **GET** /api/v1/appliance/AppStatuses/{Moid} | Read a 'appliance.AppStatus' resource.
-*ApplianceApi* | [**get_appliance_app_status_list**](docs/ApplianceApi.md#get_appliance_app_status_list) | **GET** /api/v1/appliance/AppStatuses | Read a 'appliance.AppStatus' resource.
-*ApplianceApi* | [**get_appliance_auto_rma_policy_by_moid**](docs/ApplianceApi.md#get_appliance_auto_rma_policy_by_moid) | **GET** /api/v1/appliance/AutoRmaPolicies/{Moid} | Read a 'appliance.AutoRmaPolicy' resource.
-*ApplianceApi* | [**get_appliance_auto_rma_policy_list**](docs/ApplianceApi.md#get_appliance_auto_rma_policy_list) | **GET** /api/v1/appliance/AutoRmaPolicies | Read a 'appliance.AutoRmaPolicy' resource.
-*ApplianceApi* | [**get_appliance_backup_by_moid**](docs/ApplianceApi.md#get_appliance_backup_by_moid) | **GET** /api/v1/appliance/Backups/{Moid} | Read a 'appliance.Backup' resource.
-*ApplianceApi* | [**get_appliance_backup_list**](docs/ApplianceApi.md#get_appliance_backup_list) | **GET** /api/v1/appliance/Backups | Read a 'appliance.Backup' resource.
-*ApplianceApi* | [**get_appliance_backup_policy_by_moid**](docs/ApplianceApi.md#get_appliance_backup_policy_by_moid) | **GET** /api/v1/appliance/BackupPolicies/{Moid} | Read a 'appliance.BackupPolicy' resource.
-*ApplianceApi* | [**get_appliance_backup_policy_list**](docs/ApplianceApi.md#get_appliance_backup_policy_list) | **GET** /api/v1/appliance/BackupPolicies | Read a 'appliance.BackupPolicy' resource.
-*ApplianceApi* | [**get_appliance_certificate_setting_by_moid**](docs/ApplianceApi.md#get_appliance_certificate_setting_by_moid) | **GET** /api/v1/appliance/CertificateSettings/{Moid} | Read a 'appliance.CertificateSetting' resource.
-*ApplianceApi* | [**get_appliance_certificate_setting_list**](docs/ApplianceApi.md#get_appliance_certificate_setting_list) | **GET** /api/v1/appliance/CertificateSettings | Read a 'appliance.CertificateSetting' resource.
-*ApplianceApi* | [**get_appliance_data_export_policy_by_moid**](docs/ApplianceApi.md#get_appliance_data_export_policy_by_moid) | **GET** /api/v1/appliance/DataExportPolicies/{Moid} | Read a 'appliance.DataExportPolicy' resource.
-*ApplianceApi* | [**get_appliance_data_export_policy_list**](docs/ApplianceApi.md#get_appliance_data_export_policy_list) | **GET** /api/v1/appliance/DataExportPolicies | Read a 'appliance.DataExportPolicy' resource.
-*ApplianceApi* | [**get_appliance_device_certificate_by_moid**](docs/ApplianceApi.md#get_appliance_device_certificate_by_moid) | **GET** /api/v1/appliance/DeviceCertificates/{Moid} | Read a 'appliance.DeviceCertificate' resource.
-*ApplianceApi* | [**get_appliance_device_certificate_list**](docs/ApplianceApi.md#get_appliance_device_certificate_list) | **GET** /api/v1/appliance/DeviceCertificates | Read a 'appliance.DeviceCertificate' resource.
-*ApplianceApi* | [**get_appliance_device_claim_by_moid**](docs/ApplianceApi.md#get_appliance_device_claim_by_moid) | **GET** /api/v1/appliance/DeviceClaims/{Moid} | Read a 'appliance.DeviceClaim' resource.
-*ApplianceApi* | [**get_appliance_device_claim_list**](docs/ApplianceApi.md#get_appliance_device_claim_list) | **GET** /api/v1/appliance/DeviceClaims | Read a 'appliance.DeviceClaim' resource.
-*ApplianceApi* | [**get_appliance_diag_setting_by_moid**](docs/ApplianceApi.md#get_appliance_diag_setting_by_moid) | **GET** /api/v1/appliance/DiagSettings/{Moid} | Read a 'appliance.DiagSetting' resource.
-*ApplianceApi* | [**get_appliance_diag_setting_list**](docs/ApplianceApi.md#get_appliance_diag_setting_list) | **GET** /api/v1/appliance/DiagSettings | Read a 'appliance.DiagSetting' resource.
-*ApplianceApi* | [**get_appliance_external_syslog_setting_by_moid**](docs/ApplianceApi.md#get_appliance_external_syslog_setting_by_moid) | **GET** /api/v1/appliance/ExternalSyslogSettings/{Moid} | Read a 'appliance.ExternalSyslogSetting' resource.
-*ApplianceApi* | [**get_appliance_external_syslog_setting_list**](docs/ApplianceApi.md#get_appliance_external_syslog_setting_list) | **GET** /api/v1/appliance/ExternalSyslogSettings | Read a 'appliance.ExternalSyslogSetting' resource.
-*ApplianceApi* | [**get_appliance_file_system_status_by_moid**](docs/ApplianceApi.md#get_appliance_file_system_status_by_moid) | **GET** /api/v1/appliance/FileSystemStatuses/{Moid} | Read a 'appliance.FileSystemStatus' resource.
-*ApplianceApi* | [**get_appliance_file_system_status_list**](docs/ApplianceApi.md#get_appliance_file_system_status_list) | **GET** /api/v1/appliance/FileSystemStatuses | Read a 'appliance.FileSystemStatus' resource.
-*ApplianceApi* | [**get_appliance_group_status_by_moid**](docs/ApplianceApi.md#get_appliance_group_status_by_moid) | **GET** /api/v1/appliance/GroupStatuses/{Moid} | Read a 'appliance.GroupStatus' resource.
-*ApplianceApi* | [**get_appliance_group_status_list**](docs/ApplianceApi.md#get_appliance_group_status_list) | **GET** /api/v1/appliance/GroupStatuses | Read a 'appliance.GroupStatus' resource.
-*ApplianceApi* | [**get_appliance_image_bundle_by_moid**](docs/ApplianceApi.md#get_appliance_image_bundle_by_moid) | **GET** /api/v1/appliance/ImageBundles/{Moid} | Read a 'appliance.ImageBundle' resource.
-*ApplianceApi* | [**get_appliance_image_bundle_list**](docs/ApplianceApi.md#get_appliance_image_bundle_list) | **GET** /api/v1/appliance/ImageBundles | Read a 'appliance.ImageBundle' resource.
-*ApplianceApi* | [**get_appliance_node_info_by_moid**](docs/ApplianceApi.md#get_appliance_node_info_by_moid) | **GET** /api/v1/appliance/NodeInfos/{Moid} | Read a 'appliance.NodeInfo' resource.
-*ApplianceApi* | [**get_appliance_node_info_list**](docs/ApplianceApi.md#get_appliance_node_info_list) | **GET** /api/v1/appliance/NodeInfos | Read a 'appliance.NodeInfo' resource.
-*ApplianceApi* | [**get_appliance_node_status_by_moid**](docs/ApplianceApi.md#get_appliance_node_status_by_moid) | **GET** /api/v1/appliance/NodeStatuses/{Moid} | Read a 'appliance.NodeStatus' resource.
-*ApplianceApi* | [**get_appliance_node_status_list**](docs/ApplianceApi.md#get_appliance_node_status_list) | **GET** /api/v1/appliance/NodeStatuses | Read a 'appliance.NodeStatus' resource.
-*ApplianceApi* | [**get_appliance_release_note_by_moid**](docs/ApplianceApi.md#get_appliance_release_note_by_moid) | **GET** /api/v1/appliance/ReleaseNotes/{Moid} | Read a 'appliance.ReleaseNote' resource.
-*ApplianceApi* | [**get_appliance_release_note_list**](docs/ApplianceApi.md#get_appliance_release_note_list) | **GET** /api/v1/appliance/ReleaseNotes | Read a 'appliance.ReleaseNote' resource.
-*ApplianceApi* | [**get_appliance_remote_file_import_by_moid**](docs/ApplianceApi.md#get_appliance_remote_file_import_by_moid) | **GET** /api/v1/appliance/RemoteFileImports/{Moid} | Read a 'appliance.RemoteFileImport' resource.
-*ApplianceApi* | [**get_appliance_remote_file_import_list**](docs/ApplianceApi.md#get_appliance_remote_file_import_list) | **GET** /api/v1/appliance/RemoteFileImports | Read a 'appliance.RemoteFileImport' resource.
-*ApplianceApi* | [**get_appliance_restore_by_moid**](docs/ApplianceApi.md#get_appliance_restore_by_moid) | **GET** /api/v1/appliance/Restores/{Moid} | Read a 'appliance.Restore' resource.
-*ApplianceApi* | [**get_appliance_restore_list**](docs/ApplianceApi.md#get_appliance_restore_list) | **GET** /api/v1/appliance/Restores | Read a 'appliance.Restore' resource.
-*ApplianceApi* | [**get_appliance_setup_info_by_moid**](docs/ApplianceApi.md#get_appliance_setup_info_by_moid) | **GET** /api/v1/appliance/SetupInfos/{Moid} | Read a 'appliance.SetupInfo' resource.
-*ApplianceApi* | [**get_appliance_setup_info_list**](docs/ApplianceApi.md#get_appliance_setup_info_list) | **GET** /api/v1/appliance/SetupInfos | Read a 'appliance.SetupInfo' resource.
-*ApplianceApi* | [**get_appliance_system_info_by_moid**](docs/ApplianceApi.md#get_appliance_system_info_by_moid) | **GET** /api/v1/appliance/SystemInfos/{Moid} | Read a 'appliance.SystemInfo' resource.
-*ApplianceApi* | [**get_appliance_system_info_list**](docs/ApplianceApi.md#get_appliance_system_info_list) | **GET** /api/v1/appliance/SystemInfos | Read a 'appliance.SystemInfo' resource.
-*ApplianceApi* | [**get_appliance_system_status_by_moid**](docs/ApplianceApi.md#get_appliance_system_status_by_moid) | **GET** /api/v1/appliance/SystemStatuses/{Moid} | Read a 'appliance.SystemStatus' resource.
-*ApplianceApi* | [**get_appliance_system_status_list**](docs/ApplianceApi.md#get_appliance_system_status_list) | **GET** /api/v1/appliance/SystemStatuses | Read a 'appliance.SystemStatus' resource.
-*ApplianceApi* | [**get_appliance_upgrade_by_moid**](docs/ApplianceApi.md#get_appliance_upgrade_by_moid) | **GET** /api/v1/appliance/Upgrades/{Moid} | Read a 'appliance.Upgrade' resource.
-*ApplianceApi* | [**get_appliance_upgrade_list**](docs/ApplianceApi.md#get_appliance_upgrade_list) | **GET** /api/v1/appliance/Upgrades | Read a 'appliance.Upgrade' resource.
-*ApplianceApi* | [**get_appliance_upgrade_policy_by_moid**](docs/ApplianceApi.md#get_appliance_upgrade_policy_by_moid) | **GET** /api/v1/appliance/UpgradePolicies/{Moid} | Read a 'appliance.UpgradePolicy' resource.
-*ApplianceApi* | [**get_appliance_upgrade_policy_list**](docs/ApplianceApi.md#get_appliance_upgrade_policy_list) | **GET** /api/v1/appliance/UpgradePolicies | Read a 'appliance.UpgradePolicy' resource.
-*ApplianceApi* | [**patch_appliance_auto_rma_policy**](docs/ApplianceApi.md#patch_appliance_auto_rma_policy) | **PATCH** /api/v1/appliance/AutoRmaPolicies/{Moid} | Update a 'appliance.AutoRmaPolicy' resource.
-*ApplianceApi* | [**patch_appliance_backup_policy**](docs/ApplianceApi.md#patch_appliance_backup_policy) | **PATCH** /api/v1/appliance/BackupPolicies/{Moid} | Update a 'appliance.BackupPolicy' resource.
-*ApplianceApi* | [**patch_appliance_certificate_setting**](docs/ApplianceApi.md#patch_appliance_certificate_setting) | **PATCH** /api/v1/appliance/CertificateSettings/{Moid} | Update a 'appliance.CertificateSetting' resource.
-*ApplianceApi* | [**patch_appliance_data_export_policy**](docs/ApplianceApi.md#patch_appliance_data_export_policy) | **PATCH** /api/v1/appliance/DataExportPolicies/{Moid} | Update a 'appliance.DataExportPolicy' resource.
-*ApplianceApi* | [**patch_appliance_device_claim**](docs/ApplianceApi.md#patch_appliance_device_claim) | **PATCH** /api/v1/appliance/DeviceClaims/{Moid} | Update a 'appliance.DeviceClaim' resource.
-*ApplianceApi* | [**patch_appliance_diag_setting**](docs/ApplianceApi.md#patch_appliance_diag_setting) | **PATCH** /api/v1/appliance/DiagSettings/{Moid} | Update a 'appliance.DiagSetting' resource.
-*ApplianceApi* | [**patch_appliance_external_syslog_setting**](docs/ApplianceApi.md#patch_appliance_external_syslog_setting) | **PATCH** /api/v1/appliance/ExternalSyslogSettings/{Moid} | Update a 'appliance.ExternalSyslogSetting' resource.
-*ApplianceApi* | [**patch_appliance_setup_info**](docs/ApplianceApi.md#patch_appliance_setup_info) | **PATCH** /api/v1/appliance/SetupInfos/{Moid} | Update a 'appliance.SetupInfo' resource.
-*ApplianceApi* | [**patch_appliance_upgrade**](docs/ApplianceApi.md#patch_appliance_upgrade) | **PATCH** /api/v1/appliance/Upgrades/{Moid} | Update a 'appliance.Upgrade' resource.
-*ApplianceApi* | [**patch_appliance_upgrade_policy**](docs/ApplianceApi.md#patch_appliance_upgrade_policy) | **PATCH** /api/v1/appliance/UpgradePolicies/{Moid} | Update a 'appliance.UpgradePolicy' resource.
-*ApplianceApi* | [**update_appliance_auto_rma_policy**](docs/ApplianceApi.md#update_appliance_auto_rma_policy) | **POST** /api/v1/appliance/AutoRmaPolicies/{Moid} | Update a 'appliance.AutoRmaPolicy' resource.
-*ApplianceApi* | [**update_appliance_backup_policy**](docs/ApplianceApi.md#update_appliance_backup_policy) | **POST** /api/v1/appliance/BackupPolicies/{Moid} | Update a 'appliance.BackupPolicy' resource.
-*ApplianceApi* | [**update_appliance_certificate_setting**](docs/ApplianceApi.md#update_appliance_certificate_setting) | **POST** /api/v1/appliance/CertificateSettings/{Moid} | Update a 'appliance.CertificateSetting' resource.
-*ApplianceApi* | [**update_appliance_data_export_policy**](docs/ApplianceApi.md#update_appliance_data_export_policy) | **POST** /api/v1/appliance/DataExportPolicies/{Moid} | Update a 'appliance.DataExportPolicy' resource.
-*ApplianceApi* | [**update_appliance_device_claim**](docs/ApplianceApi.md#update_appliance_device_claim) | **POST** /api/v1/appliance/DeviceClaims/{Moid} | Update a 'appliance.DeviceClaim' resource.
-*ApplianceApi* | [**update_appliance_diag_setting**](docs/ApplianceApi.md#update_appliance_diag_setting) | **POST** /api/v1/appliance/DiagSettings/{Moid} | Update a 'appliance.DiagSetting' resource.
-*ApplianceApi* | [**update_appliance_external_syslog_setting**](docs/ApplianceApi.md#update_appliance_external_syslog_setting) | **POST** /api/v1/appliance/ExternalSyslogSettings/{Moid} | Update a 'appliance.ExternalSyslogSetting' resource.
-*ApplianceApi* | [**update_appliance_setup_info**](docs/ApplianceApi.md#update_appliance_setup_info) | **POST** /api/v1/appliance/SetupInfos/{Moid} | Update a 'appliance.SetupInfo' resource.
-*ApplianceApi* | [**update_appliance_upgrade**](docs/ApplianceApi.md#update_appliance_upgrade) | **POST** /api/v1/appliance/Upgrades/{Moid} | Update a 'appliance.Upgrade' resource.
-*ApplianceApi* | [**update_appliance_upgrade_policy**](docs/ApplianceApi.md#update_appliance_upgrade_policy) | **POST** /api/v1/appliance/UpgradePolicies/{Moid} | Update a 'appliance.UpgradePolicy' resource.
-*AssetApi* | [**create_asset_device_claim**](docs/AssetApi.md#create_asset_device_claim) | **POST** /api/v1/asset/DeviceClaims | Create a 'asset.DeviceClaim' resource.
-*AssetApi* | [**create_asset_target**](docs/AssetApi.md#create_asset_target) | **POST** /api/v1/asset/Targets | Create a 'asset.Target' resource.
-*AssetApi* | [**delete_asset_deployment**](docs/AssetApi.md#delete_asset_deployment) | **DELETE** /api/v1/asset/Deployments/{Moid} | Delete a 'asset.Deployment' resource.
-*AssetApi* | [**delete_asset_deployment_device**](docs/AssetApi.md#delete_asset_deployment_device) | **DELETE** /api/v1/asset/DeploymentDevices/{Moid} | Delete a 'asset.DeploymentDevice' resource.
-*AssetApi* | [**delete_asset_device_claim**](docs/AssetApi.md#delete_asset_device_claim) | **DELETE** /api/v1/asset/DeviceClaims/{Moid} | Delete a 'asset.DeviceClaim' resource.
-*AssetApi* | [**delete_asset_device_contract_information**](docs/AssetApi.md#delete_asset_device_contract_information) | **DELETE** /api/v1/asset/DeviceContractInformations/{Moid} | Delete a 'asset.DeviceContractInformation' resource.
-*AssetApi* | [**delete_asset_device_registration**](docs/AssetApi.md#delete_asset_device_registration) | **DELETE** /api/v1/asset/DeviceRegistrations/{Moid} | Deletes the resource representing the device connector. All associated REST resources will be deleted. In particular, inventory and operational data associated with this device will be deleted.
-*AssetApi* | [**delete_asset_subscription**](docs/AssetApi.md#delete_asset_subscription) | **DELETE** /api/v1/asset/Subscriptions/{Moid} | Delete a 'asset.Subscription' resource.
-*AssetApi* | [**delete_asset_subscription_account**](docs/AssetApi.md#delete_asset_subscription_account) | **DELETE** /api/v1/asset/SubscriptionAccounts/{Moid} | Delete a 'asset.SubscriptionAccount' resource.
-*AssetApi* | [**delete_asset_target**](docs/AssetApi.md#delete_asset_target) | **DELETE** /api/v1/asset/Targets/{Moid} | Delete a 'asset.Target' resource.
-*AssetApi* | [**get_asset_cluster_member_by_moid**](docs/AssetApi.md#get_asset_cluster_member_by_moid) | **GET** /api/v1/asset/ClusterMembers/{Moid} | Read a 'asset.ClusterMember' resource.
-*AssetApi* | [**get_asset_cluster_member_list**](docs/AssetApi.md#get_asset_cluster_member_list) | **GET** /api/v1/asset/ClusterMembers | Read a 'asset.ClusterMember' resource.
-*AssetApi* | [**get_asset_deployment_by_moid**](docs/AssetApi.md#get_asset_deployment_by_moid) | **GET** /api/v1/asset/Deployments/{Moid} | Read a 'asset.Deployment' resource.
-*AssetApi* | [**get_asset_deployment_device_by_moid**](docs/AssetApi.md#get_asset_deployment_device_by_moid) | **GET** /api/v1/asset/DeploymentDevices/{Moid} | Read a 'asset.DeploymentDevice' resource.
-*AssetApi* | [**get_asset_deployment_device_list**](docs/AssetApi.md#get_asset_deployment_device_list) | **GET** /api/v1/asset/DeploymentDevices | Read a 'asset.DeploymentDevice' resource.
-*AssetApi* | [**get_asset_deployment_list**](docs/AssetApi.md#get_asset_deployment_list) | **GET** /api/v1/asset/Deployments | Read a 'asset.Deployment' resource.
-*AssetApi* | [**get_asset_device_configuration_by_moid**](docs/AssetApi.md#get_asset_device_configuration_by_moid) | **GET** /api/v1/asset/DeviceConfigurations/{Moid} | Read a 'asset.DeviceConfiguration' resource.
-*AssetApi* | [**get_asset_device_configuration_list**](docs/AssetApi.md#get_asset_device_configuration_list) | **GET** /api/v1/asset/DeviceConfigurations | Read a 'asset.DeviceConfiguration' resource.
-*AssetApi* | [**get_asset_device_connector_manager_by_moid**](docs/AssetApi.md#get_asset_device_connector_manager_by_moid) | **GET** /api/v1/asset/DeviceConnectorManagers/{Moid} | Read a 'asset.DeviceConnectorManager' resource.
-*AssetApi* | [**get_asset_device_connector_manager_list**](docs/AssetApi.md#get_asset_device_connector_manager_list) | **GET** /api/v1/asset/DeviceConnectorManagers | Read a 'asset.DeviceConnectorManager' resource.
-*AssetApi* | [**get_asset_device_contract_information_by_moid**](docs/AssetApi.md#get_asset_device_contract_information_by_moid) | **GET** /api/v1/asset/DeviceContractInformations/{Moid} | Read a 'asset.DeviceContractInformation' resource.
-*AssetApi* | [**get_asset_device_contract_information_list**](docs/AssetApi.md#get_asset_device_contract_information_list) | **GET** /api/v1/asset/DeviceContractInformations | Read a 'asset.DeviceContractInformation' resource.
-*AssetApi* | [**get_asset_device_registration_by_moid**](docs/AssetApi.md#get_asset_device_registration_by_moid) | **GET** /api/v1/asset/DeviceRegistrations/{Moid} | Read a 'asset.DeviceRegistration' resource.
-*AssetApi* | [**get_asset_device_registration_list**](docs/AssetApi.md#get_asset_device_registration_list) | **GET** /api/v1/asset/DeviceRegistrations | Read a 'asset.DeviceRegistration' resource.
-*AssetApi* | [**get_asset_subscription_account_by_moid**](docs/AssetApi.md#get_asset_subscription_account_by_moid) | **GET** /api/v1/asset/SubscriptionAccounts/{Moid} | Read a 'asset.SubscriptionAccount' resource.
-*AssetApi* | [**get_asset_subscription_account_list**](docs/AssetApi.md#get_asset_subscription_account_list) | **GET** /api/v1/asset/SubscriptionAccounts | Read a 'asset.SubscriptionAccount' resource.
-*AssetApi* | [**get_asset_subscription_by_moid**](docs/AssetApi.md#get_asset_subscription_by_moid) | **GET** /api/v1/asset/Subscriptions/{Moid} | Read a 'asset.Subscription' resource.
-*AssetApi* | [**get_asset_subscription_device_contract_information_by_moid**](docs/AssetApi.md#get_asset_subscription_device_contract_information_by_moid) | **GET** /api/v1/asset/SubscriptionDeviceContractInformations/{Moid} | Read a 'asset.SubscriptionDeviceContractInformation' resource.
-*AssetApi* | [**get_asset_subscription_device_contract_information_list**](docs/AssetApi.md#get_asset_subscription_device_contract_information_list) | **GET** /api/v1/asset/SubscriptionDeviceContractInformations | Read a 'asset.SubscriptionDeviceContractInformation' resource.
-*AssetApi* | [**get_asset_subscription_list**](docs/AssetApi.md#get_asset_subscription_list) | **GET** /api/v1/asset/Subscriptions | Read a 'asset.Subscription' resource.
-*AssetApi* | [**get_asset_target_by_moid**](docs/AssetApi.md#get_asset_target_by_moid) | **GET** /api/v1/asset/Targets/{Moid} | Read a 'asset.Target' resource.
-*AssetApi* | [**get_asset_target_list**](docs/AssetApi.md#get_asset_target_list) | **GET** /api/v1/asset/Targets | Read a 'asset.Target' resource.
-*AssetApi* | [**patch_asset_device_configuration**](docs/AssetApi.md#patch_asset_device_configuration) | **PATCH** /api/v1/asset/DeviceConfigurations/{Moid} | Update a 'asset.DeviceConfiguration' resource.
-*AssetApi* | [**patch_asset_device_contract_information**](docs/AssetApi.md#patch_asset_device_contract_information) | **PATCH** /api/v1/asset/DeviceContractInformations/{Moid} | Update a 'asset.DeviceContractInformation' resource.
-*AssetApi* | [**patch_asset_device_registration**](docs/AssetApi.md#patch_asset_device_registration) | **PATCH** /api/v1/asset/DeviceRegistrations/{Moid} | Updates the resource representing the device connector. For example, this can be used to annotate the device connector resource with user-specified tags.
-*AssetApi* | [**patch_asset_target**](docs/AssetApi.md#patch_asset_target) | **PATCH** /api/v1/asset/Targets/{Moid} | Update a 'asset.Target' resource.
-*AssetApi* | [**update_asset_device_configuration**](docs/AssetApi.md#update_asset_device_configuration) | **POST** /api/v1/asset/DeviceConfigurations/{Moid} | Update a 'asset.DeviceConfiguration' resource.
-*AssetApi* | [**update_asset_device_contract_information**](docs/AssetApi.md#update_asset_device_contract_information) | **POST** /api/v1/asset/DeviceContractInformations/{Moid} | Update a 'asset.DeviceContractInformation' resource.
-*AssetApi* | [**update_asset_device_registration**](docs/AssetApi.md#update_asset_device_registration) | **POST** /api/v1/asset/DeviceRegistrations/{Moid} | Updates the resource representing the device connector. For example, this can be used to annotate the device connector resource with user-specified tags.
-*AssetApi* | [**update_asset_target**](docs/AssetApi.md#update_asset_target) | **POST** /api/v1/asset/Targets/{Moid} | Update a 'asset.Target' resource.
-*BiosApi* | [**create_bios_policy**](docs/BiosApi.md#create_bios_policy) | **POST** /api/v1/bios/Policies | Create a 'bios.Policy' resource.
-*BiosApi* | [**delete_bios_policy**](docs/BiosApi.md#delete_bios_policy) | **DELETE** /api/v1/bios/Policies/{Moid} | Delete a 'bios.Policy' resource.
-*BiosApi* | [**get_bios_boot_device_by_moid**](docs/BiosApi.md#get_bios_boot_device_by_moid) | **GET** /api/v1/bios/BootDevices/{Moid} | Read a 'bios.BootDevice' resource.
-*BiosApi* | [**get_bios_boot_device_list**](docs/BiosApi.md#get_bios_boot_device_list) | **GET** /api/v1/bios/BootDevices | Read a 'bios.BootDevice' resource.
-*BiosApi* | [**get_bios_boot_mode_by_moid**](docs/BiosApi.md#get_bios_boot_mode_by_moid) | **GET** /api/v1/bios/BootModes/{Moid} | Read a 'bios.BootMode' resource.
-*BiosApi* | [**get_bios_boot_mode_list**](docs/BiosApi.md#get_bios_boot_mode_list) | **GET** /api/v1/bios/BootModes | Read a 'bios.BootMode' resource.
-*BiosApi* | [**get_bios_policy_by_moid**](docs/BiosApi.md#get_bios_policy_by_moid) | **GET** /api/v1/bios/Policies/{Moid} | Read a 'bios.Policy' resource.
-*BiosApi* | [**get_bios_policy_list**](docs/BiosApi.md#get_bios_policy_list) | **GET** /api/v1/bios/Policies | Read a 'bios.Policy' resource.
-*BiosApi* | [**get_bios_system_boot_order_by_moid**](docs/BiosApi.md#get_bios_system_boot_order_by_moid) | **GET** /api/v1/bios/SystemBootOrders/{Moid} | Read a 'bios.SystemBootOrder' resource.
-*BiosApi* | [**get_bios_system_boot_order_list**](docs/BiosApi.md#get_bios_system_boot_order_list) | **GET** /api/v1/bios/SystemBootOrders | Read a 'bios.SystemBootOrder' resource.
-*BiosApi* | [**get_bios_token_settings_by_moid**](docs/BiosApi.md#get_bios_token_settings_by_moid) | **GET** /api/v1/bios/TokenSettings/{Moid} | Read a 'bios.TokenSettings' resource.
-*BiosApi* | [**get_bios_token_settings_list**](docs/BiosApi.md#get_bios_token_settings_list) | **GET** /api/v1/bios/TokenSettings | Read a 'bios.TokenSettings' resource.
-*BiosApi* | [**get_bios_unit_by_moid**](docs/BiosApi.md#get_bios_unit_by_moid) | **GET** /api/v1/bios/Units/{Moid} | Read a 'bios.Unit' resource.
-*BiosApi* | [**get_bios_unit_list**](docs/BiosApi.md#get_bios_unit_list) | **GET** /api/v1/bios/Units | Read a 'bios.Unit' resource.
-*BiosApi* | [**get_bios_vf_select_memory_ras_configuration_by_moid**](docs/BiosApi.md#get_bios_vf_select_memory_ras_configuration_by_moid) | **GET** /api/v1/bios/VfSelectMemoryRasConfigurations/{Moid} | Read a 'bios.VfSelectMemoryRasConfiguration' resource.
-*BiosApi* | [**get_bios_vf_select_memory_ras_configuration_list**](docs/BiosApi.md#get_bios_vf_select_memory_ras_configuration_list) | **GET** /api/v1/bios/VfSelectMemoryRasConfigurations | Read a 'bios.VfSelectMemoryRasConfiguration' resource.
-*BiosApi* | [**patch_bios_boot_mode**](docs/BiosApi.md#patch_bios_boot_mode) | **PATCH** /api/v1/bios/BootModes/{Moid} | Update a 'bios.BootMode' resource.
-*BiosApi* | [**patch_bios_policy**](docs/BiosApi.md#patch_bios_policy) | **PATCH** /api/v1/bios/Policies/{Moid} | Update a 'bios.Policy' resource.
-*BiosApi* | [**patch_bios_unit**](docs/BiosApi.md#patch_bios_unit) | **PATCH** /api/v1/bios/Units/{Moid} | Update a 'bios.Unit' resource.
-*BiosApi* | [**update_bios_boot_mode**](docs/BiosApi.md#update_bios_boot_mode) | **POST** /api/v1/bios/BootModes/{Moid} | Update a 'bios.BootMode' resource.
-*BiosApi* | [**update_bios_policy**](docs/BiosApi.md#update_bios_policy) | **POST** /api/v1/bios/Policies/{Moid} | Update a 'bios.Policy' resource.
-*BiosApi* | [**update_bios_unit**](docs/BiosApi.md#update_bios_unit) | **POST** /api/v1/bios/Units/{Moid} | Update a 'bios.Unit' resource.
-*BootApi* | [**create_boot_precision_policy**](docs/BootApi.md#create_boot_precision_policy) | **POST** /api/v1/boot/PrecisionPolicies | Create a 'boot.PrecisionPolicy' resource.
-*BootApi* | [**delete_boot_precision_policy**](docs/BootApi.md#delete_boot_precision_policy) | **DELETE** /api/v1/boot/PrecisionPolicies/{Moid} | Delete a 'boot.PrecisionPolicy' resource.
-*BootApi* | [**get_boot_cdd_device_by_moid**](docs/BootApi.md#get_boot_cdd_device_by_moid) | **GET** /api/v1/boot/CddDevices/{Moid} | Read a 'boot.CddDevice' resource.
-*BootApi* | [**get_boot_cdd_device_list**](docs/BootApi.md#get_boot_cdd_device_list) | **GET** /api/v1/boot/CddDevices | Read a 'boot.CddDevice' resource.
-*BootApi* | [**get_boot_device_boot_mode_by_moid**](docs/BootApi.md#get_boot_device_boot_mode_by_moid) | **GET** /api/v1/boot/DeviceBootModes/{Moid} | Read a 'boot.DeviceBootMode' resource.
-*BootApi* | [**get_boot_device_boot_mode_list**](docs/BootApi.md#get_boot_device_boot_mode_list) | **GET** /api/v1/boot/DeviceBootModes | Read a 'boot.DeviceBootMode' resource.
-*BootApi* | [**get_boot_device_boot_security_by_moid**](docs/BootApi.md#get_boot_device_boot_security_by_moid) | **GET** /api/v1/boot/DeviceBootSecurities/{Moid} | Read a 'boot.DeviceBootSecurity' resource.
-*BootApi* | [**get_boot_device_boot_security_list**](docs/BootApi.md#get_boot_device_boot_security_list) | **GET** /api/v1/boot/DeviceBootSecurities | Read a 'boot.DeviceBootSecurity' resource.
-*BootApi* | [**get_boot_hdd_device_by_moid**](docs/BootApi.md#get_boot_hdd_device_by_moid) | **GET** /api/v1/boot/HddDevices/{Moid} | Read a 'boot.HddDevice' resource.
-*BootApi* | [**get_boot_hdd_device_list**](docs/BootApi.md#get_boot_hdd_device_list) | **GET** /api/v1/boot/HddDevices | Read a 'boot.HddDevice' resource.
-*BootApi* | [**get_boot_iscsi_device_by_moid**](docs/BootApi.md#get_boot_iscsi_device_by_moid) | **GET** /api/v1/boot/IscsiDevices/{Moid} | Read a 'boot.IscsiDevice' resource.
-*BootApi* | [**get_boot_iscsi_device_list**](docs/BootApi.md#get_boot_iscsi_device_list) | **GET** /api/v1/boot/IscsiDevices | Read a 'boot.IscsiDevice' resource.
-*BootApi* | [**get_boot_nvme_device_by_moid**](docs/BootApi.md#get_boot_nvme_device_by_moid) | **GET** /api/v1/boot/NvmeDevices/{Moid} | Read a 'boot.NvmeDevice' resource.
-*BootApi* | [**get_boot_nvme_device_list**](docs/BootApi.md#get_boot_nvme_device_list) | **GET** /api/v1/boot/NvmeDevices | Read a 'boot.NvmeDevice' resource.
-*BootApi* | [**get_boot_pch_storage_device_by_moid**](docs/BootApi.md#get_boot_pch_storage_device_by_moid) | **GET** /api/v1/boot/PchStorageDevices/{Moid} | Read a 'boot.PchStorageDevice' resource.
-*BootApi* | [**get_boot_pch_storage_device_list**](docs/BootApi.md#get_boot_pch_storage_device_list) | **GET** /api/v1/boot/PchStorageDevices | Read a 'boot.PchStorageDevice' resource.
-*BootApi* | [**get_boot_precision_policy_by_moid**](docs/BootApi.md#get_boot_precision_policy_by_moid) | **GET** /api/v1/boot/PrecisionPolicies/{Moid} | Read a 'boot.PrecisionPolicy' resource.
-*BootApi* | [**get_boot_precision_policy_list**](docs/BootApi.md#get_boot_precision_policy_list) | **GET** /api/v1/boot/PrecisionPolicies | Read a 'boot.PrecisionPolicy' resource.
-*BootApi* | [**get_boot_pxe_device_by_moid**](docs/BootApi.md#get_boot_pxe_device_by_moid) | **GET** /api/v1/boot/PxeDevices/{Moid} | Read a 'boot.PxeDevice' resource.
-*BootApi* | [**get_boot_pxe_device_list**](docs/BootApi.md#get_boot_pxe_device_list) | **GET** /api/v1/boot/PxeDevices | Read a 'boot.PxeDevice' resource.
-*BootApi* | [**get_boot_san_device_by_moid**](docs/BootApi.md#get_boot_san_device_by_moid) | **GET** /api/v1/boot/SanDevices/{Moid} | Read a 'boot.SanDevice' resource.
-*BootApi* | [**get_boot_san_device_list**](docs/BootApi.md#get_boot_san_device_list) | **GET** /api/v1/boot/SanDevices | Read a 'boot.SanDevice' resource.
-*BootApi* | [**get_boot_sd_device_by_moid**](docs/BootApi.md#get_boot_sd_device_by_moid) | **GET** /api/v1/boot/SdDevices/{Moid} | Read a 'boot.SdDevice' resource.
-*BootApi* | [**get_boot_sd_device_list**](docs/BootApi.md#get_boot_sd_device_list) | **GET** /api/v1/boot/SdDevices | Read a 'boot.SdDevice' resource.
-*BootApi* | [**get_boot_uefi_shell_device_by_moid**](docs/BootApi.md#get_boot_uefi_shell_device_by_moid) | **GET** /api/v1/boot/UefiShellDevices/{Moid} | Read a 'boot.UefiShellDevice' resource.
-*BootApi* | [**get_boot_uefi_shell_device_list**](docs/BootApi.md#get_boot_uefi_shell_device_list) | **GET** /api/v1/boot/UefiShellDevices | Read a 'boot.UefiShellDevice' resource.
-*BootApi* | [**get_boot_usb_device_by_moid**](docs/BootApi.md#get_boot_usb_device_by_moid) | **GET** /api/v1/boot/UsbDevices/{Moid} | Read a 'boot.UsbDevice' resource.
-*BootApi* | [**get_boot_usb_device_list**](docs/BootApi.md#get_boot_usb_device_list) | **GET** /api/v1/boot/UsbDevices | Read a 'boot.UsbDevice' resource.
-*BootApi* | [**get_boot_vmedia_device_by_moid**](docs/BootApi.md#get_boot_vmedia_device_by_moid) | **GET** /api/v1/boot/VmediaDevices/{Moid} | Read a 'boot.VmediaDevice' resource.
-*BootApi* | [**get_boot_vmedia_device_list**](docs/BootApi.md#get_boot_vmedia_device_list) | **GET** /api/v1/boot/VmediaDevices | Read a 'boot.VmediaDevice' resource.
-*BootApi* | [**patch_boot_cdd_device**](docs/BootApi.md#patch_boot_cdd_device) | **PATCH** /api/v1/boot/CddDevices/{Moid} | Update a 'boot.CddDevice' resource.
-*BootApi* | [**patch_boot_device_boot_mode**](docs/BootApi.md#patch_boot_device_boot_mode) | **PATCH** /api/v1/boot/DeviceBootModes/{Moid} | Update a 'boot.DeviceBootMode' resource.
-*BootApi* | [**patch_boot_device_boot_security**](docs/BootApi.md#patch_boot_device_boot_security) | **PATCH** /api/v1/boot/DeviceBootSecurities/{Moid} | Update a 'boot.DeviceBootSecurity' resource.
-*BootApi* | [**patch_boot_hdd_device**](docs/BootApi.md#patch_boot_hdd_device) | **PATCH** /api/v1/boot/HddDevices/{Moid} | Update a 'boot.HddDevice' resource.
-*BootApi* | [**patch_boot_iscsi_device**](docs/BootApi.md#patch_boot_iscsi_device) | **PATCH** /api/v1/boot/IscsiDevices/{Moid} | Update a 'boot.IscsiDevice' resource.
-*BootApi* | [**patch_boot_nvme_device**](docs/BootApi.md#patch_boot_nvme_device) | **PATCH** /api/v1/boot/NvmeDevices/{Moid} | Update a 'boot.NvmeDevice' resource.
-*BootApi* | [**patch_boot_pch_storage_device**](docs/BootApi.md#patch_boot_pch_storage_device) | **PATCH** /api/v1/boot/PchStorageDevices/{Moid} | Update a 'boot.PchStorageDevice' resource.
-*BootApi* | [**patch_boot_precision_policy**](docs/BootApi.md#patch_boot_precision_policy) | **PATCH** /api/v1/boot/PrecisionPolicies/{Moid} | Update a 'boot.PrecisionPolicy' resource.
-*BootApi* | [**patch_boot_pxe_device**](docs/BootApi.md#patch_boot_pxe_device) | **PATCH** /api/v1/boot/PxeDevices/{Moid} | Update a 'boot.PxeDevice' resource.
-*BootApi* | [**patch_boot_san_device**](docs/BootApi.md#patch_boot_san_device) | **PATCH** /api/v1/boot/SanDevices/{Moid} | Update a 'boot.SanDevice' resource.
-*BootApi* | [**patch_boot_sd_device**](docs/BootApi.md#patch_boot_sd_device) | **PATCH** /api/v1/boot/SdDevices/{Moid} | Update a 'boot.SdDevice' resource.
-*BootApi* | [**patch_boot_uefi_shell_device**](docs/BootApi.md#patch_boot_uefi_shell_device) | **PATCH** /api/v1/boot/UefiShellDevices/{Moid} | Update a 'boot.UefiShellDevice' resource.
-*BootApi* | [**patch_boot_usb_device**](docs/BootApi.md#patch_boot_usb_device) | **PATCH** /api/v1/boot/UsbDevices/{Moid} | Update a 'boot.UsbDevice' resource.
-*BootApi* | [**patch_boot_vmedia_device**](docs/BootApi.md#patch_boot_vmedia_device) | **PATCH** /api/v1/boot/VmediaDevices/{Moid} | Update a 'boot.VmediaDevice' resource.
-*BootApi* | [**update_boot_cdd_device**](docs/BootApi.md#update_boot_cdd_device) | **POST** /api/v1/boot/CddDevices/{Moid} | Update a 'boot.CddDevice' resource.
-*BootApi* | [**update_boot_device_boot_mode**](docs/BootApi.md#update_boot_device_boot_mode) | **POST** /api/v1/boot/DeviceBootModes/{Moid} | Update a 'boot.DeviceBootMode' resource.
-*BootApi* | [**update_boot_device_boot_security**](docs/BootApi.md#update_boot_device_boot_security) | **POST** /api/v1/boot/DeviceBootSecurities/{Moid} | Update a 'boot.DeviceBootSecurity' resource.
-*BootApi* | [**update_boot_hdd_device**](docs/BootApi.md#update_boot_hdd_device) | **POST** /api/v1/boot/HddDevices/{Moid} | Update a 'boot.HddDevice' resource.
-*BootApi* | [**update_boot_iscsi_device**](docs/BootApi.md#update_boot_iscsi_device) | **POST** /api/v1/boot/IscsiDevices/{Moid} | Update a 'boot.IscsiDevice' resource.
-*BootApi* | [**update_boot_nvme_device**](docs/BootApi.md#update_boot_nvme_device) | **POST** /api/v1/boot/NvmeDevices/{Moid} | Update a 'boot.NvmeDevice' resource.
-*BootApi* | [**update_boot_pch_storage_device**](docs/BootApi.md#update_boot_pch_storage_device) | **POST** /api/v1/boot/PchStorageDevices/{Moid} | Update a 'boot.PchStorageDevice' resource.
-*BootApi* | [**update_boot_precision_policy**](docs/BootApi.md#update_boot_precision_policy) | **POST** /api/v1/boot/PrecisionPolicies/{Moid} | Update a 'boot.PrecisionPolicy' resource.
-*BootApi* | [**update_boot_pxe_device**](docs/BootApi.md#update_boot_pxe_device) | **POST** /api/v1/boot/PxeDevices/{Moid} | Update a 'boot.PxeDevice' resource.
-*BootApi* | [**update_boot_san_device**](docs/BootApi.md#update_boot_san_device) | **POST** /api/v1/boot/SanDevices/{Moid} | Update a 'boot.SanDevice' resource.
-*BootApi* | [**update_boot_sd_device**](docs/BootApi.md#update_boot_sd_device) | **POST** /api/v1/boot/SdDevices/{Moid} | Update a 'boot.SdDevice' resource.
-*BootApi* | [**update_boot_uefi_shell_device**](docs/BootApi.md#update_boot_uefi_shell_device) | **POST** /api/v1/boot/UefiShellDevices/{Moid} | Update a 'boot.UefiShellDevice' resource.
-*BootApi* | [**update_boot_usb_device**](docs/BootApi.md#update_boot_usb_device) | **POST** /api/v1/boot/UsbDevices/{Moid} | Update a 'boot.UsbDevice' resource.
-*BootApi* | [**update_boot_vmedia_device**](docs/BootApi.md#update_boot_vmedia_device) | **POST** /api/v1/boot/VmediaDevices/{Moid} | Update a 'boot.VmediaDevice' resource.
-*BulkApi* | [**create_bulk_mo_cloner**](docs/BulkApi.md#create_bulk_mo_cloner) | **POST** /api/v1/bulk/MoCloners | Create a 'bulk.MoCloner' resource.
-*BulkApi* | [**create_bulk_mo_merger**](docs/BulkApi.md#create_bulk_mo_merger) | **POST** /api/v1/bulk/MoMergers | Create a 'bulk.MoMerger' resource.
-*BulkApi* | [**create_bulk_request**](docs/BulkApi.md#create_bulk_request) | **POST** /api/v1/bulk/Requests | Create a 'bulk.Request' resource.
-*CapabilityApi* | [**create_capability_adapter_unit_descriptor**](docs/CapabilityApi.md#create_capability_adapter_unit_descriptor) | **POST** /api/v1/capability/AdapterUnitDescriptors | Create a 'capability.AdapterUnitDescriptor' resource.
-*CapabilityApi* | [**create_capability_chassis_descriptor**](docs/CapabilityApi.md#create_capability_chassis_descriptor) | **POST** /api/v1/capability/ChassisDescriptors | Create a 'capability.ChassisDescriptor' resource.
-*CapabilityApi* | [**create_capability_chassis_manufacturing_def**](docs/CapabilityApi.md#create_capability_chassis_manufacturing_def) | **POST** /api/v1/capability/ChassisManufacturingDefs | Create a 'capability.ChassisManufacturingDef' resource.
-*CapabilityApi* | [**create_capability_cimc_firmware_descriptor**](docs/CapabilityApi.md#create_capability_cimc_firmware_descriptor) | **POST** /api/v1/capability/CimcFirmwareDescriptors | Create a 'capability.CimcFirmwareDescriptor' resource.
-*CapabilityApi* | [**create_capability_equipment_physical_def**](docs/CapabilityApi.md#create_capability_equipment_physical_def) | **POST** /api/v1/capability/EquipmentPhysicalDefs | Create a 'capability.EquipmentPhysicalDef' resource.
-*CapabilityApi* | [**create_capability_equipment_slot_array**](docs/CapabilityApi.md#create_capability_equipment_slot_array) | **POST** /api/v1/capability/EquipmentSlotArrays | Create a 'capability.EquipmentSlotArray' resource.
-*CapabilityApi* | [**create_capability_fan_module_descriptor**](docs/CapabilityApi.md#create_capability_fan_module_descriptor) | **POST** /api/v1/capability/FanModuleDescriptors | Create a 'capability.FanModuleDescriptor' resource.
-*CapabilityApi* | [**create_capability_fan_module_manufacturing_def**](docs/CapabilityApi.md#create_capability_fan_module_manufacturing_def) | **POST** /api/v1/capability/FanModuleManufacturingDefs | Create a 'capability.FanModuleManufacturingDef' resource.
-*CapabilityApi* | [**create_capability_io_card_capability_def**](docs/CapabilityApi.md#create_capability_io_card_capability_def) | **POST** /api/v1/capability/IoCardCapabilityDefs | Create a 'capability.IoCardCapabilityDef' resource.
-*CapabilityApi* | [**create_capability_io_card_descriptor**](docs/CapabilityApi.md#create_capability_io_card_descriptor) | **POST** /api/v1/capability/IoCardDescriptors | Create a 'capability.IoCardDescriptor' resource.
-*CapabilityApi* | [**create_capability_io_card_manufacturing_def**](docs/CapabilityApi.md#create_capability_io_card_manufacturing_def) | **POST** /api/v1/capability/IoCardManufacturingDefs | Create a 'capability.IoCardManufacturingDef' resource.
-*CapabilityApi* | [**create_capability_port_group_aggregation_def**](docs/CapabilityApi.md#create_capability_port_group_aggregation_def) | **POST** /api/v1/capability/PortGroupAggregationDefs | Create a 'capability.PortGroupAggregationDef' resource.
-*CapabilityApi* | [**create_capability_psu_descriptor**](docs/CapabilityApi.md#create_capability_psu_descriptor) | **POST** /api/v1/capability/PsuDescriptors | Create a 'capability.PsuDescriptor' resource.
-*CapabilityApi* | [**create_capability_psu_manufacturing_def**](docs/CapabilityApi.md#create_capability_psu_manufacturing_def) | **POST** /api/v1/capability/PsuManufacturingDefs | Create a 'capability.PsuManufacturingDef' resource.
-*CapabilityApi* | [**create_capability_server_schema_descriptor**](docs/CapabilityApi.md#create_capability_server_schema_descriptor) | **POST** /api/v1/capability/ServerSchemaDescriptors | Create a 'capability.ServerSchemaDescriptor' resource.
-*CapabilityApi* | [**create_capability_sioc_module_capability_def**](docs/CapabilityApi.md#create_capability_sioc_module_capability_def) | **POST** /api/v1/capability/SiocModuleCapabilityDefs | Create a 'capability.SiocModuleCapabilityDef' resource.
-*CapabilityApi* | [**create_capability_sioc_module_descriptor**](docs/CapabilityApi.md#create_capability_sioc_module_descriptor) | **POST** /api/v1/capability/SiocModuleDescriptors | Create a 'capability.SiocModuleDescriptor' resource.
-*CapabilityApi* | [**create_capability_sioc_module_manufacturing_def**](docs/CapabilityApi.md#create_capability_sioc_module_manufacturing_def) | **POST** /api/v1/capability/SiocModuleManufacturingDefs | Create a 'capability.SiocModuleManufacturingDef' resource.
-*CapabilityApi* | [**create_capability_switch_capability**](docs/CapabilityApi.md#create_capability_switch_capability) | **POST** /api/v1/capability/SwitchCapabilities | Create a 'capability.SwitchCapability' resource.
-*CapabilityApi* | [**create_capability_switch_descriptor**](docs/CapabilityApi.md#create_capability_switch_descriptor) | **POST** /api/v1/capability/SwitchDescriptors | Create a 'capability.SwitchDescriptor' resource.
-*CapabilityApi* | [**create_capability_switch_manufacturing_def**](docs/CapabilityApi.md#create_capability_switch_manufacturing_def) | **POST** /api/v1/capability/SwitchManufacturingDefs | Create a 'capability.SwitchManufacturingDef' resource.
-*CapabilityApi* | [**delete_capability_adapter_unit_descriptor**](docs/CapabilityApi.md#delete_capability_adapter_unit_descriptor) | **DELETE** /api/v1/capability/AdapterUnitDescriptors/{Moid} | Delete a 'capability.AdapterUnitDescriptor' resource.
-*CapabilityApi* | [**delete_capability_chassis_descriptor**](docs/CapabilityApi.md#delete_capability_chassis_descriptor) | **DELETE** /api/v1/capability/ChassisDescriptors/{Moid} | Delete a 'capability.ChassisDescriptor' resource.
-*CapabilityApi* | [**delete_capability_chassis_manufacturing_def**](docs/CapabilityApi.md#delete_capability_chassis_manufacturing_def) | **DELETE** /api/v1/capability/ChassisManufacturingDefs/{Moid} | Delete a 'capability.ChassisManufacturingDef' resource.
-*CapabilityApi* | [**delete_capability_cimc_firmware_descriptor**](docs/CapabilityApi.md#delete_capability_cimc_firmware_descriptor) | **DELETE** /api/v1/capability/CimcFirmwareDescriptors/{Moid} | Delete a 'capability.CimcFirmwareDescriptor' resource.
-*CapabilityApi* | [**delete_capability_equipment_physical_def**](docs/CapabilityApi.md#delete_capability_equipment_physical_def) | **DELETE** /api/v1/capability/EquipmentPhysicalDefs/{Moid} | Delete a 'capability.EquipmentPhysicalDef' resource.
-*CapabilityApi* | [**delete_capability_equipment_slot_array**](docs/CapabilityApi.md#delete_capability_equipment_slot_array) | **DELETE** /api/v1/capability/EquipmentSlotArrays/{Moid} | Delete a 'capability.EquipmentSlotArray' resource.
-*CapabilityApi* | [**delete_capability_fan_module_descriptor**](docs/CapabilityApi.md#delete_capability_fan_module_descriptor) | **DELETE** /api/v1/capability/FanModuleDescriptors/{Moid} | Delete a 'capability.FanModuleDescriptor' resource.
-*CapabilityApi* | [**delete_capability_fan_module_manufacturing_def**](docs/CapabilityApi.md#delete_capability_fan_module_manufacturing_def) | **DELETE** /api/v1/capability/FanModuleManufacturingDefs/{Moid} | Delete a 'capability.FanModuleManufacturingDef' resource.
-*CapabilityApi* | [**delete_capability_io_card_capability_def**](docs/CapabilityApi.md#delete_capability_io_card_capability_def) | **DELETE** /api/v1/capability/IoCardCapabilityDefs/{Moid} | Delete a 'capability.IoCardCapabilityDef' resource.
-*CapabilityApi* | [**delete_capability_io_card_descriptor**](docs/CapabilityApi.md#delete_capability_io_card_descriptor) | **DELETE** /api/v1/capability/IoCardDescriptors/{Moid} | Delete a 'capability.IoCardDescriptor' resource.
-*CapabilityApi* | [**delete_capability_io_card_manufacturing_def**](docs/CapabilityApi.md#delete_capability_io_card_manufacturing_def) | **DELETE** /api/v1/capability/IoCardManufacturingDefs/{Moid} | Delete a 'capability.IoCardManufacturingDef' resource.
-*CapabilityApi* | [**delete_capability_port_group_aggregation_def**](docs/CapabilityApi.md#delete_capability_port_group_aggregation_def) | **DELETE** /api/v1/capability/PortGroupAggregationDefs/{Moid} | Delete a 'capability.PortGroupAggregationDef' resource.
-*CapabilityApi* | [**delete_capability_psu_descriptor**](docs/CapabilityApi.md#delete_capability_psu_descriptor) | **DELETE** /api/v1/capability/PsuDescriptors/{Moid} | Delete a 'capability.PsuDescriptor' resource.
-*CapabilityApi* | [**delete_capability_psu_manufacturing_def**](docs/CapabilityApi.md#delete_capability_psu_manufacturing_def) | **DELETE** /api/v1/capability/PsuManufacturingDefs/{Moid} | Delete a 'capability.PsuManufacturingDef' resource.
-*CapabilityApi* | [**delete_capability_server_schema_descriptor**](docs/CapabilityApi.md#delete_capability_server_schema_descriptor) | **DELETE** /api/v1/capability/ServerSchemaDescriptors/{Moid} | Delete a 'capability.ServerSchemaDescriptor' resource.
-*CapabilityApi* | [**delete_capability_sioc_module_capability_def**](docs/CapabilityApi.md#delete_capability_sioc_module_capability_def) | **DELETE** /api/v1/capability/SiocModuleCapabilityDefs/{Moid} | Delete a 'capability.SiocModuleCapabilityDef' resource.
-*CapabilityApi* | [**delete_capability_sioc_module_descriptor**](docs/CapabilityApi.md#delete_capability_sioc_module_descriptor) | **DELETE** /api/v1/capability/SiocModuleDescriptors/{Moid} | Delete a 'capability.SiocModuleDescriptor' resource.
-*CapabilityApi* | [**delete_capability_sioc_module_manufacturing_def**](docs/CapabilityApi.md#delete_capability_sioc_module_manufacturing_def) | **DELETE** /api/v1/capability/SiocModuleManufacturingDefs/{Moid} | Delete a 'capability.SiocModuleManufacturingDef' resource.
-*CapabilityApi* | [**delete_capability_switch_capability**](docs/CapabilityApi.md#delete_capability_switch_capability) | **DELETE** /api/v1/capability/SwitchCapabilities/{Moid} | Delete a 'capability.SwitchCapability' resource.
-*CapabilityApi* | [**delete_capability_switch_descriptor**](docs/CapabilityApi.md#delete_capability_switch_descriptor) | **DELETE** /api/v1/capability/SwitchDescriptors/{Moid} | Delete a 'capability.SwitchDescriptor' resource.
-*CapabilityApi* | [**delete_capability_switch_manufacturing_def**](docs/CapabilityApi.md#delete_capability_switch_manufacturing_def) | **DELETE** /api/v1/capability/SwitchManufacturingDefs/{Moid} | Delete a 'capability.SwitchManufacturingDef' resource.
-*CapabilityApi* | [**get_capability_adapter_unit_descriptor_by_moid**](docs/CapabilityApi.md#get_capability_adapter_unit_descriptor_by_moid) | **GET** /api/v1/capability/AdapterUnitDescriptors/{Moid} | Read a 'capability.AdapterUnitDescriptor' resource.
-*CapabilityApi* | [**get_capability_adapter_unit_descriptor_list**](docs/CapabilityApi.md#get_capability_adapter_unit_descriptor_list) | **GET** /api/v1/capability/AdapterUnitDescriptors | Read a 'capability.AdapterUnitDescriptor' resource.
-*CapabilityApi* | [**get_capability_catalog_by_moid**](docs/CapabilityApi.md#get_capability_catalog_by_moid) | **GET** /api/v1/capability/Catalogs/{Moid} | Read a 'capability.Catalog' resource.
-*CapabilityApi* | [**get_capability_catalog_list**](docs/CapabilityApi.md#get_capability_catalog_list) | **GET** /api/v1/capability/Catalogs | Read a 'capability.Catalog' resource.
-*CapabilityApi* | [**get_capability_chassis_descriptor_by_moid**](docs/CapabilityApi.md#get_capability_chassis_descriptor_by_moid) | **GET** /api/v1/capability/ChassisDescriptors/{Moid} | Read a 'capability.ChassisDescriptor' resource.
-*CapabilityApi* | [**get_capability_chassis_descriptor_list**](docs/CapabilityApi.md#get_capability_chassis_descriptor_list) | **GET** /api/v1/capability/ChassisDescriptors | Read a 'capability.ChassisDescriptor' resource.
-*CapabilityApi* | [**get_capability_chassis_manufacturing_def_by_moid**](docs/CapabilityApi.md#get_capability_chassis_manufacturing_def_by_moid) | **GET** /api/v1/capability/ChassisManufacturingDefs/{Moid} | Read a 'capability.ChassisManufacturingDef' resource.
-*CapabilityApi* | [**get_capability_chassis_manufacturing_def_list**](docs/CapabilityApi.md#get_capability_chassis_manufacturing_def_list) | **GET** /api/v1/capability/ChassisManufacturingDefs | Read a 'capability.ChassisManufacturingDef' resource.
-*CapabilityApi* | [**get_capability_cimc_firmware_descriptor_by_moid**](docs/CapabilityApi.md#get_capability_cimc_firmware_descriptor_by_moid) | **GET** /api/v1/capability/CimcFirmwareDescriptors/{Moid} | Read a 'capability.CimcFirmwareDescriptor' resource.
-*CapabilityApi* | [**get_capability_cimc_firmware_descriptor_list**](docs/CapabilityApi.md#get_capability_cimc_firmware_descriptor_list) | **GET** /api/v1/capability/CimcFirmwareDescriptors | Read a 'capability.CimcFirmwareDescriptor' resource.
-*CapabilityApi* | [**get_capability_equipment_physical_def_by_moid**](docs/CapabilityApi.md#get_capability_equipment_physical_def_by_moid) | **GET** /api/v1/capability/EquipmentPhysicalDefs/{Moid} | Read a 'capability.EquipmentPhysicalDef' resource.
-*CapabilityApi* | [**get_capability_equipment_physical_def_list**](docs/CapabilityApi.md#get_capability_equipment_physical_def_list) | **GET** /api/v1/capability/EquipmentPhysicalDefs | Read a 'capability.EquipmentPhysicalDef' resource.
-*CapabilityApi* | [**get_capability_equipment_slot_array_by_moid**](docs/CapabilityApi.md#get_capability_equipment_slot_array_by_moid) | **GET** /api/v1/capability/EquipmentSlotArrays/{Moid} | Read a 'capability.EquipmentSlotArray' resource.
-*CapabilityApi* | [**get_capability_equipment_slot_array_list**](docs/CapabilityApi.md#get_capability_equipment_slot_array_list) | **GET** /api/v1/capability/EquipmentSlotArrays | Read a 'capability.EquipmentSlotArray' resource.
-*CapabilityApi* | [**get_capability_fan_module_descriptor_by_moid**](docs/CapabilityApi.md#get_capability_fan_module_descriptor_by_moid) | **GET** /api/v1/capability/FanModuleDescriptors/{Moid} | Read a 'capability.FanModuleDescriptor' resource.
-*CapabilityApi* | [**get_capability_fan_module_descriptor_list**](docs/CapabilityApi.md#get_capability_fan_module_descriptor_list) | **GET** /api/v1/capability/FanModuleDescriptors | Read a 'capability.FanModuleDescriptor' resource.
-*CapabilityApi* | [**get_capability_fan_module_manufacturing_def_by_moid**](docs/CapabilityApi.md#get_capability_fan_module_manufacturing_def_by_moid) | **GET** /api/v1/capability/FanModuleManufacturingDefs/{Moid} | Read a 'capability.FanModuleManufacturingDef' resource.
-*CapabilityApi* | [**get_capability_fan_module_manufacturing_def_list**](docs/CapabilityApi.md#get_capability_fan_module_manufacturing_def_list) | **GET** /api/v1/capability/FanModuleManufacturingDefs | Read a 'capability.FanModuleManufacturingDef' resource.
-*CapabilityApi* | [**get_capability_io_card_capability_def_by_moid**](docs/CapabilityApi.md#get_capability_io_card_capability_def_by_moid) | **GET** /api/v1/capability/IoCardCapabilityDefs/{Moid} | Read a 'capability.IoCardCapabilityDef' resource.
-*CapabilityApi* | [**get_capability_io_card_capability_def_list**](docs/CapabilityApi.md#get_capability_io_card_capability_def_list) | **GET** /api/v1/capability/IoCardCapabilityDefs | Read a 'capability.IoCardCapabilityDef' resource.
-*CapabilityApi* | [**get_capability_io_card_descriptor_by_moid**](docs/CapabilityApi.md#get_capability_io_card_descriptor_by_moid) | **GET** /api/v1/capability/IoCardDescriptors/{Moid} | Read a 'capability.IoCardDescriptor' resource.
-*CapabilityApi* | [**get_capability_io_card_descriptor_list**](docs/CapabilityApi.md#get_capability_io_card_descriptor_list) | **GET** /api/v1/capability/IoCardDescriptors | Read a 'capability.IoCardDescriptor' resource.
-*CapabilityApi* | [**get_capability_io_card_manufacturing_def_by_moid**](docs/CapabilityApi.md#get_capability_io_card_manufacturing_def_by_moid) | **GET** /api/v1/capability/IoCardManufacturingDefs/{Moid} | Read a 'capability.IoCardManufacturingDef' resource.
-*CapabilityApi* | [**get_capability_io_card_manufacturing_def_list**](docs/CapabilityApi.md#get_capability_io_card_manufacturing_def_list) | **GET** /api/v1/capability/IoCardManufacturingDefs | Read a 'capability.IoCardManufacturingDef' resource.
-*CapabilityApi* | [**get_capability_port_group_aggregation_def_by_moid**](docs/CapabilityApi.md#get_capability_port_group_aggregation_def_by_moid) | **GET** /api/v1/capability/PortGroupAggregationDefs/{Moid} | Read a 'capability.PortGroupAggregationDef' resource.
-*CapabilityApi* | [**get_capability_port_group_aggregation_def_list**](docs/CapabilityApi.md#get_capability_port_group_aggregation_def_list) | **GET** /api/v1/capability/PortGroupAggregationDefs | Read a 'capability.PortGroupAggregationDef' resource.
-*CapabilityApi* | [**get_capability_psu_descriptor_by_moid**](docs/CapabilityApi.md#get_capability_psu_descriptor_by_moid) | **GET** /api/v1/capability/PsuDescriptors/{Moid} | Read a 'capability.PsuDescriptor' resource.
-*CapabilityApi* | [**get_capability_psu_descriptor_list**](docs/CapabilityApi.md#get_capability_psu_descriptor_list) | **GET** /api/v1/capability/PsuDescriptors | Read a 'capability.PsuDescriptor' resource.
-*CapabilityApi* | [**get_capability_psu_manufacturing_def_by_moid**](docs/CapabilityApi.md#get_capability_psu_manufacturing_def_by_moid) | **GET** /api/v1/capability/PsuManufacturingDefs/{Moid} | Read a 'capability.PsuManufacturingDef' resource.
-*CapabilityApi* | [**get_capability_psu_manufacturing_def_list**](docs/CapabilityApi.md#get_capability_psu_manufacturing_def_list) | **GET** /api/v1/capability/PsuManufacturingDefs | Read a 'capability.PsuManufacturingDef' resource.
-*CapabilityApi* | [**get_capability_server_schema_descriptor_by_moid**](docs/CapabilityApi.md#get_capability_server_schema_descriptor_by_moid) | **GET** /api/v1/capability/ServerSchemaDescriptors/{Moid} | Read a 'capability.ServerSchemaDescriptor' resource.
-*CapabilityApi* | [**get_capability_server_schema_descriptor_list**](docs/CapabilityApi.md#get_capability_server_schema_descriptor_list) | **GET** /api/v1/capability/ServerSchemaDescriptors | Read a 'capability.ServerSchemaDescriptor' resource.
-*CapabilityApi* | [**get_capability_sioc_module_capability_def_by_moid**](docs/CapabilityApi.md#get_capability_sioc_module_capability_def_by_moid) | **GET** /api/v1/capability/SiocModuleCapabilityDefs/{Moid} | Read a 'capability.SiocModuleCapabilityDef' resource.
-*CapabilityApi* | [**get_capability_sioc_module_capability_def_list**](docs/CapabilityApi.md#get_capability_sioc_module_capability_def_list) | **GET** /api/v1/capability/SiocModuleCapabilityDefs | Read a 'capability.SiocModuleCapabilityDef' resource.
-*CapabilityApi* | [**get_capability_sioc_module_descriptor_by_moid**](docs/CapabilityApi.md#get_capability_sioc_module_descriptor_by_moid) | **GET** /api/v1/capability/SiocModuleDescriptors/{Moid} | Read a 'capability.SiocModuleDescriptor' resource.
-*CapabilityApi* | [**get_capability_sioc_module_descriptor_list**](docs/CapabilityApi.md#get_capability_sioc_module_descriptor_list) | **GET** /api/v1/capability/SiocModuleDescriptors | Read a 'capability.SiocModuleDescriptor' resource.
-*CapabilityApi* | [**get_capability_sioc_module_manufacturing_def_by_moid**](docs/CapabilityApi.md#get_capability_sioc_module_manufacturing_def_by_moid) | **GET** /api/v1/capability/SiocModuleManufacturingDefs/{Moid} | Read a 'capability.SiocModuleManufacturingDef' resource.
-*CapabilityApi* | [**get_capability_sioc_module_manufacturing_def_list**](docs/CapabilityApi.md#get_capability_sioc_module_manufacturing_def_list) | **GET** /api/v1/capability/SiocModuleManufacturingDefs | Read a 'capability.SiocModuleManufacturingDef' resource.
-*CapabilityApi* | [**get_capability_switch_capability_by_moid**](docs/CapabilityApi.md#get_capability_switch_capability_by_moid) | **GET** /api/v1/capability/SwitchCapabilities/{Moid} | Read a 'capability.SwitchCapability' resource.
-*CapabilityApi* | [**get_capability_switch_capability_list**](docs/CapabilityApi.md#get_capability_switch_capability_list) | **GET** /api/v1/capability/SwitchCapabilities | Read a 'capability.SwitchCapability' resource.
-*CapabilityApi* | [**get_capability_switch_descriptor_by_moid**](docs/CapabilityApi.md#get_capability_switch_descriptor_by_moid) | **GET** /api/v1/capability/SwitchDescriptors/{Moid} | Read a 'capability.SwitchDescriptor' resource.
-*CapabilityApi* | [**get_capability_switch_descriptor_list**](docs/CapabilityApi.md#get_capability_switch_descriptor_list) | **GET** /api/v1/capability/SwitchDescriptors | Read a 'capability.SwitchDescriptor' resource.
-*CapabilityApi* | [**get_capability_switch_manufacturing_def_by_moid**](docs/CapabilityApi.md#get_capability_switch_manufacturing_def_by_moid) | **GET** /api/v1/capability/SwitchManufacturingDefs/{Moid} | Read a 'capability.SwitchManufacturingDef' resource.
-*CapabilityApi* | [**get_capability_switch_manufacturing_def_list**](docs/CapabilityApi.md#get_capability_switch_manufacturing_def_list) | **GET** /api/v1/capability/SwitchManufacturingDefs | Read a 'capability.SwitchManufacturingDef' resource.
-*CapabilityApi* | [**patch_capability_adapter_unit_descriptor**](docs/CapabilityApi.md#patch_capability_adapter_unit_descriptor) | **PATCH** /api/v1/capability/AdapterUnitDescriptors/{Moid} | Update a 'capability.AdapterUnitDescriptor' resource.
-*CapabilityApi* | [**patch_capability_catalog**](docs/CapabilityApi.md#patch_capability_catalog) | **PATCH** /api/v1/capability/Catalogs/{Moid} | Update a 'capability.Catalog' resource.
-*CapabilityApi* | [**patch_capability_chassis_descriptor**](docs/CapabilityApi.md#patch_capability_chassis_descriptor) | **PATCH** /api/v1/capability/ChassisDescriptors/{Moid} | Update a 'capability.ChassisDescriptor' resource.
-*CapabilityApi* | [**patch_capability_chassis_manufacturing_def**](docs/CapabilityApi.md#patch_capability_chassis_manufacturing_def) | **PATCH** /api/v1/capability/ChassisManufacturingDefs/{Moid} | Update a 'capability.ChassisManufacturingDef' resource.
-*CapabilityApi* | [**patch_capability_cimc_firmware_descriptor**](docs/CapabilityApi.md#patch_capability_cimc_firmware_descriptor) | **PATCH** /api/v1/capability/CimcFirmwareDescriptors/{Moid} | Update a 'capability.CimcFirmwareDescriptor' resource.
-*CapabilityApi* | [**patch_capability_equipment_physical_def**](docs/CapabilityApi.md#patch_capability_equipment_physical_def) | **PATCH** /api/v1/capability/EquipmentPhysicalDefs/{Moid} | Update a 'capability.EquipmentPhysicalDef' resource.
-*CapabilityApi* | [**patch_capability_equipment_slot_array**](docs/CapabilityApi.md#patch_capability_equipment_slot_array) | **PATCH** /api/v1/capability/EquipmentSlotArrays/{Moid} | Update a 'capability.EquipmentSlotArray' resource.
-*CapabilityApi* | [**patch_capability_fan_module_descriptor**](docs/CapabilityApi.md#patch_capability_fan_module_descriptor) | **PATCH** /api/v1/capability/FanModuleDescriptors/{Moid} | Update a 'capability.FanModuleDescriptor' resource.
-*CapabilityApi* | [**patch_capability_fan_module_manufacturing_def**](docs/CapabilityApi.md#patch_capability_fan_module_manufacturing_def) | **PATCH** /api/v1/capability/FanModuleManufacturingDefs/{Moid} | Update a 'capability.FanModuleManufacturingDef' resource.
-*CapabilityApi* | [**patch_capability_io_card_capability_def**](docs/CapabilityApi.md#patch_capability_io_card_capability_def) | **PATCH** /api/v1/capability/IoCardCapabilityDefs/{Moid} | Update a 'capability.IoCardCapabilityDef' resource.
-*CapabilityApi* | [**patch_capability_io_card_descriptor**](docs/CapabilityApi.md#patch_capability_io_card_descriptor) | **PATCH** /api/v1/capability/IoCardDescriptors/{Moid} | Update a 'capability.IoCardDescriptor' resource.
-*CapabilityApi* | [**patch_capability_io_card_manufacturing_def**](docs/CapabilityApi.md#patch_capability_io_card_manufacturing_def) | **PATCH** /api/v1/capability/IoCardManufacturingDefs/{Moid} | Update a 'capability.IoCardManufacturingDef' resource.
-*CapabilityApi* | [**patch_capability_port_group_aggregation_def**](docs/CapabilityApi.md#patch_capability_port_group_aggregation_def) | **PATCH** /api/v1/capability/PortGroupAggregationDefs/{Moid} | Update a 'capability.PortGroupAggregationDef' resource.
-*CapabilityApi* | [**patch_capability_psu_descriptor**](docs/CapabilityApi.md#patch_capability_psu_descriptor) | **PATCH** /api/v1/capability/PsuDescriptors/{Moid} | Update a 'capability.PsuDescriptor' resource.
-*CapabilityApi* | [**patch_capability_psu_manufacturing_def**](docs/CapabilityApi.md#patch_capability_psu_manufacturing_def) | **PATCH** /api/v1/capability/PsuManufacturingDefs/{Moid} | Update a 'capability.PsuManufacturingDef' resource.
-*CapabilityApi* | [**patch_capability_server_schema_descriptor**](docs/CapabilityApi.md#patch_capability_server_schema_descriptor) | **PATCH** /api/v1/capability/ServerSchemaDescriptors/{Moid} | Update a 'capability.ServerSchemaDescriptor' resource.
-*CapabilityApi* | [**patch_capability_sioc_module_capability_def**](docs/CapabilityApi.md#patch_capability_sioc_module_capability_def) | **PATCH** /api/v1/capability/SiocModuleCapabilityDefs/{Moid} | Update a 'capability.SiocModuleCapabilityDef' resource.
-*CapabilityApi* | [**patch_capability_sioc_module_descriptor**](docs/CapabilityApi.md#patch_capability_sioc_module_descriptor) | **PATCH** /api/v1/capability/SiocModuleDescriptors/{Moid} | Update a 'capability.SiocModuleDescriptor' resource.
-*CapabilityApi* | [**patch_capability_sioc_module_manufacturing_def**](docs/CapabilityApi.md#patch_capability_sioc_module_manufacturing_def) | **PATCH** /api/v1/capability/SiocModuleManufacturingDefs/{Moid} | Update a 'capability.SiocModuleManufacturingDef' resource.
-*CapabilityApi* | [**patch_capability_switch_capability**](docs/CapabilityApi.md#patch_capability_switch_capability) | **PATCH** /api/v1/capability/SwitchCapabilities/{Moid} | Update a 'capability.SwitchCapability' resource.
-*CapabilityApi* | [**patch_capability_switch_descriptor**](docs/CapabilityApi.md#patch_capability_switch_descriptor) | **PATCH** /api/v1/capability/SwitchDescriptors/{Moid} | Update a 'capability.SwitchDescriptor' resource.
-*CapabilityApi* | [**patch_capability_switch_manufacturing_def**](docs/CapabilityApi.md#patch_capability_switch_manufacturing_def) | **PATCH** /api/v1/capability/SwitchManufacturingDefs/{Moid} | Update a 'capability.SwitchManufacturingDef' resource.
-*CapabilityApi* | [**update_capability_adapter_unit_descriptor**](docs/CapabilityApi.md#update_capability_adapter_unit_descriptor) | **POST** /api/v1/capability/AdapterUnitDescriptors/{Moid} | Update a 'capability.AdapterUnitDescriptor' resource.
-*CapabilityApi* | [**update_capability_catalog**](docs/CapabilityApi.md#update_capability_catalog) | **POST** /api/v1/capability/Catalogs/{Moid} | Update a 'capability.Catalog' resource.
-*CapabilityApi* | [**update_capability_chassis_descriptor**](docs/CapabilityApi.md#update_capability_chassis_descriptor) | **POST** /api/v1/capability/ChassisDescriptors/{Moid} | Update a 'capability.ChassisDescriptor' resource.
-*CapabilityApi* | [**update_capability_chassis_manufacturing_def**](docs/CapabilityApi.md#update_capability_chassis_manufacturing_def) | **POST** /api/v1/capability/ChassisManufacturingDefs/{Moid} | Update a 'capability.ChassisManufacturingDef' resource.
-*CapabilityApi* | [**update_capability_cimc_firmware_descriptor**](docs/CapabilityApi.md#update_capability_cimc_firmware_descriptor) | **POST** /api/v1/capability/CimcFirmwareDescriptors/{Moid} | Update a 'capability.CimcFirmwareDescriptor' resource.
-*CapabilityApi* | [**update_capability_equipment_physical_def**](docs/CapabilityApi.md#update_capability_equipment_physical_def) | **POST** /api/v1/capability/EquipmentPhysicalDefs/{Moid} | Update a 'capability.EquipmentPhysicalDef' resource.
-*CapabilityApi* | [**update_capability_equipment_slot_array**](docs/CapabilityApi.md#update_capability_equipment_slot_array) | **POST** /api/v1/capability/EquipmentSlotArrays/{Moid} | Update a 'capability.EquipmentSlotArray' resource.
-*CapabilityApi* | [**update_capability_fan_module_descriptor**](docs/CapabilityApi.md#update_capability_fan_module_descriptor) | **POST** /api/v1/capability/FanModuleDescriptors/{Moid} | Update a 'capability.FanModuleDescriptor' resource.
-*CapabilityApi* | [**update_capability_fan_module_manufacturing_def**](docs/CapabilityApi.md#update_capability_fan_module_manufacturing_def) | **POST** /api/v1/capability/FanModuleManufacturingDefs/{Moid} | Update a 'capability.FanModuleManufacturingDef' resource.
-*CapabilityApi* | [**update_capability_io_card_capability_def**](docs/CapabilityApi.md#update_capability_io_card_capability_def) | **POST** /api/v1/capability/IoCardCapabilityDefs/{Moid} | Update a 'capability.IoCardCapabilityDef' resource.
-*CapabilityApi* | [**update_capability_io_card_descriptor**](docs/CapabilityApi.md#update_capability_io_card_descriptor) | **POST** /api/v1/capability/IoCardDescriptors/{Moid} | Update a 'capability.IoCardDescriptor' resource.
-*CapabilityApi* | [**update_capability_io_card_manufacturing_def**](docs/CapabilityApi.md#update_capability_io_card_manufacturing_def) | **POST** /api/v1/capability/IoCardManufacturingDefs/{Moid} | Update a 'capability.IoCardManufacturingDef' resource.
-*CapabilityApi* | [**update_capability_port_group_aggregation_def**](docs/CapabilityApi.md#update_capability_port_group_aggregation_def) | **POST** /api/v1/capability/PortGroupAggregationDefs/{Moid} | Update a 'capability.PortGroupAggregationDef' resource.
-*CapabilityApi* | [**update_capability_psu_descriptor**](docs/CapabilityApi.md#update_capability_psu_descriptor) | **POST** /api/v1/capability/PsuDescriptors/{Moid} | Update a 'capability.PsuDescriptor' resource.
-*CapabilityApi* | [**update_capability_psu_manufacturing_def**](docs/CapabilityApi.md#update_capability_psu_manufacturing_def) | **POST** /api/v1/capability/PsuManufacturingDefs/{Moid} | Update a 'capability.PsuManufacturingDef' resource.
-*CapabilityApi* | [**update_capability_server_schema_descriptor**](docs/CapabilityApi.md#update_capability_server_schema_descriptor) | **POST** /api/v1/capability/ServerSchemaDescriptors/{Moid} | Update a 'capability.ServerSchemaDescriptor' resource.
-*CapabilityApi* | [**update_capability_sioc_module_capability_def**](docs/CapabilityApi.md#update_capability_sioc_module_capability_def) | **POST** /api/v1/capability/SiocModuleCapabilityDefs/{Moid} | Update a 'capability.SiocModuleCapabilityDef' resource.
-*CapabilityApi* | [**update_capability_sioc_module_descriptor**](docs/CapabilityApi.md#update_capability_sioc_module_descriptor) | **POST** /api/v1/capability/SiocModuleDescriptors/{Moid} | Update a 'capability.SiocModuleDescriptor' resource.
-*CapabilityApi* | [**update_capability_sioc_module_manufacturing_def**](docs/CapabilityApi.md#update_capability_sioc_module_manufacturing_def) | **POST** /api/v1/capability/SiocModuleManufacturingDefs/{Moid} | Update a 'capability.SiocModuleManufacturingDef' resource.
-*CapabilityApi* | [**update_capability_switch_capability**](docs/CapabilityApi.md#update_capability_switch_capability) | **POST** /api/v1/capability/SwitchCapabilities/{Moid} | Update a 'capability.SwitchCapability' resource.
-*CapabilityApi* | [**update_capability_switch_descriptor**](docs/CapabilityApi.md#update_capability_switch_descriptor) | **POST** /api/v1/capability/SwitchDescriptors/{Moid} | Update a 'capability.SwitchDescriptor' resource.
-*CapabilityApi* | [**update_capability_switch_manufacturing_def**](docs/CapabilityApi.md#update_capability_switch_manufacturing_def) | **POST** /api/v1/capability/SwitchManufacturingDefs/{Moid} | Update a 'capability.SwitchManufacturingDef' resource.
-*CertificatemanagementApi* | [**create_certificatemanagement_policy**](docs/CertificatemanagementApi.md#create_certificatemanagement_policy) | **POST** /api/v1/certificatemanagement/Policies | Create a 'certificatemanagement.Policy' resource.
-*CertificatemanagementApi* | [**delete_certificatemanagement_policy**](docs/CertificatemanagementApi.md#delete_certificatemanagement_policy) | **DELETE** /api/v1/certificatemanagement/Policies/{Moid} | Delete a 'certificatemanagement.Policy' resource.
-*CertificatemanagementApi* | [**get_certificatemanagement_policy_by_moid**](docs/CertificatemanagementApi.md#get_certificatemanagement_policy_by_moid) | **GET** /api/v1/certificatemanagement/Policies/{Moid} | Read a 'certificatemanagement.Policy' resource.
-*CertificatemanagementApi* | [**get_certificatemanagement_policy_list**](docs/CertificatemanagementApi.md#get_certificatemanagement_policy_list) | **GET** /api/v1/certificatemanagement/Policies | Read a 'certificatemanagement.Policy' resource.
-*CertificatemanagementApi* | [**patch_certificatemanagement_policy**](docs/CertificatemanagementApi.md#patch_certificatemanagement_policy) | **PATCH** /api/v1/certificatemanagement/Policies/{Moid} | Update a 'certificatemanagement.Policy' resource.
-*CertificatemanagementApi* | [**update_certificatemanagement_policy**](docs/CertificatemanagementApi.md#update_certificatemanagement_policy) | **POST** /api/v1/certificatemanagement/Policies/{Moid} | Update a 'certificatemanagement.Policy' resource.
-*ChassisApi* | [**create_chassis_config_import**](docs/ChassisApi.md#create_chassis_config_import) | **POST** /api/v1/chassis/ConfigImports | Create a 'chassis.ConfigImport' resource.
-*ChassisApi* | [**create_chassis_profile**](docs/ChassisApi.md#create_chassis_profile) | **POST** /api/v1/chassis/Profiles | Create a 'chassis.Profile' resource.
-*ChassisApi* | [**delete_chassis_profile**](docs/ChassisApi.md#delete_chassis_profile) | **DELETE** /api/v1/chassis/Profiles/{Moid} | Delete a 'chassis.Profile' resource.
-*ChassisApi* | [**get_chassis_config_change_detail_by_moid**](docs/ChassisApi.md#get_chassis_config_change_detail_by_moid) | **GET** /api/v1/chassis/ConfigChangeDetails/{Moid} | Read a 'chassis.ConfigChangeDetail' resource.
-*ChassisApi* | [**get_chassis_config_change_detail_list**](docs/ChassisApi.md#get_chassis_config_change_detail_list) | **GET** /api/v1/chassis/ConfigChangeDetails | Read a 'chassis.ConfigChangeDetail' resource.
-*ChassisApi* | [**get_chassis_config_import_by_moid**](docs/ChassisApi.md#get_chassis_config_import_by_moid) | **GET** /api/v1/chassis/ConfigImports/{Moid} | Read a 'chassis.ConfigImport' resource.
-*ChassisApi* | [**get_chassis_config_import_list**](docs/ChassisApi.md#get_chassis_config_import_list) | **GET** /api/v1/chassis/ConfigImports | Read a 'chassis.ConfigImport' resource.
-*ChassisApi* | [**get_chassis_config_result_by_moid**](docs/ChassisApi.md#get_chassis_config_result_by_moid) | **GET** /api/v1/chassis/ConfigResults/{Moid} | Read a 'chassis.ConfigResult' resource.
-*ChassisApi* | [**get_chassis_config_result_entry_by_moid**](docs/ChassisApi.md#get_chassis_config_result_entry_by_moid) | **GET** /api/v1/chassis/ConfigResultEntries/{Moid} | Read a 'chassis.ConfigResultEntry' resource.
-*ChassisApi* | [**get_chassis_config_result_entry_list**](docs/ChassisApi.md#get_chassis_config_result_entry_list) | **GET** /api/v1/chassis/ConfigResultEntries | Read a 'chassis.ConfigResultEntry' resource.
-*ChassisApi* | [**get_chassis_config_result_list**](docs/ChassisApi.md#get_chassis_config_result_list) | **GET** /api/v1/chassis/ConfigResults | Read a 'chassis.ConfigResult' resource.
-*ChassisApi* | [**get_chassis_iom_profile_by_moid**](docs/ChassisApi.md#get_chassis_iom_profile_by_moid) | **GET** /api/v1/chassis/IomProfiles/{Moid} | Read a 'chassis.IomProfile' resource.
-*ChassisApi* | [**get_chassis_iom_profile_list**](docs/ChassisApi.md#get_chassis_iom_profile_list) | **GET** /api/v1/chassis/IomProfiles | Read a 'chassis.IomProfile' resource.
-*ChassisApi* | [**get_chassis_profile_by_moid**](docs/ChassisApi.md#get_chassis_profile_by_moid) | **GET** /api/v1/chassis/Profiles/{Moid} | Read a 'chassis.Profile' resource.
-*ChassisApi* | [**get_chassis_profile_list**](docs/ChassisApi.md#get_chassis_profile_list) | **GET** /api/v1/chassis/Profiles | Read a 'chassis.Profile' resource.
-*ChassisApi* | [**patch_chassis_profile**](docs/ChassisApi.md#patch_chassis_profile) | **PATCH** /api/v1/chassis/Profiles/{Moid} | Update a 'chassis.Profile' resource.
-*ChassisApi* | [**update_chassis_profile**](docs/ChassisApi.md#update_chassis_profile) | **POST** /api/v1/chassis/Profiles/{Moid} | Update a 'chassis.Profile' resource.
-*CloudApi* | [**create_cloud_collect_inventory**](docs/CloudApi.md#create_cloud_collect_inventory) | **POST** /api/v1/cloud/CollectInventories | Create a 'cloud.CollectInventory' resource.
-*CloudApi* | [**get_cloud_aws_billing_unit_by_moid**](docs/CloudApi.md#get_cloud_aws_billing_unit_by_moid) | **GET** /api/v1/cloud/AwsBillingUnits/{Moid} | Read a 'cloud.AwsBillingUnit' resource.
-*CloudApi* | [**get_cloud_aws_billing_unit_list**](docs/CloudApi.md#get_cloud_aws_billing_unit_list) | **GET** /api/v1/cloud/AwsBillingUnits | Read a 'cloud.AwsBillingUnit' resource.
-*CloudApi* | [**get_cloud_aws_key_pair_by_moid**](docs/CloudApi.md#get_cloud_aws_key_pair_by_moid) | **GET** /api/v1/cloud/AwsKeyPairs/{Moid} | Read a 'cloud.AwsKeyPair' resource.
-*CloudApi* | [**get_cloud_aws_key_pair_list**](docs/CloudApi.md#get_cloud_aws_key_pair_list) | **GET** /api/v1/cloud/AwsKeyPairs | Read a 'cloud.AwsKeyPair' resource.
-*CloudApi* | [**get_cloud_aws_network_interface_by_moid**](docs/CloudApi.md#get_cloud_aws_network_interface_by_moid) | **GET** /api/v1/cloud/AwsNetworkInterfaces/{Moid} | Read a 'cloud.AwsNetworkInterface' resource.
-*CloudApi* | [**get_cloud_aws_network_interface_list**](docs/CloudApi.md#get_cloud_aws_network_interface_list) | **GET** /api/v1/cloud/AwsNetworkInterfaces | Read a 'cloud.AwsNetworkInterface' resource.
-*CloudApi* | [**get_cloud_aws_organizational_unit_by_moid**](docs/CloudApi.md#get_cloud_aws_organizational_unit_by_moid) | **GET** /api/v1/cloud/AwsOrganizationalUnits/{Moid} | Read a 'cloud.AwsOrganizationalUnit' resource.
-*CloudApi* | [**get_cloud_aws_organizational_unit_list**](docs/CloudApi.md#get_cloud_aws_organizational_unit_list) | **GET** /api/v1/cloud/AwsOrganizationalUnits | Read a 'cloud.AwsOrganizationalUnit' resource.
-*CloudApi* | [**get_cloud_aws_security_group_by_moid**](docs/CloudApi.md#get_cloud_aws_security_group_by_moid) | **GET** /api/v1/cloud/AwsSecurityGroups/{Moid} | Read a 'cloud.AwsSecurityGroup' resource.
-*CloudApi* | [**get_cloud_aws_security_group_list**](docs/CloudApi.md#get_cloud_aws_security_group_list) | **GET** /api/v1/cloud/AwsSecurityGroups | Read a 'cloud.AwsSecurityGroup' resource.
-*CloudApi* | [**get_cloud_aws_subnet_by_moid**](docs/CloudApi.md#get_cloud_aws_subnet_by_moid) | **GET** /api/v1/cloud/AwsSubnets/{Moid} | Read a 'cloud.AwsSubnet' resource.
-*CloudApi* | [**get_cloud_aws_subnet_list**](docs/CloudApi.md#get_cloud_aws_subnet_list) | **GET** /api/v1/cloud/AwsSubnets | Read a 'cloud.AwsSubnet' resource.
-*CloudApi* | [**get_cloud_aws_virtual_machine_by_moid**](docs/CloudApi.md#get_cloud_aws_virtual_machine_by_moid) | **GET** /api/v1/cloud/AwsVirtualMachines/{Moid} | Read a 'cloud.AwsVirtualMachine' resource.
-*CloudApi* | [**get_cloud_aws_virtual_machine_list**](docs/CloudApi.md#get_cloud_aws_virtual_machine_list) | **GET** /api/v1/cloud/AwsVirtualMachines | Read a 'cloud.AwsVirtualMachine' resource.
-*CloudApi* | [**get_cloud_aws_volume_by_moid**](docs/CloudApi.md#get_cloud_aws_volume_by_moid) | **GET** /api/v1/cloud/AwsVolumes/{Moid} | Read a 'cloud.AwsVolume' resource.
-*CloudApi* | [**get_cloud_aws_volume_list**](docs/CloudApi.md#get_cloud_aws_volume_list) | **GET** /api/v1/cloud/AwsVolumes | Read a 'cloud.AwsVolume' resource.
-*CloudApi* | [**get_cloud_aws_vpc_by_moid**](docs/CloudApi.md#get_cloud_aws_vpc_by_moid) | **GET** /api/v1/cloud/AwsVpcs/{Moid} | Read a 'cloud.AwsVpc' resource.
-*CloudApi* | [**get_cloud_aws_vpc_list**](docs/CloudApi.md#get_cloud_aws_vpc_list) | **GET** /api/v1/cloud/AwsVpcs | Read a 'cloud.AwsVpc' resource.
-*CloudApi* | [**get_cloud_regions_by_moid**](docs/CloudApi.md#get_cloud_regions_by_moid) | **GET** /api/v1/cloud/Regions/{Moid} | Read a 'cloud.Regions' resource.
-*CloudApi* | [**get_cloud_regions_list**](docs/CloudApi.md#get_cloud_regions_list) | **GET** /api/v1/cloud/Regions | Read a 'cloud.Regions' resource.
-*CloudApi* | [**get_cloud_sku_container_type_by_moid**](docs/CloudApi.md#get_cloud_sku_container_type_by_moid) | **GET** /api/v1/cloud/SkuContainerTypes/{Moid} | Read a 'cloud.SkuContainerType' resource.
-*CloudApi* | [**get_cloud_sku_container_type_list**](docs/CloudApi.md#get_cloud_sku_container_type_list) | **GET** /api/v1/cloud/SkuContainerTypes | Read a 'cloud.SkuContainerType' resource.
-*CloudApi* | [**get_cloud_sku_database_type_by_moid**](docs/CloudApi.md#get_cloud_sku_database_type_by_moid) | **GET** /api/v1/cloud/SkuDatabaseTypes/{Moid} | Read a 'cloud.SkuDatabaseType' resource.
-*CloudApi* | [**get_cloud_sku_database_type_list**](docs/CloudApi.md#get_cloud_sku_database_type_list) | **GET** /api/v1/cloud/SkuDatabaseTypes | Read a 'cloud.SkuDatabaseType' resource.
-*CloudApi* | [**get_cloud_sku_instance_type_by_moid**](docs/CloudApi.md#get_cloud_sku_instance_type_by_moid) | **GET** /api/v1/cloud/SkuInstanceTypes/{Moid} | Read a 'cloud.SkuInstanceType' resource.
-*CloudApi* | [**get_cloud_sku_instance_type_list**](docs/CloudApi.md#get_cloud_sku_instance_type_list) | **GET** /api/v1/cloud/SkuInstanceTypes | Read a 'cloud.SkuInstanceType' resource.
-*CloudApi* | [**get_cloud_sku_network_type_by_moid**](docs/CloudApi.md#get_cloud_sku_network_type_by_moid) | **GET** /api/v1/cloud/SkuNetworkTypes/{Moid} | Read a 'cloud.SkuNetworkType' resource.
-*CloudApi* | [**get_cloud_sku_network_type_list**](docs/CloudApi.md#get_cloud_sku_network_type_list) | **GET** /api/v1/cloud/SkuNetworkTypes | Read a 'cloud.SkuNetworkType' resource.
-*CloudApi* | [**get_cloud_sku_volume_type_by_moid**](docs/CloudApi.md#get_cloud_sku_volume_type_by_moid) | **GET** /api/v1/cloud/SkuVolumeTypes/{Moid} | Read a 'cloud.SkuVolumeType' resource.
-*CloudApi* | [**get_cloud_sku_volume_type_list**](docs/CloudApi.md#get_cloud_sku_volume_type_list) | **GET** /api/v1/cloud/SkuVolumeTypes | Read a 'cloud.SkuVolumeType' resource.
-*CloudApi* | [**get_cloud_tfc_agentpool_by_moid**](docs/CloudApi.md#get_cloud_tfc_agentpool_by_moid) | **GET** /api/v1/cloud/TfcAgentpools/{Moid} | Read a 'cloud.TfcAgentpool' resource.
-*CloudApi* | [**get_cloud_tfc_agentpool_list**](docs/CloudApi.md#get_cloud_tfc_agentpool_list) | **GET** /api/v1/cloud/TfcAgentpools | Read a 'cloud.TfcAgentpool' resource.
-*CloudApi* | [**get_cloud_tfc_organization_by_moid**](docs/CloudApi.md#get_cloud_tfc_organization_by_moid) | **GET** /api/v1/cloud/TfcOrganizations/{Moid} | Read a 'cloud.TfcOrganization' resource.
-*CloudApi* | [**get_cloud_tfc_organization_list**](docs/CloudApi.md#get_cloud_tfc_organization_list) | **GET** /api/v1/cloud/TfcOrganizations | Read a 'cloud.TfcOrganization' resource.
-*CloudApi* | [**get_cloud_tfc_workspace_by_moid**](docs/CloudApi.md#get_cloud_tfc_workspace_by_moid) | **GET** /api/v1/cloud/TfcWorkspaces/{Moid} | Read a 'cloud.TfcWorkspace' resource.
-*CloudApi* | [**get_cloud_tfc_workspace_list**](docs/CloudApi.md#get_cloud_tfc_workspace_list) | **GET** /api/v1/cloud/TfcWorkspaces | Read a 'cloud.TfcWorkspace' resource.
-*CloudApi* | [**patch_cloud_regions**](docs/CloudApi.md#patch_cloud_regions) | **PATCH** /api/v1/cloud/Regions/{Moid} | Update a 'cloud.Regions' resource.
-*CloudApi* | [**update_cloud_regions**](docs/CloudApi.md#update_cloud_regions) | **POST** /api/v1/cloud/Regions/{Moid} | Update a 'cloud.Regions' resource.
-*CommApi* | [**create_comm_http_proxy_policy**](docs/CommApi.md#create_comm_http_proxy_policy) | **POST** /api/v1/comm/HttpProxyPolicies | Create a 'comm.HttpProxyPolicy' resource.
-*CommApi* | [**delete_comm_http_proxy_policy**](docs/CommApi.md#delete_comm_http_proxy_policy) | **DELETE** /api/v1/comm/HttpProxyPolicies/{Moid} | Delete a 'comm.HttpProxyPolicy' resource.
-*CommApi* | [**get_comm_http_proxy_policy_by_moid**](docs/CommApi.md#get_comm_http_proxy_policy_by_moid) | **GET** /api/v1/comm/HttpProxyPolicies/{Moid} | Read a 'comm.HttpProxyPolicy' resource.
-*CommApi* | [**get_comm_http_proxy_policy_list**](docs/CommApi.md#get_comm_http_proxy_policy_list) | **GET** /api/v1/comm/HttpProxyPolicies | Read a 'comm.HttpProxyPolicy' resource.
-*CommApi* | [**patch_comm_http_proxy_policy**](docs/CommApi.md#patch_comm_http_proxy_policy) | **PATCH** /api/v1/comm/HttpProxyPolicies/{Moid} | Update a 'comm.HttpProxyPolicy' resource.
-*CommApi* | [**update_comm_http_proxy_policy**](docs/CommApi.md#update_comm_http_proxy_policy) | **POST** /api/v1/comm/HttpProxyPolicies/{Moid} | Update a 'comm.HttpProxyPolicy' resource.
-*ComputeApi* | [**delete_compute_blade_identity**](docs/ComputeApi.md#delete_compute_blade_identity) | **DELETE** /api/v1/compute/BladeIdentities/{Moid} | Delete a 'compute.BladeIdentity' resource.
-*ComputeApi* | [**delete_compute_rack_unit_identity**](docs/ComputeApi.md#delete_compute_rack_unit_identity) | **DELETE** /api/v1/compute/RackUnitIdentities/{Moid} | Delete a 'compute.RackUnitIdentity' resource.
-*ComputeApi* | [**get_compute_blade_by_moid**](docs/ComputeApi.md#get_compute_blade_by_moid) | **GET** /api/v1/compute/Blades/{Moid} | Read a 'compute.Blade' resource.
-*ComputeApi* | [**get_compute_blade_identity_by_moid**](docs/ComputeApi.md#get_compute_blade_identity_by_moid) | **GET** /api/v1/compute/BladeIdentities/{Moid} | Read a 'compute.BladeIdentity' resource.
-*ComputeApi* | [**get_compute_blade_identity_list**](docs/ComputeApi.md#get_compute_blade_identity_list) | **GET** /api/v1/compute/BladeIdentities | Read a 'compute.BladeIdentity' resource.
-*ComputeApi* | [**get_compute_blade_list**](docs/ComputeApi.md#get_compute_blade_list) | **GET** /api/v1/compute/Blades | Read a 'compute.Blade' resource.
-*ComputeApi* | [**get_compute_board_by_moid**](docs/ComputeApi.md#get_compute_board_by_moid) | **GET** /api/v1/compute/Boards/{Moid} | Read a 'compute.Board' resource.
-*ComputeApi* | [**get_compute_board_list**](docs/ComputeApi.md#get_compute_board_list) | **GET** /api/v1/compute/Boards | Read a 'compute.Board' resource.
-*ComputeApi* | [**get_compute_mapping_by_moid**](docs/ComputeApi.md#get_compute_mapping_by_moid) | **GET** /api/v1/compute/Mappings/{Moid} | Read a 'compute.Mapping' resource.
-*ComputeApi* | [**get_compute_mapping_list**](docs/ComputeApi.md#get_compute_mapping_list) | **GET** /api/v1/compute/Mappings | Read a 'compute.Mapping' resource.
-*ComputeApi* | [**get_compute_physical_summary_by_moid**](docs/ComputeApi.md#get_compute_physical_summary_by_moid) | **GET** /api/v1/compute/PhysicalSummaries/{Moid} | Read a 'compute.PhysicalSummary' resource.
-*ComputeApi* | [**get_compute_physical_summary_list**](docs/ComputeApi.md#get_compute_physical_summary_list) | **GET** /api/v1/compute/PhysicalSummaries | Read a 'compute.PhysicalSummary' resource.
-*ComputeApi* | [**get_compute_rack_unit_by_moid**](docs/ComputeApi.md#get_compute_rack_unit_by_moid) | **GET** /api/v1/compute/RackUnits/{Moid} | Read a 'compute.RackUnit' resource.
-*ComputeApi* | [**get_compute_rack_unit_identity_by_moid**](docs/ComputeApi.md#get_compute_rack_unit_identity_by_moid) | **GET** /api/v1/compute/RackUnitIdentities/{Moid} | Read a 'compute.RackUnitIdentity' resource.
-*ComputeApi* | [**get_compute_rack_unit_identity_list**](docs/ComputeApi.md#get_compute_rack_unit_identity_list) | **GET** /api/v1/compute/RackUnitIdentities | Read a 'compute.RackUnitIdentity' resource.
-*ComputeApi* | [**get_compute_rack_unit_list**](docs/ComputeApi.md#get_compute_rack_unit_list) | **GET** /api/v1/compute/RackUnits | Read a 'compute.RackUnit' resource.
-*ComputeApi* | [**get_compute_server_setting_by_moid**](docs/ComputeApi.md#get_compute_server_setting_by_moid) | **GET** /api/v1/compute/ServerSettings/{Moid} | Read a 'compute.ServerSetting' resource.
-*ComputeApi* | [**get_compute_server_setting_list**](docs/ComputeApi.md#get_compute_server_setting_list) | **GET** /api/v1/compute/ServerSettings | Read a 'compute.ServerSetting' resource.
-*ComputeApi* | [**get_compute_vmedia_by_moid**](docs/ComputeApi.md#get_compute_vmedia_by_moid) | **GET** /api/v1/compute/Vmedia/{Moid} | Read a 'compute.Vmedia' resource.
-*ComputeApi* | [**get_compute_vmedia_list**](docs/ComputeApi.md#get_compute_vmedia_list) | **GET** /api/v1/compute/Vmedia | Read a 'compute.Vmedia' resource.
-*ComputeApi* | [**patch_compute_blade**](docs/ComputeApi.md#patch_compute_blade) | **PATCH** /api/v1/compute/Blades/{Moid} | Update a 'compute.Blade' resource.
-*ComputeApi* | [**patch_compute_blade_identity**](docs/ComputeApi.md#patch_compute_blade_identity) | **PATCH** /api/v1/compute/BladeIdentities/{Moid} | Update a 'compute.BladeIdentity' resource.
-*ComputeApi* | [**patch_compute_board**](docs/ComputeApi.md#patch_compute_board) | **PATCH** /api/v1/compute/Boards/{Moid} | Update a 'compute.Board' resource.
-*ComputeApi* | [**patch_compute_mapping**](docs/ComputeApi.md#patch_compute_mapping) | **PATCH** /api/v1/compute/Mappings/{Moid} | Update a 'compute.Mapping' resource.
-*ComputeApi* | [**patch_compute_rack_unit**](docs/ComputeApi.md#patch_compute_rack_unit) | **PATCH** /api/v1/compute/RackUnits/{Moid} | Update a 'compute.RackUnit' resource.
-*ComputeApi* | [**patch_compute_rack_unit_identity**](docs/ComputeApi.md#patch_compute_rack_unit_identity) | **PATCH** /api/v1/compute/RackUnitIdentities/{Moid} | Update a 'compute.RackUnitIdentity' resource.
-*ComputeApi* | [**patch_compute_server_setting**](docs/ComputeApi.md#patch_compute_server_setting) | **PATCH** /api/v1/compute/ServerSettings/{Moid} | Update a 'compute.ServerSetting' resource.
-*ComputeApi* | [**update_compute_blade**](docs/ComputeApi.md#update_compute_blade) | **POST** /api/v1/compute/Blades/{Moid} | Update a 'compute.Blade' resource.
-*ComputeApi* | [**update_compute_blade_identity**](docs/ComputeApi.md#update_compute_blade_identity) | **POST** /api/v1/compute/BladeIdentities/{Moid} | Update a 'compute.BladeIdentity' resource.
-*ComputeApi* | [**update_compute_board**](docs/ComputeApi.md#update_compute_board) | **POST** /api/v1/compute/Boards/{Moid} | Update a 'compute.Board' resource.
-*ComputeApi* | [**update_compute_mapping**](docs/ComputeApi.md#update_compute_mapping) | **POST** /api/v1/compute/Mappings/{Moid} | Update a 'compute.Mapping' resource.
-*ComputeApi* | [**update_compute_rack_unit**](docs/ComputeApi.md#update_compute_rack_unit) | **POST** /api/v1/compute/RackUnits/{Moid} | Update a 'compute.RackUnit' resource.
-*ComputeApi* | [**update_compute_rack_unit_identity**](docs/ComputeApi.md#update_compute_rack_unit_identity) | **POST** /api/v1/compute/RackUnitIdentities/{Moid} | Update a 'compute.RackUnitIdentity' resource.
-*ComputeApi* | [**update_compute_server_setting**](docs/ComputeApi.md#update_compute_server_setting) | **POST** /api/v1/compute/ServerSettings/{Moid} | Update a 'compute.ServerSetting' resource.
-*CondApi* | [**get_cond_alarm_aggregation_by_moid**](docs/CondApi.md#get_cond_alarm_aggregation_by_moid) | **GET** /api/v1/cond/AlarmAggregations/{Moid} | Read a 'cond.AlarmAggregation' resource.
-*CondApi* | [**get_cond_alarm_aggregation_list**](docs/CondApi.md#get_cond_alarm_aggregation_list) | **GET** /api/v1/cond/AlarmAggregations | Read a 'cond.AlarmAggregation' resource.
-*CondApi* | [**get_cond_alarm_by_moid**](docs/CondApi.md#get_cond_alarm_by_moid) | **GET** /api/v1/cond/Alarms/{Moid} | Read a 'cond.Alarm' resource.
-*CondApi* | [**get_cond_alarm_list**](docs/CondApi.md#get_cond_alarm_list) | **GET** /api/v1/cond/Alarms | Read a 'cond.Alarm' resource.
-*CondApi* | [**get_cond_hcl_status_by_moid**](docs/CondApi.md#get_cond_hcl_status_by_moid) | **GET** /api/v1/cond/HclStatuses/{Moid} | Read a 'cond.HclStatus' resource.
-*CondApi* | [**get_cond_hcl_status_detail_by_moid**](docs/CondApi.md#get_cond_hcl_status_detail_by_moid) | **GET** /api/v1/cond/HclStatusDetails/{Moid} | Read a 'cond.HclStatusDetail' resource.
-*CondApi* | [**get_cond_hcl_status_detail_list**](docs/CondApi.md#get_cond_hcl_status_detail_list) | **GET** /api/v1/cond/HclStatusDetails | Read a 'cond.HclStatusDetail' resource.
-*CondApi* | [**get_cond_hcl_status_job_by_moid**](docs/CondApi.md#get_cond_hcl_status_job_by_moid) | **GET** /api/v1/cond/HclStatusJobs/{Moid} | Read a 'cond.HclStatusJob' resource.
-*CondApi* | [**get_cond_hcl_status_job_list**](docs/CondApi.md#get_cond_hcl_status_job_list) | **GET** /api/v1/cond/HclStatusJobs | Read a 'cond.HclStatusJob' resource.
-*CondApi* | [**get_cond_hcl_status_list**](docs/CondApi.md#get_cond_hcl_status_list) | **GET** /api/v1/cond/HclStatuses | Read a 'cond.HclStatus' resource.
-*CondApi* | [**patch_cond_alarm**](docs/CondApi.md#patch_cond_alarm) | **PATCH** /api/v1/cond/Alarms/{Moid} | Update a 'cond.Alarm' resource.
-*CondApi* | [**update_cond_alarm**](docs/CondApi.md#update_cond_alarm) | **POST** /api/v1/cond/Alarms/{Moid} | Update a 'cond.Alarm' resource.
-*ConfigApi* | [**create_config_exporter**](docs/ConfigApi.md#create_config_exporter) | **POST** /api/v1/config/Exporters | Create a 'config.Exporter' resource.
-*ConfigApi* | [**create_config_importer**](docs/ConfigApi.md#create_config_importer) | **POST** /api/v1/config/Importers | Create a 'config.Importer' resource.
-*ConfigApi* | [**delete_config_exporter**](docs/ConfigApi.md#delete_config_exporter) | **DELETE** /api/v1/config/Exporters/{Moid} | Delete a 'config.Exporter' resource.
-*ConfigApi* | [**delete_config_importer**](docs/ConfigApi.md#delete_config_importer) | **DELETE** /api/v1/config/Importers/{Moid} | Delete a 'config.Importer' resource.
-*ConfigApi* | [**get_config_exported_item_by_moid**](docs/ConfigApi.md#get_config_exported_item_by_moid) | **GET** /api/v1/config/ExportedItems/{Moid} | Read a 'config.ExportedItem' resource.
-*ConfigApi* | [**get_config_exported_item_list**](docs/ConfigApi.md#get_config_exported_item_list) | **GET** /api/v1/config/ExportedItems | Read a 'config.ExportedItem' resource.
-*ConfigApi* | [**get_config_exporter_by_moid**](docs/ConfigApi.md#get_config_exporter_by_moid) | **GET** /api/v1/config/Exporters/{Moid} | Read a 'config.Exporter' resource.
-*ConfigApi* | [**get_config_exporter_list**](docs/ConfigApi.md#get_config_exporter_list) | **GET** /api/v1/config/Exporters | Read a 'config.Exporter' resource.
-*ConfigApi* | [**get_config_imported_item_by_moid**](docs/ConfigApi.md#get_config_imported_item_by_moid) | **GET** /api/v1/config/ImportedItems/{Moid} | Read a 'config.ImportedItem' resource.
-*ConfigApi* | [**get_config_imported_item_list**](docs/ConfigApi.md#get_config_imported_item_list) | **GET** /api/v1/config/ImportedItems | Read a 'config.ImportedItem' resource.
-*ConfigApi* | [**get_config_importer_by_moid**](docs/ConfigApi.md#get_config_importer_by_moid) | **GET** /api/v1/config/Importers/{Moid} | Read a 'config.Importer' resource.
-*ConfigApi* | [**get_config_importer_list**](docs/ConfigApi.md#get_config_importer_list) | **GET** /api/v1/config/Importers | Read a 'config.Importer' resource.
-*ConnectorpackApi* | [**create_connectorpack_connector_pack_upgrade**](docs/ConnectorpackApi.md#create_connectorpack_connector_pack_upgrade) | **POST** /api/v1/connectorpack/ConnectorPackUpgrades | Create a 'connectorpack.ConnectorPackUpgrade' resource.
-*ConnectorpackApi* | [**delete_connectorpack_connector_pack_upgrade**](docs/ConnectorpackApi.md#delete_connectorpack_connector_pack_upgrade) | **DELETE** /api/v1/connectorpack/ConnectorPackUpgrades/{Moid} | Delete a 'connectorpack.ConnectorPackUpgrade' resource.
-*ConnectorpackApi* | [**get_connectorpack_connector_pack_upgrade_by_moid**](docs/ConnectorpackApi.md#get_connectorpack_connector_pack_upgrade_by_moid) | **GET** /api/v1/connectorpack/ConnectorPackUpgrades/{Moid} | Read a 'connectorpack.ConnectorPackUpgrade' resource.
-*ConnectorpackApi* | [**get_connectorpack_connector_pack_upgrade_list**](docs/ConnectorpackApi.md#get_connectorpack_connector_pack_upgrade_list) | **GET** /api/v1/connectorpack/ConnectorPackUpgrades | Read a 'connectorpack.ConnectorPackUpgrade' resource.
-*ConnectorpackApi* | [**get_connectorpack_upgrade_impact_by_moid**](docs/ConnectorpackApi.md#get_connectorpack_upgrade_impact_by_moid) | **GET** /api/v1/connectorpack/UpgradeImpacts/{Moid} | Read a 'connectorpack.UpgradeImpact' resource.
-*ConnectorpackApi* | [**get_connectorpack_upgrade_impact_list**](docs/ConnectorpackApi.md#get_connectorpack_upgrade_impact_list) | **GET** /api/v1/connectorpack/UpgradeImpacts | Read a 'connectorpack.UpgradeImpact' resource.
-*CrdApi* | [**create_crd_custom_resource**](docs/CrdApi.md#create_crd_custom_resource) | **POST** /api/v1/crd/CustomResources | Create a 'crd.CustomResource' resource.
-*CrdApi* | [**delete_crd_custom_resource**](docs/CrdApi.md#delete_crd_custom_resource) | **DELETE** /api/v1/crd/CustomResources/{Moid} | Delete a 'crd.CustomResource' resource.
-*CrdApi* | [**get_crd_custom_resource_by_moid**](docs/CrdApi.md#get_crd_custom_resource_by_moid) | **GET** /api/v1/crd/CustomResources/{Moid} | Read a 'crd.CustomResource' resource.
-*CrdApi* | [**get_crd_custom_resource_list**](docs/CrdApi.md#get_crd_custom_resource_list) | **GET** /api/v1/crd/CustomResources | Read a 'crd.CustomResource' resource.
-*CrdApi* | [**patch_crd_custom_resource**](docs/CrdApi.md#patch_crd_custom_resource) | **PATCH** /api/v1/crd/CustomResources/{Moid} | Update a 'crd.CustomResource' resource.
-*CrdApi* | [**update_crd_custom_resource**](docs/CrdApi.md#update_crd_custom_resource) | **POST** /api/v1/crd/CustomResources/{Moid} | Update a 'crd.CustomResource' resource.
-*DeviceconnectorApi* | [**create_deviceconnector_policy**](docs/DeviceconnectorApi.md#create_deviceconnector_policy) | **POST** /api/v1/deviceconnector/Policies | Create a 'deviceconnector.Policy' resource.
-*DeviceconnectorApi* | [**delete_deviceconnector_policy**](docs/DeviceconnectorApi.md#delete_deviceconnector_policy) | **DELETE** /api/v1/deviceconnector/Policies/{Moid} | Delete a 'deviceconnector.Policy' resource.
-*DeviceconnectorApi* | [**get_deviceconnector_policy_by_moid**](docs/DeviceconnectorApi.md#get_deviceconnector_policy_by_moid) | **GET** /api/v1/deviceconnector/Policies/{Moid} | Read a 'deviceconnector.Policy' resource.
-*DeviceconnectorApi* | [**get_deviceconnector_policy_list**](docs/DeviceconnectorApi.md#get_deviceconnector_policy_list) | **GET** /api/v1/deviceconnector/Policies | Read a 'deviceconnector.Policy' resource.
-*DeviceconnectorApi* | [**patch_deviceconnector_policy**](docs/DeviceconnectorApi.md#patch_deviceconnector_policy) | **PATCH** /api/v1/deviceconnector/Policies/{Moid} | Update a 'deviceconnector.Policy' resource.
-*DeviceconnectorApi* | [**update_deviceconnector_policy**](docs/DeviceconnectorApi.md#update_deviceconnector_policy) | **POST** /api/v1/deviceconnector/Policies/{Moid} | Update a 'deviceconnector.Policy' resource.
-*EquipmentApi* | [**get_equipment_chassis_by_moid**](docs/EquipmentApi.md#get_equipment_chassis_by_moid) | **GET** /api/v1/equipment/Chasses/{Moid} | Read a 'equipment.Chassis' resource.
-*EquipmentApi* | [**get_equipment_chassis_identity_by_moid**](docs/EquipmentApi.md#get_equipment_chassis_identity_by_moid) | **GET** /api/v1/equipment/ChassisIdentities/{Moid} | Read a 'equipment.ChassisIdentity' resource.
-*EquipmentApi* | [**get_equipment_chassis_identity_list**](docs/EquipmentApi.md#get_equipment_chassis_identity_list) | **GET** /api/v1/equipment/ChassisIdentities | Read a 'equipment.ChassisIdentity' resource.
-*EquipmentApi* | [**get_equipment_chassis_list**](docs/EquipmentApi.md#get_equipment_chassis_list) | **GET** /api/v1/equipment/Chasses | Read a 'equipment.Chassis' resource.
-*EquipmentApi* | [**get_equipment_chassis_operation_by_moid**](docs/EquipmentApi.md#get_equipment_chassis_operation_by_moid) | **GET** /api/v1/equipment/ChassisOperations/{Moid} | Read a 'equipment.ChassisOperation' resource.
-*EquipmentApi* | [**get_equipment_chassis_operation_list**](docs/EquipmentApi.md#get_equipment_chassis_operation_list) | **GET** /api/v1/equipment/ChassisOperations | Read a 'equipment.ChassisOperation' resource.
-*EquipmentApi* | [**get_equipment_device_summary_by_moid**](docs/EquipmentApi.md#get_equipment_device_summary_by_moid) | **GET** /api/v1/equipment/DeviceSummaries/{Moid} | Read a 'equipment.DeviceSummary' resource.
-*EquipmentApi* | [**get_equipment_device_summary_list**](docs/EquipmentApi.md#get_equipment_device_summary_list) | **GET** /api/v1/equipment/DeviceSummaries | Read a 'equipment.DeviceSummary' resource.
-*EquipmentApi* | [**get_equipment_fan_by_moid**](docs/EquipmentApi.md#get_equipment_fan_by_moid) | **GET** /api/v1/equipment/Fans/{Moid} | Read a 'equipment.Fan' resource.
-*EquipmentApi* | [**get_equipment_fan_control_by_moid**](docs/EquipmentApi.md#get_equipment_fan_control_by_moid) | **GET** /api/v1/equipment/FanControls/{Moid} | Read a 'equipment.FanControl' resource.
-*EquipmentApi* | [**get_equipment_fan_control_list**](docs/EquipmentApi.md#get_equipment_fan_control_list) | **GET** /api/v1/equipment/FanControls | Read a 'equipment.FanControl' resource.
-*EquipmentApi* | [**get_equipment_fan_list**](docs/EquipmentApi.md#get_equipment_fan_list) | **GET** /api/v1/equipment/Fans | Read a 'equipment.Fan' resource.
-*EquipmentApi* | [**get_equipment_fan_module_by_moid**](docs/EquipmentApi.md#get_equipment_fan_module_by_moid) | **GET** /api/v1/equipment/FanModules/{Moid} | Read a 'equipment.FanModule' resource.
-*EquipmentApi* | [**get_equipment_fan_module_list**](docs/EquipmentApi.md#get_equipment_fan_module_list) | **GET** /api/v1/equipment/FanModules | Read a 'equipment.FanModule' resource.
-*EquipmentApi* | [**get_equipment_fex_by_moid**](docs/EquipmentApi.md#get_equipment_fex_by_moid) | **GET** /api/v1/equipment/Fexes/{Moid} | Read a 'equipment.Fex' resource.
-*EquipmentApi* | [**get_equipment_fex_identity_by_moid**](docs/EquipmentApi.md#get_equipment_fex_identity_by_moid) | **GET** /api/v1/equipment/FexIdentities/{Moid} | Read a 'equipment.FexIdentity' resource.
-*EquipmentApi* | [**get_equipment_fex_identity_list**](docs/EquipmentApi.md#get_equipment_fex_identity_list) | **GET** /api/v1/equipment/FexIdentities | Read a 'equipment.FexIdentity' resource.
-*EquipmentApi* | [**get_equipment_fex_list**](docs/EquipmentApi.md#get_equipment_fex_list) | **GET** /api/v1/equipment/Fexes | Read a 'equipment.Fex' resource.
-*EquipmentApi* | [**get_equipment_fex_operation_by_moid**](docs/EquipmentApi.md#get_equipment_fex_operation_by_moid) | **GET** /api/v1/equipment/FexOperations/{Moid} | Read a 'equipment.FexOperation' resource.
-*EquipmentApi* | [**get_equipment_fex_operation_list**](docs/EquipmentApi.md#get_equipment_fex_operation_list) | **GET** /api/v1/equipment/FexOperations | Read a 'equipment.FexOperation' resource.
-*EquipmentApi* | [**get_equipment_fru_by_moid**](docs/EquipmentApi.md#get_equipment_fru_by_moid) | **GET** /api/v1/equipment/Frus/{Moid} | Read a 'equipment.Fru' resource.
-*EquipmentApi* | [**get_equipment_fru_list**](docs/EquipmentApi.md#get_equipment_fru_list) | **GET** /api/v1/equipment/Frus | Read a 'equipment.Fru' resource.
-*EquipmentApi* | [**get_equipment_identity_summary_by_moid**](docs/EquipmentApi.md#get_equipment_identity_summary_by_moid) | **GET** /api/v1/equipment/IdentitySummaries/{Moid} | Read a 'equipment.IdentitySummary' resource.
-*EquipmentApi* | [**get_equipment_identity_summary_list**](docs/EquipmentApi.md#get_equipment_identity_summary_list) | **GET** /api/v1/equipment/IdentitySummaries | Read a 'equipment.IdentitySummary' resource.
-*EquipmentApi* | [**get_equipment_io_card_by_moid**](docs/EquipmentApi.md#get_equipment_io_card_by_moid) | **GET** /api/v1/equipment/IoCards/{Moid} | Read a 'equipment.IoCard' resource.
-*EquipmentApi* | [**get_equipment_io_card_list**](docs/EquipmentApi.md#get_equipment_io_card_list) | **GET** /api/v1/equipment/IoCards | Read a 'equipment.IoCard' resource.
-*EquipmentApi* | [**get_equipment_io_card_operation_by_moid**](docs/EquipmentApi.md#get_equipment_io_card_operation_by_moid) | **GET** /api/v1/equipment/IoCardOperations/{Moid} | Read a 'equipment.IoCardOperation' resource.
-*EquipmentApi* | [**get_equipment_io_card_operation_list**](docs/EquipmentApi.md#get_equipment_io_card_operation_list) | **GET** /api/v1/equipment/IoCardOperations | Read a 'equipment.IoCardOperation' resource.
-*EquipmentApi* | [**get_equipment_io_expander_by_moid**](docs/EquipmentApi.md#get_equipment_io_expander_by_moid) | **GET** /api/v1/equipment/IoExpanders/{Moid} | Read a 'equipment.IoExpander' resource.
-*EquipmentApi* | [**get_equipment_io_expander_list**](docs/EquipmentApi.md#get_equipment_io_expander_list) | **GET** /api/v1/equipment/IoExpanders | Read a 'equipment.IoExpander' resource.
-*EquipmentApi* | [**get_equipment_locator_led_by_moid**](docs/EquipmentApi.md#get_equipment_locator_led_by_moid) | **GET** /api/v1/equipment/LocatorLeds/{Moid} | Read a 'equipment.LocatorLed' resource.
-*EquipmentApi* | [**get_equipment_locator_led_list**](docs/EquipmentApi.md#get_equipment_locator_led_list) | **GET** /api/v1/equipment/LocatorLeds | Read a 'equipment.LocatorLed' resource.
-*EquipmentApi* | [**get_equipment_psu_by_moid**](docs/EquipmentApi.md#get_equipment_psu_by_moid) | **GET** /api/v1/equipment/Psus/{Moid} | Read a 'equipment.Psu' resource.
-*EquipmentApi* | [**get_equipment_psu_control_by_moid**](docs/EquipmentApi.md#get_equipment_psu_control_by_moid) | **GET** /api/v1/equipment/PsuControls/{Moid} | Read a 'equipment.PsuControl' resource.
-*EquipmentApi* | [**get_equipment_psu_control_list**](docs/EquipmentApi.md#get_equipment_psu_control_list) | **GET** /api/v1/equipment/PsuControls | Read a 'equipment.PsuControl' resource.
-*EquipmentApi* | [**get_equipment_psu_list**](docs/EquipmentApi.md#get_equipment_psu_list) | **GET** /api/v1/equipment/Psus | Read a 'equipment.Psu' resource.
-*EquipmentApi* | [**get_equipment_rack_enclosure_by_moid**](docs/EquipmentApi.md#get_equipment_rack_enclosure_by_moid) | **GET** /api/v1/equipment/RackEnclosures/{Moid} | Read a 'equipment.RackEnclosure' resource.
-*EquipmentApi* | [**get_equipment_rack_enclosure_list**](docs/EquipmentApi.md#get_equipment_rack_enclosure_list) | **GET** /api/v1/equipment/RackEnclosures | Read a 'equipment.RackEnclosure' resource.
-*EquipmentApi* | [**get_equipment_rack_enclosure_slot_by_moid**](docs/EquipmentApi.md#get_equipment_rack_enclosure_slot_by_moid) | **GET** /api/v1/equipment/RackEnclosureSlots/{Moid} | Read a 'equipment.RackEnclosureSlot' resource.
-*EquipmentApi* | [**get_equipment_rack_enclosure_slot_list**](docs/EquipmentApi.md#get_equipment_rack_enclosure_slot_list) | **GET** /api/v1/equipment/RackEnclosureSlots | Read a 'equipment.RackEnclosureSlot' resource.
-*EquipmentApi* | [**get_equipment_shared_io_module_by_moid**](docs/EquipmentApi.md#get_equipment_shared_io_module_by_moid) | **GET** /api/v1/equipment/SharedIoModules/{Moid} | Read a 'equipment.SharedIoModule' resource.
-*EquipmentApi* | [**get_equipment_shared_io_module_list**](docs/EquipmentApi.md#get_equipment_shared_io_module_list) | **GET** /api/v1/equipment/SharedIoModules | Read a 'equipment.SharedIoModule' resource.
-*EquipmentApi* | [**get_equipment_switch_card_by_moid**](docs/EquipmentApi.md#get_equipment_switch_card_by_moid) | **GET** /api/v1/equipment/SwitchCards/{Moid} | Read a 'equipment.SwitchCard' resource.
-*EquipmentApi* | [**get_equipment_switch_card_list**](docs/EquipmentApi.md#get_equipment_switch_card_list) | **GET** /api/v1/equipment/SwitchCards | Read a 'equipment.SwitchCard' resource.
-*EquipmentApi* | [**get_equipment_system_io_controller_by_moid**](docs/EquipmentApi.md#get_equipment_system_io_controller_by_moid) | **GET** /api/v1/equipment/SystemIoControllers/{Moid} | Read a 'equipment.SystemIoController' resource.
-*EquipmentApi* | [**get_equipment_system_io_controller_list**](docs/EquipmentApi.md#get_equipment_system_io_controller_list) | **GET** /api/v1/equipment/SystemIoControllers | Read a 'equipment.SystemIoController' resource.
-*EquipmentApi* | [**get_equipment_tpm_by_moid**](docs/EquipmentApi.md#get_equipment_tpm_by_moid) | **GET** /api/v1/equipment/Tpms/{Moid} | Read a 'equipment.Tpm' resource.
-*EquipmentApi* | [**get_equipment_tpm_list**](docs/EquipmentApi.md#get_equipment_tpm_list) | **GET** /api/v1/equipment/Tpms | Read a 'equipment.Tpm' resource.
-*EquipmentApi* | [**get_equipment_transceiver_by_moid**](docs/EquipmentApi.md#get_equipment_transceiver_by_moid) | **GET** /api/v1/equipment/Transceivers/{Moid} | Read a 'equipment.Transceiver' resource.
-*EquipmentApi* | [**get_equipment_transceiver_list**](docs/EquipmentApi.md#get_equipment_transceiver_list) | **GET** /api/v1/equipment/Transceivers | Read a 'equipment.Transceiver' resource.
-*EquipmentApi* | [**patch_equipment_chassis**](docs/EquipmentApi.md#patch_equipment_chassis) | **PATCH** /api/v1/equipment/Chasses/{Moid} | Update a 'equipment.Chassis' resource.
-*EquipmentApi* | [**patch_equipment_chassis_identity**](docs/EquipmentApi.md#patch_equipment_chassis_identity) | **PATCH** /api/v1/equipment/ChassisIdentities/{Moid} | Update a 'equipment.ChassisIdentity' resource.
-*EquipmentApi* | [**patch_equipment_chassis_operation**](docs/EquipmentApi.md#patch_equipment_chassis_operation) | **PATCH** /api/v1/equipment/ChassisOperations/{Moid} | Update a 'equipment.ChassisOperation' resource.
-*EquipmentApi* | [**patch_equipment_fan**](docs/EquipmentApi.md#patch_equipment_fan) | **PATCH** /api/v1/equipment/Fans/{Moid} | Update a 'equipment.Fan' resource.
-*EquipmentApi* | [**patch_equipment_fan_control**](docs/EquipmentApi.md#patch_equipment_fan_control) | **PATCH** /api/v1/equipment/FanControls/{Moid} | Update a 'equipment.FanControl' resource.
-*EquipmentApi* | [**patch_equipment_fan_module**](docs/EquipmentApi.md#patch_equipment_fan_module) | **PATCH** /api/v1/equipment/FanModules/{Moid} | Update a 'equipment.FanModule' resource.
-*EquipmentApi* | [**patch_equipment_fex**](docs/EquipmentApi.md#patch_equipment_fex) | **PATCH** /api/v1/equipment/Fexes/{Moid} | Update a 'equipment.Fex' resource.
-*EquipmentApi* | [**patch_equipment_fex_identity**](docs/EquipmentApi.md#patch_equipment_fex_identity) | **PATCH** /api/v1/equipment/FexIdentities/{Moid} | Update a 'equipment.FexIdentity' resource.
-*EquipmentApi* | [**patch_equipment_fex_operation**](docs/EquipmentApi.md#patch_equipment_fex_operation) | **PATCH** /api/v1/equipment/FexOperations/{Moid} | Update a 'equipment.FexOperation' resource.
-*EquipmentApi* | [**patch_equipment_fru**](docs/EquipmentApi.md#patch_equipment_fru) | **PATCH** /api/v1/equipment/Frus/{Moid} | Update a 'equipment.Fru' resource.
-*EquipmentApi* | [**patch_equipment_io_card**](docs/EquipmentApi.md#patch_equipment_io_card) | **PATCH** /api/v1/equipment/IoCards/{Moid} | Update a 'equipment.IoCard' resource.
-*EquipmentApi* | [**patch_equipment_io_card_operation**](docs/EquipmentApi.md#patch_equipment_io_card_operation) | **PATCH** /api/v1/equipment/IoCardOperations/{Moid} | Update a 'equipment.IoCardOperation' resource.
-*EquipmentApi* | [**patch_equipment_io_expander**](docs/EquipmentApi.md#patch_equipment_io_expander) | **PATCH** /api/v1/equipment/IoExpanders/{Moid} | Update a 'equipment.IoExpander' resource.
-*EquipmentApi* | [**patch_equipment_locator_led**](docs/EquipmentApi.md#patch_equipment_locator_led) | **PATCH** /api/v1/equipment/LocatorLeds/{Moid} | Update a 'equipment.LocatorLed' resource.
-*EquipmentApi* | [**patch_equipment_psu**](docs/EquipmentApi.md#patch_equipment_psu) | **PATCH** /api/v1/equipment/Psus/{Moid} | Update a 'equipment.Psu' resource.
-*EquipmentApi* | [**patch_equipment_psu_control**](docs/EquipmentApi.md#patch_equipment_psu_control) | **PATCH** /api/v1/equipment/PsuControls/{Moid} | Update a 'equipment.PsuControl' resource.
-*EquipmentApi* | [**patch_equipment_rack_enclosure**](docs/EquipmentApi.md#patch_equipment_rack_enclosure) | **PATCH** /api/v1/equipment/RackEnclosures/{Moid} | Update a 'equipment.RackEnclosure' resource.
-*EquipmentApi* | [**patch_equipment_rack_enclosure_slot**](docs/EquipmentApi.md#patch_equipment_rack_enclosure_slot) | **PATCH** /api/v1/equipment/RackEnclosureSlots/{Moid} | Update a 'equipment.RackEnclosureSlot' resource.
-*EquipmentApi* | [**patch_equipment_shared_io_module**](docs/EquipmentApi.md#patch_equipment_shared_io_module) | **PATCH** /api/v1/equipment/SharedIoModules/{Moid} | Update a 'equipment.SharedIoModule' resource.
-*EquipmentApi* | [**patch_equipment_switch_card**](docs/EquipmentApi.md#patch_equipment_switch_card) | **PATCH** /api/v1/equipment/SwitchCards/{Moid} | Update a 'equipment.SwitchCard' resource.
-*EquipmentApi* | [**patch_equipment_system_io_controller**](docs/EquipmentApi.md#patch_equipment_system_io_controller) | **PATCH** /api/v1/equipment/SystemIoControllers/{Moid} | Update a 'equipment.SystemIoController' resource.
-*EquipmentApi* | [**patch_equipment_tpm**](docs/EquipmentApi.md#patch_equipment_tpm) | **PATCH** /api/v1/equipment/Tpms/{Moid} | Update a 'equipment.Tpm' resource.
-*EquipmentApi* | [**patch_equipment_transceiver**](docs/EquipmentApi.md#patch_equipment_transceiver) | **PATCH** /api/v1/equipment/Transceivers/{Moid} | Update a 'equipment.Transceiver' resource.
-*EquipmentApi* | [**update_equipment_chassis**](docs/EquipmentApi.md#update_equipment_chassis) | **POST** /api/v1/equipment/Chasses/{Moid} | Update a 'equipment.Chassis' resource.
-*EquipmentApi* | [**update_equipment_chassis_identity**](docs/EquipmentApi.md#update_equipment_chassis_identity) | **POST** /api/v1/equipment/ChassisIdentities/{Moid} | Update a 'equipment.ChassisIdentity' resource.
-*EquipmentApi* | [**update_equipment_chassis_operation**](docs/EquipmentApi.md#update_equipment_chassis_operation) | **POST** /api/v1/equipment/ChassisOperations/{Moid} | Update a 'equipment.ChassisOperation' resource.
-*EquipmentApi* | [**update_equipment_fan**](docs/EquipmentApi.md#update_equipment_fan) | **POST** /api/v1/equipment/Fans/{Moid} | Update a 'equipment.Fan' resource.
-*EquipmentApi* | [**update_equipment_fan_control**](docs/EquipmentApi.md#update_equipment_fan_control) | **POST** /api/v1/equipment/FanControls/{Moid} | Update a 'equipment.FanControl' resource.
-*EquipmentApi* | [**update_equipment_fan_module**](docs/EquipmentApi.md#update_equipment_fan_module) | **POST** /api/v1/equipment/FanModules/{Moid} | Update a 'equipment.FanModule' resource.
-*EquipmentApi* | [**update_equipment_fex**](docs/EquipmentApi.md#update_equipment_fex) | **POST** /api/v1/equipment/Fexes/{Moid} | Update a 'equipment.Fex' resource.
-*EquipmentApi* | [**update_equipment_fex_identity**](docs/EquipmentApi.md#update_equipment_fex_identity) | **POST** /api/v1/equipment/FexIdentities/{Moid} | Update a 'equipment.FexIdentity' resource.
-*EquipmentApi* | [**update_equipment_fex_operation**](docs/EquipmentApi.md#update_equipment_fex_operation) | **POST** /api/v1/equipment/FexOperations/{Moid} | Update a 'equipment.FexOperation' resource.
-*EquipmentApi* | [**update_equipment_fru**](docs/EquipmentApi.md#update_equipment_fru) | **POST** /api/v1/equipment/Frus/{Moid} | Update a 'equipment.Fru' resource.
-*EquipmentApi* | [**update_equipment_io_card**](docs/EquipmentApi.md#update_equipment_io_card) | **POST** /api/v1/equipment/IoCards/{Moid} | Update a 'equipment.IoCard' resource.
-*EquipmentApi* | [**update_equipment_io_card_operation**](docs/EquipmentApi.md#update_equipment_io_card_operation) | **POST** /api/v1/equipment/IoCardOperations/{Moid} | Update a 'equipment.IoCardOperation' resource.
-*EquipmentApi* | [**update_equipment_io_expander**](docs/EquipmentApi.md#update_equipment_io_expander) | **POST** /api/v1/equipment/IoExpanders/{Moid} | Update a 'equipment.IoExpander' resource.
-*EquipmentApi* | [**update_equipment_locator_led**](docs/EquipmentApi.md#update_equipment_locator_led) | **POST** /api/v1/equipment/LocatorLeds/{Moid} | Update a 'equipment.LocatorLed' resource.
-*EquipmentApi* | [**update_equipment_psu**](docs/EquipmentApi.md#update_equipment_psu) | **POST** /api/v1/equipment/Psus/{Moid} | Update a 'equipment.Psu' resource.
-*EquipmentApi* | [**update_equipment_psu_control**](docs/EquipmentApi.md#update_equipment_psu_control) | **POST** /api/v1/equipment/PsuControls/{Moid} | Update a 'equipment.PsuControl' resource.
-*EquipmentApi* | [**update_equipment_rack_enclosure**](docs/EquipmentApi.md#update_equipment_rack_enclosure) | **POST** /api/v1/equipment/RackEnclosures/{Moid} | Update a 'equipment.RackEnclosure' resource.
-*EquipmentApi* | [**update_equipment_rack_enclosure_slot**](docs/EquipmentApi.md#update_equipment_rack_enclosure_slot) | **POST** /api/v1/equipment/RackEnclosureSlots/{Moid} | Update a 'equipment.RackEnclosureSlot' resource.
-*EquipmentApi* | [**update_equipment_shared_io_module**](docs/EquipmentApi.md#update_equipment_shared_io_module) | **POST** /api/v1/equipment/SharedIoModules/{Moid} | Update a 'equipment.SharedIoModule' resource.
-*EquipmentApi* | [**update_equipment_switch_card**](docs/EquipmentApi.md#update_equipment_switch_card) | **POST** /api/v1/equipment/SwitchCards/{Moid} | Update a 'equipment.SwitchCard' resource.
-*EquipmentApi* | [**update_equipment_system_io_controller**](docs/EquipmentApi.md#update_equipment_system_io_controller) | **POST** /api/v1/equipment/SystemIoControllers/{Moid} | Update a 'equipment.SystemIoController' resource.
-*EquipmentApi* | [**update_equipment_tpm**](docs/EquipmentApi.md#update_equipment_tpm) | **POST** /api/v1/equipment/Tpms/{Moid} | Update a 'equipment.Tpm' resource.
-*EquipmentApi* | [**update_equipment_transceiver**](docs/EquipmentApi.md#update_equipment_transceiver) | **POST** /api/v1/equipment/Transceivers/{Moid} | Update a 'equipment.Transceiver' resource.
-*EtherApi* | [**get_ether_host_port_by_moid**](docs/EtherApi.md#get_ether_host_port_by_moid) | **GET** /api/v1/ether/HostPorts/{Moid} | Read a 'ether.HostPort' resource.
-*EtherApi* | [**get_ether_host_port_list**](docs/EtherApi.md#get_ether_host_port_list) | **GET** /api/v1/ether/HostPorts | Read a 'ether.HostPort' resource.
-*EtherApi* | [**get_ether_network_port_by_moid**](docs/EtherApi.md#get_ether_network_port_by_moid) | **GET** /api/v1/ether/NetworkPorts/{Moid} | Read a 'ether.NetworkPort' resource.
-*EtherApi* | [**get_ether_network_port_list**](docs/EtherApi.md#get_ether_network_port_list) | **GET** /api/v1/ether/NetworkPorts | Read a 'ether.NetworkPort' resource.
-*EtherApi* | [**get_ether_physical_port_by_moid**](docs/EtherApi.md#get_ether_physical_port_by_moid) | **GET** /api/v1/ether/PhysicalPorts/{Moid} | Read a 'ether.PhysicalPort' resource.
-*EtherApi* | [**get_ether_physical_port_list**](docs/EtherApi.md#get_ether_physical_port_list) | **GET** /api/v1/ether/PhysicalPorts | Read a 'ether.PhysicalPort' resource.
-*EtherApi* | [**get_ether_port_channel_by_moid**](docs/EtherApi.md#get_ether_port_channel_by_moid) | **GET** /api/v1/ether/PortChannels/{Moid} | Read a 'ether.PortChannel' resource.
-*EtherApi* | [**get_ether_port_channel_list**](docs/EtherApi.md#get_ether_port_channel_list) | **GET** /api/v1/ether/PortChannels | Read a 'ether.PortChannel' resource.
-*EtherApi* | [**patch_ether_host_port**](docs/EtherApi.md#patch_ether_host_port) | **PATCH** /api/v1/ether/HostPorts/{Moid} | Update a 'ether.HostPort' resource.
-*EtherApi* | [**patch_ether_network_port**](docs/EtherApi.md#patch_ether_network_port) | **PATCH** /api/v1/ether/NetworkPorts/{Moid} | Update a 'ether.NetworkPort' resource.
-*EtherApi* | [**patch_ether_physical_port**](docs/EtherApi.md#patch_ether_physical_port) | **PATCH** /api/v1/ether/PhysicalPorts/{Moid} | Update a 'ether.PhysicalPort' resource.
-*EtherApi* | [**update_ether_host_port**](docs/EtherApi.md#update_ether_host_port) | **POST** /api/v1/ether/HostPorts/{Moid} | Update a 'ether.HostPort' resource.
-*EtherApi* | [**update_ether_network_port**](docs/EtherApi.md#update_ether_network_port) | **POST** /api/v1/ether/NetworkPorts/{Moid} | Update a 'ether.NetworkPort' resource.
-*EtherApi* | [**update_ether_physical_port**](docs/EtherApi.md#update_ether_physical_port) | **POST** /api/v1/ether/PhysicalPorts/{Moid} | Update a 'ether.PhysicalPort' resource.
-*ExternalsiteApi* | [**create_externalsite_authorization**](docs/ExternalsiteApi.md#create_externalsite_authorization) | **POST** /api/v1/externalsite/Authorizations | Create a 'externalsite.Authorization' resource.
-*ExternalsiteApi* | [**get_externalsite_authorization_by_moid**](docs/ExternalsiteApi.md#get_externalsite_authorization_by_moid) | **GET** /api/v1/externalsite/Authorizations/{Moid} | Read a 'externalsite.Authorization' resource.
-*ExternalsiteApi* | [**get_externalsite_authorization_list**](docs/ExternalsiteApi.md#get_externalsite_authorization_list) | **GET** /api/v1/externalsite/Authorizations | Read a 'externalsite.Authorization' resource.
-*ExternalsiteApi* | [**patch_externalsite_authorization**](docs/ExternalsiteApi.md#patch_externalsite_authorization) | **PATCH** /api/v1/externalsite/Authorizations/{Moid} | Update a 'externalsite.Authorization' resource.
-*ExternalsiteApi* | [**update_externalsite_authorization**](docs/ExternalsiteApi.md#update_externalsite_authorization) | **POST** /api/v1/externalsite/Authorizations/{Moid} | Update a 'externalsite.Authorization' resource.
-*FabricApi* | [**create_fabric_appliance_pc_role**](docs/FabricApi.md#create_fabric_appliance_pc_role) | **POST** /api/v1/fabric/AppliancePcRoles | Create a 'fabric.AppliancePcRole' resource.
-*FabricApi* | [**create_fabric_appliance_role**](docs/FabricApi.md#create_fabric_appliance_role) | **POST** /api/v1/fabric/ApplianceRoles | Create a 'fabric.ApplianceRole' resource.
-*FabricApi* | [**create_fabric_estimate_impact**](docs/FabricApi.md#create_fabric_estimate_impact) | **POST** /api/v1/fabric/EstimateImpacts | Create a 'fabric.EstimateImpact' resource.
-*FabricApi* | [**create_fabric_eth_network_control_policy**](docs/FabricApi.md#create_fabric_eth_network_control_policy) | **POST** /api/v1/fabric/EthNetworkControlPolicies | Create a 'fabric.EthNetworkControlPolicy' resource.
-*FabricApi* | [**create_fabric_eth_network_group_policy**](docs/FabricApi.md#create_fabric_eth_network_group_policy) | **POST** /api/v1/fabric/EthNetworkGroupPolicies | Create a 'fabric.EthNetworkGroupPolicy' resource.
-*FabricApi* | [**create_fabric_eth_network_policy**](docs/FabricApi.md#create_fabric_eth_network_policy) | **POST** /api/v1/fabric/EthNetworkPolicies | Create a 'fabric.EthNetworkPolicy' resource.
-*FabricApi* | [**create_fabric_fc_network_policy**](docs/FabricApi.md#create_fabric_fc_network_policy) | **POST** /api/v1/fabric/FcNetworkPolicies | Create a 'fabric.FcNetworkPolicy' resource.
-*FabricApi* | [**create_fabric_fc_uplink_pc_role**](docs/FabricApi.md#create_fabric_fc_uplink_pc_role) | **POST** /api/v1/fabric/FcUplinkPcRoles | Create a 'fabric.FcUplinkPcRole' resource.
-*FabricApi* | [**create_fabric_fc_uplink_role**](docs/FabricApi.md#create_fabric_fc_uplink_role) | **POST** /api/v1/fabric/FcUplinkRoles | Create a 'fabric.FcUplinkRole' resource.
-*FabricApi* | [**create_fabric_fcoe_uplink_pc_role**](docs/FabricApi.md#create_fabric_fcoe_uplink_pc_role) | **POST** /api/v1/fabric/FcoeUplinkPcRoles | Create a 'fabric.FcoeUplinkPcRole' resource.
-*FabricApi* | [**create_fabric_fcoe_uplink_role**](docs/FabricApi.md#create_fabric_fcoe_uplink_role) | **POST** /api/v1/fabric/FcoeUplinkRoles | Create a 'fabric.FcoeUplinkRole' resource.
-*FabricApi* | [**create_fabric_flow_control_policy**](docs/FabricApi.md#create_fabric_flow_control_policy) | **POST** /api/v1/fabric/FlowControlPolicies | Create a 'fabric.FlowControlPolicy' resource.
-*FabricApi* | [**create_fabric_link_aggregation_policy**](docs/FabricApi.md#create_fabric_link_aggregation_policy) | **POST** /api/v1/fabric/LinkAggregationPolicies | Create a 'fabric.LinkAggregationPolicy' resource.
-*FabricApi* | [**create_fabric_link_control_policy**](docs/FabricApi.md#create_fabric_link_control_policy) | **POST** /api/v1/fabric/LinkControlPolicies | Create a 'fabric.LinkControlPolicy' resource.
-*FabricApi* | [**create_fabric_multicast_policy**](docs/FabricApi.md#create_fabric_multicast_policy) | **POST** /api/v1/fabric/MulticastPolicies | Create a 'fabric.MulticastPolicy' resource.
-*FabricApi* | [**create_fabric_pc_operation**](docs/FabricApi.md#create_fabric_pc_operation) | **POST** /api/v1/fabric/PcOperations | Create a 'fabric.PcOperation' resource.
-*FabricApi* | [**create_fabric_port_mode**](docs/FabricApi.md#create_fabric_port_mode) | **POST** /api/v1/fabric/PortModes | Create a 'fabric.PortMode' resource.
-*FabricApi* | [**create_fabric_port_operation**](docs/FabricApi.md#create_fabric_port_operation) | **POST** /api/v1/fabric/PortOperations | Create a 'fabric.PortOperation' resource.
-*FabricApi* | [**create_fabric_port_policy**](docs/FabricApi.md#create_fabric_port_policy) | **POST** /api/v1/fabric/PortPolicies | Create a 'fabric.PortPolicy' resource.
-*FabricApi* | [**create_fabric_server_role**](docs/FabricApi.md#create_fabric_server_role) | **POST** /api/v1/fabric/ServerRoles | Create a 'fabric.ServerRole' resource.
-*FabricApi* | [**create_fabric_switch_cluster_profile**](docs/FabricApi.md#create_fabric_switch_cluster_profile) | **POST** /api/v1/fabric/SwitchClusterProfiles | Create a 'fabric.SwitchClusterProfile' resource.
-*FabricApi* | [**create_fabric_switch_control_policy**](docs/FabricApi.md#create_fabric_switch_control_policy) | **POST** /api/v1/fabric/SwitchControlPolicies | Create a 'fabric.SwitchControlPolicy' resource.
-*FabricApi* | [**create_fabric_switch_profile**](docs/FabricApi.md#create_fabric_switch_profile) | **POST** /api/v1/fabric/SwitchProfiles | Create a 'fabric.SwitchProfile' resource.
-*FabricApi* | [**create_fabric_system_qos_policy**](docs/FabricApi.md#create_fabric_system_qos_policy) | **POST** /api/v1/fabric/SystemQosPolicies | Create a 'fabric.SystemQosPolicy' resource.
-*FabricApi* | [**create_fabric_uplink_pc_role**](docs/FabricApi.md#create_fabric_uplink_pc_role) | **POST** /api/v1/fabric/UplinkPcRoles | Create a 'fabric.UplinkPcRole' resource.
-*FabricApi* | [**create_fabric_uplink_role**](docs/FabricApi.md#create_fabric_uplink_role) | **POST** /api/v1/fabric/UplinkRoles | Create a 'fabric.UplinkRole' resource.
-*FabricApi* | [**create_fabric_vlan**](docs/FabricApi.md#create_fabric_vlan) | **POST** /api/v1/fabric/Vlans | Create a 'fabric.Vlan' resource.
-*FabricApi* | [**create_fabric_vsan**](docs/FabricApi.md#create_fabric_vsan) | **POST** /api/v1/fabric/Vsans | Create a 'fabric.Vsan' resource.
-*FabricApi* | [**delete_fabric_appliance_pc_role**](docs/FabricApi.md#delete_fabric_appliance_pc_role) | **DELETE** /api/v1/fabric/AppliancePcRoles/{Moid} | Delete a 'fabric.AppliancePcRole' resource.
-*FabricApi* | [**delete_fabric_appliance_role**](docs/FabricApi.md#delete_fabric_appliance_role) | **DELETE** /api/v1/fabric/ApplianceRoles/{Moid} | Delete a 'fabric.ApplianceRole' resource.
-*FabricApi* | [**delete_fabric_eth_network_control_policy**](docs/FabricApi.md#delete_fabric_eth_network_control_policy) | **DELETE** /api/v1/fabric/EthNetworkControlPolicies/{Moid} | Delete a 'fabric.EthNetworkControlPolicy' resource.
-*FabricApi* | [**delete_fabric_eth_network_group_policy**](docs/FabricApi.md#delete_fabric_eth_network_group_policy) | **DELETE** /api/v1/fabric/EthNetworkGroupPolicies/{Moid} | Delete a 'fabric.EthNetworkGroupPolicy' resource.
-*FabricApi* | [**delete_fabric_eth_network_policy**](docs/FabricApi.md#delete_fabric_eth_network_policy) | **DELETE** /api/v1/fabric/EthNetworkPolicies/{Moid} | Delete a 'fabric.EthNetworkPolicy' resource.
-*FabricApi* | [**delete_fabric_fc_network_policy**](docs/FabricApi.md#delete_fabric_fc_network_policy) | **DELETE** /api/v1/fabric/FcNetworkPolicies/{Moid} | Delete a 'fabric.FcNetworkPolicy' resource.
-*FabricApi* | [**delete_fabric_fc_uplink_pc_role**](docs/FabricApi.md#delete_fabric_fc_uplink_pc_role) | **DELETE** /api/v1/fabric/FcUplinkPcRoles/{Moid} | Delete a 'fabric.FcUplinkPcRole' resource.
-*FabricApi* | [**delete_fabric_fc_uplink_role**](docs/FabricApi.md#delete_fabric_fc_uplink_role) | **DELETE** /api/v1/fabric/FcUplinkRoles/{Moid} | Delete a 'fabric.FcUplinkRole' resource.
-*FabricApi* | [**delete_fabric_fcoe_uplink_pc_role**](docs/FabricApi.md#delete_fabric_fcoe_uplink_pc_role) | **DELETE** /api/v1/fabric/FcoeUplinkPcRoles/{Moid} | Delete a 'fabric.FcoeUplinkPcRole' resource.
-*FabricApi* | [**delete_fabric_fcoe_uplink_role**](docs/FabricApi.md#delete_fabric_fcoe_uplink_role) | **DELETE** /api/v1/fabric/FcoeUplinkRoles/{Moid} | Delete a 'fabric.FcoeUplinkRole' resource.
-*FabricApi* | [**delete_fabric_flow_control_policy**](docs/FabricApi.md#delete_fabric_flow_control_policy) | **DELETE** /api/v1/fabric/FlowControlPolicies/{Moid} | Delete a 'fabric.FlowControlPolicy' resource.
-*FabricApi* | [**delete_fabric_link_aggregation_policy**](docs/FabricApi.md#delete_fabric_link_aggregation_policy) | **DELETE** /api/v1/fabric/LinkAggregationPolicies/{Moid} | Delete a 'fabric.LinkAggregationPolicy' resource.
-*FabricApi* | [**delete_fabric_link_control_policy**](docs/FabricApi.md#delete_fabric_link_control_policy) | **DELETE** /api/v1/fabric/LinkControlPolicies/{Moid} | Delete a 'fabric.LinkControlPolicy' resource.
-*FabricApi* | [**delete_fabric_multicast_policy**](docs/FabricApi.md#delete_fabric_multicast_policy) | **DELETE** /api/v1/fabric/MulticastPolicies/{Moid} | Delete a 'fabric.MulticastPolicy' resource.
-*FabricApi* | [**delete_fabric_pc_operation**](docs/FabricApi.md#delete_fabric_pc_operation) | **DELETE** /api/v1/fabric/PcOperations/{Moid} | Delete a 'fabric.PcOperation' resource.
-*FabricApi* | [**delete_fabric_port_mode**](docs/FabricApi.md#delete_fabric_port_mode) | **DELETE** /api/v1/fabric/PortModes/{Moid} | Delete a 'fabric.PortMode' resource.
-*FabricApi* | [**delete_fabric_port_operation**](docs/FabricApi.md#delete_fabric_port_operation) | **DELETE** /api/v1/fabric/PortOperations/{Moid} | Delete a 'fabric.PortOperation' resource.
-*FabricApi* | [**delete_fabric_port_policy**](docs/FabricApi.md#delete_fabric_port_policy) | **DELETE** /api/v1/fabric/PortPolicies/{Moid} | Delete a 'fabric.PortPolicy' resource.
-*FabricApi* | [**delete_fabric_server_role**](docs/FabricApi.md#delete_fabric_server_role) | **DELETE** /api/v1/fabric/ServerRoles/{Moid} | Delete a 'fabric.ServerRole' resource.
-*FabricApi* | [**delete_fabric_switch_cluster_profile**](docs/FabricApi.md#delete_fabric_switch_cluster_profile) | **DELETE** /api/v1/fabric/SwitchClusterProfiles/{Moid} | Delete a 'fabric.SwitchClusterProfile' resource.
-*FabricApi* | [**delete_fabric_switch_control_policy**](docs/FabricApi.md#delete_fabric_switch_control_policy) | **DELETE** /api/v1/fabric/SwitchControlPolicies/{Moid} | Delete a 'fabric.SwitchControlPolicy' resource.
-*FabricApi* | [**delete_fabric_switch_profile**](docs/FabricApi.md#delete_fabric_switch_profile) | **DELETE** /api/v1/fabric/SwitchProfiles/{Moid} | Delete a 'fabric.SwitchProfile' resource.
-*FabricApi* | [**delete_fabric_system_qos_policy**](docs/FabricApi.md#delete_fabric_system_qos_policy) | **DELETE** /api/v1/fabric/SystemQosPolicies/{Moid} | Delete a 'fabric.SystemQosPolicy' resource.
-*FabricApi* | [**delete_fabric_uplink_pc_role**](docs/FabricApi.md#delete_fabric_uplink_pc_role) | **DELETE** /api/v1/fabric/UplinkPcRoles/{Moid} | Delete a 'fabric.UplinkPcRole' resource.
-*FabricApi* | [**delete_fabric_uplink_role**](docs/FabricApi.md#delete_fabric_uplink_role) | **DELETE** /api/v1/fabric/UplinkRoles/{Moid} | Delete a 'fabric.UplinkRole' resource.
-*FabricApi* | [**delete_fabric_vlan**](docs/FabricApi.md#delete_fabric_vlan) | **DELETE** /api/v1/fabric/Vlans/{Moid} | Delete a 'fabric.Vlan' resource.
-*FabricApi* | [**delete_fabric_vsan**](docs/FabricApi.md#delete_fabric_vsan) | **DELETE** /api/v1/fabric/Vsans/{Moid} | Delete a 'fabric.Vsan' resource.
-*FabricApi* | [**get_fabric_appliance_pc_role_by_moid**](docs/FabricApi.md#get_fabric_appliance_pc_role_by_moid) | **GET** /api/v1/fabric/AppliancePcRoles/{Moid} | Read a 'fabric.AppliancePcRole' resource.
-*FabricApi* | [**get_fabric_appliance_pc_role_list**](docs/FabricApi.md#get_fabric_appliance_pc_role_list) | **GET** /api/v1/fabric/AppliancePcRoles | Read a 'fabric.AppliancePcRole' resource.
-*FabricApi* | [**get_fabric_appliance_role_by_moid**](docs/FabricApi.md#get_fabric_appliance_role_by_moid) | **GET** /api/v1/fabric/ApplianceRoles/{Moid} | Read a 'fabric.ApplianceRole' resource.
-*FabricApi* | [**get_fabric_appliance_role_list**](docs/FabricApi.md#get_fabric_appliance_role_list) | **GET** /api/v1/fabric/ApplianceRoles | Read a 'fabric.ApplianceRole' resource.
-*FabricApi* | [**get_fabric_config_change_detail_by_moid**](docs/FabricApi.md#get_fabric_config_change_detail_by_moid) | **GET** /api/v1/fabric/ConfigChangeDetails/{Moid} | Read a 'fabric.ConfigChangeDetail' resource.
-*FabricApi* | [**get_fabric_config_change_detail_list**](docs/FabricApi.md#get_fabric_config_change_detail_list) | **GET** /api/v1/fabric/ConfigChangeDetails | Read a 'fabric.ConfigChangeDetail' resource.
-*FabricApi* | [**get_fabric_config_result_by_moid**](docs/FabricApi.md#get_fabric_config_result_by_moid) | **GET** /api/v1/fabric/ConfigResults/{Moid} | Read a 'fabric.ConfigResult' resource.
-*FabricApi* | [**get_fabric_config_result_entry_by_moid**](docs/FabricApi.md#get_fabric_config_result_entry_by_moid) | **GET** /api/v1/fabric/ConfigResultEntries/{Moid} | Read a 'fabric.ConfigResultEntry' resource.
-*FabricApi* | [**get_fabric_config_result_entry_list**](docs/FabricApi.md#get_fabric_config_result_entry_list) | **GET** /api/v1/fabric/ConfigResultEntries | Read a 'fabric.ConfigResultEntry' resource.
-*FabricApi* | [**get_fabric_config_result_list**](docs/FabricApi.md#get_fabric_config_result_list) | **GET** /api/v1/fabric/ConfigResults | Read a 'fabric.ConfigResult' resource.
-*FabricApi* | [**get_fabric_element_identity_by_moid**](docs/FabricApi.md#get_fabric_element_identity_by_moid) | **GET** /api/v1/fabric/ElementIdentities/{Moid} | Read a 'fabric.ElementIdentity' resource.
-*FabricApi* | [**get_fabric_element_identity_list**](docs/FabricApi.md#get_fabric_element_identity_list) | **GET** /api/v1/fabric/ElementIdentities | Read a 'fabric.ElementIdentity' resource.
-*FabricApi* | [**get_fabric_eth_network_control_policy_by_moid**](docs/FabricApi.md#get_fabric_eth_network_control_policy_by_moid) | **GET** /api/v1/fabric/EthNetworkControlPolicies/{Moid} | Read a 'fabric.EthNetworkControlPolicy' resource.
-*FabricApi* | [**get_fabric_eth_network_control_policy_list**](docs/FabricApi.md#get_fabric_eth_network_control_policy_list) | **GET** /api/v1/fabric/EthNetworkControlPolicies | Read a 'fabric.EthNetworkControlPolicy' resource.
-*FabricApi* | [**get_fabric_eth_network_group_policy_by_moid**](docs/FabricApi.md#get_fabric_eth_network_group_policy_by_moid) | **GET** /api/v1/fabric/EthNetworkGroupPolicies/{Moid} | Read a 'fabric.EthNetworkGroupPolicy' resource.
-*FabricApi* | [**get_fabric_eth_network_group_policy_list**](docs/FabricApi.md#get_fabric_eth_network_group_policy_list) | **GET** /api/v1/fabric/EthNetworkGroupPolicies | Read a 'fabric.EthNetworkGroupPolicy' resource.
-*FabricApi* | [**get_fabric_eth_network_policy_by_moid**](docs/FabricApi.md#get_fabric_eth_network_policy_by_moid) | **GET** /api/v1/fabric/EthNetworkPolicies/{Moid} | Read a 'fabric.EthNetworkPolicy' resource.
-*FabricApi* | [**get_fabric_eth_network_policy_list**](docs/FabricApi.md#get_fabric_eth_network_policy_list) | **GET** /api/v1/fabric/EthNetworkPolicies | Read a 'fabric.EthNetworkPolicy' resource.
-*FabricApi* | [**get_fabric_fc_network_policy_by_moid**](docs/FabricApi.md#get_fabric_fc_network_policy_by_moid) | **GET** /api/v1/fabric/FcNetworkPolicies/{Moid} | Read a 'fabric.FcNetworkPolicy' resource.
-*FabricApi* | [**get_fabric_fc_network_policy_list**](docs/FabricApi.md#get_fabric_fc_network_policy_list) | **GET** /api/v1/fabric/FcNetworkPolicies | Read a 'fabric.FcNetworkPolicy' resource.
-*FabricApi* | [**get_fabric_fc_uplink_pc_role_by_moid**](docs/FabricApi.md#get_fabric_fc_uplink_pc_role_by_moid) | **GET** /api/v1/fabric/FcUplinkPcRoles/{Moid} | Read a 'fabric.FcUplinkPcRole' resource.
-*FabricApi* | [**get_fabric_fc_uplink_pc_role_list**](docs/FabricApi.md#get_fabric_fc_uplink_pc_role_list) | **GET** /api/v1/fabric/FcUplinkPcRoles | Read a 'fabric.FcUplinkPcRole' resource.
-*FabricApi* | [**get_fabric_fc_uplink_role_by_moid**](docs/FabricApi.md#get_fabric_fc_uplink_role_by_moid) | **GET** /api/v1/fabric/FcUplinkRoles/{Moid} | Read a 'fabric.FcUplinkRole' resource.
-*FabricApi* | [**get_fabric_fc_uplink_role_list**](docs/FabricApi.md#get_fabric_fc_uplink_role_list) | **GET** /api/v1/fabric/FcUplinkRoles | Read a 'fabric.FcUplinkRole' resource.
-*FabricApi* | [**get_fabric_fcoe_uplink_pc_role_by_moid**](docs/FabricApi.md#get_fabric_fcoe_uplink_pc_role_by_moid) | **GET** /api/v1/fabric/FcoeUplinkPcRoles/{Moid} | Read a 'fabric.FcoeUplinkPcRole' resource.
-*FabricApi* | [**get_fabric_fcoe_uplink_pc_role_list**](docs/FabricApi.md#get_fabric_fcoe_uplink_pc_role_list) | **GET** /api/v1/fabric/FcoeUplinkPcRoles | Read a 'fabric.FcoeUplinkPcRole' resource.
-*FabricApi* | [**get_fabric_fcoe_uplink_role_by_moid**](docs/FabricApi.md#get_fabric_fcoe_uplink_role_by_moid) | **GET** /api/v1/fabric/FcoeUplinkRoles/{Moid} | Read a 'fabric.FcoeUplinkRole' resource.
-*FabricApi* | [**get_fabric_fcoe_uplink_role_list**](docs/FabricApi.md#get_fabric_fcoe_uplink_role_list) | **GET** /api/v1/fabric/FcoeUplinkRoles | Read a 'fabric.FcoeUplinkRole' resource.
-*FabricApi* | [**get_fabric_flow_control_policy_by_moid**](docs/FabricApi.md#get_fabric_flow_control_policy_by_moid) | **GET** /api/v1/fabric/FlowControlPolicies/{Moid} | Read a 'fabric.FlowControlPolicy' resource.
-*FabricApi* | [**get_fabric_flow_control_policy_list**](docs/FabricApi.md#get_fabric_flow_control_policy_list) | **GET** /api/v1/fabric/FlowControlPolicies | Read a 'fabric.FlowControlPolicy' resource.
-*FabricApi* | [**get_fabric_link_aggregation_policy_by_moid**](docs/FabricApi.md#get_fabric_link_aggregation_policy_by_moid) | **GET** /api/v1/fabric/LinkAggregationPolicies/{Moid} | Read a 'fabric.LinkAggregationPolicy' resource.
-*FabricApi* | [**get_fabric_link_aggregation_policy_list**](docs/FabricApi.md#get_fabric_link_aggregation_policy_list) | **GET** /api/v1/fabric/LinkAggregationPolicies | Read a 'fabric.LinkAggregationPolicy' resource.
-*FabricApi* | [**get_fabric_link_control_policy_by_moid**](docs/FabricApi.md#get_fabric_link_control_policy_by_moid) | **GET** /api/v1/fabric/LinkControlPolicies/{Moid} | Read a 'fabric.LinkControlPolicy' resource.
-*FabricApi* | [**get_fabric_link_control_policy_list**](docs/FabricApi.md#get_fabric_link_control_policy_list) | **GET** /api/v1/fabric/LinkControlPolicies | Read a 'fabric.LinkControlPolicy' resource.
-*FabricApi* | [**get_fabric_multicast_policy_by_moid**](docs/FabricApi.md#get_fabric_multicast_policy_by_moid) | **GET** /api/v1/fabric/MulticastPolicies/{Moid} | Read a 'fabric.MulticastPolicy' resource.
-*FabricApi* | [**get_fabric_multicast_policy_list**](docs/FabricApi.md#get_fabric_multicast_policy_list) | **GET** /api/v1/fabric/MulticastPolicies | Read a 'fabric.MulticastPolicy' resource.
-*FabricApi* | [**get_fabric_pc_member_by_moid**](docs/FabricApi.md#get_fabric_pc_member_by_moid) | **GET** /api/v1/fabric/PcMembers/{Moid} | Read a 'fabric.PcMember' resource.
-*FabricApi* | [**get_fabric_pc_member_list**](docs/FabricApi.md#get_fabric_pc_member_list) | **GET** /api/v1/fabric/PcMembers | Read a 'fabric.PcMember' resource.
-*FabricApi* | [**get_fabric_pc_operation_by_moid**](docs/FabricApi.md#get_fabric_pc_operation_by_moid) | **GET** /api/v1/fabric/PcOperations/{Moid} | Read a 'fabric.PcOperation' resource.
-*FabricApi* | [**get_fabric_pc_operation_list**](docs/FabricApi.md#get_fabric_pc_operation_list) | **GET** /api/v1/fabric/PcOperations | Read a 'fabric.PcOperation' resource.
-*FabricApi* | [**get_fabric_port_mode_by_moid**](docs/FabricApi.md#get_fabric_port_mode_by_moid) | **GET** /api/v1/fabric/PortModes/{Moid} | Read a 'fabric.PortMode' resource.
-*FabricApi* | [**get_fabric_port_mode_list**](docs/FabricApi.md#get_fabric_port_mode_list) | **GET** /api/v1/fabric/PortModes | Read a 'fabric.PortMode' resource.
-*FabricApi* | [**get_fabric_port_operation_by_moid**](docs/FabricApi.md#get_fabric_port_operation_by_moid) | **GET** /api/v1/fabric/PortOperations/{Moid} | Read a 'fabric.PortOperation' resource.
-*FabricApi* | [**get_fabric_port_operation_list**](docs/FabricApi.md#get_fabric_port_operation_list) | **GET** /api/v1/fabric/PortOperations | Read a 'fabric.PortOperation' resource.
-*FabricApi* | [**get_fabric_port_policy_by_moid**](docs/FabricApi.md#get_fabric_port_policy_by_moid) | **GET** /api/v1/fabric/PortPolicies/{Moid} | Read a 'fabric.PortPolicy' resource.
-*FabricApi* | [**get_fabric_port_policy_list**](docs/FabricApi.md#get_fabric_port_policy_list) | **GET** /api/v1/fabric/PortPolicies | Read a 'fabric.PortPolicy' resource.
-*FabricApi* | [**get_fabric_server_role_by_moid**](docs/FabricApi.md#get_fabric_server_role_by_moid) | **GET** /api/v1/fabric/ServerRoles/{Moid} | Read a 'fabric.ServerRole' resource.
-*FabricApi* | [**get_fabric_server_role_list**](docs/FabricApi.md#get_fabric_server_role_list) | **GET** /api/v1/fabric/ServerRoles | Read a 'fabric.ServerRole' resource.
-*FabricApi* | [**get_fabric_switch_cluster_profile_by_moid**](docs/FabricApi.md#get_fabric_switch_cluster_profile_by_moid) | **GET** /api/v1/fabric/SwitchClusterProfiles/{Moid} | Read a 'fabric.SwitchClusterProfile' resource.
-*FabricApi* | [**get_fabric_switch_cluster_profile_list**](docs/FabricApi.md#get_fabric_switch_cluster_profile_list) | **GET** /api/v1/fabric/SwitchClusterProfiles | Read a 'fabric.SwitchClusterProfile' resource.
-*FabricApi* | [**get_fabric_switch_control_policy_by_moid**](docs/FabricApi.md#get_fabric_switch_control_policy_by_moid) | **GET** /api/v1/fabric/SwitchControlPolicies/{Moid} | Read a 'fabric.SwitchControlPolicy' resource.
-*FabricApi* | [**get_fabric_switch_control_policy_list**](docs/FabricApi.md#get_fabric_switch_control_policy_list) | **GET** /api/v1/fabric/SwitchControlPolicies | Read a 'fabric.SwitchControlPolicy' resource.
-*FabricApi* | [**get_fabric_switch_profile_by_moid**](docs/FabricApi.md#get_fabric_switch_profile_by_moid) | **GET** /api/v1/fabric/SwitchProfiles/{Moid} | Read a 'fabric.SwitchProfile' resource.
-*FabricApi* | [**get_fabric_switch_profile_list**](docs/FabricApi.md#get_fabric_switch_profile_list) | **GET** /api/v1/fabric/SwitchProfiles | Read a 'fabric.SwitchProfile' resource.
-*FabricApi* | [**get_fabric_system_qos_policy_by_moid**](docs/FabricApi.md#get_fabric_system_qos_policy_by_moid) | **GET** /api/v1/fabric/SystemQosPolicies/{Moid} | Read a 'fabric.SystemQosPolicy' resource.
-*FabricApi* | [**get_fabric_system_qos_policy_list**](docs/FabricApi.md#get_fabric_system_qos_policy_list) | **GET** /api/v1/fabric/SystemQosPolicies | Read a 'fabric.SystemQosPolicy' resource.
-*FabricApi* | [**get_fabric_uplink_pc_role_by_moid**](docs/FabricApi.md#get_fabric_uplink_pc_role_by_moid) | **GET** /api/v1/fabric/UplinkPcRoles/{Moid} | Read a 'fabric.UplinkPcRole' resource.
-*FabricApi* | [**get_fabric_uplink_pc_role_list**](docs/FabricApi.md#get_fabric_uplink_pc_role_list) | **GET** /api/v1/fabric/UplinkPcRoles | Read a 'fabric.UplinkPcRole' resource.
-*FabricApi* | [**get_fabric_uplink_role_by_moid**](docs/FabricApi.md#get_fabric_uplink_role_by_moid) | **GET** /api/v1/fabric/UplinkRoles/{Moid} | Read a 'fabric.UplinkRole' resource.
-*FabricApi* | [**get_fabric_uplink_role_list**](docs/FabricApi.md#get_fabric_uplink_role_list) | **GET** /api/v1/fabric/UplinkRoles | Read a 'fabric.UplinkRole' resource.
-*FabricApi* | [**get_fabric_vlan_by_moid**](docs/FabricApi.md#get_fabric_vlan_by_moid) | **GET** /api/v1/fabric/Vlans/{Moid} | Read a 'fabric.Vlan' resource.
-*FabricApi* | [**get_fabric_vlan_list**](docs/FabricApi.md#get_fabric_vlan_list) | **GET** /api/v1/fabric/Vlans | Read a 'fabric.Vlan' resource.
-*FabricApi* | [**get_fabric_vsan_by_moid**](docs/FabricApi.md#get_fabric_vsan_by_moid) | **GET** /api/v1/fabric/Vsans/{Moid} | Read a 'fabric.Vsan' resource.
-*FabricApi* | [**get_fabric_vsan_list**](docs/FabricApi.md#get_fabric_vsan_list) | **GET** /api/v1/fabric/Vsans | Read a 'fabric.Vsan' resource.
-*FabricApi* | [**patch_fabric_appliance_pc_role**](docs/FabricApi.md#patch_fabric_appliance_pc_role) | **PATCH** /api/v1/fabric/AppliancePcRoles/{Moid} | Update a 'fabric.AppliancePcRole' resource.
-*FabricApi* | [**patch_fabric_appliance_role**](docs/FabricApi.md#patch_fabric_appliance_role) | **PATCH** /api/v1/fabric/ApplianceRoles/{Moid} | Update a 'fabric.ApplianceRole' resource.
-*FabricApi* | [**patch_fabric_element_identity**](docs/FabricApi.md#patch_fabric_element_identity) | **PATCH** /api/v1/fabric/ElementIdentities/{Moid} | Update a 'fabric.ElementIdentity' resource.
-*FabricApi* | [**patch_fabric_eth_network_control_policy**](docs/FabricApi.md#patch_fabric_eth_network_control_policy) | **PATCH** /api/v1/fabric/EthNetworkControlPolicies/{Moid} | Update a 'fabric.EthNetworkControlPolicy' resource.
-*FabricApi* | [**patch_fabric_eth_network_group_policy**](docs/FabricApi.md#patch_fabric_eth_network_group_policy) | **PATCH** /api/v1/fabric/EthNetworkGroupPolicies/{Moid} | Update a 'fabric.EthNetworkGroupPolicy' resource.
-*FabricApi* | [**patch_fabric_eth_network_policy**](docs/FabricApi.md#patch_fabric_eth_network_policy) | **PATCH** /api/v1/fabric/EthNetworkPolicies/{Moid} | Update a 'fabric.EthNetworkPolicy' resource.
-*FabricApi* | [**patch_fabric_fc_network_policy**](docs/FabricApi.md#patch_fabric_fc_network_policy) | **PATCH** /api/v1/fabric/FcNetworkPolicies/{Moid} | Update a 'fabric.FcNetworkPolicy' resource.
-*FabricApi* | [**patch_fabric_fc_uplink_pc_role**](docs/FabricApi.md#patch_fabric_fc_uplink_pc_role) | **PATCH** /api/v1/fabric/FcUplinkPcRoles/{Moid} | Update a 'fabric.FcUplinkPcRole' resource.
-*FabricApi* | [**patch_fabric_fc_uplink_role**](docs/FabricApi.md#patch_fabric_fc_uplink_role) | **PATCH** /api/v1/fabric/FcUplinkRoles/{Moid} | Update a 'fabric.FcUplinkRole' resource.
-*FabricApi* | [**patch_fabric_fcoe_uplink_pc_role**](docs/FabricApi.md#patch_fabric_fcoe_uplink_pc_role) | **PATCH** /api/v1/fabric/FcoeUplinkPcRoles/{Moid} | Update a 'fabric.FcoeUplinkPcRole' resource.
-*FabricApi* | [**patch_fabric_fcoe_uplink_role**](docs/FabricApi.md#patch_fabric_fcoe_uplink_role) | **PATCH** /api/v1/fabric/FcoeUplinkRoles/{Moid} | Update a 'fabric.FcoeUplinkRole' resource.
-*FabricApi* | [**patch_fabric_flow_control_policy**](docs/FabricApi.md#patch_fabric_flow_control_policy) | **PATCH** /api/v1/fabric/FlowControlPolicies/{Moid} | Update a 'fabric.FlowControlPolicy' resource.
-*FabricApi* | [**patch_fabric_link_aggregation_policy**](docs/FabricApi.md#patch_fabric_link_aggregation_policy) | **PATCH** /api/v1/fabric/LinkAggregationPolicies/{Moid} | Update a 'fabric.LinkAggregationPolicy' resource.
-*FabricApi* | [**patch_fabric_link_control_policy**](docs/FabricApi.md#patch_fabric_link_control_policy) | **PATCH** /api/v1/fabric/LinkControlPolicies/{Moid} | Update a 'fabric.LinkControlPolicy' resource.
-*FabricApi* | [**patch_fabric_multicast_policy**](docs/FabricApi.md#patch_fabric_multicast_policy) | **PATCH** /api/v1/fabric/MulticastPolicies/{Moid} | Update a 'fabric.MulticastPolicy' resource.
-*FabricApi* | [**patch_fabric_pc_operation**](docs/FabricApi.md#patch_fabric_pc_operation) | **PATCH** /api/v1/fabric/PcOperations/{Moid} | Update a 'fabric.PcOperation' resource.
-*FabricApi* | [**patch_fabric_port_mode**](docs/FabricApi.md#patch_fabric_port_mode) | **PATCH** /api/v1/fabric/PortModes/{Moid} | Update a 'fabric.PortMode' resource.
-*FabricApi* | [**patch_fabric_port_operation**](docs/FabricApi.md#patch_fabric_port_operation) | **PATCH** /api/v1/fabric/PortOperations/{Moid} | Update a 'fabric.PortOperation' resource.
-*FabricApi* | [**patch_fabric_port_policy**](docs/FabricApi.md#patch_fabric_port_policy) | **PATCH** /api/v1/fabric/PortPolicies/{Moid} | Update a 'fabric.PortPolicy' resource.
-*FabricApi* | [**patch_fabric_server_role**](docs/FabricApi.md#patch_fabric_server_role) | **PATCH** /api/v1/fabric/ServerRoles/{Moid} | Update a 'fabric.ServerRole' resource.
-*FabricApi* | [**patch_fabric_switch_cluster_profile**](docs/FabricApi.md#patch_fabric_switch_cluster_profile) | **PATCH** /api/v1/fabric/SwitchClusterProfiles/{Moid} | Update a 'fabric.SwitchClusterProfile' resource.
-*FabricApi* | [**patch_fabric_switch_control_policy**](docs/FabricApi.md#patch_fabric_switch_control_policy) | **PATCH** /api/v1/fabric/SwitchControlPolicies/{Moid} | Update a 'fabric.SwitchControlPolicy' resource.
-*FabricApi* | [**patch_fabric_switch_profile**](docs/FabricApi.md#patch_fabric_switch_profile) | **PATCH** /api/v1/fabric/SwitchProfiles/{Moid} | Update a 'fabric.SwitchProfile' resource.
-*FabricApi* | [**patch_fabric_system_qos_policy**](docs/FabricApi.md#patch_fabric_system_qos_policy) | **PATCH** /api/v1/fabric/SystemQosPolicies/{Moid} | Update a 'fabric.SystemQosPolicy' resource.
-*FabricApi* | [**patch_fabric_uplink_pc_role**](docs/FabricApi.md#patch_fabric_uplink_pc_role) | **PATCH** /api/v1/fabric/UplinkPcRoles/{Moid} | Update a 'fabric.UplinkPcRole' resource.
-*FabricApi* | [**patch_fabric_uplink_role**](docs/FabricApi.md#patch_fabric_uplink_role) | **PATCH** /api/v1/fabric/UplinkRoles/{Moid} | Update a 'fabric.UplinkRole' resource.
-*FabricApi* | [**patch_fabric_vlan**](docs/FabricApi.md#patch_fabric_vlan) | **PATCH** /api/v1/fabric/Vlans/{Moid} | Update a 'fabric.Vlan' resource.
-*FabricApi* | [**patch_fabric_vsan**](docs/FabricApi.md#patch_fabric_vsan) | **PATCH** /api/v1/fabric/Vsans/{Moid} | Update a 'fabric.Vsan' resource.
-*FabricApi* | [**update_fabric_appliance_pc_role**](docs/FabricApi.md#update_fabric_appliance_pc_role) | **POST** /api/v1/fabric/AppliancePcRoles/{Moid} | Update a 'fabric.AppliancePcRole' resource.
-*FabricApi* | [**update_fabric_appliance_role**](docs/FabricApi.md#update_fabric_appliance_role) | **POST** /api/v1/fabric/ApplianceRoles/{Moid} | Update a 'fabric.ApplianceRole' resource.
-*FabricApi* | [**update_fabric_element_identity**](docs/FabricApi.md#update_fabric_element_identity) | **POST** /api/v1/fabric/ElementIdentities/{Moid} | Update a 'fabric.ElementIdentity' resource.
-*FabricApi* | [**update_fabric_eth_network_control_policy**](docs/FabricApi.md#update_fabric_eth_network_control_policy) | **POST** /api/v1/fabric/EthNetworkControlPolicies/{Moid} | Update a 'fabric.EthNetworkControlPolicy' resource.
-*FabricApi* | [**update_fabric_eth_network_group_policy**](docs/FabricApi.md#update_fabric_eth_network_group_policy) | **POST** /api/v1/fabric/EthNetworkGroupPolicies/{Moid} | Update a 'fabric.EthNetworkGroupPolicy' resource.
-*FabricApi* | [**update_fabric_eth_network_policy**](docs/FabricApi.md#update_fabric_eth_network_policy) | **POST** /api/v1/fabric/EthNetworkPolicies/{Moid} | Update a 'fabric.EthNetworkPolicy' resource.
-*FabricApi* | [**update_fabric_fc_network_policy**](docs/FabricApi.md#update_fabric_fc_network_policy) | **POST** /api/v1/fabric/FcNetworkPolicies/{Moid} | Update a 'fabric.FcNetworkPolicy' resource.
-*FabricApi* | [**update_fabric_fc_uplink_pc_role**](docs/FabricApi.md#update_fabric_fc_uplink_pc_role) | **POST** /api/v1/fabric/FcUplinkPcRoles/{Moid} | Update a 'fabric.FcUplinkPcRole' resource.
-*FabricApi* | [**update_fabric_fc_uplink_role**](docs/FabricApi.md#update_fabric_fc_uplink_role) | **POST** /api/v1/fabric/FcUplinkRoles/{Moid} | Update a 'fabric.FcUplinkRole' resource.
-*FabricApi* | [**update_fabric_fcoe_uplink_pc_role**](docs/FabricApi.md#update_fabric_fcoe_uplink_pc_role) | **POST** /api/v1/fabric/FcoeUplinkPcRoles/{Moid} | Update a 'fabric.FcoeUplinkPcRole' resource.
-*FabricApi* | [**update_fabric_fcoe_uplink_role**](docs/FabricApi.md#update_fabric_fcoe_uplink_role) | **POST** /api/v1/fabric/FcoeUplinkRoles/{Moid} | Update a 'fabric.FcoeUplinkRole' resource.
-*FabricApi* | [**update_fabric_flow_control_policy**](docs/FabricApi.md#update_fabric_flow_control_policy) | **POST** /api/v1/fabric/FlowControlPolicies/{Moid} | Update a 'fabric.FlowControlPolicy' resource.
-*FabricApi* | [**update_fabric_link_aggregation_policy**](docs/FabricApi.md#update_fabric_link_aggregation_policy) | **POST** /api/v1/fabric/LinkAggregationPolicies/{Moid} | Update a 'fabric.LinkAggregationPolicy' resource.
-*FabricApi* | [**update_fabric_link_control_policy**](docs/FabricApi.md#update_fabric_link_control_policy) | **POST** /api/v1/fabric/LinkControlPolicies/{Moid} | Update a 'fabric.LinkControlPolicy' resource.
-*FabricApi* | [**update_fabric_multicast_policy**](docs/FabricApi.md#update_fabric_multicast_policy) | **POST** /api/v1/fabric/MulticastPolicies/{Moid} | Update a 'fabric.MulticastPolicy' resource.
-*FabricApi* | [**update_fabric_pc_operation**](docs/FabricApi.md#update_fabric_pc_operation) | **POST** /api/v1/fabric/PcOperations/{Moid} | Update a 'fabric.PcOperation' resource.
-*FabricApi* | [**update_fabric_port_mode**](docs/FabricApi.md#update_fabric_port_mode) | **POST** /api/v1/fabric/PortModes/{Moid} | Update a 'fabric.PortMode' resource.
-*FabricApi* | [**update_fabric_port_operation**](docs/FabricApi.md#update_fabric_port_operation) | **POST** /api/v1/fabric/PortOperations/{Moid} | Update a 'fabric.PortOperation' resource.
-*FabricApi* | [**update_fabric_port_policy**](docs/FabricApi.md#update_fabric_port_policy) | **POST** /api/v1/fabric/PortPolicies/{Moid} | Update a 'fabric.PortPolicy' resource.
-*FabricApi* | [**update_fabric_server_role**](docs/FabricApi.md#update_fabric_server_role) | **POST** /api/v1/fabric/ServerRoles/{Moid} | Update a 'fabric.ServerRole' resource.
-*FabricApi* | [**update_fabric_switch_cluster_profile**](docs/FabricApi.md#update_fabric_switch_cluster_profile) | **POST** /api/v1/fabric/SwitchClusterProfiles/{Moid} | Update a 'fabric.SwitchClusterProfile' resource.
-*FabricApi* | [**update_fabric_switch_control_policy**](docs/FabricApi.md#update_fabric_switch_control_policy) | **POST** /api/v1/fabric/SwitchControlPolicies/{Moid} | Update a 'fabric.SwitchControlPolicy' resource.
-*FabricApi* | [**update_fabric_switch_profile**](docs/FabricApi.md#update_fabric_switch_profile) | **POST** /api/v1/fabric/SwitchProfiles/{Moid} | Update a 'fabric.SwitchProfile' resource.
-*FabricApi* | [**update_fabric_system_qos_policy**](docs/FabricApi.md#update_fabric_system_qos_policy) | **POST** /api/v1/fabric/SystemQosPolicies/{Moid} | Update a 'fabric.SystemQosPolicy' resource.
-*FabricApi* | [**update_fabric_uplink_pc_role**](docs/FabricApi.md#update_fabric_uplink_pc_role) | **POST** /api/v1/fabric/UplinkPcRoles/{Moid} | Update a 'fabric.UplinkPcRole' resource.
-*FabricApi* | [**update_fabric_uplink_role**](docs/FabricApi.md#update_fabric_uplink_role) | **POST** /api/v1/fabric/UplinkRoles/{Moid} | Update a 'fabric.UplinkRole' resource.
-*FabricApi* | [**update_fabric_vlan**](docs/FabricApi.md#update_fabric_vlan) | **POST** /api/v1/fabric/Vlans/{Moid} | Update a 'fabric.Vlan' resource.
-*FabricApi* | [**update_fabric_vsan**](docs/FabricApi.md#update_fabric_vsan) | **POST** /api/v1/fabric/Vsans/{Moid} | Update a 'fabric.Vsan' resource.
-*FaultApi* | [**get_fault_instance_by_moid**](docs/FaultApi.md#get_fault_instance_by_moid) | **GET** /api/v1/fault/Instances/{Moid} | Read a 'fault.Instance' resource.
-*FaultApi* | [**get_fault_instance_list**](docs/FaultApi.md#get_fault_instance_list) | **GET** /api/v1/fault/Instances | Read a 'fault.Instance' resource.
-*FaultApi* | [**patch_fault_instance**](docs/FaultApi.md#patch_fault_instance) | **PATCH** /api/v1/fault/Instances/{Moid} | Update a 'fault.Instance' resource.
-*FaultApi* | [**update_fault_instance**](docs/FaultApi.md#update_fault_instance) | **POST** /api/v1/fault/Instances/{Moid} | Update a 'fault.Instance' resource.
-*FcApi* | [**get_fc_physical_port_by_moid**](docs/FcApi.md#get_fc_physical_port_by_moid) | **GET** /api/v1/fc/PhysicalPorts/{Moid} | Read a 'fc.PhysicalPort' resource.
-*FcApi* | [**get_fc_physical_port_list**](docs/FcApi.md#get_fc_physical_port_list) | **GET** /api/v1/fc/PhysicalPorts | Read a 'fc.PhysicalPort' resource.
-*FcApi* | [**get_fc_port_channel_by_moid**](docs/FcApi.md#get_fc_port_channel_by_moid) | **GET** /api/v1/fc/PortChannels/{Moid} | Read a 'fc.PortChannel' resource.
-*FcApi* | [**get_fc_port_channel_list**](docs/FcApi.md#get_fc_port_channel_list) | **GET** /api/v1/fc/PortChannels | Read a 'fc.PortChannel' resource.
-*FcApi* | [**patch_fc_physical_port**](docs/FcApi.md#patch_fc_physical_port) | **PATCH** /api/v1/fc/PhysicalPorts/{Moid} | Update a 'fc.PhysicalPort' resource.
-*FcApi* | [**update_fc_physical_port**](docs/FcApi.md#update_fc_physical_port) | **POST** /api/v1/fc/PhysicalPorts/{Moid} | Update a 'fc.PhysicalPort' resource.
-*FcpoolApi* | [**create_fcpool_pool**](docs/FcpoolApi.md#create_fcpool_pool) | **POST** /api/v1/fcpool/Pools | Create a 'fcpool.Pool' resource.
-*FcpoolApi* | [**delete_fcpool_lease**](docs/FcpoolApi.md#delete_fcpool_lease) | **DELETE** /api/v1/fcpool/Leases/{Moid} | Delete a 'fcpool.Lease' resource.
-*FcpoolApi* | [**delete_fcpool_pool**](docs/FcpoolApi.md#delete_fcpool_pool) | **DELETE** /api/v1/fcpool/Pools/{Moid} | Delete a 'fcpool.Pool' resource.
-*FcpoolApi* | [**get_fcpool_fc_block_by_moid**](docs/FcpoolApi.md#get_fcpool_fc_block_by_moid) | **GET** /api/v1/fcpool/FcBlocks/{Moid} | Read a 'fcpool.FcBlock' resource.
-*FcpoolApi* | [**get_fcpool_fc_block_list**](docs/FcpoolApi.md#get_fcpool_fc_block_list) | **GET** /api/v1/fcpool/FcBlocks | Read a 'fcpool.FcBlock' resource.
-*FcpoolApi* | [**get_fcpool_lease_by_moid**](docs/FcpoolApi.md#get_fcpool_lease_by_moid) | **GET** /api/v1/fcpool/Leases/{Moid} | Read a 'fcpool.Lease' resource.
-*FcpoolApi* | [**get_fcpool_lease_list**](docs/FcpoolApi.md#get_fcpool_lease_list) | **GET** /api/v1/fcpool/Leases | Read a 'fcpool.Lease' resource.
-*FcpoolApi* | [**get_fcpool_pool_by_moid**](docs/FcpoolApi.md#get_fcpool_pool_by_moid) | **GET** /api/v1/fcpool/Pools/{Moid} | Read a 'fcpool.Pool' resource.
-*FcpoolApi* | [**get_fcpool_pool_list**](docs/FcpoolApi.md#get_fcpool_pool_list) | **GET** /api/v1/fcpool/Pools | Read a 'fcpool.Pool' resource.
-*FcpoolApi* | [**get_fcpool_pool_member_by_moid**](docs/FcpoolApi.md#get_fcpool_pool_member_by_moid) | **GET** /api/v1/fcpool/PoolMembers/{Moid} | Read a 'fcpool.PoolMember' resource.
-*FcpoolApi* | [**get_fcpool_pool_member_list**](docs/FcpoolApi.md#get_fcpool_pool_member_list) | **GET** /api/v1/fcpool/PoolMembers | Read a 'fcpool.PoolMember' resource.
-*FcpoolApi* | [**get_fcpool_universe_by_moid**](docs/FcpoolApi.md#get_fcpool_universe_by_moid) | **GET** /api/v1/fcpool/Universes/{Moid} | Read a 'fcpool.Universe' resource.
-*FcpoolApi* | [**get_fcpool_universe_list**](docs/FcpoolApi.md#get_fcpool_universe_list) | **GET** /api/v1/fcpool/Universes | Read a 'fcpool.Universe' resource.
-*FcpoolApi* | [**patch_fcpool_pool**](docs/FcpoolApi.md#patch_fcpool_pool) | **PATCH** /api/v1/fcpool/Pools/{Moid} | Update a 'fcpool.Pool' resource.
-*FcpoolApi* | [**update_fcpool_pool**](docs/FcpoolApi.md#update_fcpool_pool) | **POST** /api/v1/fcpool/Pools/{Moid} | Update a 'fcpool.Pool' resource.
-*FeedbackApi* | [**create_feedback_feedback_post**](docs/FeedbackApi.md#create_feedback_feedback_post) | **POST** /api/v1/feedback/FeedbackPosts | Create a 'feedback.FeedbackPost' resource.
-*FirmwareApi* | [**create_firmware_bios_descriptor**](docs/FirmwareApi.md#create_firmware_bios_descriptor) | **POST** /api/v1/firmware/BiosDescriptors | Create a 'firmware.BiosDescriptor' resource.
-*FirmwareApi* | [**create_firmware_board_controller_descriptor**](docs/FirmwareApi.md#create_firmware_board_controller_descriptor) | **POST** /api/v1/firmware/BoardControllerDescriptors | Create a 'firmware.BoardControllerDescriptor' resource.
-*FirmwareApi* | [**create_firmware_chassis_upgrade**](docs/FirmwareApi.md#create_firmware_chassis_upgrade) | **POST** /api/v1/firmware/ChassisUpgrades | Create a 'firmware.ChassisUpgrade' resource.
-*FirmwareApi* | [**create_firmware_cimc_descriptor**](docs/FirmwareApi.md#create_firmware_cimc_descriptor) | **POST** /api/v1/firmware/CimcDescriptors | Create a 'firmware.CimcDescriptor' resource.
-*FirmwareApi* | [**create_firmware_dimm_descriptor**](docs/FirmwareApi.md#create_firmware_dimm_descriptor) | **POST** /api/v1/firmware/DimmDescriptors | Create a 'firmware.DimmDescriptor' resource.
-*FirmwareApi* | [**create_firmware_distributable**](docs/FirmwareApi.md#create_firmware_distributable) | **POST** /api/v1/firmware/Distributables | Create a 'firmware.Distributable' resource.
-*FirmwareApi* | [**create_firmware_drive_descriptor**](docs/FirmwareApi.md#create_firmware_drive_descriptor) | **POST** /api/v1/firmware/DriveDescriptors | Create a 'firmware.DriveDescriptor' resource.
-*FirmwareApi* | [**create_firmware_driver_distributable**](docs/FirmwareApi.md#create_firmware_driver_distributable) | **POST** /api/v1/firmware/DriverDistributables | Create a 'firmware.DriverDistributable' resource.
-*FirmwareApi* | [**create_firmware_eula**](docs/FirmwareApi.md#create_firmware_eula) | **POST** /api/v1/firmware/Eulas | Create a 'firmware.Eula' resource.
-*FirmwareApi* | [**create_firmware_gpu_descriptor**](docs/FirmwareApi.md#create_firmware_gpu_descriptor) | **POST** /api/v1/firmware/GpuDescriptors | Create a 'firmware.GpuDescriptor' resource.
-*FirmwareApi* | [**create_firmware_hba_descriptor**](docs/FirmwareApi.md#create_firmware_hba_descriptor) | **POST** /api/v1/firmware/HbaDescriptors | Create a 'firmware.HbaDescriptor' resource.
-*FirmwareApi* | [**create_firmware_iom_descriptor**](docs/FirmwareApi.md#create_firmware_iom_descriptor) | **POST** /api/v1/firmware/IomDescriptors | Create a 'firmware.IomDescriptor' resource.
-*FirmwareApi* | [**create_firmware_mswitch_descriptor**](docs/FirmwareApi.md#create_firmware_mswitch_descriptor) | **POST** /api/v1/firmware/MswitchDescriptors | Create a 'firmware.MswitchDescriptor' resource.
-*FirmwareApi* | [**create_firmware_nxos_descriptor**](docs/FirmwareApi.md#create_firmware_nxos_descriptor) | **POST** /api/v1/firmware/NxosDescriptors | Create a 'firmware.NxosDescriptor' resource.
-*FirmwareApi* | [**create_firmware_pcie_descriptor**](docs/FirmwareApi.md#create_firmware_pcie_descriptor) | **POST** /api/v1/firmware/PcieDescriptors | Create a 'firmware.PcieDescriptor' resource.
-*FirmwareApi* | [**create_firmware_psu_descriptor**](docs/FirmwareApi.md#create_firmware_psu_descriptor) | **POST** /api/v1/firmware/PsuDescriptors | Create a 'firmware.PsuDescriptor' resource.
-*FirmwareApi* | [**create_firmware_sas_expander_descriptor**](docs/FirmwareApi.md#create_firmware_sas_expander_descriptor) | **POST** /api/v1/firmware/SasExpanderDescriptors | Create a 'firmware.SasExpanderDescriptor' resource.
-*FirmwareApi* | [**create_firmware_server_configuration_utility_distributable**](docs/FirmwareApi.md#create_firmware_server_configuration_utility_distributable) | **POST** /api/v1/firmware/ServerConfigurationUtilityDistributables | Create a 'firmware.ServerConfigurationUtilityDistributable' resource.
-*FirmwareApi* | [**create_firmware_storage_controller_descriptor**](docs/FirmwareApi.md#create_firmware_storage_controller_descriptor) | **POST** /api/v1/firmware/StorageControllerDescriptors | Create a 'firmware.StorageControllerDescriptor' resource.
-*FirmwareApi* | [**create_firmware_switch_upgrade**](docs/FirmwareApi.md#create_firmware_switch_upgrade) | **POST** /api/v1/firmware/SwitchUpgrades | Create a 'firmware.SwitchUpgrade' resource.
-*FirmwareApi* | [**create_firmware_unsupported_version_upgrade**](docs/FirmwareApi.md#create_firmware_unsupported_version_upgrade) | **POST** /api/v1/firmware/UnsupportedVersionUpgrades | Create a 'firmware.UnsupportedVersionUpgrade' resource.
-*FirmwareApi* | [**create_firmware_upgrade**](docs/FirmwareApi.md#create_firmware_upgrade) | **POST** /api/v1/firmware/Upgrades | Create a 'firmware.Upgrade' resource.
-*FirmwareApi* | [**create_firmware_upgrade_impact**](docs/FirmwareApi.md#create_firmware_upgrade_impact) | **POST** /api/v1/firmware/UpgradeImpacts | Create a 'firmware.UpgradeImpact' resource.
-*FirmwareApi* | [**delete_firmware_bios_descriptor**](docs/FirmwareApi.md#delete_firmware_bios_descriptor) | **DELETE** /api/v1/firmware/BiosDescriptors/{Moid} | Delete a 'firmware.BiosDescriptor' resource.
-*FirmwareApi* | [**delete_firmware_board_controller_descriptor**](docs/FirmwareApi.md#delete_firmware_board_controller_descriptor) | **DELETE** /api/v1/firmware/BoardControllerDescriptors/{Moid} | Delete a 'firmware.BoardControllerDescriptor' resource.
-*FirmwareApi* | [**delete_firmware_chassis_upgrade**](docs/FirmwareApi.md#delete_firmware_chassis_upgrade) | **DELETE** /api/v1/firmware/ChassisUpgrades/{Moid} | Delete a 'firmware.ChassisUpgrade' resource.
-*FirmwareApi* | [**delete_firmware_cimc_descriptor**](docs/FirmwareApi.md#delete_firmware_cimc_descriptor) | **DELETE** /api/v1/firmware/CimcDescriptors/{Moid} | Delete a 'firmware.CimcDescriptor' resource.
-*FirmwareApi* | [**delete_firmware_dimm_descriptor**](docs/FirmwareApi.md#delete_firmware_dimm_descriptor) | **DELETE** /api/v1/firmware/DimmDescriptors/{Moid} | Delete a 'firmware.DimmDescriptor' resource.
-*FirmwareApi* | [**delete_firmware_distributable**](docs/FirmwareApi.md#delete_firmware_distributable) | **DELETE** /api/v1/firmware/Distributables/{Moid} | Delete a 'firmware.Distributable' resource.
-*FirmwareApi* | [**delete_firmware_drive_descriptor**](docs/FirmwareApi.md#delete_firmware_drive_descriptor) | **DELETE** /api/v1/firmware/DriveDescriptors/{Moid} | Delete a 'firmware.DriveDescriptor' resource.
-*FirmwareApi* | [**delete_firmware_driver_distributable**](docs/FirmwareApi.md#delete_firmware_driver_distributable) | **DELETE** /api/v1/firmware/DriverDistributables/{Moid} | Delete a 'firmware.DriverDistributable' resource.
-*FirmwareApi* | [**delete_firmware_gpu_descriptor**](docs/FirmwareApi.md#delete_firmware_gpu_descriptor) | **DELETE** /api/v1/firmware/GpuDescriptors/{Moid} | Delete a 'firmware.GpuDescriptor' resource.
-*FirmwareApi* | [**delete_firmware_hba_descriptor**](docs/FirmwareApi.md#delete_firmware_hba_descriptor) | **DELETE** /api/v1/firmware/HbaDescriptors/{Moid} | Delete a 'firmware.HbaDescriptor' resource.
-*FirmwareApi* | [**delete_firmware_iom_descriptor**](docs/FirmwareApi.md#delete_firmware_iom_descriptor) | **DELETE** /api/v1/firmware/IomDescriptors/{Moid} | Delete a 'firmware.IomDescriptor' resource.
-*FirmwareApi* | [**delete_firmware_mswitch_descriptor**](docs/FirmwareApi.md#delete_firmware_mswitch_descriptor) | **DELETE** /api/v1/firmware/MswitchDescriptors/{Moid} | Delete a 'firmware.MswitchDescriptor' resource.
-*FirmwareApi* | [**delete_firmware_nxos_descriptor**](docs/FirmwareApi.md#delete_firmware_nxos_descriptor) | **DELETE** /api/v1/firmware/NxosDescriptors/{Moid} | Delete a 'firmware.NxosDescriptor' resource.
-*FirmwareApi* | [**delete_firmware_pcie_descriptor**](docs/FirmwareApi.md#delete_firmware_pcie_descriptor) | **DELETE** /api/v1/firmware/PcieDescriptors/{Moid} | Delete a 'firmware.PcieDescriptor' resource.
-*FirmwareApi* | [**delete_firmware_psu_descriptor**](docs/FirmwareApi.md#delete_firmware_psu_descriptor) | **DELETE** /api/v1/firmware/PsuDescriptors/{Moid} | Delete a 'firmware.PsuDescriptor' resource.
-*FirmwareApi* | [**delete_firmware_sas_expander_descriptor**](docs/FirmwareApi.md#delete_firmware_sas_expander_descriptor) | **DELETE** /api/v1/firmware/SasExpanderDescriptors/{Moid} | Delete a 'firmware.SasExpanderDescriptor' resource.
-*FirmwareApi* | [**delete_firmware_server_configuration_utility_distributable**](docs/FirmwareApi.md#delete_firmware_server_configuration_utility_distributable) | **DELETE** /api/v1/firmware/ServerConfigurationUtilityDistributables/{Moid} | Delete a 'firmware.ServerConfigurationUtilityDistributable' resource.
-*FirmwareApi* | [**delete_firmware_storage_controller_descriptor**](docs/FirmwareApi.md#delete_firmware_storage_controller_descriptor) | **DELETE** /api/v1/firmware/StorageControllerDescriptors/{Moid} | Delete a 'firmware.StorageControllerDescriptor' resource.
-*FirmwareApi* | [**delete_firmware_switch_upgrade**](docs/FirmwareApi.md#delete_firmware_switch_upgrade) | **DELETE** /api/v1/firmware/SwitchUpgrades/{Moid} | Delete a 'firmware.SwitchUpgrade' resource.
-*FirmwareApi* | [**delete_firmware_unsupported_version_upgrade**](docs/FirmwareApi.md#delete_firmware_unsupported_version_upgrade) | **DELETE** /api/v1/firmware/UnsupportedVersionUpgrades/{Moid} | Delete a 'firmware.UnsupportedVersionUpgrade' resource.
-*FirmwareApi* | [**delete_firmware_upgrade**](docs/FirmwareApi.md#delete_firmware_upgrade) | **DELETE** /api/v1/firmware/Upgrades/{Moid} | Delete a 'firmware.Upgrade' resource.
-*FirmwareApi* | [**get_firmware_bios_descriptor_by_moid**](docs/FirmwareApi.md#get_firmware_bios_descriptor_by_moid) | **GET** /api/v1/firmware/BiosDescriptors/{Moid} | Read a 'firmware.BiosDescriptor' resource.
-*FirmwareApi* | [**get_firmware_bios_descriptor_list**](docs/FirmwareApi.md#get_firmware_bios_descriptor_list) | **GET** /api/v1/firmware/BiosDescriptors | Read a 'firmware.BiosDescriptor' resource.
-*FirmwareApi* | [**get_firmware_board_controller_descriptor_by_moid**](docs/FirmwareApi.md#get_firmware_board_controller_descriptor_by_moid) | **GET** /api/v1/firmware/BoardControllerDescriptors/{Moid} | Read a 'firmware.BoardControllerDescriptor' resource.
-*FirmwareApi* | [**get_firmware_board_controller_descriptor_list**](docs/FirmwareApi.md#get_firmware_board_controller_descriptor_list) | **GET** /api/v1/firmware/BoardControllerDescriptors | Read a 'firmware.BoardControllerDescriptor' resource.
-*FirmwareApi* | [**get_firmware_chassis_upgrade_by_moid**](docs/FirmwareApi.md#get_firmware_chassis_upgrade_by_moid) | **GET** /api/v1/firmware/ChassisUpgrades/{Moid} | Read a 'firmware.ChassisUpgrade' resource.
-*FirmwareApi* | [**get_firmware_chassis_upgrade_list**](docs/FirmwareApi.md#get_firmware_chassis_upgrade_list) | **GET** /api/v1/firmware/ChassisUpgrades | Read a 'firmware.ChassisUpgrade' resource.
-*FirmwareApi* | [**get_firmware_cimc_descriptor_by_moid**](docs/FirmwareApi.md#get_firmware_cimc_descriptor_by_moid) | **GET** /api/v1/firmware/CimcDescriptors/{Moid} | Read a 'firmware.CimcDescriptor' resource.
-*FirmwareApi* | [**get_firmware_cimc_descriptor_list**](docs/FirmwareApi.md#get_firmware_cimc_descriptor_list) | **GET** /api/v1/firmware/CimcDescriptors | Read a 'firmware.CimcDescriptor' resource.
-*FirmwareApi* | [**get_firmware_dimm_descriptor_by_moid**](docs/FirmwareApi.md#get_firmware_dimm_descriptor_by_moid) | **GET** /api/v1/firmware/DimmDescriptors/{Moid} | Read a 'firmware.DimmDescriptor' resource.
-*FirmwareApi* | [**get_firmware_dimm_descriptor_list**](docs/FirmwareApi.md#get_firmware_dimm_descriptor_list) | **GET** /api/v1/firmware/DimmDescriptors | Read a 'firmware.DimmDescriptor' resource.
-*FirmwareApi* | [**get_firmware_distributable_by_moid**](docs/FirmwareApi.md#get_firmware_distributable_by_moid) | **GET** /api/v1/firmware/Distributables/{Moid} | Read a 'firmware.Distributable' resource.
-*FirmwareApi* | [**get_firmware_distributable_list**](docs/FirmwareApi.md#get_firmware_distributable_list) | **GET** /api/v1/firmware/Distributables | Read a 'firmware.Distributable' resource.
-*FirmwareApi* | [**get_firmware_distributable_meta_by_moid**](docs/FirmwareApi.md#get_firmware_distributable_meta_by_moid) | **GET** /api/v1/firmware/DistributableMeta/{Moid} | Read a 'firmware.DistributableMeta' resource.
-*FirmwareApi* | [**get_firmware_distributable_meta_list**](docs/FirmwareApi.md#get_firmware_distributable_meta_list) | **GET** /api/v1/firmware/DistributableMeta | Read a 'firmware.DistributableMeta' resource.
-*FirmwareApi* | [**get_firmware_drive_descriptor_by_moid**](docs/FirmwareApi.md#get_firmware_drive_descriptor_by_moid) | **GET** /api/v1/firmware/DriveDescriptors/{Moid} | Read a 'firmware.DriveDescriptor' resource.
-*FirmwareApi* | [**get_firmware_drive_descriptor_list**](docs/FirmwareApi.md#get_firmware_drive_descriptor_list) | **GET** /api/v1/firmware/DriveDescriptors | Read a 'firmware.DriveDescriptor' resource.
-*FirmwareApi* | [**get_firmware_driver_distributable_by_moid**](docs/FirmwareApi.md#get_firmware_driver_distributable_by_moid) | **GET** /api/v1/firmware/DriverDistributables/{Moid} | Read a 'firmware.DriverDistributable' resource.
-*FirmwareApi* | [**get_firmware_driver_distributable_list**](docs/FirmwareApi.md#get_firmware_driver_distributable_list) | **GET** /api/v1/firmware/DriverDistributables | Read a 'firmware.DriverDistributable' resource.
-*FirmwareApi* | [**get_firmware_eula_by_moid**](docs/FirmwareApi.md#get_firmware_eula_by_moid) | **GET** /api/v1/firmware/Eulas/{Moid} | Read a 'firmware.Eula' resource.
-*FirmwareApi* | [**get_firmware_eula_list**](docs/FirmwareApi.md#get_firmware_eula_list) | **GET** /api/v1/firmware/Eulas | Read a 'firmware.Eula' resource.
-*FirmwareApi* | [**get_firmware_firmware_summary_by_moid**](docs/FirmwareApi.md#get_firmware_firmware_summary_by_moid) | **GET** /api/v1/firmware/FirmwareSummaries/{Moid} | Read a 'firmware.FirmwareSummary' resource.
-*FirmwareApi* | [**get_firmware_firmware_summary_list**](docs/FirmwareApi.md#get_firmware_firmware_summary_list) | **GET** /api/v1/firmware/FirmwareSummaries | Read a 'firmware.FirmwareSummary' resource.
-*FirmwareApi* | [**get_firmware_gpu_descriptor_by_moid**](docs/FirmwareApi.md#get_firmware_gpu_descriptor_by_moid) | **GET** /api/v1/firmware/GpuDescriptors/{Moid} | Read a 'firmware.GpuDescriptor' resource.
-*FirmwareApi* | [**get_firmware_gpu_descriptor_list**](docs/FirmwareApi.md#get_firmware_gpu_descriptor_list) | **GET** /api/v1/firmware/GpuDescriptors | Read a 'firmware.GpuDescriptor' resource.
-*FirmwareApi* | [**get_firmware_hba_descriptor_by_moid**](docs/FirmwareApi.md#get_firmware_hba_descriptor_by_moid) | **GET** /api/v1/firmware/HbaDescriptors/{Moid} | Read a 'firmware.HbaDescriptor' resource.
-*FirmwareApi* | [**get_firmware_hba_descriptor_list**](docs/FirmwareApi.md#get_firmware_hba_descriptor_list) | **GET** /api/v1/firmware/HbaDescriptors | Read a 'firmware.HbaDescriptor' resource.
-*FirmwareApi* | [**get_firmware_iom_descriptor_by_moid**](docs/FirmwareApi.md#get_firmware_iom_descriptor_by_moid) | **GET** /api/v1/firmware/IomDescriptors/{Moid} | Read a 'firmware.IomDescriptor' resource.
-*FirmwareApi* | [**get_firmware_iom_descriptor_list**](docs/FirmwareApi.md#get_firmware_iom_descriptor_list) | **GET** /api/v1/firmware/IomDescriptors | Read a 'firmware.IomDescriptor' resource.
-*FirmwareApi* | [**get_firmware_mswitch_descriptor_by_moid**](docs/FirmwareApi.md#get_firmware_mswitch_descriptor_by_moid) | **GET** /api/v1/firmware/MswitchDescriptors/{Moid} | Read a 'firmware.MswitchDescriptor' resource.
-*FirmwareApi* | [**get_firmware_mswitch_descriptor_list**](docs/FirmwareApi.md#get_firmware_mswitch_descriptor_list) | **GET** /api/v1/firmware/MswitchDescriptors | Read a 'firmware.MswitchDescriptor' resource.
-*FirmwareApi* | [**get_firmware_nxos_descriptor_by_moid**](docs/FirmwareApi.md#get_firmware_nxos_descriptor_by_moid) | **GET** /api/v1/firmware/NxosDescriptors/{Moid} | Read a 'firmware.NxosDescriptor' resource.
-*FirmwareApi* | [**get_firmware_nxos_descriptor_list**](docs/FirmwareApi.md#get_firmware_nxos_descriptor_list) | **GET** /api/v1/firmware/NxosDescriptors | Read a 'firmware.NxosDescriptor' resource.
-*FirmwareApi* | [**get_firmware_pcie_descriptor_by_moid**](docs/FirmwareApi.md#get_firmware_pcie_descriptor_by_moid) | **GET** /api/v1/firmware/PcieDescriptors/{Moid} | Read a 'firmware.PcieDescriptor' resource.
-*FirmwareApi* | [**get_firmware_pcie_descriptor_list**](docs/FirmwareApi.md#get_firmware_pcie_descriptor_list) | **GET** /api/v1/firmware/PcieDescriptors | Read a 'firmware.PcieDescriptor' resource.
-*FirmwareApi* | [**get_firmware_psu_descriptor_by_moid**](docs/FirmwareApi.md#get_firmware_psu_descriptor_by_moid) | **GET** /api/v1/firmware/PsuDescriptors/{Moid} | Read a 'firmware.PsuDescriptor' resource.
-*FirmwareApi* | [**get_firmware_psu_descriptor_list**](docs/FirmwareApi.md#get_firmware_psu_descriptor_list) | **GET** /api/v1/firmware/PsuDescriptors | Read a 'firmware.PsuDescriptor' resource.
-*FirmwareApi* | [**get_firmware_running_firmware_by_moid**](docs/FirmwareApi.md#get_firmware_running_firmware_by_moid) | **GET** /api/v1/firmware/RunningFirmwares/{Moid} | Read a 'firmware.RunningFirmware' resource.
-*FirmwareApi* | [**get_firmware_running_firmware_list**](docs/FirmwareApi.md#get_firmware_running_firmware_list) | **GET** /api/v1/firmware/RunningFirmwares | Read a 'firmware.RunningFirmware' resource.
-*FirmwareApi* | [**get_firmware_sas_expander_descriptor_by_moid**](docs/FirmwareApi.md#get_firmware_sas_expander_descriptor_by_moid) | **GET** /api/v1/firmware/SasExpanderDescriptors/{Moid} | Read a 'firmware.SasExpanderDescriptor' resource.
-*FirmwareApi* | [**get_firmware_sas_expander_descriptor_list**](docs/FirmwareApi.md#get_firmware_sas_expander_descriptor_list) | **GET** /api/v1/firmware/SasExpanderDescriptors | Read a 'firmware.SasExpanderDescriptor' resource.
-*FirmwareApi* | [**get_firmware_server_configuration_utility_distributable_by_moid**](docs/FirmwareApi.md#get_firmware_server_configuration_utility_distributable_by_moid) | **GET** /api/v1/firmware/ServerConfigurationUtilityDistributables/{Moid} | Read a 'firmware.ServerConfigurationUtilityDistributable' resource.
-*FirmwareApi* | [**get_firmware_server_configuration_utility_distributable_list**](docs/FirmwareApi.md#get_firmware_server_configuration_utility_distributable_list) | **GET** /api/v1/firmware/ServerConfigurationUtilityDistributables | Read a 'firmware.ServerConfigurationUtilityDistributable' resource.
-*FirmwareApi* | [**get_firmware_storage_controller_descriptor_by_moid**](docs/FirmwareApi.md#get_firmware_storage_controller_descriptor_by_moid) | **GET** /api/v1/firmware/StorageControllerDescriptors/{Moid} | Read a 'firmware.StorageControllerDescriptor' resource.
-*FirmwareApi* | [**get_firmware_storage_controller_descriptor_list**](docs/FirmwareApi.md#get_firmware_storage_controller_descriptor_list) | **GET** /api/v1/firmware/StorageControllerDescriptors | Read a 'firmware.StorageControllerDescriptor' resource.
-*FirmwareApi* | [**get_firmware_switch_upgrade_by_moid**](docs/FirmwareApi.md#get_firmware_switch_upgrade_by_moid) | **GET** /api/v1/firmware/SwitchUpgrades/{Moid} | Read a 'firmware.SwitchUpgrade' resource.
-*FirmwareApi* | [**get_firmware_switch_upgrade_list**](docs/FirmwareApi.md#get_firmware_switch_upgrade_list) | **GET** /api/v1/firmware/SwitchUpgrades | Read a 'firmware.SwitchUpgrade' resource.
-*FirmwareApi* | [**get_firmware_unsupported_version_upgrade_by_moid**](docs/FirmwareApi.md#get_firmware_unsupported_version_upgrade_by_moid) | **GET** /api/v1/firmware/UnsupportedVersionUpgrades/{Moid} | Read a 'firmware.UnsupportedVersionUpgrade' resource.
-*FirmwareApi* | [**get_firmware_unsupported_version_upgrade_list**](docs/FirmwareApi.md#get_firmware_unsupported_version_upgrade_list) | **GET** /api/v1/firmware/UnsupportedVersionUpgrades | Read a 'firmware.UnsupportedVersionUpgrade' resource.
-*FirmwareApi* | [**get_firmware_upgrade_by_moid**](docs/FirmwareApi.md#get_firmware_upgrade_by_moid) | **GET** /api/v1/firmware/Upgrades/{Moid} | Read a 'firmware.Upgrade' resource.
-*FirmwareApi* | [**get_firmware_upgrade_impact_status_by_moid**](docs/FirmwareApi.md#get_firmware_upgrade_impact_status_by_moid) | **GET** /api/v1/firmware/UpgradeImpactStatuses/{Moid} | Read a 'firmware.UpgradeImpactStatus' resource.
-*FirmwareApi* | [**get_firmware_upgrade_impact_status_list**](docs/FirmwareApi.md#get_firmware_upgrade_impact_status_list) | **GET** /api/v1/firmware/UpgradeImpactStatuses | Read a 'firmware.UpgradeImpactStatus' resource.
-*FirmwareApi* | [**get_firmware_upgrade_list**](docs/FirmwareApi.md#get_firmware_upgrade_list) | **GET** /api/v1/firmware/Upgrades | Read a 'firmware.Upgrade' resource.
-*FirmwareApi* | [**get_firmware_upgrade_status_by_moid**](docs/FirmwareApi.md#get_firmware_upgrade_status_by_moid) | **GET** /api/v1/firmware/UpgradeStatuses/{Moid} | Read a 'firmware.UpgradeStatus' resource.
-*FirmwareApi* | [**get_firmware_upgrade_status_list**](docs/FirmwareApi.md#get_firmware_upgrade_status_list) | **GET** /api/v1/firmware/UpgradeStatuses | Read a 'firmware.UpgradeStatus' resource.
-*FirmwareApi* | [**patch_firmware_bios_descriptor**](docs/FirmwareApi.md#patch_firmware_bios_descriptor) | **PATCH** /api/v1/firmware/BiosDescriptors/{Moid} | Update a 'firmware.BiosDescriptor' resource.
-*FirmwareApi* | [**patch_firmware_board_controller_descriptor**](docs/FirmwareApi.md#patch_firmware_board_controller_descriptor) | **PATCH** /api/v1/firmware/BoardControllerDescriptors/{Moid} | Update a 'firmware.BoardControllerDescriptor' resource.
-*FirmwareApi* | [**patch_firmware_cimc_descriptor**](docs/FirmwareApi.md#patch_firmware_cimc_descriptor) | **PATCH** /api/v1/firmware/CimcDescriptors/{Moid} | Update a 'firmware.CimcDescriptor' resource.
-*FirmwareApi* | [**patch_firmware_dimm_descriptor**](docs/FirmwareApi.md#patch_firmware_dimm_descriptor) | **PATCH** /api/v1/firmware/DimmDescriptors/{Moid} | Update a 'firmware.DimmDescriptor' resource.
-*FirmwareApi* | [**patch_firmware_distributable**](docs/FirmwareApi.md#patch_firmware_distributable) | **PATCH** /api/v1/firmware/Distributables/{Moid} | Update a 'firmware.Distributable' resource.
-*FirmwareApi* | [**patch_firmware_drive_descriptor**](docs/FirmwareApi.md#patch_firmware_drive_descriptor) | **PATCH** /api/v1/firmware/DriveDescriptors/{Moid} | Update a 'firmware.DriveDescriptor' resource.
-*FirmwareApi* | [**patch_firmware_driver_distributable**](docs/FirmwareApi.md#patch_firmware_driver_distributable) | **PATCH** /api/v1/firmware/DriverDistributables/{Moid} | Update a 'firmware.DriverDistributable' resource.
-*FirmwareApi* | [**patch_firmware_gpu_descriptor**](docs/FirmwareApi.md#patch_firmware_gpu_descriptor) | **PATCH** /api/v1/firmware/GpuDescriptors/{Moid} | Update a 'firmware.GpuDescriptor' resource.
-*FirmwareApi* | [**patch_firmware_hba_descriptor**](docs/FirmwareApi.md#patch_firmware_hba_descriptor) | **PATCH** /api/v1/firmware/HbaDescriptors/{Moid} | Update a 'firmware.HbaDescriptor' resource.
-*FirmwareApi* | [**patch_firmware_iom_descriptor**](docs/FirmwareApi.md#patch_firmware_iom_descriptor) | **PATCH** /api/v1/firmware/IomDescriptors/{Moid} | Update a 'firmware.IomDescriptor' resource.
-*FirmwareApi* | [**patch_firmware_mswitch_descriptor**](docs/FirmwareApi.md#patch_firmware_mswitch_descriptor) | **PATCH** /api/v1/firmware/MswitchDescriptors/{Moid} | Update a 'firmware.MswitchDescriptor' resource.
-*FirmwareApi* | [**patch_firmware_nxos_descriptor**](docs/FirmwareApi.md#patch_firmware_nxos_descriptor) | **PATCH** /api/v1/firmware/NxosDescriptors/{Moid} | Update a 'firmware.NxosDescriptor' resource.
-*FirmwareApi* | [**patch_firmware_pcie_descriptor**](docs/FirmwareApi.md#patch_firmware_pcie_descriptor) | **PATCH** /api/v1/firmware/PcieDescriptors/{Moid} | Update a 'firmware.PcieDescriptor' resource.
-*FirmwareApi* | [**patch_firmware_psu_descriptor**](docs/FirmwareApi.md#patch_firmware_psu_descriptor) | **PATCH** /api/v1/firmware/PsuDescriptors/{Moid} | Update a 'firmware.PsuDescriptor' resource.
-*FirmwareApi* | [**patch_firmware_running_firmware**](docs/FirmwareApi.md#patch_firmware_running_firmware) | **PATCH** /api/v1/firmware/RunningFirmwares/{Moid} | Update a 'firmware.RunningFirmware' resource.
-*FirmwareApi* | [**patch_firmware_sas_expander_descriptor**](docs/FirmwareApi.md#patch_firmware_sas_expander_descriptor) | **PATCH** /api/v1/firmware/SasExpanderDescriptors/{Moid} | Update a 'firmware.SasExpanderDescriptor' resource.
-*FirmwareApi* | [**patch_firmware_server_configuration_utility_distributable**](docs/FirmwareApi.md#patch_firmware_server_configuration_utility_distributable) | **PATCH** /api/v1/firmware/ServerConfigurationUtilityDistributables/{Moid} | Update a 'firmware.ServerConfigurationUtilityDistributable' resource.
-*FirmwareApi* | [**patch_firmware_storage_controller_descriptor**](docs/FirmwareApi.md#patch_firmware_storage_controller_descriptor) | **PATCH** /api/v1/firmware/StorageControllerDescriptors/{Moid} | Update a 'firmware.StorageControllerDescriptor' resource.
-*FirmwareApi* | [**patch_firmware_unsupported_version_upgrade**](docs/FirmwareApi.md#patch_firmware_unsupported_version_upgrade) | **PATCH** /api/v1/firmware/UnsupportedVersionUpgrades/{Moid} | Update a 'firmware.UnsupportedVersionUpgrade' resource.
-*FirmwareApi* | [**update_firmware_bios_descriptor**](docs/FirmwareApi.md#update_firmware_bios_descriptor) | **POST** /api/v1/firmware/BiosDescriptors/{Moid} | Update a 'firmware.BiosDescriptor' resource.
-*FirmwareApi* | [**update_firmware_board_controller_descriptor**](docs/FirmwareApi.md#update_firmware_board_controller_descriptor) | **POST** /api/v1/firmware/BoardControllerDescriptors/{Moid} | Update a 'firmware.BoardControllerDescriptor' resource.
-*FirmwareApi* | [**update_firmware_cimc_descriptor**](docs/FirmwareApi.md#update_firmware_cimc_descriptor) | **POST** /api/v1/firmware/CimcDescriptors/{Moid} | Update a 'firmware.CimcDescriptor' resource.
-*FirmwareApi* | [**update_firmware_dimm_descriptor**](docs/FirmwareApi.md#update_firmware_dimm_descriptor) | **POST** /api/v1/firmware/DimmDescriptors/{Moid} | Update a 'firmware.DimmDescriptor' resource.
-*FirmwareApi* | [**update_firmware_distributable**](docs/FirmwareApi.md#update_firmware_distributable) | **POST** /api/v1/firmware/Distributables/{Moid} | Update a 'firmware.Distributable' resource.
-*FirmwareApi* | [**update_firmware_drive_descriptor**](docs/FirmwareApi.md#update_firmware_drive_descriptor) | **POST** /api/v1/firmware/DriveDescriptors/{Moid} | Update a 'firmware.DriveDescriptor' resource.
-*FirmwareApi* | [**update_firmware_driver_distributable**](docs/FirmwareApi.md#update_firmware_driver_distributable) | **POST** /api/v1/firmware/DriverDistributables/{Moid} | Update a 'firmware.DriverDistributable' resource.
-*FirmwareApi* | [**update_firmware_gpu_descriptor**](docs/FirmwareApi.md#update_firmware_gpu_descriptor) | **POST** /api/v1/firmware/GpuDescriptors/{Moid} | Update a 'firmware.GpuDescriptor' resource.
-*FirmwareApi* | [**update_firmware_hba_descriptor**](docs/FirmwareApi.md#update_firmware_hba_descriptor) | **POST** /api/v1/firmware/HbaDescriptors/{Moid} | Update a 'firmware.HbaDescriptor' resource.
-*FirmwareApi* | [**update_firmware_iom_descriptor**](docs/FirmwareApi.md#update_firmware_iom_descriptor) | **POST** /api/v1/firmware/IomDescriptors/{Moid} | Update a 'firmware.IomDescriptor' resource.
-*FirmwareApi* | [**update_firmware_mswitch_descriptor**](docs/FirmwareApi.md#update_firmware_mswitch_descriptor) | **POST** /api/v1/firmware/MswitchDescriptors/{Moid} | Update a 'firmware.MswitchDescriptor' resource.
-*FirmwareApi* | [**update_firmware_nxos_descriptor**](docs/FirmwareApi.md#update_firmware_nxos_descriptor) | **POST** /api/v1/firmware/NxosDescriptors/{Moid} | Update a 'firmware.NxosDescriptor' resource.
-*FirmwareApi* | [**update_firmware_pcie_descriptor**](docs/FirmwareApi.md#update_firmware_pcie_descriptor) | **POST** /api/v1/firmware/PcieDescriptors/{Moid} | Update a 'firmware.PcieDescriptor' resource.
-*FirmwareApi* | [**update_firmware_psu_descriptor**](docs/FirmwareApi.md#update_firmware_psu_descriptor) | **POST** /api/v1/firmware/PsuDescriptors/{Moid} | Update a 'firmware.PsuDescriptor' resource.
-*FirmwareApi* | [**update_firmware_running_firmware**](docs/FirmwareApi.md#update_firmware_running_firmware) | **POST** /api/v1/firmware/RunningFirmwares/{Moid} | Update a 'firmware.RunningFirmware' resource.
-*FirmwareApi* | [**update_firmware_sas_expander_descriptor**](docs/FirmwareApi.md#update_firmware_sas_expander_descriptor) | **POST** /api/v1/firmware/SasExpanderDescriptors/{Moid} | Update a 'firmware.SasExpanderDescriptor' resource.
-*FirmwareApi* | [**update_firmware_server_configuration_utility_distributable**](docs/FirmwareApi.md#update_firmware_server_configuration_utility_distributable) | **POST** /api/v1/firmware/ServerConfigurationUtilityDistributables/{Moid} | Update a 'firmware.ServerConfigurationUtilityDistributable' resource.
-*FirmwareApi* | [**update_firmware_storage_controller_descriptor**](docs/FirmwareApi.md#update_firmware_storage_controller_descriptor) | **POST** /api/v1/firmware/StorageControllerDescriptors/{Moid} | Update a 'firmware.StorageControllerDescriptor' resource.
-*FirmwareApi* | [**update_firmware_unsupported_version_upgrade**](docs/FirmwareApi.md#update_firmware_unsupported_version_upgrade) | **POST** /api/v1/firmware/UnsupportedVersionUpgrades/{Moid} | Update a 'firmware.UnsupportedVersionUpgrade' resource.
-*ForecastApi* | [**get_forecast_catalog_by_moid**](docs/ForecastApi.md#get_forecast_catalog_by_moid) | **GET** /api/v1/forecast/Catalogs/{Moid} | Read a 'forecast.Catalog' resource.
-*ForecastApi* | [**get_forecast_catalog_list**](docs/ForecastApi.md#get_forecast_catalog_list) | **GET** /api/v1/forecast/Catalogs | Read a 'forecast.Catalog' resource.
-*ForecastApi* | [**get_forecast_definition_by_moid**](docs/ForecastApi.md#get_forecast_definition_by_moid) | **GET** /api/v1/forecast/Definitions/{Moid} | Read a 'forecast.Definition' resource.
-*ForecastApi* | [**get_forecast_definition_list**](docs/ForecastApi.md#get_forecast_definition_list) | **GET** /api/v1/forecast/Definitions | Read a 'forecast.Definition' resource.
-*ForecastApi* | [**get_forecast_instance_by_moid**](docs/ForecastApi.md#get_forecast_instance_by_moid) | **GET** /api/v1/forecast/Instances/{Moid} | Read a 'forecast.Instance' resource.
-*ForecastApi* | [**get_forecast_instance_list**](docs/ForecastApi.md#get_forecast_instance_list) | **GET** /api/v1/forecast/Instances | Read a 'forecast.Instance' resource.
-*ForecastApi* | [**patch_forecast_instance**](docs/ForecastApi.md#patch_forecast_instance) | **PATCH** /api/v1/forecast/Instances/{Moid} | Update a 'forecast.Instance' resource.
-*ForecastApi* | [**update_forecast_instance**](docs/ForecastApi.md#update_forecast_instance) | **POST** /api/v1/forecast/Instances/{Moid} | Update a 'forecast.Instance' resource.
-*GraphicsApi* | [**get_graphics_card_by_moid**](docs/GraphicsApi.md#get_graphics_card_by_moid) | **GET** /api/v1/graphics/Cards/{Moid} | Read a 'graphics.Card' resource.
-*GraphicsApi* | [**get_graphics_card_list**](docs/GraphicsApi.md#get_graphics_card_list) | **GET** /api/v1/graphics/Cards | Read a 'graphics.Card' resource.
-*GraphicsApi* | [**get_graphics_controller_by_moid**](docs/GraphicsApi.md#get_graphics_controller_by_moid) | **GET** /api/v1/graphics/Controllers/{Moid} | Read a 'graphics.Controller' resource.
-*GraphicsApi* | [**get_graphics_controller_list**](docs/GraphicsApi.md#get_graphics_controller_list) | **GET** /api/v1/graphics/Controllers | Read a 'graphics.Controller' resource.
-*GraphicsApi* | [**patch_graphics_card**](docs/GraphicsApi.md#patch_graphics_card) | **PATCH** /api/v1/graphics/Cards/{Moid} | Update a 'graphics.Card' resource.
-*GraphicsApi* | [**patch_graphics_controller**](docs/GraphicsApi.md#patch_graphics_controller) | **PATCH** /api/v1/graphics/Controllers/{Moid} | Update a 'graphics.Controller' resource.
-*GraphicsApi* | [**update_graphics_card**](docs/GraphicsApi.md#update_graphics_card) | **POST** /api/v1/graphics/Cards/{Moid} | Update a 'graphics.Card' resource.
-*GraphicsApi* | [**update_graphics_controller**](docs/GraphicsApi.md#update_graphics_controller) | **POST** /api/v1/graphics/Controllers/{Moid} | Update a 'graphics.Controller' resource.
-*HclApi* | [**create_hcl_compatibility_status**](docs/HclApi.md#create_hcl_compatibility_status) | **POST** /api/v1/hcl/CompatibilityStatuses | Create a 'hcl.CompatibilityStatus' resource.
-*HclApi* | [**create_hcl_hyperflex_software_compatibility_info**](docs/HclApi.md#create_hcl_hyperflex_software_compatibility_info) | **POST** /api/v1/hcl/HyperflexSoftwareCompatibilityInfos | Create a 'hcl.HyperflexSoftwareCompatibilityInfo' resource.
-*HclApi* | [**create_hcl_supported_driver_name**](docs/HclApi.md#create_hcl_supported_driver_name) | **POST** /api/v1/hcl/SupportedDriverNames | Create a 'hcl.SupportedDriverName' resource.
-*HclApi* | [**delete_hcl_hyperflex_software_compatibility_info**](docs/HclApi.md#delete_hcl_hyperflex_software_compatibility_info) | **DELETE** /api/v1/hcl/HyperflexSoftwareCompatibilityInfos/{Moid} | Delete a 'hcl.HyperflexSoftwareCompatibilityInfo' resource.
-*HclApi* | [**get_hcl_driver_image_by_moid**](docs/HclApi.md#get_hcl_driver_image_by_moid) | **GET** /api/v1/hcl/DriverImages/{Moid} | Read a 'hcl.DriverImage' resource.
-*HclApi* | [**get_hcl_driver_image_list**](docs/HclApi.md#get_hcl_driver_image_list) | **GET** /api/v1/hcl/DriverImages | Read a 'hcl.DriverImage' resource.
-*HclApi* | [**get_hcl_exempted_catalog_by_moid**](docs/HclApi.md#get_hcl_exempted_catalog_by_moid) | **GET** /api/v1/hcl/ExemptedCatalogs/{Moid} | Read a 'hcl.ExemptedCatalog' resource.
-*HclApi* | [**get_hcl_exempted_catalog_list**](docs/HclApi.md#get_hcl_exempted_catalog_list) | **GET** /api/v1/hcl/ExemptedCatalogs | Read a 'hcl.ExemptedCatalog' resource.
-*HclApi* | [**get_hcl_hyperflex_software_compatibility_info_by_moid**](docs/HclApi.md#get_hcl_hyperflex_software_compatibility_info_by_moid) | **GET** /api/v1/hcl/HyperflexSoftwareCompatibilityInfos/{Moid} | Read a 'hcl.HyperflexSoftwareCompatibilityInfo' resource.
-*HclApi* | [**get_hcl_hyperflex_software_compatibility_info_list**](docs/HclApi.md#get_hcl_hyperflex_software_compatibility_info_list) | **GET** /api/v1/hcl/HyperflexSoftwareCompatibilityInfos | Read a 'hcl.HyperflexSoftwareCompatibilityInfo' resource.
-*HclApi* | [**get_hcl_operating_system_by_moid**](docs/HclApi.md#get_hcl_operating_system_by_moid) | **GET** /api/v1/hcl/OperatingSystems/{Moid} | Read a 'hcl.OperatingSystem' resource.
-*HclApi* | [**get_hcl_operating_system_list**](docs/HclApi.md#get_hcl_operating_system_list) | **GET** /api/v1/hcl/OperatingSystems | Read a 'hcl.OperatingSystem' resource.
-*HclApi* | [**get_hcl_operating_system_vendor_by_moid**](docs/HclApi.md#get_hcl_operating_system_vendor_by_moid) | **GET** /api/v1/hcl/OperatingSystemVendors/{Moid} | Read a 'hcl.OperatingSystemVendor' resource.
-*HclApi* | [**get_hcl_operating_system_vendor_list**](docs/HclApi.md#get_hcl_operating_system_vendor_list) | **GET** /api/v1/hcl/OperatingSystemVendors | Read a 'hcl.OperatingSystemVendor' resource.
-*HclApi* | [**patch_hcl_hyperflex_software_compatibility_info**](docs/HclApi.md#patch_hcl_hyperflex_software_compatibility_info) | **PATCH** /api/v1/hcl/HyperflexSoftwareCompatibilityInfos/{Moid} | Update a 'hcl.HyperflexSoftwareCompatibilityInfo' resource.
-*HclApi* | [**update_hcl_hyperflex_software_compatibility_info**](docs/HclApi.md#update_hcl_hyperflex_software_compatibility_info) | **POST** /api/v1/hcl/HyperflexSoftwareCompatibilityInfos/{Moid} | Update a 'hcl.HyperflexSoftwareCompatibilityInfo' resource.
-*HyperflexApi* | [**create_hyperflex_app_catalog**](docs/HyperflexApi.md#create_hyperflex_app_catalog) | **POST** /api/v1/hyperflex/AppCatalogs | Create a 'hyperflex.AppCatalog' resource.
-*HyperflexApi* | [**create_hyperflex_auto_support_policy**](docs/HyperflexApi.md#create_hyperflex_auto_support_policy) | **POST** /api/v1/hyperflex/AutoSupportPolicies | Create a 'hyperflex.AutoSupportPolicy' resource.
-*HyperflexApi* | [**create_hyperflex_capability_info**](docs/HyperflexApi.md#create_hyperflex_capability_info) | **POST** /api/v1/hyperflex/CapabilityInfos | Create a 'hyperflex.CapabilityInfo' resource.
-*HyperflexApi* | [**create_hyperflex_cisco_hypervisor_manager**](docs/HyperflexApi.md#create_hyperflex_cisco_hypervisor_manager) | **POST** /api/v1/hyperflex/CiscoHypervisorManagers | Create a 'hyperflex.CiscoHypervisorManager' resource.
-*HyperflexApi* | [**create_hyperflex_cluster_backup_policy**](docs/HyperflexApi.md#create_hyperflex_cluster_backup_policy) | **POST** /api/v1/hyperflex/ClusterBackupPolicies | Create a 'hyperflex.ClusterBackupPolicy' resource.
-*HyperflexApi* | [**create_hyperflex_cluster_backup_policy_deployment**](docs/HyperflexApi.md#create_hyperflex_cluster_backup_policy_deployment) | **POST** /api/v1/hyperflex/ClusterBackupPolicyDeployments | Create a 'hyperflex.ClusterBackupPolicyDeployment' resource.
-*HyperflexApi* | [**create_hyperflex_cluster_network_policy**](docs/HyperflexApi.md#create_hyperflex_cluster_network_policy) | **POST** /api/v1/hyperflex/ClusterNetworkPolicies | Create a 'hyperflex.ClusterNetworkPolicy' resource.
-*HyperflexApi* | [**create_hyperflex_cluster_profile**](docs/HyperflexApi.md#create_hyperflex_cluster_profile) | **POST** /api/v1/hyperflex/ClusterProfiles | Create a 'hyperflex.ClusterProfile' resource.
-*HyperflexApi* | [**create_hyperflex_cluster_replication_network_policy**](docs/HyperflexApi.md#create_hyperflex_cluster_replication_network_policy) | **POST** /api/v1/hyperflex/ClusterReplicationNetworkPolicies | Create a 'hyperflex.ClusterReplicationNetworkPolicy' resource.
-*HyperflexApi* | [**create_hyperflex_cluster_replication_network_policy_deployment**](docs/HyperflexApi.md#create_hyperflex_cluster_replication_network_policy_deployment) | **POST** /api/v1/hyperflex/ClusterReplicationNetworkPolicyDeployments | Create a 'hyperflex.ClusterReplicationNetworkPolicyDeployment' resource.
-*HyperflexApi* | [**create_hyperflex_cluster_storage_policy**](docs/HyperflexApi.md#create_hyperflex_cluster_storage_policy) | **POST** /api/v1/hyperflex/ClusterStoragePolicies | Create a 'hyperflex.ClusterStoragePolicy' resource.
-*HyperflexApi* | [**create_hyperflex_ext_fc_storage_policy**](docs/HyperflexApi.md#create_hyperflex_ext_fc_storage_policy) | **POST** /api/v1/hyperflex/ExtFcStoragePolicies | Create a 'hyperflex.ExtFcStoragePolicy' resource.
-*HyperflexApi* | [**create_hyperflex_ext_iscsi_storage_policy**](docs/HyperflexApi.md#create_hyperflex_ext_iscsi_storage_policy) | **POST** /api/v1/hyperflex/ExtIscsiStoragePolicies | Create a 'hyperflex.ExtIscsiStoragePolicy' resource.
-*HyperflexApi* | [**create_hyperflex_feature_limit_external**](docs/HyperflexApi.md#create_hyperflex_feature_limit_external) | **POST** /api/v1/hyperflex/FeatureLimitExternals | Create a 'hyperflex.FeatureLimitExternal' resource.
-*HyperflexApi* | [**create_hyperflex_feature_limit_internal**](docs/HyperflexApi.md#create_hyperflex_feature_limit_internal) | **POST** /api/v1/hyperflex/FeatureLimitInternals | Create a 'hyperflex.FeatureLimitInternal' resource.
-*HyperflexApi* | [**create_hyperflex_health_check_definition**](docs/HyperflexApi.md#create_hyperflex_health_check_definition) | **POST** /api/v1/hyperflex/HealthCheckDefinitions | Create a 'hyperflex.HealthCheckDefinition' resource.
-*HyperflexApi* | [**create_hyperflex_health_check_package_checksum**](docs/HyperflexApi.md#create_hyperflex_health_check_package_checksum) | **POST** /api/v1/hyperflex/HealthCheckPackageChecksums | Create a 'hyperflex.HealthCheckPackageChecksum' resource.
-*HyperflexApi* | [**create_hyperflex_hxap_datacenter**](docs/HyperflexApi.md#create_hyperflex_hxap_datacenter) | **POST** /api/v1/hyperflex/HxapDatacenters | Create a 'hyperflex.HxapDatacenter' resource.
-*HyperflexApi* | [**create_hyperflex_hxdp_version**](docs/HyperflexApi.md#create_hyperflex_hxdp_version) | **POST** /api/v1/hyperflex/HxdpVersions | Create a 'hyperflex.HxdpVersion' resource.
-*HyperflexApi* | [**create_hyperflex_local_credential_policy**](docs/HyperflexApi.md#create_hyperflex_local_credential_policy) | **POST** /api/v1/hyperflex/LocalCredentialPolicies | Create a 'hyperflex.LocalCredentialPolicy' resource.
-*HyperflexApi* | [**create_hyperflex_node_config_policy**](docs/HyperflexApi.md#create_hyperflex_node_config_policy) | **POST** /api/v1/hyperflex/NodeConfigPolicies | Create a 'hyperflex.NodeConfigPolicy' resource.
-*HyperflexApi* | [**create_hyperflex_node_profile**](docs/HyperflexApi.md#create_hyperflex_node_profile) | **POST** /api/v1/hyperflex/NodeProfiles | Create a 'hyperflex.NodeProfile' resource.
-*HyperflexApi* | [**create_hyperflex_proxy_setting_policy**](docs/HyperflexApi.md#create_hyperflex_proxy_setting_policy) | **POST** /api/v1/hyperflex/ProxySettingPolicies | Create a 'hyperflex.ProxySettingPolicy' resource.
-*HyperflexApi* | [**create_hyperflex_server_firmware_version**](docs/HyperflexApi.md#create_hyperflex_server_firmware_version) | **POST** /api/v1/hyperflex/ServerFirmwareVersions | Create a 'hyperflex.ServerFirmwareVersion' resource.
-*HyperflexApi* | [**create_hyperflex_server_firmware_version_entry**](docs/HyperflexApi.md#create_hyperflex_server_firmware_version_entry) | **POST** /api/v1/hyperflex/ServerFirmwareVersionEntries | Create a 'hyperflex.ServerFirmwareVersionEntry' resource.
-*HyperflexApi* | [**create_hyperflex_server_model**](docs/HyperflexApi.md#create_hyperflex_server_model) | **POST** /api/v1/hyperflex/ServerModels | Create a 'hyperflex.ServerModel' resource.
-*HyperflexApi* | [**create_hyperflex_software_distribution_component**](docs/HyperflexApi.md#create_hyperflex_software_distribution_component) | **POST** /api/v1/hyperflex/SoftwareDistributionComponents | Create a 'hyperflex.SoftwareDistributionComponent' resource.
-*HyperflexApi* | [**create_hyperflex_software_distribution_entry**](docs/HyperflexApi.md#create_hyperflex_software_distribution_entry) | **POST** /api/v1/hyperflex/SoftwareDistributionEntries | Create a 'hyperflex.SoftwareDistributionEntry' resource.
-*HyperflexApi* | [**create_hyperflex_software_distribution_version**](docs/HyperflexApi.md#create_hyperflex_software_distribution_version) | **POST** /api/v1/hyperflex/SoftwareDistributionVersions | Create a 'hyperflex.SoftwareDistributionVersion' resource.
-*HyperflexApi* | [**create_hyperflex_software_version_policy**](docs/HyperflexApi.md#create_hyperflex_software_version_policy) | **POST** /api/v1/hyperflex/SoftwareVersionPolicies | Create a 'hyperflex.SoftwareVersionPolicy' resource.
-*HyperflexApi* | [**create_hyperflex_sys_config_policy**](docs/HyperflexApi.md#create_hyperflex_sys_config_policy) | **POST** /api/v1/hyperflex/SysConfigPolicies | Create a 'hyperflex.SysConfigPolicy' resource.
-*HyperflexApi* | [**create_hyperflex_ucsm_config_policy**](docs/HyperflexApi.md#create_hyperflex_ucsm_config_policy) | **POST** /api/v1/hyperflex/UcsmConfigPolicies | Create a 'hyperflex.UcsmConfigPolicy' resource.
-*HyperflexApi* | [**create_hyperflex_vcenter_config_policy**](docs/HyperflexApi.md#create_hyperflex_vcenter_config_policy) | **POST** /api/v1/hyperflex/VcenterConfigPolicies | Create a 'hyperflex.VcenterConfigPolicy' resource.
-*HyperflexApi* | [**create_hyperflex_vm_import_operation**](docs/HyperflexApi.md#create_hyperflex_vm_import_operation) | **POST** /api/v1/hyperflex/VmImportOperations | Create a 'hyperflex.VmImportOperation' resource.
-*HyperflexApi* | [**create_hyperflex_vm_restore_operation**](docs/HyperflexApi.md#create_hyperflex_vm_restore_operation) | **POST** /api/v1/hyperflex/VmRestoreOperations | Create a 'hyperflex.VmRestoreOperation' resource.
-*HyperflexApi* | [**delete_hyperflex_app_catalog**](docs/HyperflexApi.md#delete_hyperflex_app_catalog) | **DELETE** /api/v1/hyperflex/AppCatalogs/{Moid} | Delete a 'hyperflex.AppCatalog' resource.
-*HyperflexApi* | [**delete_hyperflex_auto_support_policy**](docs/HyperflexApi.md#delete_hyperflex_auto_support_policy) | **DELETE** /api/v1/hyperflex/AutoSupportPolicies/{Moid} | Delete a 'hyperflex.AutoSupportPolicy' resource.
-*HyperflexApi* | [**delete_hyperflex_capability_info**](docs/HyperflexApi.md#delete_hyperflex_capability_info) | **DELETE** /api/v1/hyperflex/CapabilityInfos/{Moid} | Delete a 'hyperflex.CapabilityInfo' resource.
-*HyperflexApi* | [**delete_hyperflex_cluster_backup_policy**](docs/HyperflexApi.md#delete_hyperflex_cluster_backup_policy) | **DELETE** /api/v1/hyperflex/ClusterBackupPolicies/{Moid} | Delete a 'hyperflex.ClusterBackupPolicy' resource.
-*HyperflexApi* | [**delete_hyperflex_cluster_backup_policy_deployment**](docs/HyperflexApi.md#delete_hyperflex_cluster_backup_policy_deployment) | **DELETE** /api/v1/hyperflex/ClusterBackupPolicyDeployments/{Moid} | Delete a 'hyperflex.ClusterBackupPolicyDeployment' resource.
-*HyperflexApi* | [**delete_hyperflex_cluster_network_policy**](docs/HyperflexApi.md#delete_hyperflex_cluster_network_policy) | **DELETE** /api/v1/hyperflex/ClusterNetworkPolicies/{Moid} | Delete a 'hyperflex.ClusterNetworkPolicy' resource.
-*HyperflexApi* | [**delete_hyperflex_cluster_profile**](docs/HyperflexApi.md#delete_hyperflex_cluster_profile) | **DELETE** /api/v1/hyperflex/ClusterProfiles/{Moid} | Delete a 'hyperflex.ClusterProfile' resource.
-*HyperflexApi* | [**delete_hyperflex_cluster_replication_network_policy**](docs/HyperflexApi.md#delete_hyperflex_cluster_replication_network_policy) | **DELETE** /api/v1/hyperflex/ClusterReplicationNetworkPolicies/{Moid} | Delete a 'hyperflex.ClusterReplicationNetworkPolicy' resource.
-*HyperflexApi* | [**delete_hyperflex_cluster_replication_network_policy_deployment**](docs/HyperflexApi.md#delete_hyperflex_cluster_replication_network_policy_deployment) | **DELETE** /api/v1/hyperflex/ClusterReplicationNetworkPolicyDeployments/{Moid} | Delete a 'hyperflex.ClusterReplicationNetworkPolicyDeployment' resource.
-*HyperflexApi* | [**delete_hyperflex_cluster_storage_policy**](docs/HyperflexApi.md#delete_hyperflex_cluster_storage_policy) | **DELETE** /api/v1/hyperflex/ClusterStoragePolicies/{Moid} | Delete a 'hyperflex.ClusterStoragePolicy' resource.
-*HyperflexApi* | [**delete_hyperflex_ext_fc_storage_policy**](docs/HyperflexApi.md#delete_hyperflex_ext_fc_storage_policy) | **DELETE** /api/v1/hyperflex/ExtFcStoragePolicies/{Moid} | Delete a 'hyperflex.ExtFcStoragePolicy' resource.
-*HyperflexApi* | [**delete_hyperflex_ext_iscsi_storage_policy**](docs/HyperflexApi.md#delete_hyperflex_ext_iscsi_storage_policy) | **DELETE** /api/v1/hyperflex/ExtIscsiStoragePolicies/{Moid} | Delete a 'hyperflex.ExtIscsiStoragePolicy' resource.
-*HyperflexApi* | [**delete_hyperflex_feature_limit_external**](docs/HyperflexApi.md#delete_hyperflex_feature_limit_external) | **DELETE** /api/v1/hyperflex/FeatureLimitExternals/{Moid} | Delete a 'hyperflex.FeatureLimitExternal' resource.
-*HyperflexApi* | [**delete_hyperflex_feature_limit_internal**](docs/HyperflexApi.md#delete_hyperflex_feature_limit_internal) | **DELETE** /api/v1/hyperflex/FeatureLimitInternals/{Moid} | Delete a 'hyperflex.FeatureLimitInternal' resource.
-*HyperflexApi* | [**delete_hyperflex_health_check_definition**](docs/HyperflexApi.md#delete_hyperflex_health_check_definition) | **DELETE** /api/v1/hyperflex/HealthCheckDefinitions/{Moid} | Delete a 'hyperflex.HealthCheckDefinition' resource.
-*HyperflexApi* | [**delete_hyperflex_health_check_package_checksum**](docs/HyperflexApi.md#delete_hyperflex_health_check_package_checksum) | **DELETE** /api/v1/hyperflex/HealthCheckPackageChecksums/{Moid} | Delete a 'hyperflex.HealthCheckPackageChecksum' resource.
-*HyperflexApi* | [**delete_hyperflex_hxap_cluster**](docs/HyperflexApi.md#delete_hyperflex_hxap_cluster) | **DELETE** /api/v1/hyperflex/HxapClusters/{Moid} | Delete a 'hyperflex.HxapCluster' resource.
-*HyperflexApi* | [**delete_hyperflex_hxap_datacenter**](docs/HyperflexApi.md#delete_hyperflex_hxap_datacenter) | **DELETE** /api/v1/hyperflex/HxapDatacenters/{Moid} | Delete a 'hyperflex.HxapDatacenter' resource.
-*HyperflexApi* | [**delete_hyperflex_hxap_virtual_machine_network_interface**](docs/HyperflexApi.md#delete_hyperflex_hxap_virtual_machine_network_interface) | **DELETE** /api/v1/hyperflex/HxapVirtualMachineNetworkInterfaces/{Moid} | Delete a 'hyperflex.HxapVirtualMachineNetworkInterface' resource.
-*HyperflexApi* | [**delete_hyperflex_hxdp_version**](docs/HyperflexApi.md#delete_hyperflex_hxdp_version) | **DELETE** /api/v1/hyperflex/HxdpVersions/{Moid} | Delete a 'hyperflex.HxdpVersion' resource.
-*HyperflexApi* | [**delete_hyperflex_local_credential_policy**](docs/HyperflexApi.md#delete_hyperflex_local_credential_policy) | **DELETE** /api/v1/hyperflex/LocalCredentialPolicies/{Moid} | Delete a 'hyperflex.LocalCredentialPolicy' resource.
-*HyperflexApi* | [**delete_hyperflex_node_config_policy**](docs/HyperflexApi.md#delete_hyperflex_node_config_policy) | **DELETE** /api/v1/hyperflex/NodeConfigPolicies/{Moid} | Delete a 'hyperflex.NodeConfigPolicy' resource.
-*HyperflexApi* | [**delete_hyperflex_node_profile**](docs/HyperflexApi.md#delete_hyperflex_node_profile) | **DELETE** /api/v1/hyperflex/NodeProfiles/{Moid} | Delete a 'hyperflex.NodeProfile' resource.
-*HyperflexApi* | [**delete_hyperflex_proxy_setting_policy**](docs/HyperflexApi.md#delete_hyperflex_proxy_setting_policy) | **DELETE** /api/v1/hyperflex/ProxySettingPolicies/{Moid} | Delete a 'hyperflex.ProxySettingPolicy' resource.
-*HyperflexApi* | [**delete_hyperflex_server_firmware_version**](docs/HyperflexApi.md#delete_hyperflex_server_firmware_version) | **DELETE** /api/v1/hyperflex/ServerFirmwareVersions/{Moid} | Delete a 'hyperflex.ServerFirmwareVersion' resource.
-*HyperflexApi* | [**delete_hyperflex_server_firmware_version_entry**](docs/HyperflexApi.md#delete_hyperflex_server_firmware_version_entry) | **DELETE** /api/v1/hyperflex/ServerFirmwareVersionEntries/{Moid} | Delete a 'hyperflex.ServerFirmwareVersionEntry' resource.
-*HyperflexApi* | [**delete_hyperflex_server_model**](docs/HyperflexApi.md#delete_hyperflex_server_model) | **DELETE** /api/v1/hyperflex/ServerModels/{Moid} | Delete a 'hyperflex.ServerModel' resource.
-*HyperflexApi* | [**delete_hyperflex_software_distribution_component**](docs/HyperflexApi.md#delete_hyperflex_software_distribution_component) | **DELETE** /api/v1/hyperflex/SoftwareDistributionComponents/{Moid} | Delete a 'hyperflex.SoftwareDistributionComponent' resource.
-*HyperflexApi* | [**delete_hyperflex_software_distribution_entry**](docs/HyperflexApi.md#delete_hyperflex_software_distribution_entry) | **DELETE** /api/v1/hyperflex/SoftwareDistributionEntries/{Moid} | Delete a 'hyperflex.SoftwareDistributionEntry' resource.
-*HyperflexApi* | [**delete_hyperflex_software_distribution_version**](docs/HyperflexApi.md#delete_hyperflex_software_distribution_version) | **DELETE** /api/v1/hyperflex/SoftwareDistributionVersions/{Moid} | Delete a 'hyperflex.SoftwareDistributionVersion' resource.
-*HyperflexApi* | [**delete_hyperflex_software_version_policy**](docs/HyperflexApi.md#delete_hyperflex_software_version_policy) | **DELETE** /api/v1/hyperflex/SoftwareVersionPolicies/{Moid} | Delete a 'hyperflex.SoftwareVersionPolicy' resource.
-*HyperflexApi* | [**delete_hyperflex_sys_config_policy**](docs/HyperflexApi.md#delete_hyperflex_sys_config_policy) | **DELETE** /api/v1/hyperflex/SysConfigPolicies/{Moid} | Delete a 'hyperflex.SysConfigPolicy' resource.
-*HyperflexApi* | [**delete_hyperflex_ucsm_config_policy**](docs/HyperflexApi.md#delete_hyperflex_ucsm_config_policy) | **DELETE** /api/v1/hyperflex/UcsmConfigPolicies/{Moid} | Delete a 'hyperflex.UcsmConfigPolicy' resource.
-*HyperflexApi* | [**delete_hyperflex_vcenter_config_policy**](docs/HyperflexApi.md#delete_hyperflex_vcenter_config_policy) | **DELETE** /api/v1/hyperflex/VcenterConfigPolicies/{Moid} | Delete a 'hyperflex.VcenterConfigPolicy' resource.
-*HyperflexApi* | [**delete_hyperflex_vm_import_operation**](docs/HyperflexApi.md#delete_hyperflex_vm_import_operation) | **DELETE** /api/v1/hyperflex/VmImportOperations/{Moid} | Delete a 'hyperflex.VmImportOperation' resource.
-*HyperflexApi* | [**delete_hyperflex_vm_restore_operation**](docs/HyperflexApi.md#delete_hyperflex_vm_restore_operation) | **DELETE** /api/v1/hyperflex/VmRestoreOperations/{Moid} | Delete a 'hyperflex.VmRestoreOperation' resource.
-*HyperflexApi* | [**get_hyperflex_alarm_by_moid**](docs/HyperflexApi.md#get_hyperflex_alarm_by_moid) | **GET** /api/v1/hyperflex/Alarms/{Moid} | Read a 'hyperflex.Alarm' resource.
-*HyperflexApi* | [**get_hyperflex_alarm_list**](docs/HyperflexApi.md#get_hyperflex_alarm_list) | **GET** /api/v1/hyperflex/Alarms | Read a 'hyperflex.Alarm' resource.
-*HyperflexApi* | [**get_hyperflex_app_catalog_by_moid**](docs/HyperflexApi.md#get_hyperflex_app_catalog_by_moid) | **GET** /api/v1/hyperflex/AppCatalogs/{Moid} | Read a 'hyperflex.AppCatalog' resource.
-*HyperflexApi* | [**get_hyperflex_app_catalog_list**](docs/HyperflexApi.md#get_hyperflex_app_catalog_list) | **GET** /api/v1/hyperflex/AppCatalogs | Read a 'hyperflex.AppCatalog' resource.
-*HyperflexApi* | [**get_hyperflex_auto_support_policy_by_moid**](docs/HyperflexApi.md#get_hyperflex_auto_support_policy_by_moid) | **GET** /api/v1/hyperflex/AutoSupportPolicies/{Moid} | Read a 'hyperflex.AutoSupportPolicy' resource.
-*HyperflexApi* | [**get_hyperflex_auto_support_policy_list**](docs/HyperflexApi.md#get_hyperflex_auto_support_policy_list) | **GET** /api/v1/hyperflex/AutoSupportPolicies | Read a 'hyperflex.AutoSupportPolicy' resource.
-*HyperflexApi* | [**get_hyperflex_backup_cluster_by_moid**](docs/HyperflexApi.md#get_hyperflex_backup_cluster_by_moid) | **GET** /api/v1/hyperflex/BackupClusters/{Moid} | Read a 'hyperflex.BackupCluster' resource.
-*HyperflexApi* | [**get_hyperflex_backup_cluster_list**](docs/HyperflexApi.md#get_hyperflex_backup_cluster_list) | **GET** /api/v1/hyperflex/BackupClusters | Read a 'hyperflex.BackupCluster' resource.
-*HyperflexApi* | [**get_hyperflex_capability_info_by_moid**](docs/HyperflexApi.md#get_hyperflex_capability_info_by_moid) | **GET** /api/v1/hyperflex/CapabilityInfos/{Moid} | Read a 'hyperflex.CapabilityInfo' resource.
-*HyperflexApi* | [**get_hyperflex_capability_info_list**](docs/HyperflexApi.md#get_hyperflex_capability_info_list) | **GET** /api/v1/hyperflex/CapabilityInfos | Read a 'hyperflex.CapabilityInfo' resource.
-*HyperflexApi* | [**get_hyperflex_cisco_hypervisor_manager_by_moid**](docs/HyperflexApi.md#get_hyperflex_cisco_hypervisor_manager_by_moid) | **GET** /api/v1/hyperflex/CiscoHypervisorManagers/{Moid} | Read a 'hyperflex.CiscoHypervisorManager' resource.
-*HyperflexApi* | [**get_hyperflex_cisco_hypervisor_manager_list**](docs/HyperflexApi.md#get_hyperflex_cisco_hypervisor_manager_list) | **GET** /api/v1/hyperflex/CiscoHypervisorManagers | Read a 'hyperflex.CiscoHypervisorManager' resource.
-*HyperflexApi* | [**get_hyperflex_cluster_backup_policy_by_moid**](docs/HyperflexApi.md#get_hyperflex_cluster_backup_policy_by_moid) | **GET** /api/v1/hyperflex/ClusterBackupPolicies/{Moid} | Read a 'hyperflex.ClusterBackupPolicy' resource.
-*HyperflexApi* | [**get_hyperflex_cluster_backup_policy_deployment_by_moid**](docs/HyperflexApi.md#get_hyperflex_cluster_backup_policy_deployment_by_moid) | **GET** /api/v1/hyperflex/ClusterBackupPolicyDeployments/{Moid} | Read a 'hyperflex.ClusterBackupPolicyDeployment' resource.
-*HyperflexApi* | [**get_hyperflex_cluster_backup_policy_deployment_list**](docs/HyperflexApi.md#get_hyperflex_cluster_backup_policy_deployment_list) | **GET** /api/v1/hyperflex/ClusterBackupPolicyDeployments | Read a 'hyperflex.ClusterBackupPolicyDeployment' resource.
-*HyperflexApi* | [**get_hyperflex_cluster_backup_policy_list**](docs/HyperflexApi.md#get_hyperflex_cluster_backup_policy_list) | **GET** /api/v1/hyperflex/ClusterBackupPolicies | Read a 'hyperflex.ClusterBackupPolicy' resource.
-*HyperflexApi* | [**get_hyperflex_cluster_by_moid**](docs/HyperflexApi.md#get_hyperflex_cluster_by_moid) | **GET** /api/v1/hyperflex/Clusters/{Moid} | Read a 'hyperflex.Cluster' resource.
-*HyperflexApi* | [**get_hyperflex_cluster_health_check_execution_snapshot_by_moid**](docs/HyperflexApi.md#get_hyperflex_cluster_health_check_execution_snapshot_by_moid) | **GET** /api/v1/hyperflex/ClusterHealthCheckExecutionSnapshots/{Moid} | Read a 'hyperflex.ClusterHealthCheckExecutionSnapshot' resource.
-*HyperflexApi* | [**get_hyperflex_cluster_health_check_execution_snapshot_list**](docs/HyperflexApi.md#get_hyperflex_cluster_health_check_execution_snapshot_list) | **GET** /api/v1/hyperflex/ClusterHealthCheckExecutionSnapshots | Read a 'hyperflex.ClusterHealthCheckExecutionSnapshot' resource.
-*HyperflexApi* | [**get_hyperflex_cluster_list**](docs/HyperflexApi.md#get_hyperflex_cluster_list) | **GET** /api/v1/hyperflex/Clusters | Read a 'hyperflex.Cluster' resource.
-*HyperflexApi* | [**get_hyperflex_cluster_network_policy_by_moid**](docs/HyperflexApi.md#get_hyperflex_cluster_network_policy_by_moid) | **GET** /api/v1/hyperflex/ClusterNetworkPolicies/{Moid} | Read a 'hyperflex.ClusterNetworkPolicy' resource.
-*HyperflexApi* | [**get_hyperflex_cluster_network_policy_list**](docs/HyperflexApi.md#get_hyperflex_cluster_network_policy_list) | **GET** /api/v1/hyperflex/ClusterNetworkPolicies | Read a 'hyperflex.ClusterNetworkPolicy' resource.
-*HyperflexApi* | [**get_hyperflex_cluster_profile_by_moid**](docs/HyperflexApi.md#get_hyperflex_cluster_profile_by_moid) | **GET** /api/v1/hyperflex/ClusterProfiles/{Moid} | Read a 'hyperflex.ClusterProfile' resource.
-*HyperflexApi* | [**get_hyperflex_cluster_profile_list**](docs/HyperflexApi.md#get_hyperflex_cluster_profile_list) | **GET** /api/v1/hyperflex/ClusterProfiles | Read a 'hyperflex.ClusterProfile' resource.
-*HyperflexApi* | [**get_hyperflex_cluster_replication_network_policy_by_moid**](docs/HyperflexApi.md#get_hyperflex_cluster_replication_network_policy_by_moid) | **GET** /api/v1/hyperflex/ClusterReplicationNetworkPolicies/{Moid} | Read a 'hyperflex.ClusterReplicationNetworkPolicy' resource.
-*HyperflexApi* | [**get_hyperflex_cluster_replication_network_policy_deployment_by_moid**](docs/HyperflexApi.md#get_hyperflex_cluster_replication_network_policy_deployment_by_moid) | **GET** /api/v1/hyperflex/ClusterReplicationNetworkPolicyDeployments/{Moid} | Read a 'hyperflex.ClusterReplicationNetworkPolicyDeployment' resource.
-*HyperflexApi* | [**get_hyperflex_cluster_replication_network_policy_deployment_list**](docs/HyperflexApi.md#get_hyperflex_cluster_replication_network_policy_deployment_list) | **GET** /api/v1/hyperflex/ClusterReplicationNetworkPolicyDeployments | Read a 'hyperflex.ClusterReplicationNetworkPolicyDeployment' resource.
-*HyperflexApi* | [**get_hyperflex_cluster_replication_network_policy_list**](docs/HyperflexApi.md#get_hyperflex_cluster_replication_network_policy_list) | **GET** /api/v1/hyperflex/ClusterReplicationNetworkPolicies | Read a 'hyperflex.ClusterReplicationNetworkPolicy' resource.
-*HyperflexApi* | [**get_hyperflex_cluster_storage_policy_by_moid**](docs/HyperflexApi.md#get_hyperflex_cluster_storage_policy_by_moid) | **GET** /api/v1/hyperflex/ClusterStoragePolicies/{Moid} | Read a 'hyperflex.ClusterStoragePolicy' resource.
-*HyperflexApi* | [**get_hyperflex_cluster_storage_policy_list**](docs/HyperflexApi.md#get_hyperflex_cluster_storage_policy_list) | **GET** /api/v1/hyperflex/ClusterStoragePolicies | Read a 'hyperflex.ClusterStoragePolicy' resource.
-*HyperflexApi* | [**get_hyperflex_config_result_by_moid**](docs/HyperflexApi.md#get_hyperflex_config_result_by_moid) | **GET** /api/v1/hyperflex/ConfigResults/{Moid} | Read a 'hyperflex.ConfigResult' resource.
-*HyperflexApi* | [**get_hyperflex_config_result_entry_by_moid**](docs/HyperflexApi.md#get_hyperflex_config_result_entry_by_moid) | **GET** /api/v1/hyperflex/ConfigResultEntries/{Moid} | Read a 'hyperflex.ConfigResultEntry' resource.
-*HyperflexApi* | [**get_hyperflex_config_result_entry_list**](docs/HyperflexApi.md#get_hyperflex_config_result_entry_list) | **GET** /api/v1/hyperflex/ConfigResultEntries | Read a 'hyperflex.ConfigResultEntry' resource.
-*HyperflexApi* | [**get_hyperflex_config_result_list**](docs/HyperflexApi.md#get_hyperflex_config_result_list) | **GET** /api/v1/hyperflex/ConfigResults | Read a 'hyperflex.ConfigResult' resource.
-*HyperflexApi* | [**get_hyperflex_data_protection_peer_by_moid**](docs/HyperflexApi.md#get_hyperflex_data_protection_peer_by_moid) | **GET** /api/v1/hyperflex/DataProtectionPeers/{Moid} | Read a 'hyperflex.DataProtectionPeer' resource.
-*HyperflexApi* | [**get_hyperflex_data_protection_peer_list**](docs/HyperflexApi.md#get_hyperflex_data_protection_peer_list) | **GET** /api/v1/hyperflex/DataProtectionPeers | Read a 'hyperflex.DataProtectionPeer' resource.
-*HyperflexApi* | [**get_hyperflex_datastore_statistic_by_moid**](docs/HyperflexApi.md#get_hyperflex_datastore_statistic_by_moid) | **GET** /api/v1/hyperflex/DatastoreStatistics/{Moid} | Read a 'hyperflex.DatastoreStatistic' resource.
-*HyperflexApi* | [**get_hyperflex_datastore_statistic_list**](docs/HyperflexApi.md#get_hyperflex_datastore_statistic_list) | **GET** /api/v1/hyperflex/DatastoreStatistics | Read a 'hyperflex.DatastoreStatistic' resource.
-*HyperflexApi* | [**get_hyperflex_device_package_download_state_by_moid**](docs/HyperflexApi.md#get_hyperflex_device_package_download_state_by_moid) | **GET** /api/v1/hyperflex/DevicePackageDownloadStates/{Moid} | Read a 'hyperflex.DevicePackageDownloadState' resource.
-*HyperflexApi* | [**get_hyperflex_device_package_download_state_list**](docs/HyperflexApi.md#get_hyperflex_device_package_download_state_list) | **GET** /api/v1/hyperflex/DevicePackageDownloadStates | Read a 'hyperflex.DevicePackageDownloadState' resource.
-*HyperflexApi* | [**get_hyperflex_drive_by_moid**](docs/HyperflexApi.md#get_hyperflex_drive_by_moid) | **GET** /api/v1/hyperflex/Drives/{Moid} | Read a 'hyperflex.Drive' resource.
-*HyperflexApi* | [**get_hyperflex_drive_list**](docs/HyperflexApi.md#get_hyperflex_drive_list) | **GET** /api/v1/hyperflex/Drives | Read a 'hyperflex.Drive' resource.
-*HyperflexApi* | [**get_hyperflex_ext_fc_storage_policy_by_moid**](docs/HyperflexApi.md#get_hyperflex_ext_fc_storage_policy_by_moid) | **GET** /api/v1/hyperflex/ExtFcStoragePolicies/{Moid} | Read a 'hyperflex.ExtFcStoragePolicy' resource.
-*HyperflexApi* | [**get_hyperflex_ext_fc_storage_policy_list**](docs/HyperflexApi.md#get_hyperflex_ext_fc_storage_policy_list) | **GET** /api/v1/hyperflex/ExtFcStoragePolicies | Read a 'hyperflex.ExtFcStoragePolicy' resource.
-*HyperflexApi* | [**get_hyperflex_ext_iscsi_storage_policy_by_moid**](docs/HyperflexApi.md#get_hyperflex_ext_iscsi_storage_policy_by_moid) | **GET** /api/v1/hyperflex/ExtIscsiStoragePolicies/{Moid} | Read a 'hyperflex.ExtIscsiStoragePolicy' resource.
-*HyperflexApi* | [**get_hyperflex_ext_iscsi_storage_policy_list**](docs/HyperflexApi.md#get_hyperflex_ext_iscsi_storage_policy_list) | **GET** /api/v1/hyperflex/ExtIscsiStoragePolicies | Read a 'hyperflex.ExtIscsiStoragePolicy' resource.
-*HyperflexApi* | [**get_hyperflex_feature_limit_external_by_moid**](docs/HyperflexApi.md#get_hyperflex_feature_limit_external_by_moid) | **GET** /api/v1/hyperflex/FeatureLimitExternals/{Moid} | Read a 'hyperflex.FeatureLimitExternal' resource.
-*HyperflexApi* | [**get_hyperflex_feature_limit_external_list**](docs/HyperflexApi.md#get_hyperflex_feature_limit_external_list) | **GET** /api/v1/hyperflex/FeatureLimitExternals | Read a 'hyperflex.FeatureLimitExternal' resource.
-*HyperflexApi* | [**get_hyperflex_feature_limit_internal_by_moid**](docs/HyperflexApi.md#get_hyperflex_feature_limit_internal_by_moid) | **GET** /api/v1/hyperflex/FeatureLimitInternals/{Moid} | Read a 'hyperflex.FeatureLimitInternal' resource.
-*HyperflexApi* | [**get_hyperflex_feature_limit_internal_list**](docs/HyperflexApi.md#get_hyperflex_feature_limit_internal_list) | **GET** /api/v1/hyperflex/FeatureLimitInternals | Read a 'hyperflex.FeatureLimitInternal' resource.
-*HyperflexApi* | [**get_hyperflex_health_by_moid**](docs/HyperflexApi.md#get_hyperflex_health_by_moid) | **GET** /api/v1/hyperflex/Healths/{Moid} | Read a 'hyperflex.Health' resource.
-*HyperflexApi* | [**get_hyperflex_health_check_definition_by_moid**](docs/HyperflexApi.md#get_hyperflex_health_check_definition_by_moid) | **GET** /api/v1/hyperflex/HealthCheckDefinitions/{Moid} | Read a 'hyperflex.HealthCheckDefinition' resource.
-*HyperflexApi* | [**get_hyperflex_health_check_definition_list**](docs/HyperflexApi.md#get_hyperflex_health_check_definition_list) | **GET** /api/v1/hyperflex/HealthCheckDefinitions | Read a 'hyperflex.HealthCheckDefinition' resource.
-*HyperflexApi* | [**get_hyperflex_health_check_execution_by_moid**](docs/HyperflexApi.md#get_hyperflex_health_check_execution_by_moid) | **GET** /api/v1/hyperflex/HealthCheckExecutions/{Moid} | Read a 'hyperflex.HealthCheckExecution' resource.
-*HyperflexApi* | [**get_hyperflex_health_check_execution_list**](docs/HyperflexApi.md#get_hyperflex_health_check_execution_list) | **GET** /api/v1/hyperflex/HealthCheckExecutions | Read a 'hyperflex.HealthCheckExecution' resource.
-*HyperflexApi* | [**get_hyperflex_health_check_execution_snapshot_by_moid**](docs/HyperflexApi.md#get_hyperflex_health_check_execution_snapshot_by_moid) | **GET** /api/v1/hyperflex/HealthCheckExecutionSnapshots/{Moid} | Read a 'hyperflex.HealthCheckExecutionSnapshot' resource.
-*HyperflexApi* | [**get_hyperflex_health_check_execution_snapshot_list**](docs/HyperflexApi.md#get_hyperflex_health_check_execution_snapshot_list) | **GET** /api/v1/hyperflex/HealthCheckExecutionSnapshots | Read a 'hyperflex.HealthCheckExecutionSnapshot' resource.
-*HyperflexApi* | [**get_hyperflex_health_check_package_checksum_by_moid**](docs/HyperflexApi.md#get_hyperflex_health_check_package_checksum_by_moid) | **GET** /api/v1/hyperflex/HealthCheckPackageChecksums/{Moid} | Read a 'hyperflex.HealthCheckPackageChecksum' resource.
-*HyperflexApi* | [**get_hyperflex_health_check_package_checksum_list**](docs/HyperflexApi.md#get_hyperflex_health_check_package_checksum_list) | **GET** /api/v1/hyperflex/HealthCheckPackageChecksums | Read a 'hyperflex.HealthCheckPackageChecksum' resource.
-*HyperflexApi* | [**get_hyperflex_health_list**](docs/HyperflexApi.md#get_hyperflex_health_list) | **GET** /api/v1/hyperflex/Healths | Read a 'hyperflex.Health' resource.
-*HyperflexApi* | [**get_hyperflex_hxap_cluster_by_moid**](docs/HyperflexApi.md#get_hyperflex_hxap_cluster_by_moid) | **GET** /api/v1/hyperflex/HxapClusters/{Moid} | Read a 'hyperflex.HxapCluster' resource.
-*HyperflexApi* | [**get_hyperflex_hxap_cluster_list**](docs/HyperflexApi.md#get_hyperflex_hxap_cluster_list) | **GET** /api/v1/hyperflex/HxapClusters | Read a 'hyperflex.HxapCluster' resource.
-*HyperflexApi* | [**get_hyperflex_hxap_datacenter_by_moid**](docs/HyperflexApi.md#get_hyperflex_hxap_datacenter_by_moid) | **GET** /api/v1/hyperflex/HxapDatacenters/{Moid} | Read a 'hyperflex.HxapDatacenter' resource.
-*HyperflexApi* | [**get_hyperflex_hxap_datacenter_list**](docs/HyperflexApi.md#get_hyperflex_hxap_datacenter_list) | **GET** /api/v1/hyperflex/HxapDatacenters | Read a 'hyperflex.HxapDatacenter' resource.
-*HyperflexApi* | [**get_hyperflex_hxap_dv_uplink_by_moid**](docs/HyperflexApi.md#get_hyperflex_hxap_dv_uplink_by_moid) | **GET** /api/v1/hyperflex/HxapDvUplinks/{Moid} | Read a 'hyperflex.HxapDvUplink' resource.
-*HyperflexApi* | [**get_hyperflex_hxap_dv_uplink_list**](docs/HyperflexApi.md#get_hyperflex_hxap_dv_uplink_list) | **GET** /api/v1/hyperflex/HxapDvUplinks | Read a 'hyperflex.HxapDvUplink' resource.
-*HyperflexApi* | [**get_hyperflex_hxap_dvswitch_by_moid**](docs/HyperflexApi.md#get_hyperflex_hxap_dvswitch_by_moid) | **GET** /api/v1/hyperflex/HxapDvswitches/{Moid} | Read a 'hyperflex.HxapDvswitch' resource.
-*HyperflexApi* | [**get_hyperflex_hxap_dvswitch_list**](docs/HyperflexApi.md#get_hyperflex_hxap_dvswitch_list) | **GET** /api/v1/hyperflex/HxapDvswitches | Read a 'hyperflex.HxapDvswitch' resource.
-*HyperflexApi* | [**get_hyperflex_hxap_host_by_moid**](docs/HyperflexApi.md#get_hyperflex_hxap_host_by_moid) | **GET** /api/v1/hyperflex/HxapHosts/{Moid} | Read a 'hyperflex.HxapHost' resource.
-*HyperflexApi* | [**get_hyperflex_hxap_host_interface_by_moid**](docs/HyperflexApi.md#get_hyperflex_hxap_host_interface_by_moid) | **GET** /api/v1/hyperflex/HxapHostInterfaces/{Moid} | Read a 'hyperflex.HxapHostInterface' resource.
-*HyperflexApi* | [**get_hyperflex_hxap_host_interface_list**](docs/HyperflexApi.md#get_hyperflex_hxap_host_interface_list) | **GET** /api/v1/hyperflex/HxapHostInterfaces | Read a 'hyperflex.HxapHostInterface' resource.
-*HyperflexApi* | [**get_hyperflex_hxap_host_list**](docs/HyperflexApi.md#get_hyperflex_hxap_host_list) | **GET** /api/v1/hyperflex/HxapHosts | Read a 'hyperflex.HxapHost' resource.
-*HyperflexApi* | [**get_hyperflex_hxap_host_vswitch_by_moid**](docs/HyperflexApi.md#get_hyperflex_hxap_host_vswitch_by_moid) | **GET** /api/v1/hyperflex/HxapHostVswitches/{Moid} | Read a 'hyperflex.HxapHostVswitch' resource.
-*HyperflexApi* | [**get_hyperflex_hxap_host_vswitch_list**](docs/HyperflexApi.md#get_hyperflex_hxap_host_vswitch_list) | **GET** /api/v1/hyperflex/HxapHostVswitches | Read a 'hyperflex.HxapHostVswitch' resource.
-*HyperflexApi* | [**get_hyperflex_hxap_network_by_moid**](docs/HyperflexApi.md#get_hyperflex_hxap_network_by_moid) | **GET** /api/v1/hyperflex/HxapNetworks/{Moid} | Read a 'hyperflex.HxapNetwork' resource.
-*HyperflexApi* | [**get_hyperflex_hxap_network_list**](docs/HyperflexApi.md#get_hyperflex_hxap_network_list) | **GET** /api/v1/hyperflex/HxapNetworks | Read a 'hyperflex.HxapNetwork' resource.
-*HyperflexApi* | [**get_hyperflex_hxap_virtual_disk_by_moid**](docs/HyperflexApi.md#get_hyperflex_hxap_virtual_disk_by_moid) | **GET** /api/v1/hyperflex/HxapVirtualDisks/{Moid} | Read a 'hyperflex.HxapVirtualDisk' resource.
-*HyperflexApi* | [**get_hyperflex_hxap_virtual_disk_list**](docs/HyperflexApi.md#get_hyperflex_hxap_virtual_disk_list) | **GET** /api/v1/hyperflex/HxapVirtualDisks | Read a 'hyperflex.HxapVirtualDisk' resource.
-*HyperflexApi* | [**get_hyperflex_hxap_virtual_machine_by_moid**](docs/HyperflexApi.md#get_hyperflex_hxap_virtual_machine_by_moid) | **GET** /api/v1/hyperflex/HxapVirtualMachines/{Moid} | Read a 'hyperflex.HxapVirtualMachine' resource.
-*HyperflexApi* | [**get_hyperflex_hxap_virtual_machine_list**](docs/HyperflexApi.md#get_hyperflex_hxap_virtual_machine_list) | **GET** /api/v1/hyperflex/HxapVirtualMachines | Read a 'hyperflex.HxapVirtualMachine' resource.
-*HyperflexApi* | [**get_hyperflex_hxap_virtual_machine_network_interface_by_moid**](docs/HyperflexApi.md#get_hyperflex_hxap_virtual_machine_network_interface_by_moid) | **GET** /api/v1/hyperflex/HxapVirtualMachineNetworkInterfaces/{Moid} | Read a 'hyperflex.HxapVirtualMachineNetworkInterface' resource.
-*HyperflexApi* | [**get_hyperflex_hxap_virtual_machine_network_interface_list**](docs/HyperflexApi.md#get_hyperflex_hxap_virtual_machine_network_interface_list) | **GET** /api/v1/hyperflex/HxapVirtualMachineNetworkInterfaces | Read a 'hyperflex.HxapVirtualMachineNetworkInterface' resource.
-*HyperflexApi* | [**get_hyperflex_hxdp_version_by_moid**](docs/HyperflexApi.md#get_hyperflex_hxdp_version_by_moid) | **GET** /api/v1/hyperflex/HxdpVersions/{Moid} | Read a 'hyperflex.HxdpVersion' resource.
-*HyperflexApi* | [**get_hyperflex_hxdp_version_list**](docs/HyperflexApi.md#get_hyperflex_hxdp_version_list) | **GET** /api/v1/hyperflex/HxdpVersions | Read a 'hyperflex.HxdpVersion' resource.
-*HyperflexApi* | [**get_hyperflex_license_by_moid**](docs/HyperflexApi.md#get_hyperflex_license_by_moid) | **GET** /api/v1/hyperflex/Licenses/{Moid} | Read a 'hyperflex.License' resource.
-*HyperflexApi* | [**get_hyperflex_license_list**](docs/HyperflexApi.md#get_hyperflex_license_list) | **GET** /api/v1/hyperflex/Licenses | Read a 'hyperflex.License' resource.
-*HyperflexApi* | [**get_hyperflex_local_credential_policy_by_moid**](docs/HyperflexApi.md#get_hyperflex_local_credential_policy_by_moid) | **GET** /api/v1/hyperflex/LocalCredentialPolicies/{Moid} | Read a 'hyperflex.LocalCredentialPolicy' resource.
-*HyperflexApi* | [**get_hyperflex_local_credential_policy_list**](docs/HyperflexApi.md#get_hyperflex_local_credential_policy_list) | **GET** /api/v1/hyperflex/LocalCredentialPolicies | Read a 'hyperflex.LocalCredentialPolicy' resource.
-*HyperflexApi* | [**get_hyperflex_node_by_moid**](docs/HyperflexApi.md#get_hyperflex_node_by_moid) | **GET** /api/v1/hyperflex/Nodes/{Moid} | Read a 'hyperflex.Node' resource.
-*HyperflexApi* | [**get_hyperflex_node_config_policy_by_moid**](docs/HyperflexApi.md#get_hyperflex_node_config_policy_by_moid) | **GET** /api/v1/hyperflex/NodeConfigPolicies/{Moid} | Read a 'hyperflex.NodeConfigPolicy' resource.
-*HyperflexApi* | [**get_hyperflex_node_config_policy_list**](docs/HyperflexApi.md#get_hyperflex_node_config_policy_list) | **GET** /api/v1/hyperflex/NodeConfigPolicies | Read a 'hyperflex.NodeConfigPolicy' resource.
-*HyperflexApi* | [**get_hyperflex_node_list**](docs/HyperflexApi.md#get_hyperflex_node_list) | **GET** /api/v1/hyperflex/Nodes | Read a 'hyperflex.Node' resource.
-*HyperflexApi* | [**get_hyperflex_node_profile_by_moid**](docs/HyperflexApi.md#get_hyperflex_node_profile_by_moid) | **GET** /api/v1/hyperflex/NodeProfiles/{Moid} | Read a 'hyperflex.NodeProfile' resource.
-*HyperflexApi* | [**get_hyperflex_node_profile_list**](docs/HyperflexApi.md#get_hyperflex_node_profile_list) | **GET** /api/v1/hyperflex/NodeProfiles | Read a 'hyperflex.NodeProfile' resource.
-*HyperflexApi* | [**get_hyperflex_proxy_setting_policy_by_moid**](docs/HyperflexApi.md#get_hyperflex_proxy_setting_policy_by_moid) | **GET** /api/v1/hyperflex/ProxySettingPolicies/{Moid} | Read a 'hyperflex.ProxySettingPolicy' resource.
-*HyperflexApi* | [**get_hyperflex_proxy_setting_policy_list**](docs/HyperflexApi.md#get_hyperflex_proxy_setting_policy_list) | **GET** /api/v1/hyperflex/ProxySettingPolicies | Read a 'hyperflex.ProxySettingPolicy' resource.
-*HyperflexApi* | [**get_hyperflex_server_firmware_version_by_moid**](docs/HyperflexApi.md#get_hyperflex_server_firmware_version_by_moid) | **GET** /api/v1/hyperflex/ServerFirmwareVersions/{Moid} | Read a 'hyperflex.ServerFirmwareVersion' resource.
-*HyperflexApi* | [**get_hyperflex_server_firmware_version_entry_by_moid**](docs/HyperflexApi.md#get_hyperflex_server_firmware_version_entry_by_moid) | **GET** /api/v1/hyperflex/ServerFirmwareVersionEntries/{Moid} | Read a 'hyperflex.ServerFirmwareVersionEntry' resource.
-*HyperflexApi* | [**get_hyperflex_server_firmware_version_entry_list**](docs/HyperflexApi.md#get_hyperflex_server_firmware_version_entry_list) | **GET** /api/v1/hyperflex/ServerFirmwareVersionEntries | Read a 'hyperflex.ServerFirmwareVersionEntry' resource.
-*HyperflexApi* | [**get_hyperflex_server_firmware_version_list**](docs/HyperflexApi.md#get_hyperflex_server_firmware_version_list) | **GET** /api/v1/hyperflex/ServerFirmwareVersions | Read a 'hyperflex.ServerFirmwareVersion' resource.
-*HyperflexApi* | [**get_hyperflex_server_model_by_moid**](docs/HyperflexApi.md#get_hyperflex_server_model_by_moid) | **GET** /api/v1/hyperflex/ServerModels/{Moid} | Read a 'hyperflex.ServerModel' resource.
-*HyperflexApi* | [**get_hyperflex_server_model_list**](docs/HyperflexApi.md#get_hyperflex_server_model_list) | **GET** /api/v1/hyperflex/ServerModels | Read a 'hyperflex.ServerModel' resource.
-*HyperflexApi* | [**get_hyperflex_software_distribution_component_by_moid**](docs/HyperflexApi.md#get_hyperflex_software_distribution_component_by_moid) | **GET** /api/v1/hyperflex/SoftwareDistributionComponents/{Moid} | Read a 'hyperflex.SoftwareDistributionComponent' resource.
-*HyperflexApi* | [**get_hyperflex_software_distribution_component_list**](docs/HyperflexApi.md#get_hyperflex_software_distribution_component_list) | **GET** /api/v1/hyperflex/SoftwareDistributionComponents | Read a 'hyperflex.SoftwareDistributionComponent' resource.
-*HyperflexApi* | [**get_hyperflex_software_distribution_entry_by_moid**](docs/HyperflexApi.md#get_hyperflex_software_distribution_entry_by_moid) | **GET** /api/v1/hyperflex/SoftwareDistributionEntries/{Moid} | Read a 'hyperflex.SoftwareDistributionEntry' resource.
-*HyperflexApi* | [**get_hyperflex_software_distribution_entry_list**](docs/HyperflexApi.md#get_hyperflex_software_distribution_entry_list) | **GET** /api/v1/hyperflex/SoftwareDistributionEntries | Read a 'hyperflex.SoftwareDistributionEntry' resource.
-*HyperflexApi* | [**get_hyperflex_software_distribution_version_by_moid**](docs/HyperflexApi.md#get_hyperflex_software_distribution_version_by_moid) | **GET** /api/v1/hyperflex/SoftwareDistributionVersions/{Moid} | Read a 'hyperflex.SoftwareDistributionVersion' resource.
-*HyperflexApi* | [**get_hyperflex_software_distribution_version_list**](docs/HyperflexApi.md#get_hyperflex_software_distribution_version_list) | **GET** /api/v1/hyperflex/SoftwareDistributionVersions | Read a 'hyperflex.SoftwareDistributionVersion' resource.
-*HyperflexApi* | [**get_hyperflex_software_version_policy_by_moid**](docs/HyperflexApi.md#get_hyperflex_software_version_policy_by_moid) | **GET** /api/v1/hyperflex/SoftwareVersionPolicies/{Moid} | Read a 'hyperflex.SoftwareVersionPolicy' resource.
-*HyperflexApi* | [**get_hyperflex_software_version_policy_list**](docs/HyperflexApi.md#get_hyperflex_software_version_policy_list) | **GET** /api/v1/hyperflex/SoftwareVersionPolicies | Read a 'hyperflex.SoftwareVersionPolicy' resource.
-*HyperflexApi* | [**get_hyperflex_storage_container_by_moid**](docs/HyperflexApi.md#get_hyperflex_storage_container_by_moid) | **GET** /api/v1/hyperflex/StorageContainers/{Moid} | Read a 'hyperflex.StorageContainer' resource.
-*HyperflexApi* | [**get_hyperflex_storage_container_list**](docs/HyperflexApi.md#get_hyperflex_storage_container_list) | **GET** /api/v1/hyperflex/StorageContainers | Read a 'hyperflex.StorageContainer' resource.
-*HyperflexApi* | [**get_hyperflex_sys_config_policy_by_moid**](docs/HyperflexApi.md#get_hyperflex_sys_config_policy_by_moid) | **GET** /api/v1/hyperflex/SysConfigPolicies/{Moid} | Read a 'hyperflex.SysConfigPolicy' resource.
-*HyperflexApi* | [**get_hyperflex_sys_config_policy_list**](docs/HyperflexApi.md#get_hyperflex_sys_config_policy_list) | **GET** /api/v1/hyperflex/SysConfigPolicies | Read a 'hyperflex.SysConfigPolicy' resource.
-*HyperflexApi* | [**get_hyperflex_ucsm_config_policy_by_moid**](docs/HyperflexApi.md#get_hyperflex_ucsm_config_policy_by_moid) | **GET** /api/v1/hyperflex/UcsmConfigPolicies/{Moid} | Read a 'hyperflex.UcsmConfigPolicy' resource.
-*HyperflexApi* | [**get_hyperflex_ucsm_config_policy_list**](docs/HyperflexApi.md#get_hyperflex_ucsm_config_policy_list) | **GET** /api/v1/hyperflex/UcsmConfigPolicies | Read a 'hyperflex.UcsmConfigPolicy' resource.
-*HyperflexApi* | [**get_hyperflex_vcenter_config_policy_by_moid**](docs/HyperflexApi.md#get_hyperflex_vcenter_config_policy_by_moid) | **GET** /api/v1/hyperflex/VcenterConfigPolicies/{Moid} | Read a 'hyperflex.VcenterConfigPolicy' resource.
-*HyperflexApi* | [**get_hyperflex_vcenter_config_policy_list**](docs/HyperflexApi.md#get_hyperflex_vcenter_config_policy_list) | **GET** /api/v1/hyperflex/VcenterConfigPolicies | Read a 'hyperflex.VcenterConfigPolicy' resource.
-*HyperflexApi* | [**get_hyperflex_vm_backup_info_by_moid**](docs/HyperflexApi.md#get_hyperflex_vm_backup_info_by_moid) | **GET** /api/v1/hyperflex/VmBackupInfos/{Moid} | Read a 'hyperflex.VmBackupInfo' resource.
-*HyperflexApi* | [**get_hyperflex_vm_backup_info_list**](docs/HyperflexApi.md#get_hyperflex_vm_backup_info_list) | **GET** /api/v1/hyperflex/VmBackupInfos | Read a 'hyperflex.VmBackupInfo' resource.
-*HyperflexApi* | [**get_hyperflex_vm_import_operation_by_moid**](docs/HyperflexApi.md#get_hyperflex_vm_import_operation_by_moid) | **GET** /api/v1/hyperflex/VmImportOperations/{Moid} | Read a 'hyperflex.VmImportOperation' resource.
-*HyperflexApi* | [**get_hyperflex_vm_import_operation_list**](docs/HyperflexApi.md#get_hyperflex_vm_import_operation_list) | **GET** /api/v1/hyperflex/VmImportOperations | Read a 'hyperflex.VmImportOperation' resource.
-*HyperflexApi* | [**get_hyperflex_vm_restore_operation_by_moid**](docs/HyperflexApi.md#get_hyperflex_vm_restore_operation_by_moid) | **GET** /api/v1/hyperflex/VmRestoreOperations/{Moid} | Read a 'hyperflex.VmRestoreOperation' resource.
-*HyperflexApi* | [**get_hyperflex_vm_restore_operation_list**](docs/HyperflexApi.md#get_hyperflex_vm_restore_operation_list) | **GET** /api/v1/hyperflex/VmRestoreOperations | Read a 'hyperflex.VmRestoreOperation' resource.
-*HyperflexApi* | [**get_hyperflex_vm_snapshot_info_by_moid**](docs/HyperflexApi.md#get_hyperflex_vm_snapshot_info_by_moid) | **GET** /api/v1/hyperflex/VmSnapshotInfos/{Moid} | Read a 'hyperflex.VmSnapshotInfo' resource.
-*HyperflexApi* | [**get_hyperflex_vm_snapshot_info_list**](docs/HyperflexApi.md#get_hyperflex_vm_snapshot_info_list) | **GET** /api/v1/hyperflex/VmSnapshotInfos | Read a 'hyperflex.VmSnapshotInfo' resource.
-*HyperflexApi* | [**get_hyperflex_volume_by_moid**](docs/HyperflexApi.md#get_hyperflex_volume_by_moid) | **GET** /api/v1/hyperflex/Volumes/{Moid} | Read a 'hyperflex.Volume' resource.
-*HyperflexApi* | [**get_hyperflex_volume_list**](docs/HyperflexApi.md#get_hyperflex_volume_list) | **GET** /api/v1/hyperflex/Volumes | Read a 'hyperflex.Volume' resource.
-*HyperflexApi* | [**get_hyperflex_witness_configuration_by_moid**](docs/HyperflexApi.md#get_hyperflex_witness_configuration_by_moid) | **GET** /api/v1/hyperflex/WitnessConfigurations/{Moid} | Read a 'hyperflex.WitnessConfiguration' resource.
-*HyperflexApi* | [**get_hyperflex_witness_configuration_list**](docs/HyperflexApi.md#get_hyperflex_witness_configuration_list) | **GET** /api/v1/hyperflex/WitnessConfigurations | Read a 'hyperflex.WitnessConfiguration' resource.
-*HyperflexApi* | [**patch_hyperflex_app_catalog**](docs/HyperflexApi.md#patch_hyperflex_app_catalog) | **PATCH** /api/v1/hyperflex/AppCatalogs/{Moid} | Update a 'hyperflex.AppCatalog' resource.
-*HyperflexApi* | [**patch_hyperflex_auto_support_policy**](docs/HyperflexApi.md#patch_hyperflex_auto_support_policy) | **PATCH** /api/v1/hyperflex/AutoSupportPolicies/{Moid} | Update a 'hyperflex.AutoSupportPolicy' resource.
-*HyperflexApi* | [**patch_hyperflex_capability_info**](docs/HyperflexApi.md#patch_hyperflex_capability_info) | **PATCH** /api/v1/hyperflex/CapabilityInfos/{Moid} | Update a 'hyperflex.CapabilityInfo' resource.
-*HyperflexApi* | [**patch_hyperflex_cisco_hypervisor_manager**](docs/HyperflexApi.md#patch_hyperflex_cisco_hypervisor_manager) | **PATCH** /api/v1/hyperflex/CiscoHypervisorManagers/{Moid} | Update a 'hyperflex.CiscoHypervisorManager' resource.
-*HyperflexApi* | [**patch_hyperflex_cluster**](docs/HyperflexApi.md#patch_hyperflex_cluster) | **PATCH** /api/v1/hyperflex/Clusters/{Moid} | Update a 'hyperflex.Cluster' resource.
-*HyperflexApi* | [**patch_hyperflex_cluster_backup_policy**](docs/HyperflexApi.md#patch_hyperflex_cluster_backup_policy) | **PATCH** /api/v1/hyperflex/ClusterBackupPolicies/{Moid} | Update a 'hyperflex.ClusterBackupPolicy' resource.
-*HyperflexApi* | [**patch_hyperflex_cluster_backup_policy_deployment**](docs/HyperflexApi.md#patch_hyperflex_cluster_backup_policy_deployment) | **PATCH** /api/v1/hyperflex/ClusterBackupPolicyDeployments/{Moid} | Update a 'hyperflex.ClusterBackupPolicyDeployment' resource.
-*HyperflexApi* | [**patch_hyperflex_cluster_network_policy**](docs/HyperflexApi.md#patch_hyperflex_cluster_network_policy) | **PATCH** /api/v1/hyperflex/ClusterNetworkPolicies/{Moid} | Update a 'hyperflex.ClusterNetworkPolicy' resource.
-*HyperflexApi* | [**patch_hyperflex_cluster_profile**](docs/HyperflexApi.md#patch_hyperflex_cluster_profile) | **PATCH** /api/v1/hyperflex/ClusterProfiles/{Moid} | Update a 'hyperflex.ClusterProfile' resource.
-*HyperflexApi* | [**patch_hyperflex_cluster_replication_network_policy**](docs/HyperflexApi.md#patch_hyperflex_cluster_replication_network_policy) | **PATCH** /api/v1/hyperflex/ClusterReplicationNetworkPolicies/{Moid} | Update a 'hyperflex.ClusterReplicationNetworkPolicy' resource.
-*HyperflexApi* | [**patch_hyperflex_cluster_replication_network_policy_deployment**](docs/HyperflexApi.md#patch_hyperflex_cluster_replication_network_policy_deployment) | **PATCH** /api/v1/hyperflex/ClusterReplicationNetworkPolicyDeployments/{Moid} | Update a 'hyperflex.ClusterReplicationNetworkPolicyDeployment' resource.
-*HyperflexApi* | [**patch_hyperflex_cluster_storage_policy**](docs/HyperflexApi.md#patch_hyperflex_cluster_storage_policy) | **PATCH** /api/v1/hyperflex/ClusterStoragePolicies/{Moid} | Update a 'hyperflex.ClusterStoragePolicy' resource.
-*HyperflexApi* | [**patch_hyperflex_ext_fc_storage_policy**](docs/HyperflexApi.md#patch_hyperflex_ext_fc_storage_policy) | **PATCH** /api/v1/hyperflex/ExtFcStoragePolicies/{Moid} | Update a 'hyperflex.ExtFcStoragePolicy' resource.
-*HyperflexApi* | [**patch_hyperflex_ext_iscsi_storage_policy**](docs/HyperflexApi.md#patch_hyperflex_ext_iscsi_storage_policy) | **PATCH** /api/v1/hyperflex/ExtIscsiStoragePolicies/{Moid} | Update a 'hyperflex.ExtIscsiStoragePolicy' resource.
-*HyperflexApi* | [**patch_hyperflex_feature_limit_external**](docs/HyperflexApi.md#patch_hyperflex_feature_limit_external) | **PATCH** /api/v1/hyperflex/FeatureLimitExternals/{Moid} | Update a 'hyperflex.FeatureLimitExternal' resource.
-*HyperflexApi* | [**patch_hyperflex_feature_limit_internal**](docs/HyperflexApi.md#patch_hyperflex_feature_limit_internal) | **PATCH** /api/v1/hyperflex/FeatureLimitInternals/{Moid} | Update a 'hyperflex.FeatureLimitInternal' resource.
-*HyperflexApi* | [**patch_hyperflex_health_check_definition**](docs/HyperflexApi.md#patch_hyperflex_health_check_definition) | **PATCH** /api/v1/hyperflex/HealthCheckDefinitions/{Moid} | Update a 'hyperflex.HealthCheckDefinition' resource.
-*HyperflexApi* | [**patch_hyperflex_health_check_package_checksum**](docs/HyperflexApi.md#patch_hyperflex_health_check_package_checksum) | **PATCH** /api/v1/hyperflex/HealthCheckPackageChecksums/{Moid} | Update a 'hyperflex.HealthCheckPackageChecksum' resource.
-*HyperflexApi* | [**patch_hyperflex_hxap_cluster**](docs/HyperflexApi.md#patch_hyperflex_hxap_cluster) | **PATCH** /api/v1/hyperflex/HxapClusters/{Moid} | Update a 'hyperflex.HxapCluster' resource.
-*HyperflexApi* | [**patch_hyperflex_hxap_datacenter**](docs/HyperflexApi.md#patch_hyperflex_hxap_datacenter) | **PATCH** /api/v1/hyperflex/HxapDatacenters/{Moid} | Update a 'hyperflex.HxapDatacenter' resource.
-*HyperflexApi* | [**patch_hyperflex_hxap_host**](docs/HyperflexApi.md#patch_hyperflex_hxap_host) | **PATCH** /api/v1/hyperflex/HxapHosts/{Moid} | Update a 'hyperflex.HxapHost' resource.
-*HyperflexApi* | [**patch_hyperflex_hxap_virtual_disk**](docs/HyperflexApi.md#patch_hyperflex_hxap_virtual_disk) | **PATCH** /api/v1/hyperflex/HxapVirtualDisks/{Moid} | Update a 'hyperflex.HxapVirtualDisk' resource.
-*HyperflexApi* | [**patch_hyperflex_hxap_virtual_machine**](docs/HyperflexApi.md#patch_hyperflex_hxap_virtual_machine) | **PATCH** /api/v1/hyperflex/HxapVirtualMachines/{Moid} | Update a 'hyperflex.HxapVirtualMachine' resource.
-*HyperflexApi* | [**patch_hyperflex_hxdp_version**](docs/HyperflexApi.md#patch_hyperflex_hxdp_version) | **PATCH** /api/v1/hyperflex/HxdpVersions/{Moid} | Update a 'hyperflex.HxdpVersion' resource.
-*HyperflexApi* | [**patch_hyperflex_local_credential_policy**](docs/HyperflexApi.md#patch_hyperflex_local_credential_policy) | **PATCH** /api/v1/hyperflex/LocalCredentialPolicies/{Moid} | Update a 'hyperflex.LocalCredentialPolicy' resource.
-*HyperflexApi* | [**patch_hyperflex_node_config_policy**](docs/HyperflexApi.md#patch_hyperflex_node_config_policy) | **PATCH** /api/v1/hyperflex/NodeConfigPolicies/{Moid} | Update a 'hyperflex.NodeConfigPolicy' resource.
-*HyperflexApi* | [**patch_hyperflex_node_profile**](docs/HyperflexApi.md#patch_hyperflex_node_profile) | **PATCH** /api/v1/hyperflex/NodeProfiles/{Moid} | Update a 'hyperflex.NodeProfile' resource.
-*HyperflexApi* | [**patch_hyperflex_proxy_setting_policy**](docs/HyperflexApi.md#patch_hyperflex_proxy_setting_policy) | **PATCH** /api/v1/hyperflex/ProxySettingPolicies/{Moid} | Update a 'hyperflex.ProxySettingPolicy' resource.
-*HyperflexApi* | [**patch_hyperflex_server_firmware_version**](docs/HyperflexApi.md#patch_hyperflex_server_firmware_version) | **PATCH** /api/v1/hyperflex/ServerFirmwareVersions/{Moid} | Update a 'hyperflex.ServerFirmwareVersion' resource.
-*HyperflexApi* | [**patch_hyperflex_server_firmware_version_entry**](docs/HyperflexApi.md#patch_hyperflex_server_firmware_version_entry) | **PATCH** /api/v1/hyperflex/ServerFirmwareVersionEntries/{Moid} | Update a 'hyperflex.ServerFirmwareVersionEntry' resource.
-*HyperflexApi* | [**patch_hyperflex_server_model**](docs/HyperflexApi.md#patch_hyperflex_server_model) | **PATCH** /api/v1/hyperflex/ServerModels/{Moid} | Update a 'hyperflex.ServerModel' resource.
-*HyperflexApi* | [**patch_hyperflex_software_distribution_component**](docs/HyperflexApi.md#patch_hyperflex_software_distribution_component) | **PATCH** /api/v1/hyperflex/SoftwareDistributionComponents/{Moid} | Update a 'hyperflex.SoftwareDistributionComponent' resource.
-*HyperflexApi* | [**patch_hyperflex_software_distribution_entry**](docs/HyperflexApi.md#patch_hyperflex_software_distribution_entry) | **PATCH** /api/v1/hyperflex/SoftwareDistributionEntries/{Moid} | Update a 'hyperflex.SoftwareDistributionEntry' resource.
-*HyperflexApi* | [**patch_hyperflex_software_distribution_version**](docs/HyperflexApi.md#patch_hyperflex_software_distribution_version) | **PATCH** /api/v1/hyperflex/SoftwareDistributionVersions/{Moid} | Update a 'hyperflex.SoftwareDistributionVersion' resource.
-*HyperflexApi* | [**patch_hyperflex_software_version_policy**](docs/HyperflexApi.md#patch_hyperflex_software_version_policy) | **PATCH** /api/v1/hyperflex/SoftwareVersionPolicies/{Moid} | Update a 'hyperflex.SoftwareVersionPolicy' resource.
-*HyperflexApi* | [**patch_hyperflex_sys_config_policy**](docs/HyperflexApi.md#patch_hyperflex_sys_config_policy) | **PATCH** /api/v1/hyperflex/SysConfigPolicies/{Moid} | Update a 'hyperflex.SysConfigPolicy' resource.
-*HyperflexApi* | [**patch_hyperflex_ucsm_config_policy**](docs/HyperflexApi.md#patch_hyperflex_ucsm_config_policy) | **PATCH** /api/v1/hyperflex/UcsmConfigPolicies/{Moid} | Update a 'hyperflex.UcsmConfigPolicy' resource.
-*HyperflexApi* | [**patch_hyperflex_vcenter_config_policy**](docs/HyperflexApi.md#patch_hyperflex_vcenter_config_policy) | **PATCH** /api/v1/hyperflex/VcenterConfigPolicies/{Moid} | Update a 'hyperflex.VcenterConfigPolicy' resource.
-*HyperflexApi* | [**update_hyperflex_app_catalog**](docs/HyperflexApi.md#update_hyperflex_app_catalog) | **POST** /api/v1/hyperflex/AppCatalogs/{Moid} | Update a 'hyperflex.AppCatalog' resource.
-*HyperflexApi* | [**update_hyperflex_auto_support_policy**](docs/HyperflexApi.md#update_hyperflex_auto_support_policy) | **POST** /api/v1/hyperflex/AutoSupportPolicies/{Moid} | Update a 'hyperflex.AutoSupportPolicy' resource.
-*HyperflexApi* | [**update_hyperflex_capability_info**](docs/HyperflexApi.md#update_hyperflex_capability_info) | **POST** /api/v1/hyperflex/CapabilityInfos/{Moid} | Update a 'hyperflex.CapabilityInfo' resource.
-*HyperflexApi* | [**update_hyperflex_cisco_hypervisor_manager**](docs/HyperflexApi.md#update_hyperflex_cisco_hypervisor_manager) | **POST** /api/v1/hyperflex/CiscoHypervisorManagers/{Moid} | Update a 'hyperflex.CiscoHypervisorManager' resource.
-*HyperflexApi* | [**update_hyperflex_cluster**](docs/HyperflexApi.md#update_hyperflex_cluster) | **POST** /api/v1/hyperflex/Clusters/{Moid} | Update a 'hyperflex.Cluster' resource.
-*HyperflexApi* | [**update_hyperflex_cluster_backup_policy**](docs/HyperflexApi.md#update_hyperflex_cluster_backup_policy) | **POST** /api/v1/hyperflex/ClusterBackupPolicies/{Moid} | Update a 'hyperflex.ClusterBackupPolicy' resource.
-*HyperflexApi* | [**update_hyperflex_cluster_backup_policy_deployment**](docs/HyperflexApi.md#update_hyperflex_cluster_backup_policy_deployment) | **POST** /api/v1/hyperflex/ClusterBackupPolicyDeployments/{Moid} | Update a 'hyperflex.ClusterBackupPolicyDeployment' resource.
-*HyperflexApi* | [**update_hyperflex_cluster_network_policy**](docs/HyperflexApi.md#update_hyperflex_cluster_network_policy) | **POST** /api/v1/hyperflex/ClusterNetworkPolicies/{Moid} | Update a 'hyperflex.ClusterNetworkPolicy' resource.
-*HyperflexApi* | [**update_hyperflex_cluster_profile**](docs/HyperflexApi.md#update_hyperflex_cluster_profile) | **POST** /api/v1/hyperflex/ClusterProfiles/{Moid} | Update a 'hyperflex.ClusterProfile' resource.
-*HyperflexApi* | [**update_hyperflex_cluster_replication_network_policy**](docs/HyperflexApi.md#update_hyperflex_cluster_replication_network_policy) | **POST** /api/v1/hyperflex/ClusterReplicationNetworkPolicies/{Moid} | Update a 'hyperflex.ClusterReplicationNetworkPolicy' resource.
-*HyperflexApi* | [**update_hyperflex_cluster_replication_network_policy_deployment**](docs/HyperflexApi.md#update_hyperflex_cluster_replication_network_policy_deployment) | **POST** /api/v1/hyperflex/ClusterReplicationNetworkPolicyDeployments/{Moid} | Update a 'hyperflex.ClusterReplicationNetworkPolicyDeployment' resource.
-*HyperflexApi* | [**update_hyperflex_cluster_storage_policy**](docs/HyperflexApi.md#update_hyperflex_cluster_storage_policy) | **POST** /api/v1/hyperflex/ClusterStoragePolicies/{Moid} | Update a 'hyperflex.ClusterStoragePolicy' resource.
-*HyperflexApi* | [**update_hyperflex_ext_fc_storage_policy**](docs/HyperflexApi.md#update_hyperflex_ext_fc_storage_policy) | **POST** /api/v1/hyperflex/ExtFcStoragePolicies/{Moid} | Update a 'hyperflex.ExtFcStoragePolicy' resource.
-*HyperflexApi* | [**update_hyperflex_ext_iscsi_storage_policy**](docs/HyperflexApi.md#update_hyperflex_ext_iscsi_storage_policy) | **POST** /api/v1/hyperflex/ExtIscsiStoragePolicies/{Moid} | Update a 'hyperflex.ExtIscsiStoragePolicy' resource.
-*HyperflexApi* | [**update_hyperflex_feature_limit_external**](docs/HyperflexApi.md#update_hyperflex_feature_limit_external) | **POST** /api/v1/hyperflex/FeatureLimitExternals/{Moid} | Update a 'hyperflex.FeatureLimitExternal' resource.
-*HyperflexApi* | [**update_hyperflex_feature_limit_internal**](docs/HyperflexApi.md#update_hyperflex_feature_limit_internal) | **POST** /api/v1/hyperflex/FeatureLimitInternals/{Moid} | Update a 'hyperflex.FeatureLimitInternal' resource.
-*HyperflexApi* | [**update_hyperflex_health_check_definition**](docs/HyperflexApi.md#update_hyperflex_health_check_definition) | **POST** /api/v1/hyperflex/HealthCheckDefinitions/{Moid} | Update a 'hyperflex.HealthCheckDefinition' resource.
-*HyperflexApi* | [**update_hyperflex_health_check_package_checksum**](docs/HyperflexApi.md#update_hyperflex_health_check_package_checksum) | **POST** /api/v1/hyperflex/HealthCheckPackageChecksums/{Moid} | Update a 'hyperflex.HealthCheckPackageChecksum' resource.
-*HyperflexApi* | [**update_hyperflex_hxap_cluster**](docs/HyperflexApi.md#update_hyperflex_hxap_cluster) | **POST** /api/v1/hyperflex/HxapClusters/{Moid} | Update a 'hyperflex.HxapCluster' resource.
-*HyperflexApi* | [**update_hyperflex_hxap_datacenter**](docs/HyperflexApi.md#update_hyperflex_hxap_datacenter) | **POST** /api/v1/hyperflex/HxapDatacenters/{Moid} | Update a 'hyperflex.HxapDatacenter' resource.
-*HyperflexApi* | [**update_hyperflex_hxap_host**](docs/HyperflexApi.md#update_hyperflex_hxap_host) | **POST** /api/v1/hyperflex/HxapHosts/{Moid} | Update a 'hyperflex.HxapHost' resource.
-*HyperflexApi* | [**update_hyperflex_hxap_virtual_disk**](docs/HyperflexApi.md#update_hyperflex_hxap_virtual_disk) | **POST** /api/v1/hyperflex/HxapVirtualDisks/{Moid} | Update a 'hyperflex.HxapVirtualDisk' resource.
-*HyperflexApi* | [**update_hyperflex_hxap_virtual_machine**](docs/HyperflexApi.md#update_hyperflex_hxap_virtual_machine) | **POST** /api/v1/hyperflex/HxapVirtualMachines/{Moid} | Update a 'hyperflex.HxapVirtualMachine' resource.
-*HyperflexApi* | [**update_hyperflex_hxdp_version**](docs/HyperflexApi.md#update_hyperflex_hxdp_version) | **POST** /api/v1/hyperflex/HxdpVersions/{Moid} | Update a 'hyperflex.HxdpVersion' resource.
-*HyperflexApi* | [**update_hyperflex_local_credential_policy**](docs/HyperflexApi.md#update_hyperflex_local_credential_policy) | **POST** /api/v1/hyperflex/LocalCredentialPolicies/{Moid} | Update a 'hyperflex.LocalCredentialPolicy' resource.
-*HyperflexApi* | [**update_hyperflex_node_config_policy**](docs/HyperflexApi.md#update_hyperflex_node_config_policy) | **POST** /api/v1/hyperflex/NodeConfigPolicies/{Moid} | Update a 'hyperflex.NodeConfigPolicy' resource.
-*HyperflexApi* | [**update_hyperflex_node_profile**](docs/HyperflexApi.md#update_hyperflex_node_profile) | **POST** /api/v1/hyperflex/NodeProfiles/{Moid} | Update a 'hyperflex.NodeProfile' resource.
-*HyperflexApi* | [**update_hyperflex_proxy_setting_policy**](docs/HyperflexApi.md#update_hyperflex_proxy_setting_policy) | **POST** /api/v1/hyperflex/ProxySettingPolicies/{Moid} | Update a 'hyperflex.ProxySettingPolicy' resource.
-*HyperflexApi* | [**update_hyperflex_server_firmware_version**](docs/HyperflexApi.md#update_hyperflex_server_firmware_version) | **POST** /api/v1/hyperflex/ServerFirmwareVersions/{Moid} | Update a 'hyperflex.ServerFirmwareVersion' resource.
-*HyperflexApi* | [**update_hyperflex_server_firmware_version_entry**](docs/HyperflexApi.md#update_hyperflex_server_firmware_version_entry) | **POST** /api/v1/hyperflex/ServerFirmwareVersionEntries/{Moid} | Update a 'hyperflex.ServerFirmwareVersionEntry' resource.
-*HyperflexApi* | [**update_hyperflex_server_model**](docs/HyperflexApi.md#update_hyperflex_server_model) | **POST** /api/v1/hyperflex/ServerModels/{Moid} | Update a 'hyperflex.ServerModel' resource.
-*HyperflexApi* | [**update_hyperflex_software_distribution_component**](docs/HyperflexApi.md#update_hyperflex_software_distribution_component) | **POST** /api/v1/hyperflex/SoftwareDistributionComponents/{Moid} | Update a 'hyperflex.SoftwareDistributionComponent' resource.
-*HyperflexApi* | [**update_hyperflex_software_distribution_entry**](docs/HyperflexApi.md#update_hyperflex_software_distribution_entry) | **POST** /api/v1/hyperflex/SoftwareDistributionEntries/{Moid} | Update a 'hyperflex.SoftwareDistributionEntry' resource.
-*HyperflexApi* | [**update_hyperflex_software_distribution_version**](docs/HyperflexApi.md#update_hyperflex_software_distribution_version) | **POST** /api/v1/hyperflex/SoftwareDistributionVersions/{Moid} | Update a 'hyperflex.SoftwareDistributionVersion' resource.
-*HyperflexApi* | [**update_hyperflex_software_version_policy**](docs/HyperflexApi.md#update_hyperflex_software_version_policy) | **POST** /api/v1/hyperflex/SoftwareVersionPolicies/{Moid} | Update a 'hyperflex.SoftwareVersionPolicy' resource.
-*HyperflexApi* | [**update_hyperflex_sys_config_policy**](docs/HyperflexApi.md#update_hyperflex_sys_config_policy) | **POST** /api/v1/hyperflex/SysConfigPolicies/{Moid} | Update a 'hyperflex.SysConfigPolicy' resource.
-*HyperflexApi* | [**update_hyperflex_ucsm_config_policy**](docs/HyperflexApi.md#update_hyperflex_ucsm_config_policy) | **POST** /api/v1/hyperflex/UcsmConfigPolicies/{Moid} | Update a 'hyperflex.UcsmConfigPolicy' resource.
-*HyperflexApi* | [**update_hyperflex_vcenter_config_policy**](docs/HyperflexApi.md#update_hyperflex_vcenter_config_policy) | **POST** /api/v1/hyperflex/VcenterConfigPolicies/{Moid} | Update a 'hyperflex.VcenterConfigPolicy' resource.
-*IaasApi* | [**delete_iaas_ucsd_info**](docs/IaasApi.md#delete_iaas_ucsd_info) | **DELETE** /api/v1/iaas/UcsdInfos/{Moid} | Delete a 'iaas.UcsdInfo' resource.
-*IaasApi* | [**get_iaas_connector_pack_by_moid**](docs/IaasApi.md#get_iaas_connector_pack_by_moid) | **GET** /api/v1/iaas/ConnectorPacks/{Moid} | Read a 'iaas.ConnectorPack' resource.
-*IaasApi* | [**get_iaas_connector_pack_list**](docs/IaasApi.md#get_iaas_connector_pack_list) | **GET** /api/v1/iaas/ConnectorPacks | Read a 'iaas.ConnectorPack' resource.
-*IaasApi* | [**get_iaas_device_status_by_moid**](docs/IaasApi.md#get_iaas_device_status_by_moid) | **GET** /api/v1/iaas/DeviceStatuses/{Moid} | Read a 'iaas.DeviceStatus' resource.
-*IaasApi* | [**get_iaas_device_status_list**](docs/IaasApi.md#get_iaas_device_status_list) | **GET** /api/v1/iaas/DeviceStatuses | Read a 'iaas.DeviceStatus' resource.
-*IaasApi* | [**get_iaas_diagnostic_messages_by_moid**](docs/IaasApi.md#get_iaas_diagnostic_messages_by_moid) | **GET** /api/v1/iaas/DiagnosticMessages/{Moid} | Read a 'iaas.DiagnosticMessages' resource.
-*IaasApi* | [**get_iaas_diagnostic_messages_list**](docs/IaasApi.md#get_iaas_diagnostic_messages_list) | **GET** /api/v1/iaas/DiagnosticMessages | Read a 'iaas.DiagnosticMessages' resource.
-*IaasApi* | [**get_iaas_license_info_by_moid**](docs/IaasApi.md#get_iaas_license_info_by_moid) | **GET** /api/v1/iaas/LicenseInfos/{Moid} | Read a 'iaas.LicenseInfo' resource.
-*IaasApi* | [**get_iaas_license_info_list**](docs/IaasApi.md#get_iaas_license_info_list) | **GET** /api/v1/iaas/LicenseInfos | Read a 'iaas.LicenseInfo' resource.
-*IaasApi* | [**get_iaas_most_run_tasks_by_moid**](docs/IaasApi.md#get_iaas_most_run_tasks_by_moid) | **GET** /api/v1/iaas/MostRunTasks/{Moid} | Read a 'iaas.MostRunTasks' resource.
-*IaasApi* | [**get_iaas_most_run_tasks_list**](docs/IaasApi.md#get_iaas_most_run_tasks_list) | **GET** /api/v1/iaas/MostRunTasks | Read a 'iaas.MostRunTasks' resource.
-*IaasApi* | [**get_iaas_service_request_by_moid**](docs/IaasApi.md#get_iaas_service_request_by_moid) | **GET** /api/v1/iaas/ServiceRequests/{Moid} | Read a 'iaas.ServiceRequest' resource.
-*IaasApi* | [**get_iaas_service_request_list**](docs/IaasApi.md#get_iaas_service_request_list) | **GET** /api/v1/iaas/ServiceRequests | Read a 'iaas.ServiceRequest' resource.
-*IaasApi* | [**get_iaas_ucsd_info_by_moid**](docs/IaasApi.md#get_iaas_ucsd_info_by_moid) | **GET** /api/v1/iaas/UcsdInfos/{Moid} | Read a 'iaas.UcsdInfo' resource.
-*IaasApi* | [**get_iaas_ucsd_info_list**](docs/IaasApi.md#get_iaas_ucsd_info_list) | **GET** /api/v1/iaas/UcsdInfos | Read a 'iaas.UcsdInfo' resource.
-*IaasApi* | [**get_iaas_ucsd_managed_infra_by_moid**](docs/IaasApi.md#get_iaas_ucsd_managed_infra_by_moid) | **GET** /api/v1/iaas/UcsdManagedInfras/{Moid} | Read a 'iaas.UcsdManagedInfra' resource.
-*IaasApi* | [**get_iaas_ucsd_managed_infra_list**](docs/IaasApi.md#get_iaas_ucsd_managed_infra_list) | **GET** /api/v1/iaas/UcsdManagedInfras | Read a 'iaas.UcsdManagedInfra' resource.
-*IaasApi* | [**get_iaas_ucsd_messages_by_moid**](docs/IaasApi.md#get_iaas_ucsd_messages_by_moid) | **GET** /api/v1/iaas/UcsdMessages/{Moid} | Read a 'iaas.UcsdMessages' resource.
-*IaasApi* | [**get_iaas_ucsd_messages_list**](docs/IaasApi.md#get_iaas_ucsd_messages_list) | **GET** /api/v1/iaas/UcsdMessages | Read a 'iaas.UcsdMessages' resource.
-*IaasApi* | [**patch_iaas_ucsd_info**](docs/IaasApi.md#patch_iaas_ucsd_info) | **PATCH** /api/v1/iaas/UcsdInfos/{Moid} | Update a 'iaas.UcsdInfo' resource.
-*IaasApi* | [**update_iaas_ucsd_info**](docs/IaasApi.md#update_iaas_ucsd_info) | **POST** /api/v1/iaas/UcsdInfos/{Moid} | Update a 'iaas.UcsdInfo' resource.
-*IamApi* | [**create_iam_account**](docs/IamApi.md#create_iam_account) | **POST** /api/v1/iam/Accounts | Create a 'iam.Account' resource.
-*IamApi* | [**create_iam_account_experience**](docs/IamApi.md#create_iam_account_experience) | **POST** /api/v1/iam/AccountExperiences | Create a 'iam.AccountExperience' resource.
-*IamApi* | [**create_iam_api_key**](docs/IamApi.md#create_iam_api_key) | **POST** /api/v1/iam/ApiKeys | Create a 'iam.ApiKey' resource.
-*IamApi* | [**create_iam_app_registration**](docs/IamApi.md#create_iam_app_registration) | **POST** /api/v1/iam/AppRegistrations | Create a 'iam.AppRegistration' resource.
-*IamApi* | [**create_iam_certificate**](docs/IamApi.md#create_iam_certificate) | **POST** /api/v1/iam/Certificates | Create a 'iam.Certificate' resource.
-*IamApi* | [**create_iam_certificate_request**](docs/IamApi.md#create_iam_certificate_request) | **POST** /api/v1/iam/CertificateRequests | Create a 'iam.CertificateRequest' resource.
-*IamApi* | [**create_iam_end_point_user**](docs/IamApi.md#create_iam_end_point_user) | **POST** /api/v1/iam/EndPointUsers | Create a 'iam.EndPointUser' resource.
-*IamApi* | [**create_iam_end_point_user_policy**](docs/IamApi.md#create_iam_end_point_user_policy) | **POST** /api/v1/iam/EndPointUserPolicies | Create a 'iam.EndPointUserPolicy' resource.
-*IamApi* | [**create_iam_end_point_user_role**](docs/IamApi.md#create_iam_end_point_user_role) | **POST** /api/v1/iam/EndPointUserRoles | Create a 'iam.EndPointUserRole' resource.
-*IamApi* | [**create_iam_idp**](docs/IamApi.md#create_iam_idp) | **POST** /api/v1/iam/Idps | Create a 'iam.Idp' resource.
-*IamApi* | [**create_iam_ip_access_management**](docs/IamApi.md#create_iam_ip_access_management) | **POST** /api/v1/iam/IpAccessManagements | Create a 'iam.IpAccessManagement' resource.
-*IamApi* | [**create_iam_ip_address**](docs/IamApi.md#create_iam_ip_address) | **POST** /api/v1/iam/IpAddresses | Create a 'iam.IpAddress' resource.
-*IamApi* | [**create_iam_ldap_group**](docs/IamApi.md#create_iam_ldap_group) | **POST** /api/v1/iam/LdapGroups | Create a 'iam.LdapGroup' resource.
-*IamApi* | [**create_iam_ldap_policy**](docs/IamApi.md#create_iam_ldap_policy) | **POST** /api/v1/iam/LdapPolicies | Create a 'iam.LdapPolicy' resource.
-*IamApi* | [**create_iam_ldap_provider**](docs/IamApi.md#create_iam_ldap_provider) | **POST** /api/v1/iam/LdapProviders | Create a 'iam.LdapProvider' resource.
-*IamApi* | [**create_iam_permission**](docs/IamApi.md#create_iam_permission) | **POST** /api/v1/iam/Permissions | Create a 'iam.Permission' resource.
-*IamApi* | [**create_iam_private_key_spec**](docs/IamApi.md#create_iam_private_key_spec) | **POST** /api/v1/iam/PrivateKeySpecs | Create a 'iam.PrivateKeySpec' resource.
-*IamApi* | [**create_iam_qualifier**](docs/IamApi.md#create_iam_qualifier) | **POST** /api/v1/iam/Qualifiers | Create a 'iam.Qualifier' resource.
-*IamApi* | [**create_iam_resource_roles**](docs/IamApi.md#create_iam_resource_roles) | **POST** /api/v1/iam/ResourceRoles | Create a 'iam.ResourceRoles' resource.
-*IamApi* | [**create_iam_session_limits**](docs/IamApi.md#create_iam_session_limits) | **POST** /api/v1/iam/SessionLimits | Create a 'iam.SessionLimits' resource.
-*IamApi* | [**create_iam_trust_point**](docs/IamApi.md#create_iam_trust_point) | **POST** /api/v1/iam/TrustPoints | Create a 'iam.TrustPoint' resource.
-*IamApi* | [**create_iam_user**](docs/IamApi.md#create_iam_user) | **POST** /api/v1/iam/Users | Create a 'iam.User' resource.
-*IamApi* | [**create_iam_user_group**](docs/IamApi.md#create_iam_user_group) | **POST** /api/v1/iam/UserGroups | Create a 'iam.UserGroup' resource.
-*IamApi* | [**delete_iam_account**](docs/IamApi.md#delete_iam_account) | **DELETE** /api/v1/iam/Accounts/{Moid} | Delete a 'iam.Account' resource.
-*IamApi* | [**delete_iam_api_key**](docs/IamApi.md#delete_iam_api_key) | **DELETE** /api/v1/iam/ApiKeys/{Moid} | Delete a 'iam.ApiKey' resource.
-*IamApi* | [**delete_iam_app_registration**](docs/IamApi.md#delete_iam_app_registration) | **DELETE** /api/v1/iam/AppRegistrations/{Moid} | Delete a 'iam.AppRegistration' resource.
-*IamApi* | [**delete_iam_certificate**](docs/IamApi.md#delete_iam_certificate) | **DELETE** /api/v1/iam/Certificates/{Moid} | Delete a 'iam.Certificate' resource.
-*IamApi* | [**delete_iam_certificate_request**](docs/IamApi.md#delete_iam_certificate_request) | **DELETE** /api/v1/iam/CertificateRequests/{Moid} | Delete a 'iam.CertificateRequest' resource.
-*IamApi* | [**delete_iam_end_point_user**](docs/IamApi.md#delete_iam_end_point_user) | **DELETE** /api/v1/iam/EndPointUsers/{Moid} | Delete a 'iam.EndPointUser' resource.
-*IamApi* | [**delete_iam_end_point_user_policy**](docs/IamApi.md#delete_iam_end_point_user_policy) | **DELETE** /api/v1/iam/EndPointUserPolicies/{Moid} | Delete a 'iam.EndPointUserPolicy' resource.
-*IamApi* | [**delete_iam_end_point_user_role**](docs/IamApi.md#delete_iam_end_point_user_role) | **DELETE** /api/v1/iam/EndPointUserRoles/{Moid} | Delete a 'iam.EndPointUserRole' resource.
-*IamApi* | [**delete_iam_idp**](docs/IamApi.md#delete_iam_idp) | **DELETE** /api/v1/iam/Idps/{Moid} | Delete a 'iam.Idp' resource.
-*IamApi* | [**delete_iam_ip_address**](docs/IamApi.md#delete_iam_ip_address) | **DELETE** /api/v1/iam/IpAddresses/{Moid} | Delete a 'iam.IpAddress' resource.
-*IamApi* | [**delete_iam_ldap_group**](docs/IamApi.md#delete_iam_ldap_group) | **DELETE** /api/v1/iam/LdapGroups/{Moid} | Delete a 'iam.LdapGroup' resource.
-*IamApi* | [**delete_iam_ldap_policy**](docs/IamApi.md#delete_iam_ldap_policy) | **DELETE** /api/v1/iam/LdapPolicies/{Moid} | Delete a 'iam.LdapPolicy' resource.
-*IamApi* | [**delete_iam_ldap_provider**](docs/IamApi.md#delete_iam_ldap_provider) | **DELETE** /api/v1/iam/LdapProviders/{Moid} | Delete a 'iam.LdapProvider' resource.
-*IamApi* | [**delete_iam_o_auth_token**](docs/IamApi.md#delete_iam_o_auth_token) | **DELETE** /api/v1/iam/OAuthTokens/{Moid} | Delete a 'iam.OAuthToken' resource.
-*IamApi* | [**delete_iam_permission**](docs/IamApi.md#delete_iam_permission) | **DELETE** /api/v1/iam/Permissions/{Moid} | Delete a 'iam.Permission' resource.
-*IamApi* | [**delete_iam_private_key_spec**](docs/IamApi.md#delete_iam_private_key_spec) | **DELETE** /api/v1/iam/PrivateKeySpecs/{Moid} | Delete a 'iam.PrivateKeySpec' resource.
-*IamApi* | [**delete_iam_qualifier**](docs/IamApi.md#delete_iam_qualifier) | **DELETE** /api/v1/iam/Qualifiers/{Moid} | Delete a 'iam.Qualifier' resource.
-*IamApi* | [**delete_iam_resource_roles**](docs/IamApi.md#delete_iam_resource_roles) | **DELETE** /api/v1/iam/ResourceRoles/{Moid} | Delete a 'iam.ResourceRoles' resource.
-*IamApi* | [**delete_iam_session**](docs/IamApi.md#delete_iam_session) | **DELETE** /api/v1/iam/Sessions/{Moid} | Delete a 'iam.Session' resource.
-*IamApi* | [**delete_iam_session_limits**](docs/IamApi.md#delete_iam_session_limits) | **DELETE** /api/v1/iam/SessionLimits/{Moid} | Delete a 'iam.SessionLimits' resource.
-*IamApi* | [**delete_iam_trust_point**](docs/IamApi.md#delete_iam_trust_point) | **DELETE** /api/v1/iam/TrustPoints/{Moid} | Delete a 'iam.TrustPoint' resource.
-*IamApi* | [**delete_iam_user**](docs/IamApi.md#delete_iam_user) | **DELETE** /api/v1/iam/Users/{Moid} | Delete a 'iam.User' resource.
-*IamApi* | [**delete_iam_user_group**](docs/IamApi.md#delete_iam_user_group) | **DELETE** /api/v1/iam/UserGroups/{Moid} | Delete a 'iam.UserGroup' resource.
-*IamApi* | [**get_iam_account_by_moid**](docs/IamApi.md#get_iam_account_by_moid) | **GET** /api/v1/iam/Accounts/{Moid} | Read a 'iam.Account' resource.
-*IamApi* | [**get_iam_account_experience_by_moid**](docs/IamApi.md#get_iam_account_experience_by_moid) | **GET** /api/v1/iam/AccountExperiences/{Moid} | Read a 'iam.AccountExperience' resource.
-*IamApi* | [**get_iam_account_experience_list**](docs/IamApi.md#get_iam_account_experience_list) | **GET** /api/v1/iam/AccountExperiences | Read a 'iam.AccountExperience' resource.
-*IamApi* | [**get_iam_account_list**](docs/IamApi.md#get_iam_account_list) | **GET** /api/v1/iam/Accounts | Read a 'iam.Account' resource.
-*IamApi* | [**get_iam_api_key_by_moid**](docs/IamApi.md#get_iam_api_key_by_moid) | **GET** /api/v1/iam/ApiKeys/{Moid} | Read a 'iam.ApiKey' resource.
-*IamApi* | [**get_iam_api_key_list**](docs/IamApi.md#get_iam_api_key_list) | **GET** /api/v1/iam/ApiKeys | Read a 'iam.ApiKey' resource.
-*IamApi* | [**get_iam_app_registration_by_moid**](docs/IamApi.md#get_iam_app_registration_by_moid) | **GET** /api/v1/iam/AppRegistrations/{Moid} | Read a 'iam.AppRegistration' resource.
-*IamApi* | [**get_iam_app_registration_list**](docs/IamApi.md#get_iam_app_registration_list) | **GET** /api/v1/iam/AppRegistrations | Read a 'iam.AppRegistration' resource.
-*IamApi* | [**get_iam_banner_message_by_moid**](docs/IamApi.md#get_iam_banner_message_by_moid) | **GET** /api/v1/iam/BannerMessages/{Moid} | Read a 'iam.BannerMessage' resource.
-*IamApi* | [**get_iam_banner_message_list**](docs/IamApi.md#get_iam_banner_message_list) | **GET** /api/v1/iam/BannerMessages | Read a 'iam.BannerMessage' resource.
-*IamApi* | [**get_iam_certificate_by_moid**](docs/IamApi.md#get_iam_certificate_by_moid) | **GET** /api/v1/iam/Certificates/{Moid} | Read a 'iam.Certificate' resource.
-*IamApi* | [**get_iam_certificate_list**](docs/IamApi.md#get_iam_certificate_list) | **GET** /api/v1/iam/Certificates | Read a 'iam.Certificate' resource.
-*IamApi* | [**get_iam_certificate_request_by_moid**](docs/IamApi.md#get_iam_certificate_request_by_moid) | **GET** /api/v1/iam/CertificateRequests/{Moid} | Read a 'iam.CertificateRequest' resource.
-*IamApi* | [**get_iam_certificate_request_list**](docs/IamApi.md#get_iam_certificate_request_list) | **GET** /api/v1/iam/CertificateRequests | Read a 'iam.CertificateRequest' resource.
-*IamApi* | [**get_iam_domain_group_by_moid**](docs/IamApi.md#get_iam_domain_group_by_moid) | **GET** /api/v1/iam/DomainGroups/{Moid} | Read a 'iam.DomainGroup' resource.
-*IamApi* | [**get_iam_domain_group_list**](docs/IamApi.md#get_iam_domain_group_list) | **GET** /api/v1/iam/DomainGroups | Read a 'iam.DomainGroup' resource.
-*IamApi* | [**get_iam_end_point_privilege_by_moid**](docs/IamApi.md#get_iam_end_point_privilege_by_moid) | **GET** /api/v1/iam/EndPointPrivileges/{Moid} | Read a 'iam.EndPointPrivilege' resource.
-*IamApi* | [**get_iam_end_point_privilege_list**](docs/IamApi.md#get_iam_end_point_privilege_list) | **GET** /api/v1/iam/EndPointPrivileges | Read a 'iam.EndPointPrivilege' resource.
-*IamApi* | [**get_iam_end_point_role_by_moid**](docs/IamApi.md#get_iam_end_point_role_by_moid) | **GET** /api/v1/iam/EndPointRoles/{Moid} | Read a 'iam.EndPointRole' resource.
-*IamApi* | [**get_iam_end_point_role_list**](docs/IamApi.md#get_iam_end_point_role_list) | **GET** /api/v1/iam/EndPointRoles | Read a 'iam.EndPointRole' resource.
-*IamApi* | [**get_iam_end_point_user_by_moid**](docs/IamApi.md#get_iam_end_point_user_by_moid) | **GET** /api/v1/iam/EndPointUsers/{Moid} | Read a 'iam.EndPointUser' resource.
-*IamApi* | [**get_iam_end_point_user_list**](docs/IamApi.md#get_iam_end_point_user_list) | **GET** /api/v1/iam/EndPointUsers | Read a 'iam.EndPointUser' resource.
-*IamApi* | [**get_iam_end_point_user_policy_by_moid**](docs/IamApi.md#get_iam_end_point_user_policy_by_moid) | **GET** /api/v1/iam/EndPointUserPolicies/{Moid} | Read a 'iam.EndPointUserPolicy' resource.
-*IamApi* | [**get_iam_end_point_user_policy_list**](docs/IamApi.md#get_iam_end_point_user_policy_list) | **GET** /api/v1/iam/EndPointUserPolicies | Read a 'iam.EndPointUserPolicy' resource.
-*IamApi* | [**get_iam_end_point_user_role_by_moid**](docs/IamApi.md#get_iam_end_point_user_role_by_moid) | **GET** /api/v1/iam/EndPointUserRoles/{Moid} | Read a 'iam.EndPointUserRole' resource.
-*IamApi* | [**get_iam_end_point_user_role_list**](docs/IamApi.md#get_iam_end_point_user_role_list) | **GET** /api/v1/iam/EndPointUserRoles | Read a 'iam.EndPointUserRole' resource.
-*IamApi* | [**get_iam_idp_by_moid**](docs/IamApi.md#get_iam_idp_by_moid) | **GET** /api/v1/iam/Idps/{Moid} | Read a 'iam.Idp' resource.
-*IamApi* | [**get_iam_idp_list**](docs/IamApi.md#get_iam_idp_list) | **GET** /api/v1/iam/Idps | Read a 'iam.Idp' resource.
-*IamApi* | [**get_iam_idp_reference_by_moid**](docs/IamApi.md#get_iam_idp_reference_by_moid) | **GET** /api/v1/iam/IdpReferences/{Moid} | Read a 'iam.IdpReference' resource.
-*IamApi* | [**get_iam_idp_reference_list**](docs/IamApi.md#get_iam_idp_reference_list) | **GET** /api/v1/iam/IdpReferences | Read a 'iam.IdpReference' resource.
-*IamApi* | [**get_iam_ip_access_management_by_moid**](docs/IamApi.md#get_iam_ip_access_management_by_moid) | **GET** /api/v1/iam/IpAccessManagements/{Moid} | Read a 'iam.IpAccessManagement' resource.
-*IamApi* | [**get_iam_ip_access_management_list**](docs/IamApi.md#get_iam_ip_access_management_list) | **GET** /api/v1/iam/IpAccessManagements | Read a 'iam.IpAccessManagement' resource.
-*IamApi* | [**get_iam_ip_address_by_moid**](docs/IamApi.md#get_iam_ip_address_by_moid) | **GET** /api/v1/iam/IpAddresses/{Moid} | Read a 'iam.IpAddress' resource.
-*IamApi* | [**get_iam_ip_address_list**](docs/IamApi.md#get_iam_ip_address_list) | **GET** /api/v1/iam/IpAddresses | Read a 'iam.IpAddress' resource.
-*IamApi* | [**get_iam_ldap_group_by_moid**](docs/IamApi.md#get_iam_ldap_group_by_moid) | **GET** /api/v1/iam/LdapGroups/{Moid} | Read a 'iam.LdapGroup' resource.
-*IamApi* | [**get_iam_ldap_group_list**](docs/IamApi.md#get_iam_ldap_group_list) | **GET** /api/v1/iam/LdapGroups | Read a 'iam.LdapGroup' resource.
-*IamApi* | [**get_iam_ldap_policy_by_moid**](docs/IamApi.md#get_iam_ldap_policy_by_moid) | **GET** /api/v1/iam/LdapPolicies/{Moid} | Read a 'iam.LdapPolicy' resource.
-*IamApi* | [**get_iam_ldap_policy_list**](docs/IamApi.md#get_iam_ldap_policy_list) | **GET** /api/v1/iam/LdapPolicies | Read a 'iam.LdapPolicy' resource.
-*IamApi* | [**get_iam_ldap_provider_by_moid**](docs/IamApi.md#get_iam_ldap_provider_by_moid) | **GET** /api/v1/iam/LdapProviders/{Moid} | Read a 'iam.LdapProvider' resource.
-*IamApi* | [**get_iam_ldap_provider_list**](docs/IamApi.md#get_iam_ldap_provider_list) | **GET** /api/v1/iam/LdapProviders | Read a 'iam.LdapProvider' resource.
-*IamApi* | [**get_iam_local_user_password_policy_by_moid**](docs/IamApi.md#get_iam_local_user_password_policy_by_moid) | **GET** /api/v1/iam/LocalUserPasswordPolicies/{Moid} | Read a 'iam.LocalUserPasswordPolicy' resource.
-*IamApi* | [**get_iam_local_user_password_policy_list**](docs/IamApi.md#get_iam_local_user_password_policy_list) | **GET** /api/v1/iam/LocalUserPasswordPolicies | Read a 'iam.LocalUserPasswordPolicy' resource.
-*IamApi* | [**get_iam_o_auth_token_by_moid**](docs/IamApi.md#get_iam_o_auth_token_by_moid) | **GET** /api/v1/iam/OAuthTokens/{Moid} | Read a 'iam.OAuthToken' resource.
-*IamApi* | [**get_iam_o_auth_token_list**](docs/IamApi.md#get_iam_o_auth_token_list) | **GET** /api/v1/iam/OAuthTokens | Read a 'iam.OAuthToken' resource.
-*IamApi* | [**get_iam_permission_by_moid**](docs/IamApi.md#get_iam_permission_by_moid) | **GET** /api/v1/iam/Permissions/{Moid} | Read a 'iam.Permission' resource.
-*IamApi* | [**get_iam_permission_list**](docs/IamApi.md#get_iam_permission_list) | **GET** /api/v1/iam/Permissions | Read a 'iam.Permission' resource.
-*IamApi* | [**get_iam_private_key_spec_by_moid**](docs/IamApi.md#get_iam_private_key_spec_by_moid) | **GET** /api/v1/iam/PrivateKeySpecs/{Moid} | Read a 'iam.PrivateKeySpec' resource.
-*IamApi* | [**get_iam_private_key_spec_list**](docs/IamApi.md#get_iam_private_key_spec_list) | **GET** /api/v1/iam/PrivateKeySpecs | Read a 'iam.PrivateKeySpec' resource.
-*IamApi* | [**get_iam_privilege_by_moid**](docs/IamApi.md#get_iam_privilege_by_moid) | **GET** /api/v1/iam/Privileges/{Moid} | Read a 'iam.Privilege' resource.
-*IamApi* | [**get_iam_privilege_list**](docs/IamApi.md#get_iam_privilege_list) | **GET** /api/v1/iam/Privileges | Read a 'iam.Privilege' resource.
-*IamApi* | [**get_iam_privilege_set_by_moid**](docs/IamApi.md#get_iam_privilege_set_by_moid) | **GET** /api/v1/iam/PrivilegeSets/{Moid} | Read a 'iam.PrivilegeSet' resource.
-*IamApi* | [**get_iam_privilege_set_list**](docs/IamApi.md#get_iam_privilege_set_list) | **GET** /api/v1/iam/PrivilegeSets | Read a 'iam.PrivilegeSet' resource.
-*IamApi* | [**get_iam_qualifier_by_moid**](docs/IamApi.md#get_iam_qualifier_by_moid) | **GET** /api/v1/iam/Qualifiers/{Moid} | Read a 'iam.Qualifier' resource.
-*IamApi* | [**get_iam_qualifier_list**](docs/IamApi.md#get_iam_qualifier_list) | **GET** /api/v1/iam/Qualifiers | Read a 'iam.Qualifier' resource.
-*IamApi* | [**get_iam_resource_limits_by_moid**](docs/IamApi.md#get_iam_resource_limits_by_moid) | **GET** /api/v1/iam/ResourceLimits/{Moid} | Read a 'iam.ResourceLimits' resource.
-*IamApi* | [**get_iam_resource_limits_list**](docs/IamApi.md#get_iam_resource_limits_list) | **GET** /api/v1/iam/ResourceLimits | Read a 'iam.ResourceLimits' resource.
-*IamApi* | [**get_iam_resource_permission_by_moid**](docs/IamApi.md#get_iam_resource_permission_by_moid) | **GET** /api/v1/iam/ResourcePermissions/{Moid} | Read a 'iam.ResourcePermission' resource.
-*IamApi* | [**get_iam_resource_permission_list**](docs/IamApi.md#get_iam_resource_permission_list) | **GET** /api/v1/iam/ResourcePermissions | Read a 'iam.ResourcePermission' resource.
-*IamApi* | [**get_iam_resource_roles_by_moid**](docs/IamApi.md#get_iam_resource_roles_by_moid) | **GET** /api/v1/iam/ResourceRoles/{Moid} | Read a 'iam.ResourceRoles' resource.
-*IamApi* | [**get_iam_resource_roles_list**](docs/IamApi.md#get_iam_resource_roles_list) | **GET** /api/v1/iam/ResourceRoles | Read a 'iam.ResourceRoles' resource.
-*IamApi* | [**get_iam_role_by_moid**](docs/IamApi.md#get_iam_role_by_moid) | **GET** /api/v1/iam/Roles/{Moid} | Read a 'iam.Role' resource.
-*IamApi* | [**get_iam_role_list**](docs/IamApi.md#get_iam_role_list) | **GET** /api/v1/iam/Roles | Read a 'iam.Role' resource.
-*IamApi* | [**get_iam_security_holder_by_moid**](docs/IamApi.md#get_iam_security_holder_by_moid) | **GET** /api/v1/iam/SecurityHolders/{Moid} | Read a 'iam.SecurityHolder' resource.
-*IamApi* | [**get_iam_security_holder_list**](docs/IamApi.md#get_iam_security_holder_list) | **GET** /api/v1/iam/SecurityHolders | Read a 'iam.SecurityHolder' resource.
-*IamApi* | [**get_iam_service_provider_by_moid**](docs/IamApi.md#get_iam_service_provider_by_moid) | **GET** /api/v1/iam/ServiceProviders/{Moid} | Read a 'iam.ServiceProvider' resource.
-*IamApi* | [**get_iam_service_provider_list**](docs/IamApi.md#get_iam_service_provider_list) | **GET** /api/v1/iam/ServiceProviders | Read a 'iam.ServiceProvider' resource.
-*IamApi* | [**get_iam_session_by_moid**](docs/IamApi.md#get_iam_session_by_moid) | **GET** /api/v1/iam/Sessions/{Moid} | Read a 'iam.Session' resource.
-*IamApi* | [**get_iam_session_limits_by_moid**](docs/IamApi.md#get_iam_session_limits_by_moid) | **GET** /api/v1/iam/SessionLimits/{Moid} | Read a 'iam.SessionLimits' resource.
-*IamApi* | [**get_iam_session_limits_list**](docs/IamApi.md#get_iam_session_limits_list) | **GET** /api/v1/iam/SessionLimits | Read a 'iam.SessionLimits' resource.
-*IamApi* | [**get_iam_session_list**](docs/IamApi.md#get_iam_session_list) | **GET** /api/v1/iam/Sessions | Read a 'iam.Session' resource.
-*IamApi* | [**get_iam_system_by_moid**](docs/IamApi.md#get_iam_system_by_moid) | **GET** /api/v1/iam/Systems/{Moid} | Read a 'iam.System' resource.
-*IamApi* | [**get_iam_system_list**](docs/IamApi.md#get_iam_system_list) | **GET** /api/v1/iam/Systems | Read a 'iam.System' resource.
-*IamApi* | [**get_iam_trust_point_by_moid**](docs/IamApi.md#get_iam_trust_point_by_moid) | **GET** /api/v1/iam/TrustPoints/{Moid} | Read a 'iam.TrustPoint' resource.
-*IamApi* | [**get_iam_trust_point_list**](docs/IamApi.md#get_iam_trust_point_list) | **GET** /api/v1/iam/TrustPoints | Read a 'iam.TrustPoint' resource.
-*IamApi* | [**get_iam_user_by_moid**](docs/IamApi.md#get_iam_user_by_moid) | **GET** /api/v1/iam/Users/{Moid} | Read a 'iam.User' resource.
-*IamApi* | [**get_iam_user_group_by_moid**](docs/IamApi.md#get_iam_user_group_by_moid) | **GET** /api/v1/iam/UserGroups/{Moid} | Read a 'iam.UserGroup' resource.
-*IamApi* | [**get_iam_user_group_list**](docs/IamApi.md#get_iam_user_group_list) | **GET** /api/v1/iam/UserGroups | Read a 'iam.UserGroup' resource.
-*IamApi* | [**get_iam_user_list**](docs/IamApi.md#get_iam_user_list) | **GET** /api/v1/iam/Users | Read a 'iam.User' resource.
-*IamApi* | [**get_iam_user_preference_by_moid**](docs/IamApi.md#get_iam_user_preference_by_moid) | **GET** /api/v1/iam/UserPreferences/{Moid} | Read a 'iam.UserPreference' resource.
-*IamApi* | [**get_iam_user_preference_list**](docs/IamApi.md#get_iam_user_preference_list) | **GET** /api/v1/iam/UserPreferences | Read a 'iam.UserPreference' resource.
-*IamApi* | [**patch_iam_account**](docs/IamApi.md#patch_iam_account) | **PATCH** /api/v1/iam/Accounts/{Moid} | Update a 'iam.Account' resource.
-*IamApi* | [**patch_iam_account_experience**](docs/IamApi.md#patch_iam_account_experience) | **PATCH** /api/v1/iam/AccountExperiences/{Moid} | Update a 'iam.AccountExperience' resource.
-*IamApi* | [**patch_iam_api_key**](docs/IamApi.md#patch_iam_api_key) | **PATCH** /api/v1/iam/ApiKeys/{Moid} | Update a 'iam.ApiKey' resource.
-*IamApi* | [**patch_iam_app_registration**](docs/IamApi.md#patch_iam_app_registration) | **PATCH** /api/v1/iam/AppRegistrations/{Moid} | Update a 'iam.AppRegistration' resource.
-*IamApi* | [**patch_iam_banner_message**](docs/IamApi.md#patch_iam_banner_message) | **PATCH** /api/v1/iam/BannerMessages/{Moid} | Update a 'iam.BannerMessage' resource.
-*IamApi* | [**patch_iam_certificate**](docs/IamApi.md#patch_iam_certificate) | **PATCH** /api/v1/iam/Certificates/{Moid} | Update a 'iam.Certificate' resource.
-*IamApi* | [**patch_iam_certificate_request**](docs/IamApi.md#patch_iam_certificate_request) | **PATCH** /api/v1/iam/CertificateRequests/{Moid} | Update a 'iam.CertificateRequest' resource.
-*IamApi* | [**patch_iam_end_point_user**](docs/IamApi.md#patch_iam_end_point_user) | **PATCH** /api/v1/iam/EndPointUsers/{Moid} | Update a 'iam.EndPointUser' resource.
-*IamApi* | [**patch_iam_end_point_user_policy**](docs/IamApi.md#patch_iam_end_point_user_policy) | **PATCH** /api/v1/iam/EndPointUserPolicies/{Moid} | Update a 'iam.EndPointUserPolicy' resource.
-*IamApi* | [**patch_iam_end_point_user_role**](docs/IamApi.md#patch_iam_end_point_user_role) | **PATCH** /api/v1/iam/EndPointUserRoles/{Moid} | Update a 'iam.EndPointUserRole' resource.
-*IamApi* | [**patch_iam_idp**](docs/IamApi.md#patch_iam_idp) | **PATCH** /api/v1/iam/Idps/{Moid} | Update a 'iam.Idp' resource.
-*IamApi* | [**patch_iam_idp_reference**](docs/IamApi.md#patch_iam_idp_reference) | **PATCH** /api/v1/iam/IdpReferences/{Moid} | Update a 'iam.IdpReference' resource.
-*IamApi* | [**patch_iam_ip_access_management**](docs/IamApi.md#patch_iam_ip_access_management) | **PATCH** /api/v1/iam/IpAccessManagements/{Moid} | Update a 'iam.IpAccessManagement' resource.
-*IamApi* | [**patch_iam_ip_address**](docs/IamApi.md#patch_iam_ip_address) | **PATCH** /api/v1/iam/IpAddresses/{Moid} | Update a 'iam.IpAddress' resource.
-*IamApi* | [**patch_iam_ldap_group**](docs/IamApi.md#patch_iam_ldap_group) | **PATCH** /api/v1/iam/LdapGroups/{Moid} | Update a 'iam.LdapGroup' resource.
-*IamApi* | [**patch_iam_ldap_policy**](docs/IamApi.md#patch_iam_ldap_policy) | **PATCH** /api/v1/iam/LdapPolicies/{Moid} | Update a 'iam.LdapPolicy' resource.
-*IamApi* | [**patch_iam_ldap_provider**](docs/IamApi.md#patch_iam_ldap_provider) | **PATCH** /api/v1/iam/LdapProviders/{Moid} | Update a 'iam.LdapProvider' resource.
-*IamApi* | [**patch_iam_local_user_password**](docs/IamApi.md#patch_iam_local_user_password) | **PATCH** /api/v1/iam/LocalUserPasswords/{Moid} | Update a 'iam.LocalUserPassword' resource.
-*IamApi* | [**patch_iam_local_user_password_policy**](docs/IamApi.md#patch_iam_local_user_password_policy) | **PATCH** /api/v1/iam/LocalUserPasswordPolicies/{Moid} | Update a 'iam.LocalUserPasswordPolicy' resource.
-*IamApi* | [**patch_iam_permission**](docs/IamApi.md#patch_iam_permission) | **PATCH** /api/v1/iam/Permissions/{Moid} | Update a 'iam.Permission' resource.
-*IamApi* | [**patch_iam_private_key_spec**](docs/IamApi.md#patch_iam_private_key_spec) | **PATCH** /api/v1/iam/PrivateKeySpecs/{Moid} | Update a 'iam.PrivateKeySpec' resource.
-*IamApi* | [**patch_iam_qualifier**](docs/IamApi.md#patch_iam_qualifier) | **PATCH** /api/v1/iam/Qualifiers/{Moid} | Update a 'iam.Qualifier' resource.
-*IamApi* | [**patch_iam_resource_roles**](docs/IamApi.md#patch_iam_resource_roles) | **PATCH** /api/v1/iam/ResourceRoles/{Moid} | Update a 'iam.ResourceRoles' resource.
-*IamApi* | [**patch_iam_session_limits**](docs/IamApi.md#patch_iam_session_limits) | **PATCH** /api/v1/iam/SessionLimits/{Moid} | Update a 'iam.SessionLimits' resource.
-*IamApi* | [**patch_iam_user**](docs/IamApi.md#patch_iam_user) | **PATCH** /api/v1/iam/Users/{Moid} | Update a 'iam.User' resource.
-*IamApi* | [**patch_iam_user_group**](docs/IamApi.md#patch_iam_user_group) | **PATCH** /api/v1/iam/UserGroups/{Moid} | Update a 'iam.UserGroup' resource.
-*IamApi* | [**patch_iam_user_preference**](docs/IamApi.md#patch_iam_user_preference) | **PATCH** /api/v1/iam/UserPreferences/{Moid} | Update a 'iam.UserPreference' resource.
-*IamApi* | [**update_iam_account**](docs/IamApi.md#update_iam_account) | **POST** /api/v1/iam/Accounts/{Moid} | Update a 'iam.Account' resource.
-*IamApi* | [**update_iam_account_experience**](docs/IamApi.md#update_iam_account_experience) | **POST** /api/v1/iam/AccountExperiences/{Moid} | Update a 'iam.AccountExperience' resource.
-*IamApi* | [**update_iam_api_key**](docs/IamApi.md#update_iam_api_key) | **POST** /api/v1/iam/ApiKeys/{Moid} | Update a 'iam.ApiKey' resource.
-*IamApi* | [**update_iam_app_registration**](docs/IamApi.md#update_iam_app_registration) | **POST** /api/v1/iam/AppRegistrations/{Moid} | Update a 'iam.AppRegistration' resource.
-*IamApi* | [**update_iam_banner_message**](docs/IamApi.md#update_iam_banner_message) | **POST** /api/v1/iam/BannerMessages/{Moid} | Update a 'iam.BannerMessage' resource.
-*IamApi* | [**update_iam_certificate**](docs/IamApi.md#update_iam_certificate) | **POST** /api/v1/iam/Certificates/{Moid} | Update a 'iam.Certificate' resource.
-*IamApi* | [**update_iam_certificate_request**](docs/IamApi.md#update_iam_certificate_request) | **POST** /api/v1/iam/CertificateRequests/{Moid} | Update a 'iam.CertificateRequest' resource.
-*IamApi* | [**update_iam_end_point_user**](docs/IamApi.md#update_iam_end_point_user) | **POST** /api/v1/iam/EndPointUsers/{Moid} | Update a 'iam.EndPointUser' resource.
-*IamApi* | [**update_iam_end_point_user_policy**](docs/IamApi.md#update_iam_end_point_user_policy) | **POST** /api/v1/iam/EndPointUserPolicies/{Moid} | Update a 'iam.EndPointUserPolicy' resource.
-*IamApi* | [**update_iam_end_point_user_role**](docs/IamApi.md#update_iam_end_point_user_role) | **POST** /api/v1/iam/EndPointUserRoles/{Moid} | Update a 'iam.EndPointUserRole' resource.
-*IamApi* | [**update_iam_idp**](docs/IamApi.md#update_iam_idp) | **POST** /api/v1/iam/Idps/{Moid} | Update a 'iam.Idp' resource.
-*IamApi* | [**update_iam_idp_reference**](docs/IamApi.md#update_iam_idp_reference) | **POST** /api/v1/iam/IdpReferences/{Moid} | Update a 'iam.IdpReference' resource.
-*IamApi* | [**update_iam_ip_access_management**](docs/IamApi.md#update_iam_ip_access_management) | **POST** /api/v1/iam/IpAccessManagements/{Moid} | Update a 'iam.IpAccessManagement' resource.
-*IamApi* | [**update_iam_ip_address**](docs/IamApi.md#update_iam_ip_address) | **POST** /api/v1/iam/IpAddresses/{Moid} | Update a 'iam.IpAddress' resource.
-*IamApi* | [**update_iam_ldap_group**](docs/IamApi.md#update_iam_ldap_group) | **POST** /api/v1/iam/LdapGroups/{Moid} | Update a 'iam.LdapGroup' resource.
-*IamApi* | [**update_iam_ldap_policy**](docs/IamApi.md#update_iam_ldap_policy) | **POST** /api/v1/iam/LdapPolicies/{Moid} | Update a 'iam.LdapPolicy' resource.
-*IamApi* | [**update_iam_ldap_provider**](docs/IamApi.md#update_iam_ldap_provider) | **POST** /api/v1/iam/LdapProviders/{Moid} | Update a 'iam.LdapProvider' resource.
-*IamApi* | [**update_iam_local_user_password**](docs/IamApi.md#update_iam_local_user_password) | **POST** /api/v1/iam/LocalUserPasswords/{Moid} | Update a 'iam.LocalUserPassword' resource.
-*IamApi* | [**update_iam_local_user_password_policy**](docs/IamApi.md#update_iam_local_user_password_policy) | **POST** /api/v1/iam/LocalUserPasswordPolicies/{Moid} | Update a 'iam.LocalUserPasswordPolicy' resource.
-*IamApi* | [**update_iam_permission**](docs/IamApi.md#update_iam_permission) | **POST** /api/v1/iam/Permissions/{Moid} | Update a 'iam.Permission' resource.
-*IamApi* | [**update_iam_private_key_spec**](docs/IamApi.md#update_iam_private_key_spec) | **POST** /api/v1/iam/PrivateKeySpecs/{Moid} | Update a 'iam.PrivateKeySpec' resource.
-*IamApi* | [**update_iam_qualifier**](docs/IamApi.md#update_iam_qualifier) | **POST** /api/v1/iam/Qualifiers/{Moid} | Update a 'iam.Qualifier' resource.
-*IamApi* | [**update_iam_resource_roles**](docs/IamApi.md#update_iam_resource_roles) | **POST** /api/v1/iam/ResourceRoles/{Moid} | Update a 'iam.ResourceRoles' resource.
-*IamApi* | [**update_iam_session_limits**](docs/IamApi.md#update_iam_session_limits) | **POST** /api/v1/iam/SessionLimits/{Moid} | Update a 'iam.SessionLimits' resource.
-*IamApi* | [**update_iam_user**](docs/IamApi.md#update_iam_user) | **POST** /api/v1/iam/Users/{Moid} | Update a 'iam.User' resource.
-*IamApi* | [**update_iam_user_group**](docs/IamApi.md#update_iam_user_group) | **POST** /api/v1/iam/UserGroups/{Moid} | Update a 'iam.UserGroup' resource.
-*IamApi* | [**update_iam_user_preference**](docs/IamApi.md#update_iam_user_preference) | **POST** /api/v1/iam/UserPreferences/{Moid} | Update a 'iam.UserPreference' resource.
-*InventoryApi* | [**create_inventory_request**](docs/InventoryApi.md#create_inventory_request) | **POST** /api/v1/inventory/Requests | Create a 'inventory.Request' resource.
-*InventoryApi* | [**get_inventory_device_info_by_moid**](docs/InventoryApi.md#get_inventory_device_info_by_moid) | **GET** /api/v1/inventory/DeviceInfos/{Moid} | Read a 'inventory.DeviceInfo' resource.
-*InventoryApi* | [**get_inventory_device_info_list**](docs/InventoryApi.md#get_inventory_device_info_list) | **GET** /api/v1/inventory/DeviceInfos | Read a 'inventory.DeviceInfo' resource.
-*InventoryApi* | [**get_inventory_dn_mo_binding_by_moid**](docs/InventoryApi.md#get_inventory_dn_mo_binding_by_moid) | **GET** /api/v1/inventory/DnMoBindings/{Moid} | Read a 'inventory.DnMoBinding' resource.
-*InventoryApi* | [**get_inventory_dn_mo_binding_list**](docs/InventoryApi.md#get_inventory_dn_mo_binding_list) | **GET** /api/v1/inventory/DnMoBindings | Read a 'inventory.DnMoBinding' resource.
-*InventoryApi* | [**get_inventory_generic_inventory_by_moid**](docs/InventoryApi.md#get_inventory_generic_inventory_by_moid) | **GET** /api/v1/inventory/GenericInventories/{Moid} | Read a 'inventory.GenericInventory' resource.
-*InventoryApi* | [**get_inventory_generic_inventory_holder_by_moid**](docs/InventoryApi.md#get_inventory_generic_inventory_holder_by_moid) | **GET** /api/v1/inventory/GenericInventoryHolders/{Moid} | Read a 'inventory.GenericInventoryHolder' resource.
-*InventoryApi* | [**get_inventory_generic_inventory_holder_list**](docs/InventoryApi.md#get_inventory_generic_inventory_holder_list) | **GET** /api/v1/inventory/GenericInventoryHolders | Read a 'inventory.GenericInventoryHolder' resource.
-*InventoryApi* | [**get_inventory_generic_inventory_list**](docs/InventoryApi.md#get_inventory_generic_inventory_list) | **GET** /api/v1/inventory/GenericInventories | Read a 'inventory.GenericInventory' resource.
-*InventoryApi* | [**patch_inventory_generic_inventory**](docs/InventoryApi.md#patch_inventory_generic_inventory) | **PATCH** /api/v1/inventory/GenericInventories/{Moid} | Update a 'inventory.GenericInventory' resource.
-*InventoryApi* | [**patch_inventory_generic_inventory_holder**](docs/InventoryApi.md#patch_inventory_generic_inventory_holder) | **PATCH** /api/v1/inventory/GenericInventoryHolders/{Moid} | Update a 'inventory.GenericInventoryHolder' resource.
-*InventoryApi* | [**update_inventory_generic_inventory**](docs/InventoryApi.md#update_inventory_generic_inventory) | **POST** /api/v1/inventory/GenericInventories/{Moid} | Update a 'inventory.GenericInventory' resource.
-*InventoryApi* | [**update_inventory_generic_inventory_holder**](docs/InventoryApi.md#update_inventory_generic_inventory_holder) | **POST** /api/v1/inventory/GenericInventoryHolders/{Moid} | Update a 'inventory.GenericInventoryHolder' resource.
-*IpmioverlanApi* | [**create_ipmioverlan_policy**](docs/IpmioverlanApi.md#create_ipmioverlan_policy) | **POST** /api/v1/ipmioverlan/Policies | Create a 'ipmioverlan.Policy' resource.
-*IpmioverlanApi* | [**delete_ipmioverlan_policy**](docs/IpmioverlanApi.md#delete_ipmioverlan_policy) | **DELETE** /api/v1/ipmioverlan/Policies/{Moid} | Delete a 'ipmioverlan.Policy' resource.
-*IpmioverlanApi* | [**get_ipmioverlan_policy_by_moid**](docs/IpmioverlanApi.md#get_ipmioverlan_policy_by_moid) | **GET** /api/v1/ipmioverlan/Policies/{Moid} | Read a 'ipmioverlan.Policy' resource.
-*IpmioverlanApi* | [**get_ipmioverlan_policy_list**](docs/IpmioverlanApi.md#get_ipmioverlan_policy_list) | **GET** /api/v1/ipmioverlan/Policies | Read a 'ipmioverlan.Policy' resource.
-*IpmioverlanApi* | [**patch_ipmioverlan_policy**](docs/IpmioverlanApi.md#patch_ipmioverlan_policy) | **PATCH** /api/v1/ipmioverlan/Policies/{Moid} | Update a 'ipmioverlan.Policy' resource.
-*IpmioverlanApi* | [**update_ipmioverlan_policy**](docs/IpmioverlanApi.md#update_ipmioverlan_policy) | **POST** /api/v1/ipmioverlan/Policies/{Moid} | Update a 'ipmioverlan.Policy' resource.
-*IppoolApi* | [**create_ippool_pool**](docs/IppoolApi.md#create_ippool_pool) | **POST** /api/v1/ippool/Pools | Create a 'ippool.Pool' resource.
-*IppoolApi* | [**delete_ippool_ip_lease**](docs/IppoolApi.md#delete_ippool_ip_lease) | **DELETE** /api/v1/ippool/IpLeases/{Moid} | Delete a 'ippool.IpLease' resource.
-*IppoolApi* | [**delete_ippool_pool**](docs/IppoolApi.md#delete_ippool_pool) | **DELETE** /api/v1/ippool/Pools/{Moid} | Delete a 'ippool.Pool' resource.
-*IppoolApi* | [**get_ippool_block_lease_by_moid**](docs/IppoolApi.md#get_ippool_block_lease_by_moid) | **GET** /api/v1/ippool/BlockLeases/{Moid} | Read a 'ippool.BlockLease' resource.
-*IppoolApi* | [**get_ippool_block_lease_list**](docs/IppoolApi.md#get_ippool_block_lease_list) | **GET** /api/v1/ippool/BlockLeases | Read a 'ippool.BlockLease' resource.
-*IppoolApi* | [**get_ippool_ip_lease_by_moid**](docs/IppoolApi.md#get_ippool_ip_lease_by_moid) | **GET** /api/v1/ippool/IpLeases/{Moid} | Read a 'ippool.IpLease' resource.
-*IppoolApi* | [**get_ippool_ip_lease_list**](docs/IppoolApi.md#get_ippool_ip_lease_list) | **GET** /api/v1/ippool/IpLeases | Read a 'ippool.IpLease' resource.
-*IppoolApi* | [**get_ippool_pool_by_moid**](docs/IppoolApi.md#get_ippool_pool_by_moid) | **GET** /api/v1/ippool/Pools/{Moid} | Read a 'ippool.Pool' resource.
-*IppoolApi* | [**get_ippool_pool_list**](docs/IppoolApi.md#get_ippool_pool_list) | **GET** /api/v1/ippool/Pools | Read a 'ippool.Pool' resource.
-*IppoolApi* | [**get_ippool_pool_member_by_moid**](docs/IppoolApi.md#get_ippool_pool_member_by_moid) | **GET** /api/v1/ippool/PoolMembers/{Moid} | Read a 'ippool.PoolMember' resource.
-*IppoolApi* | [**get_ippool_pool_member_list**](docs/IppoolApi.md#get_ippool_pool_member_list) | **GET** /api/v1/ippool/PoolMembers | Read a 'ippool.PoolMember' resource.
-*IppoolApi* | [**get_ippool_shadow_block_by_moid**](docs/IppoolApi.md#get_ippool_shadow_block_by_moid) | **GET** /api/v1/ippool/ShadowBlocks/{Moid} | Read a 'ippool.ShadowBlock' resource.
-*IppoolApi* | [**get_ippool_shadow_block_list**](docs/IppoolApi.md#get_ippool_shadow_block_list) | **GET** /api/v1/ippool/ShadowBlocks | Read a 'ippool.ShadowBlock' resource.
-*IppoolApi* | [**get_ippool_shadow_pool_by_moid**](docs/IppoolApi.md#get_ippool_shadow_pool_by_moid) | **GET** /api/v1/ippool/ShadowPools/{Moid} | Read a 'ippool.ShadowPool' resource.
-*IppoolApi* | [**get_ippool_shadow_pool_list**](docs/IppoolApi.md#get_ippool_shadow_pool_list) | **GET** /api/v1/ippool/ShadowPools | Read a 'ippool.ShadowPool' resource.
-*IppoolApi* | [**get_ippool_universe_by_moid**](docs/IppoolApi.md#get_ippool_universe_by_moid) | **GET** /api/v1/ippool/Universes/{Moid} | Read a 'ippool.Universe' resource.
-*IppoolApi* | [**get_ippool_universe_list**](docs/IppoolApi.md#get_ippool_universe_list) | **GET** /api/v1/ippool/Universes | Read a 'ippool.Universe' resource.
-*IppoolApi* | [**patch_ippool_pool**](docs/IppoolApi.md#patch_ippool_pool) | **PATCH** /api/v1/ippool/Pools/{Moid} | Update a 'ippool.Pool' resource.
-*IppoolApi* | [**update_ippool_pool**](docs/IppoolApi.md#update_ippool_pool) | **POST** /api/v1/ippool/Pools/{Moid} | Update a 'ippool.Pool' resource.
-*IqnpoolApi* | [**create_iqnpool_pool**](docs/IqnpoolApi.md#create_iqnpool_pool) | **POST** /api/v1/iqnpool/Pools | Create a 'iqnpool.Pool' resource.
-*IqnpoolApi* | [**delete_iqnpool_lease**](docs/IqnpoolApi.md#delete_iqnpool_lease) | **DELETE** /api/v1/iqnpool/Leases/{Moid} | Delete a 'iqnpool.Lease' resource.
-*IqnpoolApi* | [**delete_iqnpool_pool**](docs/IqnpoolApi.md#delete_iqnpool_pool) | **DELETE** /api/v1/iqnpool/Pools/{Moid} | Delete a 'iqnpool.Pool' resource.
-*IqnpoolApi* | [**get_iqnpool_block_by_moid**](docs/IqnpoolApi.md#get_iqnpool_block_by_moid) | **GET** /api/v1/iqnpool/Blocks/{Moid} | Read a 'iqnpool.Block' resource.
-*IqnpoolApi* | [**get_iqnpool_block_list**](docs/IqnpoolApi.md#get_iqnpool_block_list) | **GET** /api/v1/iqnpool/Blocks | Read a 'iqnpool.Block' resource.
-*IqnpoolApi* | [**get_iqnpool_lease_by_moid**](docs/IqnpoolApi.md#get_iqnpool_lease_by_moid) | **GET** /api/v1/iqnpool/Leases/{Moid} | Read a 'iqnpool.Lease' resource.
-*IqnpoolApi* | [**get_iqnpool_lease_list**](docs/IqnpoolApi.md#get_iqnpool_lease_list) | **GET** /api/v1/iqnpool/Leases | Read a 'iqnpool.Lease' resource.
-*IqnpoolApi* | [**get_iqnpool_pool_by_moid**](docs/IqnpoolApi.md#get_iqnpool_pool_by_moid) | **GET** /api/v1/iqnpool/Pools/{Moid} | Read a 'iqnpool.Pool' resource.
-*IqnpoolApi* | [**get_iqnpool_pool_list**](docs/IqnpoolApi.md#get_iqnpool_pool_list) | **GET** /api/v1/iqnpool/Pools | Read a 'iqnpool.Pool' resource.
-*IqnpoolApi* | [**get_iqnpool_pool_member_by_moid**](docs/IqnpoolApi.md#get_iqnpool_pool_member_by_moid) | **GET** /api/v1/iqnpool/PoolMembers/{Moid} | Read a 'iqnpool.PoolMember' resource.
-*IqnpoolApi* | [**get_iqnpool_pool_member_list**](docs/IqnpoolApi.md#get_iqnpool_pool_member_list) | **GET** /api/v1/iqnpool/PoolMembers | Read a 'iqnpool.PoolMember' resource.
-*IqnpoolApi* | [**get_iqnpool_universe_by_moid**](docs/IqnpoolApi.md#get_iqnpool_universe_by_moid) | **GET** /api/v1/iqnpool/Universes/{Moid} | Read a 'iqnpool.Universe' resource.
-*IqnpoolApi* | [**get_iqnpool_universe_list**](docs/IqnpoolApi.md#get_iqnpool_universe_list) | **GET** /api/v1/iqnpool/Universes | Read a 'iqnpool.Universe' resource.
-*IqnpoolApi* | [**patch_iqnpool_pool**](docs/IqnpoolApi.md#patch_iqnpool_pool) | **PATCH** /api/v1/iqnpool/Pools/{Moid} | Update a 'iqnpool.Pool' resource.
-*IqnpoolApi* | [**update_iqnpool_pool**](docs/IqnpoolApi.md#update_iqnpool_pool) | **POST** /api/v1/iqnpool/Pools/{Moid} | Update a 'iqnpool.Pool' resource.
-*IwotenantApi* | [**get_iwotenant_tenant_status_by_moid**](docs/IwotenantApi.md#get_iwotenant_tenant_status_by_moid) | **GET** /api/v1/iwotenant/TenantStatuses/{Moid} | Read a 'iwotenant.TenantStatus' resource.
-*IwotenantApi* | [**get_iwotenant_tenant_status_list**](docs/IwotenantApi.md#get_iwotenant_tenant_status_list) | **GET** /api/v1/iwotenant/TenantStatuses | Read a 'iwotenant.TenantStatus' resource.
-*KubernetesApi* | [**create_kubernetes_aci_cni_apic**](docs/KubernetesApi.md#create_kubernetes_aci_cni_apic) | **POST** /api/v1/kubernetes/AciCniApics | Create a 'kubernetes.AciCniApic' resource.
-*KubernetesApi* | [**create_kubernetes_aci_cni_profile**](docs/KubernetesApi.md#create_kubernetes_aci_cni_profile) | **POST** /api/v1/kubernetes/AciCniProfiles | Create a 'kubernetes.AciCniProfile' resource.
-*KubernetesApi* | [**create_kubernetes_aci_cni_tenant_cluster_allocation**](docs/KubernetesApi.md#create_kubernetes_aci_cni_tenant_cluster_allocation) | **POST** /api/v1/kubernetes/AciCniTenantClusterAllocations | Create a 'kubernetes.AciCniTenantClusterAllocation' resource.
-*KubernetesApi* | [**create_kubernetes_addon_definition**](docs/KubernetesApi.md#create_kubernetes_addon_definition) | **POST** /api/v1/kubernetes/AddonDefinitions | Create a 'kubernetes.AddonDefinition' resource.
-*KubernetesApi* | [**create_kubernetes_addon_policy**](docs/KubernetesApi.md#create_kubernetes_addon_policy) | **POST** /api/v1/kubernetes/AddonPolicies | Create a 'kubernetes.AddonPolicy' resource.
-*KubernetesApi* | [**create_kubernetes_addon_repository**](docs/KubernetesApi.md#create_kubernetes_addon_repository) | **POST** /api/v1/kubernetes/AddonRepositories | Create a 'kubernetes.AddonRepository' resource.
-*KubernetesApi* | [**create_kubernetes_cluster**](docs/KubernetesApi.md#create_kubernetes_cluster) | **POST** /api/v1/kubernetes/Clusters | Create a 'kubernetes.Cluster' resource.
-*KubernetesApi* | [**create_kubernetes_cluster_addon_profile**](docs/KubernetesApi.md#create_kubernetes_cluster_addon_profile) | **POST** /api/v1/kubernetes/ClusterAddonProfiles | Create a 'kubernetes.ClusterAddonProfile' resource.
-*KubernetesApi* | [**create_kubernetes_cluster_profile**](docs/KubernetesApi.md#create_kubernetes_cluster_profile) | **POST** /api/v1/kubernetes/ClusterProfiles | Create a 'kubernetes.ClusterProfile' resource.
-*KubernetesApi* | [**create_kubernetes_container_runtime_policy**](docs/KubernetesApi.md#create_kubernetes_container_runtime_policy) | **POST** /api/v1/kubernetes/ContainerRuntimePolicies | Create a 'kubernetes.ContainerRuntimePolicy' resource.
-*KubernetesApi* | [**create_kubernetes_network_policy**](docs/KubernetesApi.md#create_kubernetes_network_policy) | **POST** /api/v1/kubernetes/NetworkPolicies | Create a 'kubernetes.NetworkPolicy' resource.
-*KubernetesApi* | [**create_kubernetes_node_group_profile**](docs/KubernetesApi.md#create_kubernetes_node_group_profile) | **POST** /api/v1/kubernetes/NodeGroupProfiles | Create a 'kubernetes.NodeGroupProfile' resource.
-*KubernetesApi* | [**create_kubernetes_sys_config_policy**](docs/KubernetesApi.md#create_kubernetes_sys_config_policy) | **POST** /api/v1/kubernetes/SysConfigPolicies | Create a 'kubernetes.SysConfigPolicy' resource.
-*KubernetesApi* | [**create_kubernetes_trusted_registries_policy**](docs/KubernetesApi.md#create_kubernetes_trusted_registries_policy) | **POST** /api/v1/kubernetes/TrustedRegistriesPolicies | Create a 'kubernetes.TrustedRegistriesPolicy' resource.
-*KubernetesApi* | [**create_kubernetes_version**](docs/KubernetesApi.md#create_kubernetes_version) | **POST** /api/v1/kubernetes/Versions | Create a 'kubernetes.Version' resource.
-*KubernetesApi* | [**create_kubernetes_version_policy**](docs/KubernetesApi.md#create_kubernetes_version_policy) | **POST** /api/v1/kubernetes/VersionPolicies | Create a 'kubernetes.VersionPolicy' resource.
-*KubernetesApi* | [**create_kubernetes_virtual_machine_infra_config_policy**](docs/KubernetesApi.md#create_kubernetes_virtual_machine_infra_config_policy) | **POST** /api/v1/kubernetes/VirtualMachineInfraConfigPolicies | Create a 'kubernetes.VirtualMachineInfraConfigPolicy' resource.
-*KubernetesApi* | [**create_kubernetes_virtual_machine_infrastructure_provider**](docs/KubernetesApi.md#create_kubernetes_virtual_machine_infrastructure_provider) | **POST** /api/v1/kubernetes/VirtualMachineInfrastructureProviders | Create a 'kubernetes.VirtualMachineInfrastructureProvider' resource.
-*KubernetesApi* | [**create_kubernetes_virtual_machine_instance_type**](docs/KubernetesApi.md#create_kubernetes_virtual_machine_instance_type) | **POST** /api/v1/kubernetes/VirtualMachineInstanceTypes | Create a 'kubernetes.VirtualMachineInstanceType' resource.
-*KubernetesApi* | [**create_kubernetes_virtual_machine_node_profile**](docs/KubernetesApi.md#create_kubernetes_virtual_machine_node_profile) | **POST** /api/v1/kubernetes/VirtualMachineNodeProfiles | Create a 'kubernetes.VirtualMachineNodeProfile' resource.
-*KubernetesApi* | [**delete_kubernetes_aci_cni_apic**](docs/KubernetesApi.md#delete_kubernetes_aci_cni_apic) | **DELETE** /api/v1/kubernetes/AciCniApics/{Moid} | Delete a 'kubernetes.AciCniApic' resource.
-*KubernetesApi* | [**delete_kubernetes_aci_cni_profile**](docs/KubernetesApi.md#delete_kubernetes_aci_cni_profile) | **DELETE** /api/v1/kubernetes/AciCniProfiles/{Moid} | Delete a 'kubernetes.AciCniProfile' resource.
-*KubernetesApi* | [**delete_kubernetes_aci_cni_tenant_cluster_allocation**](docs/KubernetesApi.md#delete_kubernetes_aci_cni_tenant_cluster_allocation) | **DELETE** /api/v1/kubernetes/AciCniTenantClusterAllocations/{Moid} | Delete a 'kubernetes.AciCniTenantClusterAllocation' resource.
-*KubernetesApi* | [**delete_kubernetes_addon_definition**](docs/KubernetesApi.md#delete_kubernetes_addon_definition) | **DELETE** /api/v1/kubernetes/AddonDefinitions/{Moid} | Delete a 'kubernetes.AddonDefinition' resource.
-*KubernetesApi* | [**delete_kubernetes_addon_policy**](docs/KubernetesApi.md#delete_kubernetes_addon_policy) | **DELETE** /api/v1/kubernetes/AddonPolicies/{Moid} | Delete a 'kubernetes.AddonPolicy' resource.
-*KubernetesApi* | [**delete_kubernetes_addon_repository**](docs/KubernetesApi.md#delete_kubernetes_addon_repository) | **DELETE** /api/v1/kubernetes/AddonRepositories/{Moid} | Delete a 'kubernetes.AddonRepository' resource.
-*KubernetesApi* | [**delete_kubernetes_cluster**](docs/KubernetesApi.md#delete_kubernetes_cluster) | **DELETE** /api/v1/kubernetes/Clusters/{Moid} | Delete a 'kubernetes.Cluster' resource.
-*KubernetesApi* | [**delete_kubernetes_cluster_addon_profile**](docs/KubernetesApi.md#delete_kubernetes_cluster_addon_profile) | **DELETE** /api/v1/kubernetes/ClusterAddonProfiles/{Moid} | Delete a 'kubernetes.ClusterAddonProfile' resource.
-*KubernetesApi* | [**delete_kubernetes_cluster_profile**](docs/KubernetesApi.md#delete_kubernetes_cluster_profile) | **DELETE** /api/v1/kubernetes/ClusterProfiles/{Moid} | Delete a 'kubernetes.ClusterProfile' resource.
-*KubernetesApi* | [**delete_kubernetes_container_runtime_policy**](docs/KubernetesApi.md#delete_kubernetes_container_runtime_policy) | **DELETE** /api/v1/kubernetes/ContainerRuntimePolicies/{Moid} | Delete a 'kubernetes.ContainerRuntimePolicy' resource.
-*KubernetesApi* | [**delete_kubernetes_daemon_set**](docs/KubernetesApi.md#delete_kubernetes_daemon_set) | **DELETE** /api/v1/kubernetes/DaemonSets/{Moid} | Delete a 'kubernetes.DaemonSet' resource.
-*KubernetesApi* | [**delete_kubernetes_deployment**](docs/KubernetesApi.md#delete_kubernetes_deployment) | **DELETE** /api/v1/kubernetes/Deployments/{Moid} | Delete a 'kubernetes.Deployment' resource.
-*KubernetesApi* | [**delete_kubernetes_ingress**](docs/KubernetesApi.md#delete_kubernetes_ingress) | **DELETE** /api/v1/kubernetes/Ingresses/{Moid} | Delete a 'kubernetes.Ingress' resource.
-*KubernetesApi* | [**delete_kubernetes_network_policy**](docs/KubernetesApi.md#delete_kubernetes_network_policy) | **DELETE** /api/v1/kubernetes/NetworkPolicies/{Moid} | Delete a 'kubernetes.NetworkPolicy' resource.
-*KubernetesApi* | [**delete_kubernetes_node**](docs/KubernetesApi.md#delete_kubernetes_node) | **DELETE** /api/v1/kubernetes/Nodes/{Moid} | Delete a 'kubernetes.Node' resource.
-*KubernetesApi* | [**delete_kubernetes_node_group_profile**](docs/KubernetesApi.md#delete_kubernetes_node_group_profile) | **DELETE** /api/v1/kubernetes/NodeGroupProfiles/{Moid} | Delete a 'kubernetes.NodeGroupProfile' resource.
-*KubernetesApi* | [**delete_kubernetes_pod**](docs/KubernetesApi.md#delete_kubernetes_pod) | **DELETE** /api/v1/kubernetes/Pods/{Moid} | Delete a 'kubernetes.Pod' resource.
-*KubernetesApi* | [**delete_kubernetes_service**](docs/KubernetesApi.md#delete_kubernetes_service) | **DELETE** /api/v1/kubernetes/Services/{Moid} | Delete a 'kubernetes.Service' resource.
-*KubernetesApi* | [**delete_kubernetes_stateful_set**](docs/KubernetesApi.md#delete_kubernetes_stateful_set) | **DELETE** /api/v1/kubernetes/StatefulSets/{Moid} | Delete a 'kubernetes.StatefulSet' resource.
-*KubernetesApi* | [**delete_kubernetes_sys_config_policy**](docs/KubernetesApi.md#delete_kubernetes_sys_config_policy) | **DELETE** /api/v1/kubernetes/SysConfigPolicies/{Moid} | Delete a 'kubernetes.SysConfigPolicy' resource.
-*KubernetesApi* | [**delete_kubernetes_trusted_registries_policy**](docs/KubernetesApi.md#delete_kubernetes_trusted_registries_policy) | **DELETE** /api/v1/kubernetes/TrustedRegistriesPolicies/{Moid} | Delete a 'kubernetes.TrustedRegistriesPolicy' resource.
-*KubernetesApi* | [**delete_kubernetes_version**](docs/KubernetesApi.md#delete_kubernetes_version) | **DELETE** /api/v1/kubernetes/Versions/{Moid} | Delete a 'kubernetes.Version' resource.
-*KubernetesApi* | [**delete_kubernetes_version_policy**](docs/KubernetesApi.md#delete_kubernetes_version_policy) | **DELETE** /api/v1/kubernetes/VersionPolicies/{Moid} | Delete a 'kubernetes.VersionPolicy' resource.
-*KubernetesApi* | [**delete_kubernetes_virtual_machine_infra_config_policy**](docs/KubernetesApi.md#delete_kubernetes_virtual_machine_infra_config_policy) | **DELETE** /api/v1/kubernetes/VirtualMachineInfraConfigPolicies/{Moid} | Delete a 'kubernetes.VirtualMachineInfraConfigPolicy' resource.
-*KubernetesApi* | [**delete_kubernetes_virtual_machine_instance_type**](docs/KubernetesApi.md#delete_kubernetes_virtual_machine_instance_type) | **DELETE** /api/v1/kubernetes/VirtualMachineInstanceTypes/{Moid} | Delete a 'kubernetes.VirtualMachineInstanceType' resource.
-*KubernetesApi* | [**delete_kubernetes_virtual_machine_node_profile**](docs/KubernetesApi.md#delete_kubernetes_virtual_machine_node_profile) | **DELETE** /api/v1/kubernetes/VirtualMachineNodeProfiles/{Moid} | Delete a 'kubernetes.VirtualMachineNodeProfile' resource.
-*KubernetesApi* | [**get_kubernetes_aci_cni_apic_by_moid**](docs/KubernetesApi.md#get_kubernetes_aci_cni_apic_by_moid) | **GET** /api/v1/kubernetes/AciCniApics/{Moid} | Read a 'kubernetes.AciCniApic' resource.
-*KubernetesApi* | [**get_kubernetes_aci_cni_apic_list**](docs/KubernetesApi.md#get_kubernetes_aci_cni_apic_list) | **GET** /api/v1/kubernetes/AciCniApics | Read a 'kubernetes.AciCniApic' resource.
-*KubernetesApi* | [**get_kubernetes_aci_cni_profile_by_moid**](docs/KubernetesApi.md#get_kubernetes_aci_cni_profile_by_moid) | **GET** /api/v1/kubernetes/AciCniProfiles/{Moid} | Read a 'kubernetes.AciCniProfile' resource.
-*KubernetesApi* | [**get_kubernetes_aci_cni_profile_list**](docs/KubernetesApi.md#get_kubernetes_aci_cni_profile_list) | **GET** /api/v1/kubernetes/AciCniProfiles | Read a 'kubernetes.AciCniProfile' resource.
-*KubernetesApi* | [**get_kubernetes_aci_cni_tenant_cluster_allocation_by_moid**](docs/KubernetesApi.md#get_kubernetes_aci_cni_tenant_cluster_allocation_by_moid) | **GET** /api/v1/kubernetes/AciCniTenantClusterAllocations/{Moid} | Read a 'kubernetes.AciCniTenantClusterAllocation' resource.
-*KubernetesApi* | [**get_kubernetes_aci_cni_tenant_cluster_allocation_list**](docs/KubernetesApi.md#get_kubernetes_aci_cni_tenant_cluster_allocation_list) | **GET** /api/v1/kubernetes/AciCniTenantClusterAllocations | Read a 'kubernetes.AciCniTenantClusterAllocation' resource.
-*KubernetesApi* | [**get_kubernetes_addon_definition_by_moid**](docs/KubernetesApi.md#get_kubernetes_addon_definition_by_moid) | **GET** /api/v1/kubernetes/AddonDefinitions/{Moid} | Read a 'kubernetes.AddonDefinition' resource.
-*KubernetesApi* | [**get_kubernetes_addon_definition_list**](docs/KubernetesApi.md#get_kubernetes_addon_definition_list) | **GET** /api/v1/kubernetes/AddonDefinitions | Read a 'kubernetes.AddonDefinition' resource.
-*KubernetesApi* | [**get_kubernetes_addon_policy_by_moid**](docs/KubernetesApi.md#get_kubernetes_addon_policy_by_moid) | **GET** /api/v1/kubernetes/AddonPolicies/{Moid} | Read a 'kubernetes.AddonPolicy' resource.
-*KubernetesApi* | [**get_kubernetes_addon_policy_list**](docs/KubernetesApi.md#get_kubernetes_addon_policy_list) | **GET** /api/v1/kubernetes/AddonPolicies | Read a 'kubernetes.AddonPolicy' resource.
-*KubernetesApi* | [**get_kubernetes_addon_repository_by_moid**](docs/KubernetesApi.md#get_kubernetes_addon_repository_by_moid) | **GET** /api/v1/kubernetes/AddonRepositories/{Moid} | Read a 'kubernetes.AddonRepository' resource.
-*KubernetesApi* | [**get_kubernetes_addon_repository_list**](docs/KubernetesApi.md#get_kubernetes_addon_repository_list) | **GET** /api/v1/kubernetes/AddonRepositories | Read a 'kubernetes.AddonRepository' resource.
-*KubernetesApi* | [**get_kubernetes_catalog_by_moid**](docs/KubernetesApi.md#get_kubernetes_catalog_by_moid) | **GET** /api/v1/kubernetes/Catalogs/{Moid} | Read a 'kubernetes.Catalog' resource.
-*KubernetesApi* | [**get_kubernetes_catalog_list**](docs/KubernetesApi.md#get_kubernetes_catalog_list) | **GET** /api/v1/kubernetes/Catalogs | Read a 'kubernetes.Catalog' resource.
-*KubernetesApi* | [**get_kubernetes_cluster_addon_profile_by_moid**](docs/KubernetesApi.md#get_kubernetes_cluster_addon_profile_by_moid) | **GET** /api/v1/kubernetes/ClusterAddonProfiles/{Moid} | Read a 'kubernetes.ClusterAddonProfile' resource.
-*KubernetesApi* | [**get_kubernetes_cluster_addon_profile_list**](docs/KubernetesApi.md#get_kubernetes_cluster_addon_profile_list) | **GET** /api/v1/kubernetes/ClusterAddonProfiles | Read a 'kubernetes.ClusterAddonProfile' resource.
-*KubernetesApi* | [**get_kubernetes_cluster_by_moid**](docs/KubernetesApi.md#get_kubernetes_cluster_by_moid) | **GET** /api/v1/kubernetes/Clusters/{Moid} | Read a 'kubernetes.Cluster' resource.
-*KubernetesApi* | [**get_kubernetes_cluster_list**](docs/KubernetesApi.md#get_kubernetes_cluster_list) | **GET** /api/v1/kubernetes/Clusters | Read a 'kubernetes.Cluster' resource.
-*KubernetesApi* | [**get_kubernetes_cluster_profile_by_moid**](docs/KubernetesApi.md#get_kubernetes_cluster_profile_by_moid) | **GET** /api/v1/kubernetes/ClusterProfiles/{Moid} | Read a 'kubernetes.ClusterProfile' resource.
-*KubernetesApi* | [**get_kubernetes_cluster_profile_list**](docs/KubernetesApi.md#get_kubernetes_cluster_profile_list) | **GET** /api/v1/kubernetes/ClusterProfiles | Read a 'kubernetes.ClusterProfile' resource.
-*KubernetesApi* | [**get_kubernetes_config_result_by_moid**](docs/KubernetesApi.md#get_kubernetes_config_result_by_moid) | **GET** /api/v1/kubernetes/ConfigResults/{Moid} | Read a 'kubernetes.ConfigResult' resource.
-*KubernetesApi* | [**get_kubernetes_config_result_entry_by_moid**](docs/KubernetesApi.md#get_kubernetes_config_result_entry_by_moid) | **GET** /api/v1/kubernetes/ConfigResultEntries/{Moid} | Read a 'kubernetes.ConfigResultEntry' resource.
-*KubernetesApi* | [**get_kubernetes_config_result_entry_list**](docs/KubernetesApi.md#get_kubernetes_config_result_entry_list) | **GET** /api/v1/kubernetes/ConfigResultEntries | Read a 'kubernetes.ConfigResultEntry' resource.
-*KubernetesApi* | [**get_kubernetes_config_result_list**](docs/KubernetesApi.md#get_kubernetes_config_result_list) | **GET** /api/v1/kubernetes/ConfigResults | Read a 'kubernetes.ConfigResult' resource.
-*KubernetesApi* | [**get_kubernetes_container_runtime_policy_by_moid**](docs/KubernetesApi.md#get_kubernetes_container_runtime_policy_by_moid) | **GET** /api/v1/kubernetes/ContainerRuntimePolicies/{Moid} | Read a 'kubernetes.ContainerRuntimePolicy' resource.
-*KubernetesApi* | [**get_kubernetes_container_runtime_policy_list**](docs/KubernetesApi.md#get_kubernetes_container_runtime_policy_list) | **GET** /api/v1/kubernetes/ContainerRuntimePolicies | Read a 'kubernetes.ContainerRuntimePolicy' resource.
-*KubernetesApi* | [**get_kubernetes_daemon_set_by_moid**](docs/KubernetesApi.md#get_kubernetes_daemon_set_by_moid) | **GET** /api/v1/kubernetes/DaemonSets/{Moid} | Read a 'kubernetes.DaemonSet' resource.
-*KubernetesApi* | [**get_kubernetes_daemon_set_list**](docs/KubernetesApi.md#get_kubernetes_daemon_set_list) | **GET** /api/v1/kubernetes/DaemonSets | Read a 'kubernetes.DaemonSet' resource.
-*KubernetesApi* | [**get_kubernetes_deployment_by_moid**](docs/KubernetesApi.md#get_kubernetes_deployment_by_moid) | **GET** /api/v1/kubernetes/Deployments/{Moid} | Read a 'kubernetes.Deployment' resource.
-*KubernetesApi* | [**get_kubernetes_deployment_list**](docs/KubernetesApi.md#get_kubernetes_deployment_list) | **GET** /api/v1/kubernetes/Deployments | Read a 'kubernetes.Deployment' resource.
-*KubernetesApi* | [**get_kubernetes_ingress_by_moid**](docs/KubernetesApi.md#get_kubernetes_ingress_by_moid) | **GET** /api/v1/kubernetes/Ingresses/{Moid} | Read a 'kubernetes.Ingress' resource.
-*KubernetesApi* | [**get_kubernetes_ingress_list**](docs/KubernetesApi.md#get_kubernetes_ingress_list) | **GET** /api/v1/kubernetes/Ingresses | Read a 'kubernetes.Ingress' resource.
-*KubernetesApi* | [**get_kubernetes_network_policy_by_moid**](docs/KubernetesApi.md#get_kubernetes_network_policy_by_moid) | **GET** /api/v1/kubernetes/NetworkPolicies/{Moid} | Read a 'kubernetes.NetworkPolicy' resource.
-*KubernetesApi* | [**get_kubernetes_network_policy_list**](docs/KubernetesApi.md#get_kubernetes_network_policy_list) | **GET** /api/v1/kubernetes/NetworkPolicies | Read a 'kubernetes.NetworkPolicy' resource.
-*KubernetesApi* | [**get_kubernetes_node_by_moid**](docs/KubernetesApi.md#get_kubernetes_node_by_moid) | **GET** /api/v1/kubernetes/Nodes/{Moid} | Read a 'kubernetes.Node' resource.
-*KubernetesApi* | [**get_kubernetes_node_group_profile_by_moid**](docs/KubernetesApi.md#get_kubernetes_node_group_profile_by_moid) | **GET** /api/v1/kubernetes/NodeGroupProfiles/{Moid} | Read a 'kubernetes.NodeGroupProfile' resource.
-*KubernetesApi* | [**get_kubernetes_node_group_profile_list**](docs/KubernetesApi.md#get_kubernetes_node_group_profile_list) | **GET** /api/v1/kubernetes/NodeGroupProfiles | Read a 'kubernetes.NodeGroupProfile' resource.
-*KubernetesApi* | [**get_kubernetes_node_list**](docs/KubernetesApi.md#get_kubernetes_node_list) | **GET** /api/v1/kubernetes/Nodes | Read a 'kubernetes.Node' resource.
-*KubernetesApi* | [**get_kubernetes_pod_by_moid**](docs/KubernetesApi.md#get_kubernetes_pod_by_moid) | **GET** /api/v1/kubernetes/Pods/{Moid} | Read a 'kubernetes.Pod' resource.
-*KubernetesApi* | [**get_kubernetes_pod_list**](docs/KubernetesApi.md#get_kubernetes_pod_list) | **GET** /api/v1/kubernetes/Pods | Read a 'kubernetes.Pod' resource.
-*KubernetesApi* | [**get_kubernetes_service_by_moid**](docs/KubernetesApi.md#get_kubernetes_service_by_moid) | **GET** /api/v1/kubernetes/Services/{Moid} | Read a 'kubernetes.Service' resource.
-*KubernetesApi* | [**get_kubernetes_service_list**](docs/KubernetesApi.md#get_kubernetes_service_list) | **GET** /api/v1/kubernetes/Services | Read a 'kubernetes.Service' resource.
-*KubernetesApi* | [**get_kubernetes_stateful_set_by_moid**](docs/KubernetesApi.md#get_kubernetes_stateful_set_by_moid) | **GET** /api/v1/kubernetes/StatefulSets/{Moid} | Read a 'kubernetes.StatefulSet' resource.
-*KubernetesApi* | [**get_kubernetes_stateful_set_list**](docs/KubernetesApi.md#get_kubernetes_stateful_set_list) | **GET** /api/v1/kubernetes/StatefulSets | Read a 'kubernetes.StatefulSet' resource.
-*KubernetesApi* | [**get_kubernetes_sys_config_policy_by_moid**](docs/KubernetesApi.md#get_kubernetes_sys_config_policy_by_moid) | **GET** /api/v1/kubernetes/SysConfigPolicies/{Moid} | Read a 'kubernetes.SysConfigPolicy' resource.
-*KubernetesApi* | [**get_kubernetes_sys_config_policy_list**](docs/KubernetesApi.md#get_kubernetes_sys_config_policy_list) | **GET** /api/v1/kubernetes/SysConfigPolicies | Read a 'kubernetes.SysConfigPolicy' resource.
-*KubernetesApi* | [**get_kubernetes_trusted_registries_policy_by_moid**](docs/KubernetesApi.md#get_kubernetes_trusted_registries_policy_by_moid) | **GET** /api/v1/kubernetes/TrustedRegistriesPolicies/{Moid} | Read a 'kubernetes.TrustedRegistriesPolicy' resource.
-*KubernetesApi* | [**get_kubernetes_trusted_registries_policy_list**](docs/KubernetesApi.md#get_kubernetes_trusted_registries_policy_list) | **GET** /api/v1/kubernetes/TrustedRegistriesPolicies | Read a 'kubernetes.TrustedRegistriesPolicy' resource.
-*KubernetesApi* | [**get_kubernetes_version_by_moid**](docs/KubernetesApi.md#get_kubernetes_version_by_moid) | **GET** /api/v1/kubernetes/Versions/{Moid} | Read a 'kubernetes.Version' resource.
-*KubernetesApi* | [**get_kubernetes_version_list**](docs/KubernetesApi.md#get_kubernetes_version_list) | **GET** /api/v1/kubernetes/Versions | Read a 'kubernetes.Version' resource.
-*KubernetesApi* | [**get_kubernetes_version_policy_by_moid**](docs/KubernetesApi.md#get_kubernetes_version_policy_by_moid) | **GET** /api/v1/kubernetes/VersionPolicies/{Moid} | Read a 'kubernetes.VersionPolicy' resource.
-*KubernetesApi* | [**get_kubernetes_version_policy_list**](docs/KubernetesApi.md#get_kubernetes_version_policy_list) | **GET** /api/v1/kubernetes/VersionPolicies | Read a 'kubernetes.VersionPolicy' resource.
-*KubernetesApi* | [**get_kubernetes_virtual_machine_infra_config_policy_by_moid**](docs/KubernetesApi.md#get_kubernetes_virtual_machine_infra_config_policy_by_moid) | **GET** /api/v1/kubernetes/VirtualMachineInfraConfigPolicies/{Moid} | Read a 'kubernetes.VirtualMachineInfraConfigPolicy' resource.
-*KubernetesApi* | [**get_kubernetes_virtual_machine_infra_config_policy_list**](docs/KubernetesApi.md#get_kubernetes_virtual_machine_infra_config_policy_list) | **GET** /api/v1/kubernetes/VirtualMachineInfraConfigPolicies | Read a 'kubernetes.VirtualMachineInfraConfigPolicy' resource.
-*KubernetesApi* | [**get_kubernetes_virtual_machine_infrastructure_provider_by_moid**](docs/KubernetesApi.md#get_kubernetes_virtual_machine_infrastructure_provider_by_moid) | **GET** /api/v1/kubernetes/VirtualMachineInfrastructureProviders/{Moid} | Read a 'kubernetes.VirtualMachineInfrastructureProvider' resource.
-*KubernetesApi* | [**get_kubernetes_virtual_machine_infrastructure_provider_list**](docs/KubernetesApi.md#get_kubernetes_virtual_machine_infrastructure_provider_list) | **GET** /api/v1/kubernetes/VirtualMachineInfrastructureProviders | Read a 'kubernetes.VirtualMachineInfrastructureProvider' resource.
-*KubernetesApi* | [**get_kubernetes_virtual_machine_instance_type_by_moid**](docs/KubernetesApi.md#get_kubernetes_virtual_machine_instance_type_by_moid) | **GET** /api/v1/kubernetes/VirtualMachineInstanceTypes/{Moid} | Read a 'kubernetes.VirtualMachineInstanceType' resource.
-*KubernetesApi* | [**get_kubernetes_virtual_machine_instance_type_list**](docs/KubernetesApi.md#get_kubernetes_virtual_machine_instance_type_list) | **GET** /api/v1/kubernetes/VirtualMachineInstanceTypes | Read a 'kubernetes.VirtualMachineInstanceType' resource.
-*KubernetesApi* | [**get_kubernetes_virtual_machine_node_profile_by_moid**](docs/KubernetesApi.md#get_kubernetes_virtual_machine_node_profile_by_moid) | **GET** /api/v1/kubernetes/VirtualMachineNodeProfiles/{Moid} | Read a 'kubernetes.VirtualMachineNodeProfile' resource.
-*KubernetesApi* | [**get_kubernetes_virtual_machine_node_profile_list**](docs/KubernetesApi.md#get_kubernetes_virtual_machine_node_profile_list) | **GET** /api/v1/kubernetes/VirtualMachineNodeProfiles | Read a 'kubernetes.VirtualMachineNodeProfile' resource.
-*KubernetesApi* | [**patch_kubernetes_aci_cni_apic**](docs/KubernetesApi.md#patch_kubernetes_aci_cni_apic) | **PATCH** /api/v1/kubernetes/AciCniApics/{Moid} | Update a 'kubernetes.AciCniApic' resource.
-*KubernetesApi* | [**patch_kubernetes_aci_cni_profile**](docs/KubernetesApi.md#patch_kubernetes_aci_cni_profile) | **PATCH** /api/v1/kubernetes/AciCniProfiles/{Moid} | Update a 'kubernetes.AciCniProfile' resource.
-*KubernetesApi* | [**patch_kubernetes_aci_cni_tenant_cluster_allocation**](docs/KubernetesApi.md#patch_kubernetes_aci_cni_tenant_cluster_allocation) | **PATCH** /api/v1/kubernetes/AciCniTenantClusterAllocations/{Moid} | Update a 'kubernetes.AciCniTenantClusterAllocation' resource.
-*KubernetesApi* | [**patch_kubernetes_addon_definition**](docs/KubernetesApi.md#patch_kubernetes_addon_definition) | **PATCH** /api/v1/kubernetes/AddonDefinitions/{Moid} | Update a 'kubernetes.AddonDefinition' resource.
-*KubernetesApi* | [**patch_kubernetes_addon_policy**](docs/KubernetesApi.md#patch_kubernetes_addon_policy) | **PATCH** /api/v1/kubernetes/AddonPolicies/{Moid} | Update a 'kubernetes.AddonPolicy' resource.
-*KubernetesApi* | [**patch_kubernetes_addon_repository**](docs/KubernetesApi.md#patch_kubernetes_addon_repository) | **PATCH** /api/v1/kubernetes/AddonRepositories/{Moid} | Update a 'kubernetes.AddonRepository' resource.
-*KubernetesApi* | [**patch_kubernetes_cluster**](docs/KubernetesApi.md#patch_kubernetes_cluster) | **PATCH** /api/v1/kubernetes/Clusters/{Moid} | Update a 'kubernetes.Cluster' resource.
-*KubernetesApi* | [**patch_kubernetes_cluster_addon_profile**](docs/KubernetesApi.md#patch_kubernetes_cluster_addon_profile) | **PATCH** /api/v1/kubernetes/ClusterAddonProfiles/{Moid} | Update a 'kubernetes.ClusterAddonProfile' resource.
-*KubernetesApi* | [**patch_kubernetes_cluster_profile**](docs/KubernetesApi.md#patch_kubernetes_cluster_profile) | **PATCH** /api/v1/kubernetes/ClusterProfiles/{Moid} | Update a 'kubernetes.ClusterProfile' resource.
-*KubernetesApi* | [**patch_kubernetes_container_runtime_policy**](docs/KubernetesApi.md#patch_kubernetes_container_runtime_policy) | **PATCH** /api/v1/kubernetes/ContainerRuntimePolicies/{Moid} | Update a 'kubernetes.ContainerRuntimePolicy' resource.
-*KubernetesApi* | [**patch_kubernetes_network_policy**](docs/KubernetesApi.md#patch_kubernetes_network_policy) | **PATCH** /api/v1/kubernetes/NetworkPolicies/{Moid} | Update a 'kubernetes.NetworkPolicy' resource.
-*KubernetesApi* | [**patch_kubernetes_node_group_profile**](docs/KubernetesApi.md#patch_kubernetes_node_group_profile) | **PATCH** /api/v1/kubernetes/NodeGroupProfiles/{Moid} | Update a 'kubernetes.NodeGroupProfile' resource.
-*KubernetesApi* | [**patch_kubernetes_sys_config_policy**](docs/KubernetesApi.md#patch_kubernetes_sys_config_policy) | **PATCH** /api/v1/kubernetes/SysConfigPolicies/{Moid} | Update a 'kubernetes.SysConfigPolicy' resource.
-*KubernetesApi* | [**patch_kubernetes_trusted_registries_policy**](docs/KubernetesApi.md#patch_kubernetes_trusted_registries_policy) | **PATCH** /api/v1/kubernetes/TrustedRegistriesPolicies/{Moid} | Update a 'kubernetes.TrustedRegistriesPolicy' resource.
-*KubernetesApi* | [**patch_kubernetes_version**](docs/KubernetesApi.md#patch_kubernetes_version) | **PATCH** /api/v1/kubernetes/Versions/{Moid} | Update a 'kubernetes.Version' resource.
-*KubernetesApi* | [**patch_kubernetes_version_policy**](docs/KubernetesApi.md#patch_kubernetes_version_policy) | **PATCH** /api/v1/kubernetes/VersionPolicies/{Moid} | Update a 'kubernetes.VersionPolicy' resource.
-*KubernetesApi* | [**patch_kubernetes_virtual_machine_infra_config_policy**](docs/KubernetesApi.md#patch_kubernetes_virtual_machine_infra_config_policy) | **PATCH** /api/v1/kubernetes/VirtualMachineInfraConfigPolicies/{Moid} | Update a 'kubernetes.VirtualMachineInfraConfigPolicy' resource.
-*KubernetesApi* | [**patch_kubernetes_virtual_machine_infrastructure_provider**](docs/KubernetesApi.md#patch_kubernetes_virtual_machine_infrastructure_provider) | **PATCH** /api/v1/kubernetes/VirtualMachineInfrastructureProviders/{Moid} | Update a 'kubernetes.VirtualMachineInfrastructureProvider' resource.
-*KubernetesApi* | [**patch_kubernetes_virtual_machine_instance_type**](docs/KubernetesApi.md#patch_kubernetes_virtual_machine_instance_type) | **PATCH** /api/v1/kubernetes/VirtualMachineInstanceTypes/{Moid} | Update a 'kubernetes.VirtualMachineInstanceType' resource.
-*KubernetesApi* | [**patch_kubernetes_virtual_machine_node_profile**](docs/KubernetesApi.md#patch_kubernetes_virtual_machine_node_profile) | **PATCH** /api/v1/kubernetes/VirtualMachineNodeProfiles/{Moid} | Update a 'kubernetes.VirtualMachineNodeProfile' resource.
-*KubernetesApi* | [**update_kubernetes_aci_cni_apic**](docs/KubernetesApi.md#update_kubernetes_aci_cni_apic) | **POST** /api/v1/kubernetes/AciCniApics/{Moid} | Update a 'kubernetes.AciCniApic' resource.
-*KubernetesApi* | [**update_kubernetes_aci_cni_profile**](docs/KubernetesApi.md#update_kubernetes_aci_cni_profile) | **POST** /api/v1/kubernetes/AciCniProfiles/{Moid} | Update a 'kubernetes.AciCniProfile' resource.
-*KubernetesApi* | [**update_kubernetes_aci_cni_tenant_cluster_allocation**](docs/KubernetesApi.md#update_kubernetes_aci_cni_tenant_cluster_allocation) | **POST** /api/v1/kubernetes/AciCniTenantClusterAllocations/{Moid} | Update a 'kubernetes.AciCniTenantClusterAllocation' resource.
-*KubernetesApi* | [**update_kubernetes_addon_definition**](docs/KubernetesApi.md#update_kubernetes_addon_definition) | **POST** /api/v1/kubernetes/AddonDefinitions/{Moid} | Update a 'kubernetes.AddonDefinition' resource.
-*KubernetesApi* | [**update_kubernetes_addon_policy**](docs/KubernetesApi.md#update_kubernetes_addon_policy) | **POST** /api/v1/kubernetes/AddonPolicies/{Moid} | Update a 'kubernetes.AddonPolicy' resource.
-*KubernetesApi* | [**update_kubernetes_addon_repository**](docs/KubernetesApi.md#update_kubernetes_addon_repository) | **POST** /api/v1/kubernetes/AddonRepositories/{Moid} | Update a 'kubernetes.AddonRepository' resource.
-*KubernetesApi* | [**update_kubernetes_cluster**](docs/KubernetesApi.md#update_kubernetes_cluster) | **POST** /api/v1/kubernetes/Clusters/{Moid} | Update a 'kubernetes.Cluster' resource.
-*KubernetesApi* | [**update_kubernetes_cluster_addon_profile**](docs/KubernetesApi.md#update_kubernetes_cluster_addon_profile) | **POST** /api/v1/kubernetes/ClusterAddonProfiles/{Moid} | Update a 'kubernetes.ClusterAddonProfile' resource.
-*KubernetesApi* | [**update_kubernetes_cluster_profile**](docs/KubernetesApi.md#update_kubernetes_cluster_profile) | **POST** /api/v1/kubernetes/ClusterProfiles/{Moid} | Update a 'kubernetes.ClusterProfile' resource.
-*KubernetesApi* | [**update_kubernetes_container_runtime_policy**](docs/KubernetesApi.md#update_kubernetes_container_runtime_policy) | **POST** /api/v1/kubernetes/ContainerRuntimePolicies/{Moid} | Update a 'kubernetes.ContainerRuntimePolicy' resource.
-*KubernetesApi* | [**update_kubernetes_network_policy**](docs/KubernetesApi.md#update_kubernetes_network_policy) | **POST** /api/v1/kubernetes/NetworkPolicies/{Moid} | Update a 'kubernetes.NetworkPolicy' resource.
-*KubernetesApi* | [**update_kubernetes_node_group_profile**](docs/KubernetesApi.md#update_kubernetes_node_group_profile) | **POST** /api/v1/kubernetes/NodeGroupProfiles/{Moid} | Update a 'kubernetes.NodeGroupProfile' resource.
-*KubernetesApi* | [**update_kubernetes_sys_config_policy**](docs/KubernetesApi.md#update_kubernetes_sys_config_policy) | **POST** /api/v1/kubernetes/SysConfigPolicies/{Moid} | Update a 'kubernetes.SysConfigPolicy' resource.
-*KubernetesApi* | [**update_kubernetes_trusted_registries_policy**](docs/KubernetesApi.md#update_kubernetes_trusted_registries_policy) | **POST** /api/v1/kubernetes/TrustedRegistriesPolicies/{Moid} | Update a 'kubernetes.TrustedRegistriesPolicy' resource.
-*KubernetesApi* | [**update_kubernetes_version**](docs/KubernetesApi.md#update_kubernetes_version) | **POST** /api/v1/kubernetes/Versions/{Moid} | Update a 'kubernetes.Version' resource.
-*KubernetesApi* | [**update_kubernetes_version_policy**](docs/KubernetesApi.md#update_kubernetes_version_policy) | **POST** /api/v1/kubernetes/VersionPolicies/{Moid} | Update a 'kubernetes.VersionPolicy' resource.
-*KubernetesApi* | [**update_kubernetes_virtual_machine_infra_config_policy**](docs/KubernetesApi.md#update_kubernetes_virtual_machine_infra_config_policy) | **POST** /api/v1/kubernetes/VirtualMachineInfraConfigPolicies/{Moid} | Update a 'kubernetes.VirtualMachineInfraConfigPolicy' resource.
-*KubernetesApi* | [**update_kubernetes_virtual_machine_infrastructure_provider**](docs/KubernetesApi.md#update_kubernetes_virtual_machine_infrastructure_provider) | **POST** /api/v1/kubernetes/VirtualMachineInfrastructureProviders/{Moid} | Update a 'kubernetes.VirtualMachineInfrastructureProvider' resource.
-*KubernetesApi* | [**update_kubernetes_virtual_machine_instance_type**](docs/KubernetesApi.md#update_kubernetes_virtual_machine_instance_type) | **POST** /api/v1/kubernetes/VirtualMachineInstanceTypes/{Moid} | Update a 'kubernetes.VirtualMachineInstanceType' resource.
-*KubernetesApi* | [**update_kubernetes_virtual_machine_node_profile**](docs/KubernetesApi.md#update_kubernetes_virtual_machine_node_profile) | **POST** /api/v1/kubernetes/VirtualMachineNodeProfiles/{Moid} | Update a 'kubernetes.VirtualMachineNodeProfile' resource.
-*KvmApi* | [**create_kvm_policy**](docs/KvmApi.md#create_kvm_policy) | **POST** /api/v1/kvm/Policies | Create a 'kvm.Policy' resource.
-*KvmApi* | [**create_kvm_session**](docs/KvmApi.md#create_kvm_session) | **POST** /api/v1/kvm/Sessions | Create a 'kvm.Session' resource.
-*KvmApi* | [**create_kvm_tunnel**](docs/KvmApi.md#create_kvm_tunnel) | **POST** /api/v1/kvm/Tunnels | Create a 'kvm.Tunnel' resource.
-*KvmApi* | [**delete_kvm_policy**](docs/KvmApi.md#delete_kvm_policy) | **DELETE** /api/v1/kvm/Policies/{Moid} | Delete a 'kvm.Policy' resource.
-*KvmApi* | [**get_kvm_policy_by_moid**](docs/KvmApi.md#get_kvm_policy_by_moid) | **GET** /api/v1/kvm/Policies/{Moid} | Read a 'kvm.Policy' resource.
-*KvmApi* | [**get_kvm_policy_list**](docs/KvmApi.md#get_kvm_policy_list) | **GET** /api/v1/kvm/Policies | Read a 'kvm.Policy' resource.
-*KvmApi* | [**get_kvm_session_by_moid**](docs/KvmApi.md#get_kvm_session_by_moid) | **GET** /api/v1/kvm/Sessions/{Moid} | Read a 'kvm.Session' resource.
-*KvmApi* | [**get_kvm_session_list**](docs/KvmApi.md#get_kvm_session_list) | **GET** /api/v1/kvm/Sessions | Read a 'kvm.Session' resource.
-*KvmApi* | [**get_kvm_tunnel_by_moid**](docs/KvmApi.md#get_kvm_tunnel_by_moid) | **GET** /api/v1/kvm/Tunnels/{Moid} | Read a 'kvm.Tunnel' resource.
-*KvmApi* | [**get_kvm_tunnel_list**](docs/KvmApi.md#get_kvm_tunnel_list) | **GET** /api/v1/kvm/Tunnels | Read a 'kvm.Tunnel' resource.
-*KvmApi* | [**get_kvm_vm_console_by_moid**](docs/KvmApi.md#get_kvm_vm_console_by_moid) | **GET** /api/v1/kvm/VmConsoles/{Moid} | Read a 'kvm.VmConsole' resource.
-*KvmApi* | [**get_kvm_vm_console_list**](docs/KvmApi.md#get_kvm_vm_console_list) | **GET** /api/v1/kvm/VmConsoles | Read a 'kvm.VmConsole' resource.
-*KvmApi* | [**patch_kvm_policy**](docs/KvmApi.md#patch_kvm_policy) | **PATCH** /api/v1/kvm/Policies/{Moid} | Update a 'kvm.Policy' resource.
-*KvmApi* | [**patch_kvm_session**](docs/KvmApi.md#patch_kvm_session) | **PATCH** /api/v1/kvm/Sessions/{Moid} | Update a 'kvm.Session' resource.
-*KvmApi* | [**update_kvm_policy**](docs/KvmApi.md#update_kvm_policy) | **POST** /api/v1/kvm/Policies/{Moid} | Update a 'kvm.Policy' resource.
-*KvmApi* | [**update_kvm_session**](docs/KvmApi.md#update_kvm_session) | **POST** /api/v1/kvm/Sessions/{Moid} | Update a 'kvm.Session' resource.
-*LicenseApi* | [**create_license_iwo_license_count**](docs/LicenseApi.md#create_license_iwo_license_count) | **POST** /api/v1/license/IwoLicenseCounts | Create a 'license.IwoLicenseCount' resource.
-*LicenseApi* | [**create_license_license_info**](docs/LicenseApi.md#create_license_license_info) | **POST** /api/v1/license/LicenseInfos | Create a 'license.LicenseInfo' resource.
-*LicenseApi* | [**create_license_license_reservation_op**](docs/LicenseApi.md#create_license_license_reservation_op) | **POST** /api/v1/license/LicenseReservationOps | Create a 'license.LicenseReservationOp' resource.
-*LicenseApi* | [**get_license_account_license_data_by_moid**](docs/LicenseApi.md#get_license_account_license_data_by_moid) | **GET** /api/v1/license/AccountLicenseData/{Moid} | Read a 'license.AccountLicenseData' resource.
-*LicenseApi* | [**get_license_account_license_data_list**](docs/LicenseApi.md#get_license_account_license_data_list) | **GET** /api/v1/license/AccountLicenseData | Read a 'license.AccountLicenseData' resource.
-*LicenseApi* | [**get_license_customer_op_by_moid**](docs/LicenseApi.md#get_license_customer_op_by_moid) | **GET** /api/v1/license/CustomerOps/{Moid} | Read a 'license.CustomerOp' resource.
-*LicenseApi* | [**get_license_customer_op_list**](docs/LicenseApi.md#get_license_customer_op_list) | **GET** /api/v1/license/CustomerOps | Read a 'license.CustomerOp' resource.
-*LicenseApi* | [**get_license_iwo_customer_op_by_moid**](docs/LicenseApi.md#get_license_iwo_customer_op_by_moid) | **GET** /api/v1/license/IwoCustomerOps/{Moid} | Read a 'license.IwoCustomerOp' resource.
-*LicenseApi* | [**get_license_iwo_customer_op_list**](docs/LicenseApi.md#get_license_iwo_customer_op_list) | **GET** /api/v1/license/IwoCustomerOps | Read a 'license.IwoCustomerOp' resource.
-*LicenseApi* | [**get_license_iwo_license_count_by_moid**](docs/LicenseApi.md#get_license_iwo_license_count_by_moid) | **GET** /api/v1/license/IwoLicenseCounts/{Moid} | Read a 'license.IwoLicenseCount' resource.
-*LicenseApi* | [**get_license_iwo_license_count_list**](docs/LicenseApi.md#get_license_iwo_license_count_list) | **GET** /api/v1/license/IwoLicenseCounts | Read a 'license.IwoLicenseCount' resource.
-*LicenseApi* | [**get_license_license_info_by_moid**](docs/LicenseApi.md#get_license_license_info_by_moid) | **GET** /api/v1/license/LicenseInfos/{Moid} | Read a 'license.LicenseInfo' resource.
-*LicenseApi* | [**get_license_license_info_list**](docs/LicenseApi.md#get_license_license_info_list) | **GET** /api/v1/license/LicenseInfos | Read a 'license.LicenseInfo' resource.
-*LicenseApi* | [**get_license_license_reservation_op_by_moid**](docs/LicenseApi.md#get_license_license_reservation_op_by_moid) | **GET** /api/v1/license/LicenseReservationOps/{Moid} | Read a 'license.LicenseReservationOp' resource.
-*LicenseApi* | [**get_license_license_reservation_op_list**](docs/LicenseApi.md#get_license_license_reservation_op_list) | **GET** /api/v1/license/LicenseReservationOps | Read a 'license.LicenseReservationOp' resource.
-*LicenseApi* | [**get_license_smartlicense_token_by_moid**](docs/LicenseApi.md#get_license_smartlicense_token_by_moid) | **GET** /api/v1/license/SmartlicenseTokens/{Moid} | Read a 'license.SmartlicenseToken' resource.
-*LicenseApi* | [**get_license_smartlicense_token_list**](docs/LicenseApi.md#get_license_smartlicense_token_list) | **GET** /api/v1/license/SmartlicenseTokens | Read a 'license.SmartlicenseToken' resource.
-*LicenseApi* | [**patch_license_account_license_data**](docs/LicenseApi.md#patch_license_account_license_data) | **PATCH** /api/v1/license/AccountLicenseData/{Moid} | Update a 'license.AccountLicenseData' resource.
-*LicenseApi* | [**patch_license_customer_op**](docs/LicenseApi.md#patch_license_customer_op) | **PATCH** /api/v1/license/CustomerOps/{Moid} | Update a 'license.CustomerOp' resource.
-*LicenseApi* | [**patch_license_iwo_customer_op**](docs/LicenseApi.md#patch_license_iwo_customer_op) | **PATCH** /api/v1/license/IwoCustomerOps/{Moid} | Update a 'license.IwoCustomerOp' resource.
-*LicenseApi* | [**patch_license_iwo_license_count**](docs/LicenseApi.md#patch_license_iwo_license_count) | **PATCH** /api/v1/license/IwoLicenseCounts/{Moid} | Update a 'license.IwoLicenseCount' resource.
-*LicenseApi* | [**patch_license_license_info**](docs/LicenseApi.md#patch_license_license_info) | **PATCH** /api/v1/license/LicenseInfos/{Moid} | Update a 'license.LicenseInfo' resource.
-*LicenseApi* | [**patch_license_license_reservation_op**](docs/LicenseApi.md#patch_license_license_reservation_op) | **PATCH** /api/v1/license/LicenseReservationOps/{Moid} | Update a 'license.LicenseReservationOp' resource.
-*LicenseApi* | [**patch_license_smartlicense_token**](docs/LicenseApi.md#patch_license_smartlicense_token) | **PATCH** /api/v1/license/SmartlicenseTokens/{Moid} | Update a 'license.SmartlicenseToken' resource.
-*LicenseApi* | [**update_license_account_license_data**](docs/LicenseApi.md#update_license_account_license_data) | **POST** /api/v1/license/AccountLicenseData/{Moid} | Update a 'license.AccountLicenseData' resource.
-*LicenseApi* | [**update_license_customer_op**](docs/LicenseApi.md#update_license_customer_op) | **POST** /api/v1/license/CustomerOps/{Moid} | Update a 'license.CustomerOp' resource.
-*LicenseApi* | [**update_license_iwo_customer_op**](docs/LicenseApi.md#update_license_iwo_customer_op) | **POST** /api/v1/license/IwoCustomerOps/{Moid} | Update a 'license.IwoCustomerOp' resource.
-*LicenseApi* | [**update_license_iwo_license_count**](docs/LicenseApi.md#update_license_iwo_license_count) | **POST** /api/v1/license/IwoLicenseCounts/{Moid} | Update a 'license.IwoLicenseCount' resource.
-*LicenseApi* | [**update_license_license_info**](docs/LicenseApi.md#update_license_license_info) | **POST** /api/v1/license/LicenseInfos/{Moid} | Update a 'license.LicenseInfo' resource.
-*LicenseApi* | [**update_license_license_reservation_op**](docs/LicenseApi.md#update_license_license_reservation_op) | **POST** /api/v1/license/LicenseReservationOps/{Moid} | Update a 'license.LicenseReservationOp' resource.
-*LicenseApi* | [**update_license_smartlicense_token**](docs/LicenseApi.md#update_license_smartlicense_token) | **POST** /api/v1/license/SmartlicenseTokens/{Moid} | Update a 'license.SmartlicenseToken' resource.
-*LsApi* | [**get_ls_service_profile_by_moid**](docs/LsApi.md#get_ls_service_profile_by_moid) | **GET** /api/v1/ls/ServiceProfiles/{Moid} | Read a 'ls.ServiceProfile' resource.
-*LsApi* | [**get_ls_service_profile_list**](docs/LsApi.md#get_ls_service_profile_list) | **GET** /api/v1/ls/ServiceProfiles | Read a 'ls.ServiceProfile' resource.
-*LsApi* | [**patch_ls_service_profile**](docs/LsApi.md#patch_ls_service_profile) | **PATCH** /api/v1/ls/ServiceProfiles/{Moid} | Update a 'ls.ServiceProfile' resource.
-*LsApi* | [**update_ls_service_profile**](docs/LsApi.md#update_ls_service_profile) | **POST** /api/v1/ls/ServiceProfiles/{Moid} | Update a 'ls.ServiceProfile' resource.
-*MacpoolApi* | [**create_macpool_pool**](docs/MacpoolApi.md#create_macpool_pool) | **POST** /api/v1/macpool/Pools | Create a 'macpool.Pool' resource.
-*MacpoolApi* | [**delete_macpool_lease**](docs/MacpoolApi.md#delete_macpool_lease) | **DELETE** /api/v1/macpool/Leases/{Moid} | Delete a 'macpool.Lease' resource.
-*MacpoolApi* | [**delete_macpool_pool**](docs/MacpoolApi.md#delete_macpool_pool) | **DELETE** /api/v1/macpool/Pools/{Moid} | Delete a 'macpool.Pool' resource.
-*MacpoolApi* | [**get_macpool_id_block_by_moid**](docs/MacpoolApi.md#get_macpool_id_block_by_moid) | **GET** /api/v1/macpool/IdBlocks/{Moid} | Read a 'macpool.IdBlock' resource.
-*MacpoolApi* | [**get_macpool_id_block_list**](docs/MacpoolApi.md#get_macpool_id_block_list) | **GET** /api/v1/macpool/IdBlocks | Read a 'macpool.IdBlock' resource.
-*MacpoolApi* | [**get_macpool_lease_by_moid**](docs/MacpoolApi.md#get_macpool_lease_by_moid) | **GET** /api/v1/macpool/Leases/{Moid} | Read a 'macpool.Lease' resource.
-*MacpoolApi* | [**get_macpool_lease_list**](docs/MacpoolApi.md#get_macpool_lease_list) | **GET** /api/v1/macpool/Leases | Read a 'macpool.Lease' resource.
-*MacpoolApi* | [**get_macpool_pool_by_moid**](docs/MacpoolApi.md#get_macpool_pool_by_moid) | **GET** /api/v1/macpool/Pools/{Moid} | Read a 'macpool.Pool' resource.
-*MacpoolApi* | [**get_macpool_pool_list**](docs/MacpoolApi.md#get_macpool_pool_list) | **GET** /api/v1/macpool/Pools | Read a 'macpool.Pool' resource.
-*MacpoolApi* | [**get_macpool_pool_member_by_moid**](docs/MacpoolApi.md#get_macpool_pool_member_by_moid) | **GET** /api/v1/macpool/PoolMembers/{Moid} | Read a 'macpool.PoolMember' resource.
-*MacpoolApi* | [**get_macpool_pool_member_list**](docs/MacpoolApi.md#get_macpool_pool_member_list) | **GET** /api/v1/macpool/PoolMembers | Read a 'macpool.PoolMember' resource.
-*MacpoolApi* | [**get_macpool_universe_by_moid**](docs/MacpoolApi.md#get_macpool_universe_by_moid) | **GET** /api/v1/macpool/Universes/{Moid} | Read a 'macpool.Universe' resource.
-*MacpoolApi* | [**get_macpool_universe_list**](docs/MacpoolApi.md#get_macpool_universe_list) | **GET** /api/v1/macpool/Universes | Read a 'macpool.Universe' resource.
-*MacpoolApi* | [**patch_macpool_pool**](docs/MacpoolApi.md#patch_macpool_pool) | **PATCH** /api/v1/macpool/Pools/{Moid} | Update a 'macpool.Pool' resource.
-*MacpoolApi* | [**update_macpool_pool**](docs/MacpoolApi.md#update_macpool_pool) | **POST** /api/v1/macpool/Pools/{Moid} | Update a 'macpool.Pool' resource.
-*ManagementApi* | [**get_management_controller_by_moid**](docs/ManagementApi.md#get_management_controller_by_moid) | **GET** /api/v1/management/Controllers/{Moid} | Read a 'management.Controller' resource.
-*ManagementApi* | [**get_management_controller_list**](docs/ManagementApi.md#get_management_controller_list) | **GET** /api/v1/management/Controllers | Read a 'management.Controller' resource.
-*ManagementApi* | [**get_management_entity_by_moid**](docs/ManagementApi.md#get_management_entity_by_moid) | **GET** /api/v1/management/Entities/{Moid} | Read a 'management.Entity' resource.
-*ManagementApi* | [**get_management_entity_list**](docs/ManagementApi.md#get_management_entity_list) | **GET** /api/v1/management/Entities | Read a 'management.Entity' resource.
-*ManagementApi* | [**get_management_interface_by_moid**](docs/ManagementApi.md#get_management_interface_by_moid) | **GET** /api/v1/management/Interfaces/{Moid} | Read a 'management.Interface' resource.
-*ManagementApi* | [**get_management_interface_list**](docs/ManagementApi.md#get_management_interface_list) | **GET** /api/v1/management/Interfaces | Read a 'management.Interface' resource.
-*ManagementApi* | [**patch_management_controller**](docs/ManagementApi.md#patch_management_controller) | **PATCH** /api/v1/management/Controllers/{Moid} | Update a 'management.Controller' resource.
-*ManagementApi* | [**patch_management_entity**](docs/ManagementApi.md#patch_management_entity) | **PATCH** /api/v1/management/Entities/{Moid} | Update a 'management.Entity' resource.
-*ManagementApi* | [**patch_management_interface**](docs/ManagementApi.md#patch_management_interface) | **PATCH** /api/v1/management/Interfaces/{Moid} | Update a 'management.Interface' resource.
-*ManagementApi* | [**update_management_controller**](docs/ManagementApi.md#update_management_controller) | **POST** /api/v1/management/Controllers/{Moid} | Update a 'management.Controller' resource.
-*ManagementApi* | [**update_management_entity**](docs/ManagementApi.md#update_management_entity) | **POST** /api/v1/management/Entities/{Moid} | Update a 'management.Entity' resource.
-*ManagementApi* | [**update_management_interface**](docs/ManagementApi.md#update_management_interface) | **POST** /api/v1/management/Interfaces/{Moid} | Update a 'management.Interface' resource.
-*MemoryApi* | [**create_memory_persistent_memory_policy**](docs/MemoryApi.md#create_memory_persistent_memory_policy) | **POST** /api/v1/memory/PersistentMemoryPolicies | Create a 'memory.PersistentMemoryPolicy' resource.
-*MemoryApi* | [**delete_memory_persistent_memory_policy**](docs/MemoryApi.md#delete_memory_persistent_memory_policy) | **DELETE** /api/v1/memory/PersistentMemoryPolicies/{Moid} | Delete a 'memory.PersistentMemoryPolicy' resource.
-*MemoryApi* | [**get_memory_array_by_moid**](docs/MemoryApi.md#get_memory_array_by_moid) | **GET** /api/v1/memory/Arrays/{Moid} | Read a 'memory.Array' resource.
-*MemoryApi* | [**get_memory_array_list**](docs/MemoryApi.md#get_memory_array_list) | **GET** /api/v1/memory/Arrays | Read a 'memory.Array' resource.
-*MemoryApi* | [**get_memory_persistent_memory_config_result_by_moid**](docs/MemoryApi.md#get_memory_persistent_memory_config_result_by_moid) | **GET** /api/v1/memory/PersistentMemoryConfigResults/{Moid} | Read a 'memory.PersistentMemoryConfigResult' resource.
-*MemoryApi* | [**get_memory_persistent_memory_config_result_list**](docs/MemoryApi.md#get_memory_persistent_memory_config_result_list) | **GET** /api/v1/memory/PersistentMemoryConfigResults | Read a 'memory.PersistentMemoryConfigResult' resource.
-*MemoryApi* | [**get_memory_persistent_memory_configuration_by_moid**](docs/MemoryApi.md#get_memory_persistent_memory_configuration_by_moid) | **GET** /api/v1/memory/PersistentMemoryConfigurations/{Moid} | Read a 'memory.PersistentMemoryConfiguration' resource.
-*MemoryApi* | [**get_memory_persistent_memory_configuration_list**](docs/MemoryApi.md#get_memory_persistent_memory_configuration_list) | **GET** /api/v1/memory/PersistentMemoryConfigurations | Read a 'memory.PersistentMemoryConfiguration' resource.
-*MemoryApi* | [**get_memory_persistent_memory_namespace_by_moid**](docs/MemoryApi.md#get_memory_persistent_memory_namespace_by_moid) | **GET** /api/v1/memory/PersistentMemoryNamespaces/{Moid} | Read a 'memory.PersistentMemoryNamespace' resource.
-*MemoryApi* | [**get_memory_persistent_memory_namespace_config_result_by_moid**](docs/MemoryApi.md#get_memory_persistent_memory_namespace_config_result_by_moid) | **GET** /api/v1/memory/PersistentMemoryNamespaceConfigResults/{Moid} | Read a 'memory.PersistentMemoryNamespaceConfigResult' resource.
-*MemoryApi* | [**get_memory_persistent_memory_namespace_config_result_list**](docs/MemoryApi.md#get_memory_persistent_memory_namespace_config_result_list) | **GET** /api/v1/memory/PersistentMemoryNamespaceConfigResults | Read a 'memory.PersistentMemoryNamespaceConfigResult' resource.
-*MemoryApi* | [**get_memory_persistent_memory_namespace_list**](docs/MemoryApi.md#get_memory_persistent_memory_namespace_list) | **GET** /api/v1/memory/PersistentMemoryNamespaces | Read a 'memory.PersistentMemoryNamespace' resource.
-*MemoryApi* | [**get_memory_persistent_memory_policy_by_moid**](docs/MemoryApi.md#get_memory_persistent_memory_policy_by_moid) | **GET** /api/v1/memory/PersistentMemoryPolicies/{Moid} | Read a 'memory.PersistentMemoryPolicy' resource.
-*MemoryApi* | [**get_memory_persistent_memory_policy_list**](docs/MemoryApi.md#get_memory_persistent_memory_policy_list) | **GET** /api/v1/memory/PersistentMemoryPolicies | Read a 'memory.PersistentMemoryPolicy' resource.
-*MemoryApi* | [**get_memory_persistent_memory_region_by_moid**](docs/MemoryApi.md#get_memory_persistent_memory_region_by_moid) | **GET** /api/v1/memory/PersistentMemoryRegions/{Moid} | Read a 'memory.PersistentMemoryRegion' resource.
-*MemoryApi* | [**get_memory_persistent_memory_region_list**](docs/MemoryApi.md#get_memory_persistent_memory_region_list) | **GET** /api/v1/memory/PersistentMemoryRegions | Read a 'memory.PersistentMemoryRegion' resource.
-*MemoryApi* | [**get_memory_persistent_memory_unit_by_moid**](docs/MemoryApi.md#get_memory_persistent_memory_unit_by_moid) | **GET** /api/v1/memory/PersistentMemoryUnits/{Moid} | Read a 'memory.PersistentMemoryUnit' resource.
-*MemoryApi* | [**get_memory_persistent_memory_unit_list**](docs/MemoryApi.md#get_memory_persistent_memory_unit_list) | **GET** /api/v1/memory/PersistentMemoryUnits | Read a 'memory.PersistentMemoryUnit' resource.
-*MemoryApi* | [**get_memory_unit_by_moid**](docs/MemoryApi.md#get_memory_unit_by_moid) | **GET** /api/v1/memory/Units/{Moid} | Read a 'memory.Unit' resource.
-*MemoryApi* | [**get_memory_unit_list**](docs/MemoryApi.md#get_memory_unit_list) | **GET** /api/v1/memory/Units | Read a 'memory.Unit' resource.
-*MemoryApi* | [**patch_memory_array**](docs/MemoryApi.md#patch_memory_array) | **PATCH** /api/v1/memory/Arrays/{Moid} | Update a 'memory.Array' resource.
-*MemoryApi* | [**patch_memory_persistent_memory_config_result**](docs/MemoryApi.md#patch_memory_persistent_memory_config_result) | **PATCH** /api/v1/memory/PersistentMemoryConfigResults/{Moid} | Update a 'memory.PersistentMemoryConfigResult' resource.
-*MemoryApi* | [**patch_memory_persistent_memory_configuration**](docs/MemoryApi.md#patch_memory_persistent_memory_configuration) | **PATCH** /api/v1/memory/PersistentMemoryConfigurations/{Moid} | Update a 'memory.PersistentMemoryConfiguration' resource.
-*MemoryApi* | [**patch_memory_persistent_memory_namespace**](docs/MemoryApi.md#patch_memory_persistent_memory_namespace) | **PATCH** /api/v1/memory/PersistentMemoryNamespaces/{Moid} | Update a 'memory.PersistentMemoryNamespace' resource.
-*MemoryApi* | [**patch_memory_persistent_memory_namespace_config_result**](docs/MemoryApi.md#patch_memory_persistent_memory_namespace_config_result) | **PATCH** /api/v1/memory/PersistentMemoryNamespaceConfigResults/{Moid} | Update a 'memory.PersistentMemoryNamespaceConfigResult' resource.
-*MemoryApi* | [**patch_memory_persistent_memory_policy**](docs/MemoryApi.md#patch_memory_persistent_memory_policy) | **PATCH** /api/v1/memory/PersistentMemoryPolicies/{Moid} | Update a 'memory.PersistentMemoryPolicy' resource.
-*MemoryApi* | [**patch_memory_persistent_memory_region**](docs/MemoryApi.md#patch_memory_persistent_memory_region) | **PATCH** /api/v1/memory/PersistentMemoryRegions/{Moid} | Update a 'memory.PersistentMemoryRegion' resource.
-*MemoryApi* | [**patch_memory_persistent_memory_unit**](docs/MemoryApi.md#patch_memory_persistent_memory_unit) | **PATCH** /api/v1/memory/PersistentMemoryUnits/{Moid} | Update a 'memory.PersistentMemoryUnit' resource.
-*MemoryApi* | [**patch_memory_unit**](docs/MemoryApi.md#patch_memory_unit) | **PATCH** /api/v1/memory/Units/{Moid} | Update a 'memory.Unit' resource.
-*MemoryApi* | [**update_memory_array**](docs/MemoryApi.md#update_memory_array) | **POST** /api/v1/memory/Arrays/{Moid} | Update a 'memory.Array' resource.
-*MemoryApi* | [**update_memory_persistent_memory_config_result**](docs/MemoryApi.md#update_memory_persistent_memory_config_result) | **POST** /api/v1/memory/PersistentMemoryConfigResults/{Moid} | Update a 'memory.PersistentMemoryConfigResult' resource.
-*MemoryApi* | [**update_memory_persistent_memory_configuration**](docs/MemoryApi.md#update_memory_persistent_memory_configuration) | **POST** /api/v1/memory/PersistentMemoryConfigurations/{Moid} | Update a 'memory.PersistentMemoryConfiguration' resource.
-*MemoryApi* | [**update_memory_persistent_memory_namespace**](docs/MemoryApi.md#update_memory_persistent_memory_namespace) | **POST** /api/v1/memory/PersistentMemoryNamespaces/{Moid} | Update a 'memory.PersistentMemoryNamespace' resource.
-*MemoryApi* | [**update_memory_persistent_memory_namespace_config_result**](docs/MemoryApi.md#update_memory_persistent_memory_namespace_config_result) | **POST** /api/v1/memory/PersistentMemoryNamespaceConfigResults/{Moid} | Update a 'memory.PersistentMemoryNamespaceConfigResult' resource.
-*MemoryApi* | [**update_memory_persistent_memory_policy**](docs/MemoryApi.md#update_memory_persistent_memory_policy) | **POST** /api/v1/memory/PersistentMemoryPolicies/{Moid} | Update a 'memory.PersistentMemoryPolicy' resource.
-*MemoryApi* | [**update_memory_persistent_memory_region**](docs/MemoryApi.md#update_memory_persistent_memory_region) | **POST** /api/v1/memory/PersistentMemoryRegions/{Moid} | Update a 'memory.PersistentMemoryRegion' resource.
-*MemoryApi* | [**update_memory_persistent_memory_unit**](docs/MemoryApi.md#update_memory_persistent_memory_unit) | **POST** /api/v1/memory/PersistentMemoryUnits/{Moid} | Update a 'memory.PersistentMemoryUnit' resource.
-*MemoryApi* | [**update_memory_unit**](docs/MemoryApi.md#update_memory_unit) | **POST** /api/v1/memory/Units/{Moid} | Update a 'memory.Unit' resource.
-*MetaApi* | [**delete_meta_definition**](docs/MetaApi.md#delete_meta_definition) | **DELETE** /api/v1/meta/Definitions/{Moid} | Delete a 'meta.Definition' resource.
-*MetaApi* | [**get_meta_definition_by_moid**](docs/MetaApi.md#get_meta_definition_by_moid) | **GET** /api/v1/meta/Definitions/{Moid} | Read a 'meta.Definition' resource.
-*MetaApi* | [**get_meta_definition_list**](docs/MetaApi.md#get_meta_definition_list) | **GET** /api/v1/meta/Definitions | Read a 'meta.Definition' resource.
-*NetworkApi* | [**get_network_element_by_moid**](docs/NetworkApi.md#get_network_element_by_moid) | **GET** /api/v1/network/Elements/{Moid} | Read a 'network.Element' resource.
-*NetworkApi* | [**get_network_element_list**](docs/NetworkApi.md#get_network_element_list) | **GET** /api/v1/network/Elements | Read a 'network.Element' resource.
-*NetworkApi* | [**get_network_element_summary_by_moid**](docs/NetworkApi.md#get_network_element_summary_by_moid) | **GET** /api/v1/network/ElementSummaries/{Moid} | Read a 'network.ElementSummary' resource.
-*NetworkApi* | [**get_network_element_summary_list**](docs/NetworkApi.md#get_network_element_summary_list) | **GET** /api/v1/network/ElementSummaries | Read a 'network.ElementSummary' resource.
-*NetworkApi* | [**get_network_fc_zone_info_by_moid**](docs/NetworkApi.md#get_network_fc_zone_info_by_moid) | **GET** /api/v1/network/FcZoneInfos/{Moid} | Read a 'network.FcZoneInfo' resource.
-*NetworkApi* | [**get_network_fc_zone_info_list**](docs/NetworkApi.md#get_network_fc_zone_info_list) | **GET** /api/v1/network/FcZoneInfos | Read a 'network.FcZoneInfo' resource.
-*NetworkApi* | [**get_network_vlan_port_info_by_moid**](docs/NetworkApi.md#get_network_vlan_port_info_by_moid) | **GET** /api/v1/network/VlanPortInfos/{Moid} | Read a 'network.VlanPortInfo' resource.
-*NetworkApi* | [**get_network_vlan_port_info_list**](docs/NetworkApi.md#get_network_vlan_port_info_list) | **GET** /api/v1/network/VlanPortInfos | Read a 'network.VlanPortInfo' resource.
-*NetworkApi* | [**patch_network_element**](docs/NetworkApi.md#patch_network_element) | **PATCH** /api/v1/network/Elements/{Moid} | Update a 'network.Element' resource.
-*NetworkApi* | [**patch_network_fc_zone_info**](docs/NetworkApi.md#patch_network_fc_zone_info) | **PATCH** /api/v1/network/FcZoneInfos/{Moid} | Update a 'network.FcZoneInfo' resource.
-*NetworkApi* | [**patch_network_vlan_port_info**](docs/NetworkApi.md#patch_network_vlan_port_info) | **PATCH** /api/v1/network/VlanPortInfos/{Moid} | Update a 'network.VlanPortInfo' resource.
-*NetworkApi* | [**update_network_element**](docs/NetworkApi.md#update_network_element) | **POST** /api/v1/network/Elements/{Moid} | Update a 'network.Element' resource.
-*NetworkApi* | [**update_network_fc_zone_info**](docs/NetworkApi.md#update_network_fc_zone_info) | **POST** /api/v1/network/FcZoneInfos/{Moid} | Update a 'network.FcZoneInfo' resource.
-*NetworkApi* | [**update_network_vlan_port_info**](docs/NetworkApi.md#update_network_vlan_port_info) | **POST** /api/v1/network/VlanPortInfos/{Moid} | Update a 'network.VlanPortInfo' resource.
-*NetworkconfigApi* | [**create_networkconfig_policy**](docs/NetworkconfigApi.md#create_networkconfig_policy) | **POST** /api/v1/networkconfig/Policies | Create a 'networkconfig.Policy' resource.
-*NetworkconfigApi* | [**delete_networkconfig_policy**](docs/NetworkconfigApi.md#delete_networkconfig_policy) | **DELETE** /api/v1/networkconfig/Policies/{Moid} | Delete a 'networkconfig.Policy' resource.
-*NetworkconfigApi* | [**get_networkconfig_policy_by_moid**](docs/NetworkconfigApi.md#get_networkconfig_policy_by_moid) | **GET** /api/v1/networkconfig/Policies/{Moid} | Read a 'networkconfig.Policy' resource.
-*NetworkconfigApi* | [**get_networkconfig_policy_list**](docs/NetworkconfigApi.md#get_networkconfig_policy_list) | **GET** /api/v1/networkconfig/Policies | Read a 'networkconfig.Policy' resource.
-*NetworkconfigApi* | [**patch_networkconfig_policy**](docs/NetworkconfigApi.md#patch_networkconfig_policy) | **PATCH** /api/v1/networkconfig/Policies/{Moid} | Update a 'networkconfig.Policy' resource.
-*NetworkconfigApi* | [**update_networkconfig_policy**](docs/NetworkconfigApi.md#update_networkconfig_policy) | **POST** /api/v1/networkconfig/Policies/{Moid} | Update a 'networkconfig.Policy' resource.
-*NiaapiApi* | [**get_niaapi_apic_cco_post_by_moid**](docs/NiaapiApi.md#get_niaapi_apic_cco_post_by_moid) | **GET** /api/v1/niaapi/ApicCcoPosts/{Moid} | Read a 'niaapi.ApicCcoPost' resource.
-*NiaapiApi* | [**get_niaapi_apic_cco_post_list**](docs/NiaapiApi.md#get_niaapi_apic_cco_post_list) | **GET** /api/v1/niaapi/ApicCcoPosts | Read a 'niaapi.ApicCcoPost' resource.
-*NiaapiApi* | [**get_niaapi_apic_field_notice_by_moid**](docs/NiaapiApi.md#get_niaapi_apic_field_notice_by_moid) | **GET** /api/v1/niaapi/ApicFieldNotices/{Moid} | Read a 'niaapi.ApicFieldNotice' resource.
-*NiaapiApi* | [**get_niaapi_apic_field_notice_list**](docs/NiaapiApi.md#get_niaapi_apic_field_notice_list) | **GET** /api/v1/niaapi/ApicFieldNotices | Read a 'niaapi.ApicFieldNotice' resource.
-*NiaapiApi* | [**get_niaapi_apic_hweol_by_moid**](docs/NiaapiApi.md#get_niaapi_apic_hweol_by_moid) | **GET** /api/v1/niaapi/ApicHweols/{Moid} | Read a 'niaapi.ApicHweol' resource.
-*NiaapiApi* | [**get_niaapi_apic_hweol_list**](docs/NiaapiApi.md#get_niaapi_apic_hweol_list) | **GET** /api/v1/niaapi/ApicHweols | Read a 'niaapi.ApicHweol' resource.
-*NiaapiApi* | [**get_niaapi_apic_latest_maintained_release_by_moid**](docs/NiaapiApi.md#get_niaapi_apic_latest_maintained_release_by_moid) | **GET** /api/v1/niaapi/ApicLatestMaintainedReleases/{Moid} | Read a 'niaapi.ApicLatestMaintainedRelease' resource.
-*NiaapiApi* | [**get_niaapi_apic_latest_maintained_release_list**](docs/NiaapiApi.md#get_niaapi_apic_latest_maintained_release_list) | **GET** /api/v1/niaapi/ApicLatestMaintainedReleases | Read a 'niaapi.ApicLatestMaintainedRelease' resource.
-*NiaapiApi* | [**get_niaapi_apic_release_recommend_by_moid**](docs/NiaapiApi.md#get_niaapi_apic_release_recommend_by_moid) | **GET** /api/v1/niaapi/ApicReleaseRecommends/{Moid} | Read a 'niaapi.ApicReleaseRecommend' resource.
-*NiaapiApi* | [**get_niaapi_apic_release_recommend_list**](docs/NiaapiApi.md#get_niaapi_apic_release_recommend_list) | **GET** /api/v1/niaapi/ApicReleaseRecommends | Read a 'niaapi.ApicReleaseRecommend' resource.
-*NiaapiApi* | [**get_niaapi_apic_sweol_by_moid**](docs/NiaapiApi.md#get_niaapi_apic_sweol_by_moid) | **GET** /api/v1/niaapi/ApicSweols/{Moid} | Read a 'niaapi.ApicSweol' resource.
-*NiaapiApi* | [**get_niaapi_apic_sweol_list**](docs/NiaapiApi.md#get_niaapi_apic_sweol_list) | **GET** /api/v1/niaapi/ApicSweols | Read a 'niaapi.ApicSweol' resource.
-*NiaapiApi* | [**get_niaapi_dcnm_cco_post_by_moid**](docs/NiaapiApi.md#get_niaapi_dcnm_cco_post_by_moid) | **GET** /api/v1/niaapi/DcnmCcoPosts/{Moid} | Read a 'niaapi.DcnmCcoPost' resource.
-*NiaapiApi* | [**get_niaapi_dcnm_cco_post_list**](docs/NiaapiApi.md#get_niaapi_dcnm_cco_post_list) | **GET** /api/v1/niaapi/DcnmCcoPosts | Read a 'niaapi.DcnmCcoPost' resource.
-*NiaapiApi* | [**get_niaapi_dcnm_field_notice_by_moid**](docs/NiaapiApi.md#get_niaapi_dcnm_field_notice_by_moid) | **GET** /api/v1/niaapi/DcnmFieldNotices/{Moid} | Read a 'niaapi.DcnmFieldNotice' resource.
-*NiaapiApi* | [**get_niaapi_dcnm_field_notice_list**](docs/NiaapiApi.md#get_niaapi_dcnm_field_notice_list) | **GET** /api/v1/niaapi/DcnmFieldNotices | Read a 'niaapi.DcnmFieldNotice' resource.
-*NiaapiApi* | [**get_niaapi_dcnm_hweol_by_moid**](docs/NiaapiApi.md#get_niaapi_dcnm_hweol_by_moid) | **GET** /api/v1/niaapi/DcnmHweols/{Moid} | Read a 'niaapi.DcnmHweol' resource.
-*NiaapiApi* | [**get_niaapi_dcnm_hweol_list**](docs/NiaapiApi.md#get_niaapi_dcnm_hweol_list) | **GET** /api/v1/niaapi/DcnmHweols | Read a 'niaapi.DcnmHweol' resource.
-*NiaapiApi* | [**get_niaapi_dcnm_latest_maintained_release_by_moid**](docs/NiaapiApi.md#get_niaapi_dcnm_latest_maintained_release_by_moid) | **GET** /api/v1/niaapi/DcnmLatestMaintainedReleases/{Moid} | Read a 'niaapi.DcnmLatestMaintainedRelease' resource.
-*NiaapiApi* | [**get_niaapi_dcnm_latest_maintained_release_list**](docs/NiaapiApi.md#get_niaapi_dcnm_latest_maintained_release_list) | **GET** /api/v1/niaapi/DcnmLatestMaintainedReleases | Read a 'niaapi.DcnmLatestMaintainedRelease' resource.
-*NiaapiApi* | [**get_niaapi_dcnm_release_recommend_by_moid**](docs/NiaapiApi.md#get_niaapi_dcnm_release_recommend_by_moid) | **GET** /api/v1/niaapi/DcnmReleaseRecommends/{Moid} | Read a 'niaapi.DcnmReleaseRecommend' resource.
-*NiaapiApi* | [**get_niaapi_dcnm_release_recommend_list**](docs/NiaapiApi.md#get_niaapi_dcnm_release_recommend_list) | **GET** /api/v1/niaapi/DcnmReleaseRecommends | Read a 'niaapi.DcnmReleaseRecommend' resource.
-*NiaapiApi* | [**get_niaapi_dcnm_sweol_by_moid**](docs/NiaapiApi.md#get_niaapi_dcnm_sweol_by_moid) | **GET** /api/v1/niaapi/DcnmSweols/{Moid} | Read a 'niaapi.DcnmSweol' resource.
-*NiaapiApi* | [**get_niaapi_dcnm_sweol_list**](docs/NiaapiApi.md#get_niaapi_dcnm_sweol_list) | **GET** /api/v1/niaapi/DcnmSweols | Read a 'niaapi.DcnmSweol' resource.
-*NiaapiApi* | [**get_niaapi_file_downloader_by_moid**](docs/NiaapiApi.md#get_niaapi_file_downloader_by_moid) | **GET** /api/v1/niaapi/FileDownloaders/{Moid} | Read a 'niaapi.FileDownloader' resource.
-*NiaapiApi* | [**get_niaapi_file_downloader_list**](docs/NiaapiApi.md#get_niaapi_file_downloader_list) | **GET** /api/v1/niaapi/FileDownloaders | Read a 'niaapi.FileDownloader' resource.
-*NiaapiApi* | [**get_niaapi_nia_metadata_by_moid**](docs/NiaapiApi.md#get_niaapi_nia_metadata_by_moid) | **GET** /api/v1/niaapi/NiaMetadata/{Moid} | Read a 'niaapi.NiaMetadata' resource.
-*NiaapiApi* | [**get_niaapi_nia_metadata_list**](docs/NiaapiApi.md#get_niaapi_nia_metadata_list) | **GET** /api/v1/niaapi/NiaMetadata | Read a 'niaapi.NiaMetadata' resource.
-*NiaapiApi* | [**get_niaapi_nib_file_downloader_by_moid**](docs/NiaapiApi.md#get_niaapi_nib_file_downloader_by_moid) | **GET** /api/v1/niaapi/NibFileDownloaders/{Moid} | Read a 'niaapi.NibFileDownloader' resource.
-*NiaapiApi* | [**get_niaapi_nib_file_downloader_list**](docs/NiaapiApi.md#get_niaapi_nib_file_downloader_list) | **GET** /api/v1/niaapi/NibFileDownloaders | Read a 'niaapi.NibFileDownloader' resource.
-*NiaapiApi* | [**get_niaapi_nib_metadata_by_moid**](docs/NiaapiApi.md#get_niaapi_nib_metadata_by_moid) | **GET** /api/v1/niaapi/NibMetadata/{Moid} | Read a 'niaapi.NibMetadata' resource.
-*NiaapiApi* | [**get_niaapi_nib_metadata_list**](docs/NiaapiApi.md#get_niaapi_nib_metadata_list) | **GET** /api/v1/niaapi/NibMetadata | Read a 'niaapi.NibMetadata' resource.
-*NiaapiApi* | [**get_niaapi_version_regex_by_moid**](docs/NiaapiApi.md#get_niaapi_version_regex_by_moid) | **GET** /api/v1/niaapi/VersionRegexes/{Moid} | Read a 'niaapi.VersionRegex' resource.
-*NiaapiApi* | [**get_niaapi_version_regex_list**](docs/NiaapiApi.md#get_niaapi_version_regex_list) | **GET** /api/v1/niaapi/VersionRegexes | Read a 'niaapi.VersionRegex' resource.
-*NiatelemetryApi* | [**get_niatelemetry_aaa_ldap_provider_details_by_moid**](docs/NiatelemetryApi.md#get_niatelemetry_aaa_ldap_provider_details_by_moid) | **GET** /api/v1/niatelemetry/AaaLdapProviderDetails/{Moid} | Read a 'niatelemetry.AaaLdapProviderDetails' resource.
-*NiatelemetryApi* | [**get_niatelemetry_aaa_ldap_provider_details_list**](docs/NiatelemetryApi.md#get_niatelemetry_aaa_ldap_provider_details_list) | **GET** /api/v1/niatelemetry/AaaLdapProviderDetails | Read a 'niatelemetry.AaaLdapProviderDetails' resource.
-*NiatelemetryApi* | [**get_niatelemetry_aaa_radius_provider_details_by_moid**](docs/NiatelemetryApi.md#get_niatelemetry_aaa_radius_provider_details_by_moid) | **GET** /api/v1/niatelemetry/AaaRadiusProviderDetails/{Moid} | Read a 'niatelemetry.AaaRadiusProviderDetails' resource.
-*NiatelemetryApi* | [**get_niatelemetry_aaa_radius_provider_details_list**](docs/NiatelemetryApi.md#get_niatelemetry_aaa_radius_provider_details_list) | **GET** /api/v1/niatelemetry/AaaRadiusProviderDetails | Read a 'niatelemetry.AaaRadiusProviderDetails' resource.
-*NiatelemetryApi* | [**get_niatelemetry_aaa_tacacs_provider_details_by_moid**](docs/NiatelemetryApi.md#get_niatelemetry_aaa_tacacs_provider_details_by_moid) | **GET** /api/v1/niatelemetry/AaaTacacsProviderDetails/{Moid} | Read a 'niatelemetry.AaaTacacsProviderDetails' resource.
-*NiatelemetryApi* | [**get_niatelemetry_aaa_tacacs_provider_details_list**](docs/NiatelemetryApi.md#get_niatelemetry_aaa_tacacs_provider_details_list) | **GET** /api/v1/niatelemetry/AaaTacacsProviderDetails | Read a 'niatelemetry.AaaTacacsProviderDetails' resource.
-*NiatelemetryApi* | [**get_niatelemetry_apic_core_file_details_by_moid**](docs/NiatelemetryApi.md#get_niatelemetry_apic_core_file_details_by_moid) | **GET** /api/v1/niatelemetry/ApicCoreFileDetails/{Moid} | Read a 'niatelemetry.ApicCoreFileDetails' resource.
-*NiatelemetryApi* | [**get_niatelemetry_apic_core_file_details_list**](docs/NiatelemetryApi.md#get_niatelemetry_apic_core_file_details_list) | **GET** /api/v1/niatelemetry/ApicCoreFileDetails | Read a 'niatelemetry.ApicCoreFileDetails' resource.
-*NiatelemetryApi* | [**get_niatelemetry_apic_dbgexp_rs_export_dest_by_moid**](docs/NiatelemetryApi.md#get_niatelemetry_apic_dbgexp_rs_export_dest_by_moid) | **GET** /api/v1/niatelemetry/ApicDbgexpRsExportDests/{Moid} | Read a 'niatelemetry.ApicDbgexpRsExportDest' resource.
-*NiatelemetryApi* | [**get_niatelemetry_apic_dbgexp_rs_export_dest_list**](docs/NiatelemetryApi.md#get_niatelemetry_apic_dbgexp_rs_export_dest_list) | **GET** /api/v1/niatelemetry/ApicDbgexpRsExportDests | Read a 'niatelemetry.ApicDbgexpRsExportDest' resource.
-*NiatelemetryApi* | [**get_niatelemetry_apic_dbgexp_rs_ts_scheduler_by_moid**](docs/NiatelemetryApi.md#get_niatelemetry_apic_dbgexp_rs_ts_scheduler_by_moid) | **GET** /api/v1/niatelemetry/ApicDbgexpRsTsSchedulers/{Moid} | Read a 'niatelemetry.ApicDbgexpRsTsScheduler' resource.
-*NiatelemetryApi* | [**get_niatelemetry_apic_dbgexp_rs_ts_scheduler_list**](docs/NiatelemetryApi.md#get_niatelemetry_apic_dbgexp_rs_ts_scheduler_list) | **GET** /api/v1/niatelemetry/ApicDbgexpRsTsSchedulers | Read a 'niatelemetry.ApicDbgexpRsTsScheduler' resource.
-*NiatelemetryApi* | [**get_niatelemetry_apic_fan_details_by_moid**](docs/NiatelemetryApi.md#get_niatelemetry_apic_fan_details_by_moid) | **GET** /api/v1/niatelemetry/ApicFanDetails/{Moid} | Read a 'niatelemetry.ApicFanDetails' resource.
-*NiatelemetryApi* | [**get_niatelemetry_apic_fan_details_list**](docs/NiatelemetryApi.md#get_niatelemetry_apic_fan_details_list) | **GET** /api/v1/niatelemetry/ApicFanDetails | Read a 'niatelemetry.ApicFanDetails' resource.
-*NiatelemetryApi* | [**get_niatelemetry_apic_fex_details_by_moid**](docs/NiatelemetryApi.md#get_niatelemetry_apic_fex_details_by_moid) | **GET** /api/v1/niatelemetry/ApicFexDetails/{Moid} | Read a 'niatelemetry.ApicFexDetails' resource.
-*NiatelemetryApi* | [**get_niatelemetry_apic_fex_details_list**](docs/NiatelemetryApi.md#get_niatelemetry_apic_fex_details_list) | **GET** /api/v1/niatelemetry/ApicFexDetails | Read a 'niatelemetry.ApicFexDetails' resource.
-*NiatelemetryApi* | [**get_niatelemetry_apic_flash_details_by_moid**](docs/NiatelemetryApi.md#get_niatelemetry_apic_flash_details_by_moid) | **GET** /api/v1/niatelemetry/ApicFlashDetails/{Moid} | Read a 'niatelemetry.ApicFlashDetails' resource.
-*NiatelemetryApi* | [**get_niatelemetry_apic_flash_details_list**](docs/NiatelemetryApi.md#get_niatelemetry_apic_flash_details_list) | **GET** /api/v1/niatelemetry/ApicFlashDetails | Read a 'niatelemetry.ApicFlashDetails' resource.
-*NiatelemetryApi* | [**get_niatelemetry_apic_ntp_auth_by_moid**](docs/NiatelemetryApi.md#get_niatelemetry_apic_ntp_auth_by_moid) | **GET** /api/v1/niatelemetry/ApicNtpAuths/{Moid} | Read a 'niatelemetry.ApicNtpAuth' resource.
-*NiatelemetryApi* | [**get_niatelemetry_apic_ntp_auth_list**](docs/NiatelemetryApi.md#get_niatelemetry_apic_ntp_auth_list) | **GET** /api/v1/niatelemetry/ApicNtpAuths | Read a 'niatelemetry.ApicNtpAuth' resource.
-*NiatelemetryApi* | [**get_niatelemetry_apic_psu_details_by_moid**](docs/NiatelemetryApi.md#get_niatelemetry_apic_psu_details_by_moid) | **GET** /api/v1/niatelemetry/ApicPsuDetails/{Moid} | Read a 'niatelemetry.ApicPsuDetails' resource.
-*NiatelemetryApi* | [**get_niatelemetry_apic_psu_details_list**](docs/NiatelemetryApi.md#get_niatelemetry_apic_psu_details_list) | **GET** /api/v1/niatelemetry/ApicPsuDetails | Read a 'niatelemetry.ApicPsuDetails' resource.
-*NiatelemetryApi* | [**get_niatelemetry_apic_realm_details_by_moid**](docs/NiatelemetryApi.md#get_niatelemetry_apic_realm_details_by_moid) | **GET** /api/v1/niatelemetry/ApicRealmDetails/{Moid} | Read a 'niatelemetry.ApicRealmDetails' resource.
-*NiatelemetryApi* | [**get_niatelemetry_apic_realm_details_list**](docs/NiatelemetryApi.md#get_niatelemetry_apic_realm_details_list) | **GET** /api/v1/niatelemetry/ApicRealmDetails | Read a 'niatelemetry.ApicRealmDetails' resource.
-*NiatelemetryApi* | [**get_niatelemetry_apic_snmp_community_access_details_by_moid**](docs/NiatelemetryApi.md#get_niatelemetry_apic_snmp_community_access_details_by_moid) | **GET** /api/v1/niatelemetry/ApicSnmpCommunityAccessDetails/{Moid} | Read a 'niatelemetry.ApicSnmpCommunityAccessDetails' resource.
-*NiatelemetryApi* | [**get_niatelemetry_apic_snmp_community_access_details_list**](docs/NiatelemetryApi.md#get_niatelemetry_apic_snmp_community_access_details_list) | **GET** /api/v1/niatelemetry/ApicSnmpCommunityAccessDetails | Read a 'niatelemetry.ApicSnmpCommunityAccessDetails' resource.
-*NiatelemetryApi* | [**get_niatelemetry_apic_snmp_community_details_by_moid**](docs/NiatelemetryApi.md#get_niatelemetry_apic_snmp_community_details_by_moid) | **GET** /api/v1/niatelemetry/ApicSnmpCommunityDetails/{Moid} | Read a 'niatelemetry.ApicSnmpCommunityDetails' resource.
-*NiatelemetryApi* | [**get_niatelemetry_apic_snmp_community_details_list**](docs/NiatelemetryApi.md#get_niatelemetry_apic_snmp_community_details_list) | **GET** /api/v1/niatelemetry/ApicSnmpCommunityDetails | Read a 'niatelemetry.ApicSnmpCommunityDetails' resource.
-*NiatelemetryApi* | [**get_niatelemetry_apic_snmp_trap_details_by_moid**](docs/NiatelemetryApi.md#get_niatelemetry_apic_snmp_trap_details_by_moid) | **GET** /api/v1/niatelemetry/ApicSnmpTrapDetails/{Moid} | Read a 'niatelemetry.ApicSnmpTrapDetails' resource.
-*NiatelemetryApi* | [**get_niatelemetry_apic_snmp_trap_details_list**](docs/NiatelemetryApi.md#get_niatelemetry_apic_snmp_trap_details_list) | **GET** /api/v1/niatelemetry/ApicSnmpTrapDetails | Read a 'niatelemetry.ApicSnmpTrapDetails' resource.
-*NiatelemetryApi* | [**get_niatelemetry_apic_snmp_version_three_details_by_moid**](docs/NiatelemetryApi.md#get_niatelemetry_apic_snmp_version_three_details_by_moid) | **GET** /api/v1/niatelemetry/ApicSnmpVersionThreeDetails/{Moid} | Read a 'niatelemetry.ApicSnmpVersionThreeDetails' resource.
-*NiatelemetryApi* | [**get_niatelemetry_apic_snmp_version_three_details_list**](docs/NiatelemetryApi.md#get_niatelemetry_apic_snmp_version_three_details_list) | **GET** /api/v1/niatelemetry/ApicSnmpVersionThreeDetails | Read a 'niatelemetry.ApicSnmpVersionThreeDetails' resource.
-*NiatelemetryApi* | [**get_niatelemetry_apic_sys_log_grp_by_moid**](docs/NiatelemetryApi.md#get_niatelemetry_apic_sys_log_grp_by_moid) | **GET** /api/v1/niatelemetry/ApicSysLogGrps/{Moid} | Read a 'niatelemetry.ApicSysLogGrp' resource.
-*NiatelemetryApi* | [**get_niatelemetry_apic_sys_log_grp_list**](docs/NiatelemetryApi.md#get_niatelemetry_apic_sys_log_grp_list) | **GET** /api/v1/niatelemetry/ApicSysLogGrps | Read a 'niatelemetry.ApicSysLogGrp' resource.
-*NiatelemetryApi* | [**get_niatelemetry_apic_sys_log_src_by_moid**](docs/NiatelemetryApi.md#get_niatelemetry_apic_sys_log_src_by_moid) | **GET** /api/v1/niatelemetry/ApicSysLogSrcs/{Moid} | Read a 'niatelemetry.ApicSysLogSrc' resource.
-*NiatelemetryApi* | [**get_niatelemetry_apic_sys_log_src_list**](docs/NiatelemetryApi.md#get_niatelemetry_apic_sys_log_src_list) | **GET** /api/v1/niatelemetry/ApicSysLogSrcs | Read a 'niatelemetry.ApicSysLogSrc' resource.
-*NiatelemetryApi* | [**get_niatelemetry_apic_transceiver_details_by_moid**](docs/NiatelemetryApi.md#get_niatelemetry_apic_transceiver_details_by_moid) | **GET** /api/v1/niatelemetry/ApicTransceiverDetails/{Moid} | Read a 'niatelemetry.ApicTransceiverDetails' resource.
-*NiatelemetryApi* | [**get_niatelemetry_apic_transceiver_details_list**](docs/NiatelemetryApi.md#get_niatelemetry_apic_transceiver_details_list) | **GET** /api/v1/niatelemetry/ApicTransceiverDetails | Read a 'niatelemetry.ApicTransceiverDetails' resource.
-*NiatelemetryApi* | [**get_niatelemetry_apic_ui_page_counts_by_moid**](docs/NiatelemetryApi.md#get_niatelemetry_apic_ui_page_counts_by_moid) | **GET** /api/v1/niatelemetry/ApicUiPageCounts/{Moid} | Read a 'niatelemetry.ApicUiPageCounts' resource.
-*NiatelemetryApi* | [**get_niatelemetry_apic_ui_page_counts_list**](docs/NiatelemetryApi.md#get_niatelemetry_apic_ui_page_counts_list) | **GET** /api/v1/niatelemetry/ApicUiPageCounts | Read a 'niatelemetry.ApicUiPageCounts' resource.
-*NiatelemetryApi* | [**get_niatelemetry_app_details_by_moid**](docs/NiatelemetryApi.md#get_niatelemetry_app_details_by_moid) | **GET** /api/v1/niatelemetry/AppDetails/{Moid} | Read a 'niatelemetry.AppDetails' resource.
-*NiatelemetryApi* | [**get_niatelemetry_app_details_list**](docs/NiatelemetryApi.md#get_niatelemetry_app_details_list) | **GET** /api/v1/niatelemetry/AppDetails | Read a 'niatelemetry.AppDetails' resource.
-*NiatelemetryApi* | [**get_niatelemetry_dcnm_fan_details_by_moid**](docs/NiatelemetryApi.md#get_niatelemetry_dcnm_fan_details_by_moid) | **GET** /api/v1/niatelemetry/DcnmFanDetails/{Moid} | Read a 'niatelemetry.DcnmFanDetails' resource.
-*NiatelemetryApi* | [**get_niatelemetry_dcnm_fan_details_list**](docs/NiatelemetryApi.md#get_niatelemetry_dcnm_fan_details_list) | **GET** /api/v1/niatelemetry/DcnmFanDetails | Read a 'niatelemetry.DcnmFanDetails' resource.
-*NiatelemetryApi* | [**get_niatelemetry_dcnm_fex_details_by_moid**](docs/NiatelemetryApi.md#get_niatelemetry_dcnm_fex_details_by_moid) | **GET** /api/v1/niatelemetry/DcnmFexDetails/{Moid} | Read a 'niatelemetry.DcnmFexDetails' resource.
-*NiatelemetryApi* | [**get_niatelemetry_dcnm_fex_details_list**](docs/NiatelemetryApi.md#get_niatelemetry_dcnm_fex_details_list) | **GET** /api/v1/niatelemetry/DcnmFexDetails | Read a 'niatelemetry.DcnmFexDetails' resource.
-*NiatelemetryApi* | [**get_niatelemetry_dcnm_module_details_by_moid**](docs/NiatelemetryApi.md#get_niatelemetry_dcnm_module_details_by_moid) | **GET** /api/v1/niatelemetry/DcnmModuleDetails/{Moid} | Read a 'niatelemetry.DcnmModuleDetails' resource.
-*NiatelemetryApi* | [**get_niatelemetry_dcnm_module_details_list**](docs/NiatelemetryApi.md#get_niatelemetry_dcnm_module_details_list) | **GET** /api/v1/niatelemetry/DcnmModuleDetails | Read a 'niatelemetry.DcnmModuleDetails' resource.
-*NiatelemetryApi* | [**get_niatelemetry_dcnm_psu_details_by_moid**](docs/NiatelemetryApi.md#get_niatelemetry_dcnm_psu_details_by_moid) | **GET** /api/v1/niatelemetry/DcnmPsuDetails/{Moid} | Read a 'niatelemetry.DcnmPsuDetails' resource.
-*NiatelemetryApi* | [**get_niatelemetry_dcnm_psu_details_list**](docs/NiatelemetryApi.md#get_niatelemetry_dcnm_psu_details_list) | **GET** /api/v1/niatelemetry/DcnmPsuDetails | Read a 'niatelemetry.DcnmPsuDetails' resource.
-*NiatelemetryApi* | [**get_niatelemetry_dcnm_transceiver_details_by_moid**](docs/NiatelemetryApi.md#get_niatelemetry_dcnm_transceiver_details_by_moid) | **GET** /api/v1/niatelemetry/DcnmTransceiverDetails/{Moid} | Read a 'niatelemetry.DcnmTransceiverDetails' resource.
-*NiatelemetryApi* | [**get_niatelemetry_dcnm_transceiver_details_list**](docs/NiatelemetryApi.md#get_niatelemetry_dcnm_transceiver_details_list) | **GET** /api/v1/niatelemetry/DcnmTransceiverDetails | Read a 'niatelemetry.DcnmTransceiverDetails' resource.
-*NiatelemetryApi* | [**get_niatelemetry_epg_by_moid**](docs/NiatelemetryApi.md#get_niatelemetry_epg_by_moid) | **GET** /api/v1/niatelemetry/Epgs/{Moid} | Read a 'niatelemetry.Epg' resource.
-*NiatelemetryApi* | [**get_niatelemetry_epg_list**](docs/NiatelemetryApi.md#get_niatelemetry_epg_list) | **GET** /api/v1/niatelemetry/Epgs | Read a 'niatelemetry.Epg' resource.
-*NiatelemetryApi* | [**get_niatelemetry_fabric_module_details_by_moid**](docs/NiatelemetryApi.md#get_niatelemetry_fabric_module_details_by_moid) | **GET** /api/v1/niatelemetry/FabricModuleDetails/{Moid} | Read a 'niatelemetry.FabricModuleDetails' resource.
-*NiatelemetryApi* | [**get_niatelemetry_fabric_module_details_list**](docs/NiatelemetryApi.md#get_niatelemetry_fabric_module_details_list) | **GET** /api/v1/niatelemetry/FabricModuleDetails | Read a 'niatelemetry.FabricModuleDetails' resource.
-*NiatelemetryApi* | [**get_niatelemetry_fault_by_moid**](docs/NiatelemetryApi.md#get_niatelemetry_fault_by_moid) | **GET** /api/v1/niatelemetry/Faults/{Moid} | Read a 'niatelemetry.Fault' resource.
-*NiatelemetryApi* | [**get_niatelemetry_fault_list**](docs/NiatelemetryApi.md#get_niatelemetry_fault_list) | **GET** /api/v1/niatelemetry/Faults | Read a 'niatelemetry.Fault' resource.
-*NiatelemetryApi* | [**get_niatelemetry_https_acl_contract_details_by_moid**](docs/NiatelemetryApi.md#get_niatelemetry_https_acl_contract_details_by_moid) | **GET** /api/v1/niatelemetry/HttpsAclContractDetails/{Moid} | Read a 'niatelemetry.HttpsAclContractDetails' resource.
-*NiatelemetryApi* | [**get_niatelemetry_https_acl_contract_details_list**](docs/NiatelemetryApi.md#get_niatelemetry_https_acl_contract_details_list) | **GET** /api/v1/niatelemetry/HttpsAclContractDetails | Read a 'niatelemetry.HttpsAclContractDetails' resource.
-*NiatelemetryApi* | [**get_niatelemetry_https_acl_contract_filter_map_by_moid**](docs/NiatelemetryApi.md#get_niatelemetry_https_acl_contract_filter_map_by_moid) | **GET** /api/v1/niatelemetry/HttpsAclContractFilterMaps/{Moid} | Read a 'niatelemetry.HttpsAclContractFilterMap' resource.
-*NiatelemetryApi* | [**get_niatelemetry_https_acl_contract_filter_map_list**](docs/NiatelemetryApi.md#get_niatelemetry_https_acl_contract_filter_map_list) | **GET** /api/v1/niatelemetry/HttpsAclContractFilterMaps | Read a 'niatelemetry.HttpsAclContractFilterMap' resource.
-*NiatelemetryApi* | [**get_niatelemetry_https_acl_epg_contract_map_by_moid**](docs/NiatelemetryApi.md#get_niatelemetry_https_acl_epg_contract_map_by_moid) | **GET** /api/v1/niatelemetry/HttpsAclEpgContractMaps/{Moid} | Read a 'niatelemetry.HttpsAclEpgContractMap' resource.
-*NiatelemetryApi* | [**get_niatelemetry_https_acl_epg_contract_map_list**](docs/NiatelemetryApi.md#get_niatelemetry_https_acl_epg_contract_map_list) | **GET** /api/v1/niatelemetry/HttpsAclEpgContractMaps | Read a 'niatelemetry.HttpsAclEpgContractMap' resource.
-*NiatelemetryApi* | [**get_niatelemetry_https_acl_epg_details_by_moid**](docs/NiatelemetryApi.md#get_niatelemetry_https_acl_epg_details_by_moid) | **GET** /api/v1/niatelemetry/HttpsAclEpgDetails/{Moid} | Read a 'niatelemetry.HttpsAclEpgDetails' resource.
-*NiatelemetryApi* | [**get_niatelemetry_https_acl_epg_details_list**](docs/NiatelemetryApi.md#get_niatelemetry_https_acl_epg_details_list) | **GET** /api/v1/niatelemetry/HttpsAclEpgDetails | Read a 'niatelemetry.HttpsAclEpgDetails' resource.
-*NiatelemetryApi* | [**get_niatelemetry_https_acl_filter_details_by_moid**](docs/NiatelemetryApi.md#get_niatelemetry_https_acl_filter_details_by_moid) | **GET** /api/v1/niatelemetry/HttpsAclFilterDetails/{Moid} | Read a 'niatelemetry.HttpsAclFilterDetails' resource.
-*NiatelemetryApi* | [**get_niatelemetry_https_acl_filter_details_list**](docs/NiatelemetryApi.md#get_niatelemetry_https_acl_filter_details_list) | **GET** /api/v1/niatelemetry/HttpsAclFilterDetails | Read a 'niatelemetry.HttpsAclFilterDetails' resource.
-*NiatelemetryApi* | [**get_niatelemetry_lc_by_moid**](docs/NiatelemetryApi.md#get_niatelemetry_lc_by_moid) | **GET** /api/v1/niatelemetry/Lcs/{Moid} | Read a 'niatelemetry.Lc' resource.
-*NiatelemetryApi* | [**get_niatelemetry_lc_list**](docs/NiatelemetryApi.md#get_niatelemetry_lc_list) | **GET** /api/v1/niatelemetry/Lcs | Read a 'niatelemetry.Lc' resource.
-*NiatelemetryApi* | [**get_niatelemetry_mso_contract_details_by_moid**](docs/NiatelemetryApi.md#get_niatelemetry_mso_contract_details_by_moid) | **GET** /api/v1/niatelemetry/MsoContractDetails/{Moid} | Read a 'niatelemetry.MsoContractDetails' resource.
-*NiatelemetryApi* | [**get_niatelemetry_mso_contract_details_list**](docs/NiatelemetryApi.md#get_niatelemetry_mso_contract_details_list) | **GET** /api/v1/niatelemetry/MsoContractDetails | Read a 'niatelemetry.MsoContractDetails' resource.
-*NiatelemetryApi* | [**get_niatelemetry_mso_epg_details_by_moid**](docs/NiatelemetryApi.md#get_niatelemetry_mso_epg_details_by_moid) | **GET** /api/v1/niatelemetry/MsoEpgDetails/{Moid} | Read a 'niatelemetry.MsoEpgDetails' resource.
-*NiatelemetryApi* | [**get_niatelemetry_mso_epg_details_list**](docs/NiatelemetryApi.md#get_niatelemetry_mso_epg_details_list) | **GET** /api/v1/niatelemetry/MsoEpgDetails | Read a 'niatelemetry.MsoEpgDetails' resource.
-*NiatelemetryApi* | [**get_niatelemetry_mso_schema_details_by_moid**](docs/NiatelemetryApi.md#get_niatelemetry_mso_schema_details_by_moid) | **GET** /api/v1/niatelemetry/MsoSchemaDetails/{Moid} | Read a 'niatelemetry.MsoSchemaDetails' resource.
-*NiatelemetryApi* | [**get_niatelemetry_mso_schema_details_list**](docs/NiatelemetryApi.md#get_niatelemetry_mso_schema_details_list) | **GET** /api/v1/niatelemetry/MsoSchemaDetails | Read a 'niatelemetry.MsoSchemaDetails' resource.
-*NiatelemetryApi* | [**get_niatelemetry_mso_site_details_by_moid**](docs/NiatelemetryApi.md#get_niatelemetry_mso_site_details_by_moid) | **GET** /api/v1/niatelemetry/MsoSiteDetails/{Moid} | Read a 'niatelemetry.MsoSiteDetails' resource.
-*NiatelemetryApi* | [**get_niatelemetry_mso_site_details_list**](docs/NiatelemetryApi.md#get_niatelemetry_mso_site_details_list) | **GET** /api/v1/niatelemetry/MsoSiteDetails | Read a 'niatelemetry.MsoSiteDetails' resource.
-*NiatelemetryApi* | [**get_niatelemetry_mso_tenant_details_by_moid**](docs/NiatelemetryApi.md#get_niatelemetry_mso_tenant_details_by_moid) | **GET** /api/v1/niatelemetry/MsoTenantDetails/{Moid} | Read a 'niatelemetry.MsoTenantDetails' resource.
-*NiatelemetryApi* | [**get_niatelemetry_mso_tenant_details_list**](docs/NiatelemetryApi.md#get_niatelemetry_mso_tenant_details_list) | **GET** /api/v1/niatelemetry/MsoTenantDetails | Read a 'niatelemetry.MsoTenantDetails' resource.
-*NiatelemetryApi* | [**get_niatelemetry_nexus_dashboard_controller_details_by_moid**](docs/NiatelemetryApi.md#get_niatelemetry_nexus_dashboard_controller_details_by_moid) | **GET** /api/v1/niatelemetry/NexusDashboardControllerDetails/{Moid} | Read a 'niatelemetry.NexusDashboardControllerDetails' resource.
-*NiatelemetryApi* | [**get_niatelemetry_nexus_dashboard_controller_details_list**](docs/NiatelemetryApi.md#get_niatelemetry_nexus_dashboard_controller_details_list) | **GET** /api/v1/niatelemetry/NexusDashboardControllerDetails | Read a 'niatelemetry.NexusDashboardControllerDetails' resource.
-*NiatelemetryApi* | [**get_niatelemetry_nexus_dashboard_details_by_moid**](docs/NiatelemetryApi.md#get_niatelemetry_nexus_dashboard_details_by_moid) | **GET** /api/v1/niatelemetry/NexusDashboardDetails/{Moid} | Read a 'niatelemetry.NexusDashboardDetails' resource.
-*NiatelemetryApi* | [**get_niatelemetry_nexus_dashboard_details_list**](docs/NiatelemetryApi.md#get_niatelemetry_nexus_dashboard_details_list) | **GET** /api/v1/niatelemetry/NexusDashboardDetails | Read a 'niatelemetry.NexusDashboardDetails' resource.
-*NiatelemetryApi* | [**get_niatelemetry_nexus_dashboard_memory_details_by_moid**](docs/NiatelemetryApi.md#get_niatelemetry_nexus_dashboard_memory_details_by_moid) | **GET** /api/v1/niatelemetry/NexusDashboardMemoryDetails/{Moid} | Read a 'niatelemetry.NexusDashboardMemoryDetails' resource.
-*NiatelemetryApi* | [**get_niatelemetry_nexus_dashboard_memory_details_list**](docs/NiatelemetryApi.md#get_niatelemetry_nexus_dashboard_memory_details_list) | **GET** /api/v1/niatelemetry/NexusDashboardMemoryDetails | Read a 'niatelemetry.NexusDashboardMemoryDetails' resource.
-*NiatelemetryApi* | [**get_niatelemetry_nexus_dashboards_by_moid**](docs/NiatelemetryApi.md#get_niatelemetry_nexus_dashboards_by_moid) | **GET** /api/v1/niatelemetry/NexusDashboards/{Moid} | Read a 'niatelemetry.NexusDashboards' resource.
-*NiatelemetryApi* | [**get_niatelemetry_nexus_dashboards_list**](docs/NiatelemetryApi.md#get_niatelemetry_nexus_dashboards_list) | **GET** /api/v1/niatelemetry/NexusDashboards | Read a 'niatelemetry.NexusDashboards' resource.
-*NiatelemetryApi* | [**get_niatelemetry_nia_feature_usage_by_moid**](docs/NiatelemetryApi.md#get_niatelemetry_nia_feature_usage_by_moid) | **GET** /api/v1/niatelemetry/NiaFeatureUsages/{Moid} | Read a 'niatelemetry.NiaFeatureUsage' resource.
-*NiatelemetryApi* | [**get_niatelemetry_nia_feature_usage_list**](docs/NiatelemetryApi.md#get_niatelemetry_nia_feature_usage_list) | **GET** /api/v1/niatelemetry/NiaFeatureUsages | Read a 'niatelemetry.NiaFeatureUsage' resource.
-*NiatelemetryApi* | [**get_niatelemetry_nia_inventory_by_moid**](docs/NiatelemetryApi.md#get_niatelemetry_nia_inventory_by_moid) | **GET** /api/v1/niatelemetry/NiaInventories/{Moid} | Read a 'niatelemetry.NiaInventory' resource.
-*NiatelemetryApi* | [**get_niatelemetry_nia_inventory_dcnm_by_moid**](docs/NiatelemetryApi.md#get_niatelemetry_nia_inventory_dcnm_by_moid) | **GET** /api/v1/niatelemetry/NiaInventoryDcnms/{Moid} | Read a 'niatelemetry.NiaInventoryDcnm' resource.
-*NiatelemetryApi* | [**get_niatelemetry_nia_inventory_dcnm_list**](docs/NiatelemetryApi.md#get_niatelemetry_nia_inventory_dcnm_list) | **GET** /api/v1/niatelemetry/NiaInventoryDcnms | Read a 'niatelemetry.NiaInventoryDcnm' resource.
-*NiatelemetryApi* | [**get_niatelemetry_nia_inventory_fabric_by_moid**](docs/NiatelemetryApi.md#get_niatelemetry_nia_inventory_fabric_by_moid) | **GET** /api/v1/niatelemetry/NiaInventoryFabrics/{Moid} | Read a 'niatelemetry.NiaInventoryFabric' resource.
-*NiatelemetryApi* | [**get_niatelemetry_nia_inventory_fabric_list**](docs/NiatelemetryApi.md#get_niatelemetry_nia_inventory_fabric_list) | **GET** /api/v1/niatelemetry/NiaInventoryFabrics | Read a 'niatelemetry.NiaInventoryFabric' resource.
-*NiatelemetryApi* | [**get_niatelemetry_nia_inventory_list**](docs/NiatelemetryApi.md#get_niatelemetry_nia_inventory_list) | **GET** /api/v1/niatelemetry/NiaInventories | Read a 'niatelemetry.NiaInventory' resource.
-*NiatelemetryApi* | [**get_niatelemetry_nia_license_state_by_moid**](docs/NiatelemetryApi.md#get_niatelemetry_nia_license_state_by_moid) | **GET** /api/v1/niatelemetry/NiaLicenseStates/{Moid} | Read a 'niatelemetry.NiaLicenseState' resource.
-*NiatelemetryApi* | [**get_niatelemetry_nia_license_state_list**](docs/NiatelemetryApi.md#get_niatelemetry_nia_license_state_list) | **GET** /api/v1/niatelemetry/NiaLicenseStates | Read a 'niatelemetry.NiaLicenseState' resource.
-*NiatelemetryApi* | [**get_niatelemetry_password_strength_check_by_moid**](docs/NiatelemetryApi.md#get_niatelemetry_password_strength_check_by_moid) | **GET** /api/v1/niatelemetry/PasswordStrengthChecks/{Moid} | Read a 'niatelemetry.PasswordStrengthCheck' resource.
-*NiatelemetryApi* | [**get_niatelemetry_password_strength_check_list**](docs/NiatelemetryApi.md#get_niatelemetry_password_strength_check_list) | **GET** /api/v1/niatelemetry/PasswordStrengthChecks | Read a 'niatelemetry.PasswordStrengthCheck' resource.
-*NiatelemetryApi* | [**get_niatelemetry_site_inventory_by_moid**](docs/NiatelemetryApi.md#get_niatelemetry_site_inventory_by_moid) | **GET** /api/v1/niatelemetry/SiteInventories/{Moid} | Read a 'niatelemetry.SiteInventory' resource.
-*NiatelemetryApi* | [**get_niatelemetry_site_inventory_list**](docs/NiatelemetryApi.md#get_niatelemetry_site_inventory_list) | **GET** /api/v1/niatelemetry/SiteInventories | Read a 'niatelemetry.SiteInventory' resource.
-*NiatelemetryApi* | [**get_niatelemetry_ssh_version_two_by_moid**](docs/NiatelemetryApi.md#get_niatelemetry_ssh_version_two_by_moid) | **GET** /api/v1/niatelemetry/SshVersionTwos/{Moid} | Read a 'niatelemetry.SshVersionTwo' resource.
-*NiatelemetryApi* | [**get_niatelemetry_ssh_version_two_list**](docs/NiatelemetryApi.md#get_niatelemetry_ssh_version_two_list) | **GET** /api/v1/niatelemetry/SshVersionTwos | Read a 'niatelemetry.SshVersionTwo' resource.
-*NiatelemetryApi* | [**get_niatelemetry_supervisor_module_details_by_moid**](docs/NiatelemetryApi.md#get_niatelemetry_supervisor_module_details_by_moid) | **GET** /api/v1/niatelemetry/SupervisorModuleDetails/{Moid} | Read a 'niatelemetry.SupervisorModuleDetails' resource.
-*NiatelemetryApi* | [**get_niatelemetry_supervisor_module_details_list**](docs/NiatelemetryApi.md#get_niatelemetry_supervisor_module_details_list) | **GET** /api/v1/niatelemetry/SupervisorModuleDetails | Read a 'niatelemetry.SupervisorModuleDetails' resource.
-*NiatelemetryApi* | [**get_niatelemetry_system_controller_details_by_moid**](docs/NiatelemetryApi.md#get_niatelemetry_system_controller_details_by_moid) | **GET** /api/v1/niatelemetry/SystemControllerDetails/{Moid} | Read a 'niatelemetry.SystemControllerDetails' resource.
-*NiatelemetryApi* | [**get_niatelemetry_system_controller_details_list**](docs/NiatelemetryApi.md#get_niatelemetry_system_controller_details_list) | **GET** /api/v1/niatelemetry/SystemControllerDetails | Read a 'niatelemetry.SystemControllerDetails' resource.
-*NiatelemetryApi* | [**get_niatelemetry_tenant_by_moid**](docs/NiatelemetryApi.md#get_niatelemetry_tenant_by_moid) | **GET** /api/v1/niatelemetry/Tenants/{Moid} | Read a 'niatelemetry.Tenant' resource.
-*NiatelemetryApi* | [**get_niatelemetry_tenant_list**](docs/NiatelemetryApi.md#get_niatelemetry_tenant_list) | **GET** /api/v1/niatelemetry/Tenants | Read a 'niatelemetry.Tenant' resource.
-*NotificationApi* | [**create_notification_account_subscription**](docs/NotificationApi.md#create_notification_account_subscription) | **POST** /api/v1/notification/AccountSubscriptions | Create a 'notification.AccountSubscription' resource.
-*NotificationApi* | [**delete_notification_account_subscription**](docs/NotificationApi.md#delete_notification_account_subscription) | **DELETE** /api/v1/notification/AccountSubscriptions/{Moid} | Delete a 'notification.AccountSubscription' resource.
-*NotificationApi* | [**get_notification_account_subscription_by_moid**](docs/NotificationApi.md#get_notification_account_subscription_by_moid) | **GET** /api/v1/notification/AccountSubscriptions/{Moid} | Read a 'notification.AccountSubscription' resource.
-*NotificationApi* | [**get_notification_account_subscription_list**](docs/NotificationApi.md#get_notification_account_subscription_list) | **GET** /api/v1/notification/AccountSubscriptions | Read a 'notification.AccountSubscription' resource.
-*NotificationApi* | [**patch_notification_account_subscription**](docs/NotificationApi.md#patch_notification_account_subscription) | **PATCH** /api/v1/notification/AccountSubscriptions/{Moid} | Update a 'notification.AccountSubscription' resource.
-*NotificationApi* | [**update_notification_account_subscription**](docs/NotificationApi.md#update_notification_account_subscription) | **POST** /api/v1/notification/AccountSubscriptions/{Moid} | Update a 'notification.AccountSubscription' resource.
-*NtpApi* | [**create_ntp_policy**](docs/NtpApi.md#create_ntp_policy) | **POST** /api/v1/ntp/Policies | Create a 'ntp.Policy' resource.
-*NtpApi* | [**delete_ntp_policy**](docs/NtpApi.md#delete_ntp_policy) | **DELETE** /api/v1/ntp/Policies/{Moid} | Delete a 'ntp.Policy' resource.
-*NtpApi* | [**get_ntp_policy_by_moid**](docs/NtpApi.md#get_ntp_policy_by_moid) | **GET** /api/v1/ntp/Policies/{Moid} | Read a 'ntp.Policy' resource.
-*NtpApi* | [**get_ntp_policy_list**](docs/NtpApi.md#get_ntp_policy_list) | **GET** /api/v1/ntp/Policies | Read a 'ntp.Policy' resource.
-*NtpApi* | [**patch_ntp_policy**](docs/NtpApi.md#patch_ntp_policy) | **PATCH** /api/v1/ntp/Policies/{Moid} | Update a 'ntp.Policy' resource.
-*NtpApi* | [**update_ntp_policy**](docs/NtpApi.md#update_ntp_policy) | **POST** /api/v1/ntp/Policies/{Moid} | Update a 'ntp.Policy' resource.
-*OprsApi* | [**create_oprs_deployment**](docs/OprsApi.md#create_oprs_deployment) | **POST** /api/v1/oprs/Deployments | Create a 'oprs.Deployment' resource.
-*OprsApi* | [**create_oprs_sync_target_list_message**](docs/OprsApi.md#create_oprs_sync_target_list_message) | **POST** /api/v1/oprs/SyncTargetListMessages | Create a 'oprs.SyncTargetListMessage' resource.
-*OprsApi* | [**delete_oprs_deployment**](docs/OprsApi.md#delete_oprs_deployment) | **DELETE** /api/v1/oprs/Deployments/{Moid} | Delete a 'oprs.Deployment' resource.
-*OprsApi* | [**delete_oprs_sync_target_list_message**](docs/OprsApi.md#delete_oprs_sync_target_list_message) | **DELETE** /api/v1/oprs/SyncTargetListMessages/{Moid} | Delete a 'oprs.SyncTargetListMessage' resource.
-*OprsApi* | [**get_oprs_deployment_by_moid**](docs/OprsApi.md#get_oprs_deployment_by_moid) | **GET** /api/v1/oprs/Deployments/{Moid} | Read a 'oprs.Deployment' resource.
-*OprsApi* | [**get_oprs_deployment_list**](docs/OprsApi.md#get_oprs_deployment_list) | **GET** /api/v1/oprs/Deployments | Read a 'oprs.Deployment' resource.
-*OprsApi* | [**get_oprs_sync_target_list_message_by_moid**](docs/OprsApi.md#get_oprs_sync_target_list_message_by_moid) | **GET** /api/v1/oprs/SyncTargetListMessages/{Moid} | Read a 'oprs.SyncTargetListMessage' resource.
-*OprsApi* | [**get_oprs_sync_target_list_message_list**](docs/OprsApi.md#get_oprs_sync_target_list_message_list) | **GET** /api/v1/oprs/SyncTargetListMessages | Read a 'oprs.SyncTargetListMessage' resource.
-*OprsApi* | [**patch_oprs_deployment**](docs/OprsApi.md#patch_oprs_deployment) | **PATCH** /api/v1/oprs/Deployments/{Moid} | Update a 'oprs.Deployment' resource.
-*OprsApi* | [**patch_oprs_sync_target_list_message**](docs/OprsApi.md#patch_oprs_sync_target_list_message) | **PATCH** /api/v1/oprs/SyncTargetListMessages/{Moid} | Update a 'oprs.SyncTargetListMessage' resource.
-*OprsApi* | [**update_oprs_deployment**](docs/OprsApi.md#update_oprs_deployment) | **POST** /api/v1/oprs/Deployments/{Moid} | Update a 'oprs.Deployment' resource.
-*OprsApi* | [**update_oprs_sync_target_list_message**](docs/OprsApi.md#update_oprs_sync_target_list_message) | **POST** /api/v1/oprs/SyncTargetListMessages/{Moid} | Update a 'oprs.SyncTargetListMessage' resource.
-*OrganizationApi* | [**create_organization_organization**](docs/OrganizationApi.md#create_organization_organization) | **POST** /api/v1/organization/Organizations | Create a 'organization.Organization' resource.
-*OrganizationApi* | [**delete_organization_organization**](docs/OrganizationApi.md#delete_organization_organization) | **DELETE** /api/v1/organization/Organizations/{Moid} | Delete a 'organization.Organization' resource.
-*OrganizationApi* | [**get_organization_organization_by_moid**](docs/OrganizationApi.md#get_organization_organization_by_moid) | **GET** /api/v1/organization/Organizations/{Moid} | Read a 'organization.Organization' resource.
-*OrganizationApi* | [**get_organization_organization_list**](docs/OrganizationApi.md#get_organization_organization_list) | **GET** /api/v1/organization/Organizations | Read a 'organization.Organization' resource.
-*OrganizationApi* | [**patch_organization_organization**](docs/OrganizationApi.md#patch_organization_organization) | **PATCH** /api/v1/organization/Organizations/{Moid} | Update a 'organization.Organization' resource.
-*OrganizationApi* | [**update_organization_organization**](docs/OrganizationApi.md#update_organization_organization) | **POST** /api/v1/organization/Organizations/{Moid} | Update a 'organization.Organization' resource.
-*OsApi* | [**create_os_bulk_install_info**](docs/OsApi.md#create_os_bulk_install_info) | **POST** /api/v1/os/BulkInstallInfos | Create a 'os.BulkInstallInfo' resource.
-*OsApi* | [**create_os_configuration_file**](docs/OsApi.md#create_os_configuration_file) | **POST** /api/v1/os/ConfigurationFiles | Create a 'os.ConfigurationFile' resource.
-*OsApi* | [**create_os_install**](docs/OsApi.md#create_os_install) | **POST** /api/v1/os/Installs | Create a 'os.Install' resource.
-*OsApi* | [**create_os_os_support**](docs/OsApi.md#create_os_os_support) | **POST** /api/v1/os/OsSupports | Create a 'os.OsSupport' resource.
-*OsApi* | [**create_os_template_file**](docs/OsApi.md#create_os_template_file) | **POST** /api/v1/os/TemplateFiles | Create a 'os.TemplateFile' resource.
-*OsApi* | [**create_os_valid_install_target**](docs/OsApi.md#create_os_valid_install_target) | **POST** /api/v1/os/ValidInstallTargets | Create a 'os.ValidInstallTarget' resource.
-*OsApi* | [**delete_os_configuration_file**](docs/OsApi.md#delete_os_configuration_file) | **DELETE** /api/v1/os/ConfigurationFiles/{Moid} | Delete a 'os.ConfigurationFile' resource.
-*OsApi* | [**get_os_bulk_install_info_by_moid**](docs/OsApi.md#get_os_bulk_install_info_by_moid) | **GET** /api/v1/os/BulkInstallInfos/{Moid} | Read a 'os.BulkInstallInfo' resource.
-*OsApi* | [**get_os_bulk_install_info_list**](docs/OsApi.md#get_os_bulk_install_info_list) | **GET** /api/v1/os/BulkInstallInfos | Read a 'os.BulkInstallInfo' resource.
-*OsApi* | [**get_os_catalog_by_moid**](docs/OsApi.md#get_os_catalog_by_moid) | **GET** /api/v1/os/Catalogs/{Moid} | Read a 'os.Catalog' resource.
-*OsApi* | [**get_os_catalog_list**](docs/OsApi.md#get_os_catalog_list) | **GET** /api/v1/os/Catalogs | Read a 'os.Catalog' resource.
-*OsApi* | [**get_os_configuration_file_by_moid**](docs/OsApi.md#get_os_configuration_file_by_moid) | **GET** /api/v1/os/ConfigurationFiles/{Moid} | Read a 'os.ConfigurationFile' resource.
-*OsApi* | [**get_os_configuration_file_list**](docs/OsApi.md#get_os_configuration_file_list) | **GET** /api/v1/os/ConfigurationFiles | Read a 'os.ConfigurationFile' resource.
-*OsApi* | [**get_os_distribution_by_moid**](docs/OsApi.md#get_os_distribution_by_moid) | **GET** /api/v1/os/Distributions/{Moid} | Read a 'os.Distribution' resource.
-*OsApi* | [**get_os_distribution_list**](docs/OsApi.md#get_os_distribution_list) | **GET** /api/v1/os/Distributions | Read a 'os.Distribution' resource.
-*OsApi* | [**get_os_install_by_moid**](docs/OsApi.md#get_os_install_by_moid) | **GET** /api/v1/os/Installs/{Moid} | Read a 'os.Install' resource.
-*OsApi* | [**get_os_install_list**](docs/OsApi.md#get_os_install_list) | **GET** /api/v1/os/Installs | Read a 'os.Install' resource.
-*OsApi* | [**get_os_supported_version_by_moid**](docs/OsApi.md#get_os_supported_version_by_moid) | **GET** /api/v1/os/SupportedVersions/{Moid} | Read a 'os.SupportedVersion' resource.
-*OsApi* | [**get_os_supported_version_list**](docs/OsApi.md#get_os_supported_version_list) | **GET** /api/v1/os/SupportedVersions | Read a 'os.SupportedVersion' resource.
-*OsApi* | [**patch_os_configuration_file**](docs/OsApi.md#patch_os_configuration_file) | **PATCH** /api/v1/os/ConfigurationFiles/{Moid} | Update a 'os.ConfigurationFile' resource.
-*OsApi* | [**update_os_configuration_file**](docs/OsApi.md#update_os_configuration_file) | **POST** /api/v1/os/ConfigurationFiles/{Moid} | Update a 'os.ConfigurationFile' resource.
-*PciApi* | [**get_pci_coprocessor_card_by_moid**](docs/PciApi.md#get_pci_coprocessor_card_by_moid) | **GET** /api/v1/pci/CoprocessorCards/{Moid} | Read a 'pci.CoprocessorCard' resource.
-*PciApi* | [**get_pci_coprocessor_card_list**](docs/PciApi.md#get_pci_coprocessor_card_list) | **GET** /api/v1/pci/CoprocessorCards | Read a 'pci.CoprocessorCard' resource.
-*PciApi* | [**get_pci_device_by_moid**](docs/PciApi.md#get_pci_device_by_moid) | **GET** /api/v1/pci/Devices/{Moid} | Read a 'pci.Device' resource.
-*PciApi* | [**get_pci_device_list**](docs/PciApi.md#get_pci_device_list) | **GET** /api/v1/pci/Devices | Read a 'pci.Device' resource.
-*PciApi* | [**get_pci_link_by_moid**](docs/PciApi.md#get_pci_link_by_moid) | **GET** /api/v1/pci/Links/{Moid} | Read a 'pci.Link' resource.
-*PciApi* | [**get_pci_link_list**](docs/PciApi.md#get_pci_link_list) | **GET** /api/v1/pci/Links | Read a 'pci.Link' resource.
-*PciApi* | [**get_pci_switch_by_moid**](docs/PciApi.md#get_pci_switch_by_moid) | **GET** /api/v1/pci/Switches/{Moid} | Read a 'pci.Switch' resource.
-*PciApi* | [**get_pci_switch_list**](docs/PciApi.md#get_pci_switch_list) | **GET** /api/v1/pci/Switches | Read a 'pci.Switch' resource.
-*PciApi* | [**patch_pci_device**](docs/PciApi.md#patch_pci_device) | **PATCH** /api/v1/pci/Devices/{Moid} | Update a 'pci.Device' resource.
-*PciApi* | [**patch_pci_link**](docs/PciApi.md#patch_pci_link) | **PATCH** /api/v1/pci/Links/{Moid} | Update a 'pci.Link' resource.
-*PciApi* | [**patch_pci_switch**](docs/PciApi.md#patch_pci_switch) | **PATCH** /api/v1/pci/Switches/{Moid} | Update a 'pci.Switch' resource.
-*PciApi* | [**update_pci_device**](docs/PciApi.md#update_pci_device) | **POST** /api/v1/pci/Devices/{Moid} | Update a 'pci.Device' resource.
-*PciApi* | [**update_pci_link**](docs/PciApi.md#update_pci_link) | **POST** /api/v1/pci/Links/{Moid} | Update a 'pci.Link' resource.
-*PciApi* | [**update_pci_switch**](docs/PciApi.md#update_pci_switch) | **POST** /api/v1/pci/Switches/{Moid} | Update a 'pci.Switch' resource.
-*PortApi* | [**get_port_group_by_moid**](docs/PortApi.md#get_port_group_by_moid) | **GET** /api/v1/port/Groups/{Moid} | Read a 'port.Group' resource.
-*PortApi* | [**get_port_group_list**](docs/PortApi.md#get_port_group_list) | **GET** /api/v1/port/Groups | Read a 'port.Group' resource.
-*PortApi* | [**get_port_mac_binding_by_moid**](docs/PortApi.md#get_port_mac_binding_by_moid) | **GET** /api/v1/port/MacBindings/{Moid} | Read a 'port.MacBinding' resource.
-*PortApi* | [**get_port_mac_binding_list**](docs/PortApi.md#get_port_mac_binding_list) | **GET** /api/v1/port/MacBindings | Read a 'port.MacBinding' resource.
-*PortApi* | [**get_port_sub_group_by_moid**](docs/PortApi.md#get_port_sub_group_by_moid) | **GET** /api/v1/port/SubGroups/{Moid} | Read a 'port.SubGroup' resource.
-*PortApi* | [**get_port_sub_group_list**](docs/PortApi.md#get_port_sub_group_list) | **GET** /api/v1/port/SubGroups | Read a 'port.SubGroup' resource.
-*PortApi* | [**patch_port_group**](docs/PortApi.md#patch_port_group) | **PATCH** /api/v1/port/Groups/{Moid} | Update a 'port.Group' resource.
-*PortApi* | [**patch_port_mac_binding**](docs/PortApi.md#patch_port_mac_binding) | **PATCH** /api/v1/port/MacBindings/{Moid} | Update a 'port.MacBinding' resource.
-*PortApi* | [**patch_port_sub_group**](docs/PortApi.md#patch_port_sub_group) | **PATCH** /api/v1/port/SubGroups/{Moid} | Update a 'port.SubGroup' resource.
-*PortApi* | [**update_port_group**](docs/PortApi.md#update_port_group) | **POST** /api/v1/port/Groups/{Moid} | Update a 'port.Group' resource.
-*PortApi* | [**update_port_mac_binding**](docs/PortApi.md#update_port_mac_binding) | **POST** /api/v1/port/MacBindings/{Moid} | Update a 'port.MacBinding' resource.
-*PortApi* | [**update_port_sub_group**](docs/PortApi.md#update_port_sub_group) | **POST** /api/v1/port/SubGroups/{Moid} | Update a 'port.SubGroup' resource.
-*PowerApi* | [**create_power_policy**](docs/PowerApi.md#create_power_policy) | **POST** /api/v1/power/Policies | Create a 'power.Policy' resource.
-*PowerApi* | [**delete_power_policy**](docs/PowerApi.md#delete_power_policy) | **DELETE** /api/v1/power/Policies/{Moid} | Delete a 'power.Policy' resource.
-*PowerApi* | [**get_power_control_state_by_moid**](docs/PowerApi.md#get_power_control_state_by_moid) | **GET** /api/v1/power/ControlStates/{Moid} | Read a 'power.ControlState' resource.
-*PowerApi* | [**get_power_control_state_list**](docs/PowerApi.md#get_power_control_state_list) | **GET** /api/v1/power/ControlStates | Read a 'power.ControlState' resource.
-*PowerApi* | [**get_power_policy_by_moid**](docs/PowerApi.md#get_power_policy_by_moid) | **GET** /api/v1/power/Policies/{Moid} | Read a 'power.Policy' resource.
-*PowerApi* | [**get_power_policy_list**](docs/PowerApi.md#get_power_policy_list) | **GET** /api/v1/power/Policies | Read a 'power.Policy' resource.
-*PowerApi* | [**patch_power_policy**](docs/PowerApi.md#patch_power_policy) | **PATCH** /api/v1/power/Policies/{Moid} | Update a 'power.Policy' resource.
-*PowerApi* | [**update_power_policy**](docs/PowerApi.md#update_power_policy) | **POST** /api/v1/power/Policies/{Moid} | Update a 'power.Policy' resource.
-*ProcessorApi* | [**get_processor_unit_by_moid**](docs/ProcessorApi.md#get_processor_unit_by_moid) | **GET** /api/v1/processor/Units/{Moid} | Read a 'processor.Unit' resource.
-*ProcessorApi* | [**get_processor_unit_list**](docs/ProcessorApi.md#get_processor_unit_list) | **GET** /api/v1/processor/Units | Read a 'processor.Unit' resource.
-*ProcessorApi* | [**patch_processor_unit**](docs/ProcessorApi.md#patch_processor_unit) | **PATCH** /api/v1/processor/Units/{Moid} | Update a 'processor.Unit' resource.
-*ProcessorApi* | [**update_processor_unit**](docs/ProcessorApi.md#update_processor_unit) | **POST** /api/v1/processor/Units/{Moid} | Update a 'processor.Unit' resource.
-*RecommendationApi* | [**get_recommendation_capacity_runway_by_moid**](docs/RecommendationApi.md#get_recommendation_capacity_runway_by_moid) | **GET** /api/v1/recommendation/CapacityRunways/{Moid} | Read a 'recommendation.CapacityRunway' resource.
-*RecommendationApi* | [**get_recommendation_capacity_runway_list**](docs/RecommendationApi.md#get_recommendation_capacity_runway_list) | **GET** /api/v1/recommendation/CapacityRunways | Read a 'recommendation.CapacityRunway' resource.
-*RecommendationApi* | [**get_recommendation_physical_item_by_moid**](docs/RecommendationApi.md#get_recommendation_physical_item_by_moid) | **GET** /api/v1/recommendation/PhysicalItems/{Moid} | Read a 'recommendation.PhysicalItem' resource.
-*RecommendationApi* | [**get_recommendation_physical_item_list**](docs/RecommendationApi.md#get_recommendation_physical_item_list) | **GET** /api/v1/recommendation/PhysicalItems | Read a 'recommendation.PhysicalItem' resource.
-*RecoveryApi* | [**create_recovery_backup_config_policy**](docs/RecoveryApi.md#create_recovery_backup_config_policy) | **POST** /api/v1/recovery/BackupConfigPolicies | Create a 'recovery.BackupConfigPolicy' resource.
-*RecoveryApi* | [**create_recovery_backup_profile**](docs/RecoveryApi.md#create_recovery_backup_profile) | **POST** /api/v1/recovery/BackupProfiles | Create a 'recovery.BackupProfile' resource.
-*RecoveryApi* | [**create_recovery_on_demand_backup**](docs/RecoveryApi.md#create_recovery_on_demand_backup) | **POST** /api/v1/recovery/OnDemandBackups | Create a 'recovery.OnDemandBackup' resource.
-*RecoveryApi* | [**create_recovery_restore**](docs/RecoveryApi.md#create_recovery_restore) | **POST** /api/v1/recovery/Restores | Create a 'recovery.Restore' resource.
-*RecoveryApi* | [**create_recovery_schedule_config_policy**](docs/RecoveryApi.md#create_recovery_schedule_config_policy) | **POST** /api/v1/recovery/ScheduleConfigPolicies | Create a 'recovery.ScheduleConfigPolicy' resource.
-*RecoveryApi* | [**delete_recovery_backup_config_policy**](docs/RecoveryApi.md#delete_recovery_backup_config_policy) | **DELETE** /api/v1/recovery/BackupConfigPolicies/{Moid} | Delete a 'recovery.BackupConfigPolicy' resource.
-*RecoveryApi* | [**delete_recovery_backup_profile**](docs/RecoveryApi.md#delete_recovery_backup_profile) | **DELETE** /api/v1/recovery/BackupProfiles/{Moid} | Delete a 'recovery.BackupProfile' resource.
-*RecoveryApi* | [**delete_recovery_on_demand_backup**](docs/RecoveryApi.md#delete_recovery_on_demand_backup) | **DELETE** /api/v1/recovery/OnDemandBackups/{Moid} | Delete a 'recovery.OnDemandBackup' resource.
-*RecoveryApi* | [**delete_recovery_restore**](docs/RecoveryApi.md#delete_recovery_restore) | **DELETE** /api/v1/recovery/Restores/{Moid} | Delete a 'recovery.Restore' resource.
-*RecoveryApi* | [**delete_recovery_schedule_config_policy**](docs/RecoveryApi.md#delete_recovery_schedule_config_policy) | **DELETE** /api/v1/recovery/ScheduleConfigPolicies/{Moid} | Delete a 'recovery.ScheduleConfigPolicy' resource.
-*RecoveryApi* | [**get_recovery_backup_config_policy_by_moid**](docs/RecoveryApi.md#get_recovery_backup_config_policy_by_moid) | **GET** /api/v1/recovery/BackupConfigPolicies/{Moid} | Read a 'recovery.BackupConfigPolicy' resource.
-*RecoveryApi* | [**get_recovery_backup_config_policy_list**](docs/RecoveryApi.md#get_recovery_backup_config_policy_list) | **GET** /api/v1/recovery/BackupConfigPolicies | Read a 'recovery.BackupConfigPolicy' resource.
-*RecoveryApi* | [**get_recovery_backup_profile_by_moid**](docs/RecoveryApi.md#get_recovery_backup_profile_by_moid) | **GET** /api/v1/recovery/BackupProfiles/{Moid} | Read a 'recovery.BackupProfile' resource.
-*RecoveryApi* | [**get_recovery_backup_profile_list**](docs/RecoveryApi.md#get_recovery_backup_profile_list) | **GET** /api/v1/recovery/BackupProfiles | Read a 'recovery.BackupProfile' resource.
-*RecoveryApi* | [**get_recovery_config_result_by_moid**](docs/RecoveryApi.md#get_recovery_config_result_by_moid) | **GET** /api/v1/recovery/ConfigResults/{Moid} | Read a 'recovery.ConfigResult' resource.
-*RecoveryApi* | [**get_recovery_config_result_entry_by_moid**](docs/RecoveryApi.md#get_recovery_config_result_entry_by_moid) | **GET** /api/v1/recovery/ConfigResultEntries/{Moid} | Read a 'recovery.ConfigResultEntry' resource.
-*RecoveryApi* | [**get_recovery_config_result_entry_list**](docs/RecoveryApi.md#get_recovery_config_result_entry_list) | **GET** /api/v1/recovery/ConfigResultEntries | Read a 'recovery.ConfigResultEntry' resource.
-*RecoveryApi* | [**get_recovery_config_result_list**](docs/RecoveryApi.md#get_recovery_config_result_list) | **GET** /api/v1/recovery/ConfigResults | Read a 'recovery.ConfigResult' resource.
-*RecoveryApi* | [**get_recovery_on_demand_backup_by_moid**](docs/RecoveryApi.md#get_recovery_on_demand_backup_by_moid) | **GET** /api/v1/recovery/OnDemandBackups/{Moid} | Read a 'recovery.OnDemandBackup' resource.
-*RecoveryApi* | [**get_recovery_on_demand_backup_list**](docs/RecoveryApi.md#get_recovery_on_demand_backup_list) | **GET** /api/v1/recovery/OnDemandBackups | Read a 'recovery.OnDemandBackup' resource.
-*RecoveryApi* | [**get_recovery_restore_by_moid**](docs/RecoveryApi.md#get_recovery_restore_by_moid) | **GET** /api/v1/recovery/Restores/{Moid} | Read a 'recovery.Restore' resource.
-*RecoveryApi* | [**get_recovery_restore_list**](docs/RecoveryApi.md#get_recovery_restore_list) | **GET** /api/v1/recovery/Restores | Read a 'recovery.Restore' resource.
-*RecoveryApi* | [**get_recovery_schedule_config_policy_by_moid**](docs/RecoveryApi.md#get_recovery_schedule_config_policy_by_moid) | **GET** /api/v1/recovery/ScheduleConfigPolicies/{Moid} | Read a 'recovery.ScheduleConfigPolicy' resource.
-*RecoveryApi* | [**get_recovery_schedule_config_policy_list**](docs/RecoveryApi.md#get_recovery_schedule_config_policy_list) | **GET** /api/v1/recovery/ScheduleConfigPolicies | Read a 'recovery.ScheduleConfigPolicy' resource.
-*RecoveryApi* | [**patch_recovery_backup_config_policy**](docs/RecoveryApi.md#patch_recovery_backup_config_policy) | **PATCH** /api/v1/recovery/BackupConfigPolicies/{Moid} | Update a 'recovery.BackupConfigPolicy' resource.
-*RecoveryApi* | [**patch_recovery_backup_profile**](docs/RecoveryApi.md#patch_recovery_backup_profile) | **PATCH** /api/v1/recovery/BackupProfiles/{Moid} | Update a 'recovery.BackupProfile' resource.
-*RecoveryApi* | [**patch_recovery_on_demand_backup**](docs/RecoveryApi.md#patch_recovery_on_demand_backup) | **PATCH** /api/v1/recovery/OnDemandBackups/{Moid} | Update a 'recovery.OnDemandBackup' resource.
-*RecoveryApi* | [**patch_recovery_schedule_config_policy**](docs/RecoveryApi.md#patch_recovery_schedule_config_policy) | **PATCH** /api/v1/recovery/ScheduleConfigPolicies/{Moid} | Update a 'recovery.ScheduleConfigPolicy' resource.
-*RecoveryApi* | [**update_recovery_backup_config_policy**](docs/RecoveryApi.md#update_recovery_backup_config_policy) | **POST** /api/v1/recovery/BackupConfigPolicies/{Moid} | Update a 'recovery.BackupConfigPolicy' resource.
-*RecoveryApi* | [**update_recovery_backup_profile**](docs/RecoveryApi.md#update_recovery_backup_profile) | **POST** /api/v1/recovery/BackupProfiles/{Moid} | Update a 'recovery.BackupProfile' resource.
-*RecoveryApi* | [**update_recovery_on_demand_backup**](docs/RecoveryApi.md#update_recovery_on_demand_backup) | **POST** /api/v1/recovery/OnDemandBackups/{Moid} | Update a 'recovery.OnDemandBackup' resource.
-*RecoveryApi* | [**update_recovery_schedule_config_policy**](docs/RecoveryApi.md#update_recovery_schedule_config_policy) | **POST** /api/v1/recovery/ScheduleConfigPolicies/{Moid} | Update a 'recovery.ScheduleConfigPolicy' resource.
-*ResourceApi* | [**create_resource_group**](docs/ResourceApi.md#create_resource_group) | **POST** /api/v1/resource/Groups | Create a 'resource.Group' resource.
-*ResourceApi* | [**delete_resource_group**](docs/ResourceApi.md#delete_resource_group) | **DELETE** /api/v1/resource/Groups/{Moid} | Delete a 'resource.Group' resource.
-*ResourceApi* | [**get_resource_group_by_moid**](docs/ResourceApi.md#get_resource_group_by_moid) | **GET** /api/v1/resource/Groups/{Moid} | Read a 'resource.Group' resource.
-*ResourceApi* | [**get_resource_group_list**](docs/ResourceApi.md#get_resource_group_list) | **GET** /api/v1/resource/Groups | Read a 'resource.Group' resource.
-*ResourceApi* | [**get_resource_group_member_by_moid**](docs/ResourceApi.md#get_resource_group_member_by_moid) | **GET** /api/v1/resource/GroupMembers/{Moid} | Read a 'resource.GroupMember' resource.
-*ResourceApi* | [**get_resource_group_member_list**](docs/ResourceApi.md#get_resource_group_member_list) | **GET** /api/v1/resource/GroupMembers | Read a 'resource.GroupMember' resource.
-*ResourceApi* | [**get_resource_license_resource_count_by_moid**](docs/ResourceApi.md#get_resource_license_resource_count_by_moid) | **GET** /api/v1/resource/LicenseResourceCounts/{Moid} | Read a 'resource.LicenseResourceCount' resource.
-*ResourceApi* | [**get_resource_license_resource_count_list**](docs/ResourceApi.md#get_resource_license_resource_count_list) | **GET** /api/v1/resource/LicenseResourceCounts | Read a 'resource.LicenseResourceCount' resource.
-*ResourceApi* | [**get_resource_membership_by_moid**](docs/ResourceApi.md#get_resource_membership_by_moid) | **GET** /api/v1/resource/Memberships/{Moid} | Read a 'resource.Membership' resource.
-*ResourceApi* | [**get_resource_membership_holder_by_moid**](docs/ResourceApi.md#get_resource_membership_holder_by_moid) | **GET** /api/v1/resource/MembershipHolders/{Moid} | Read a 'resource.MembershipHolder' resource.
-*ResourceApi* | [**get_resource_membership_holder_list**](docs/ResourceApi.md#get_resource_membership_holder_list) | **GET** /api/v1/resource/MembershipHolders | Read a 'resource.MembershipHolder' resource.
-*ResourceApi* | [**get_resource_membership_list**](docs/ResourceApi.md#get_resource_membership_list) | **GET** /api/v1/resource/Memberships | Read a 'resource.Membership' resource.
-*ResourceApi* | [**patch_resource_group**](docs/ResourceApi.md#patch_resource_group) | **PATCH** /api/v1/resource/Groups/{Moid} | Update a 'resource.Group' resource.
-*ResourceApi* | [**update_resource_group**](docs/ResourceApi.md#update_resource_group) | **POST** /api/v1/resource/Groups/{Moid} | Update a 'resource.Group' resource.
-*RproxyApi* | [**create_rproxy_reverse_proxy**](docs/RproxyApi.md#create_rproxy_reverse_proxy) | **POST** /api/v1/rproxy/ReverseProxies | Create a 'rproxy.ReverseProxy' resource.
-*SdcardApi* | [**create_sdcard_policy**](docs/SdcardApi.md#create_sdcard_policy) | **POST** /api/v1/sdcard/Policies | Create a 'sdcard.Policy' resource.
-*SdcardApi* | [**delete_sdcard_policy**](docs/SdcardApi.md#delete_sdcard_policy) | **DELETE** /api/v1/sdcard/Policies/{Moid} | Delete a 'sdcard.Policy' resource.
-*SdcardApi* | [**get_sdcard_policy_by_moid**](docs/SdcardApi.md#get_sdcard_policy_by_moid) | **GET** /api/v1/sdcard/Policies/{Moid} | Read a 'sdcard.Policy' resource.
-*SdcardApi* | [**get_sdcard_policy_list**](docs/SdcardApi.md#get_sdcard_policy_list) | **GET** /api/v1/sdcard/Policies | Read a 'sdcard.Policy' resource.
-*SdcardApi* | [**patch_sdcard_policy**](docs/SdcardApi.md#patch_sdcard_policy) | **PATCH** /api/v1/sdcard/Policies/{Moid} | Update a 'sdcard.Policy' resource.
-*SdcardApi* | [**update_sdcard_policy**](docs/SdcardApi.md#update_sdcard_policy) | **POST** /api/v1/sdcard/Policies/{Moid} | Update a 'sdcard.Policy' resource.
-*SdwanApi* | [**create_sdwan_profile**](docs/SdwanApi.md#create_sdwan_profile) | **POST** /api/v1/sdwan/Profiles | Create a 'sdwan.Profile' resource.
-*SdwanApi* | [**create_sdwan_router_node**](docs/SdwanApi.md#create_sdwan_router_node) | **POST** /api/v1/sdwan/RouterNodes | Create a 'sdwan.RouterNode' resource.
-*SdwanApi* | [**create_sdwan_router_policy**](docs/SdwanApi.md#create_sdwan_router_policy) | **POST** /api/v1/sdwan/RouterPolicies | Create a 'sdwan.RouterPolicy' resource.
-*SdwanApi* | [**create_sdwan_vmanage_account_policy**](docs/SdwanApi.md#create_sdwan_vmanage_account_policy) | **POST** /api/v1/sdwan/VmanageAccountPolicies | Create a 'sdwan.VmanageAccountPolicy' resource.
-*SdwanApi* | [**delete_sdwan_profile**](docs/SdwanApi.md#delete_sdwan_profile) | **DELETE** /api/v1/sdwan/Profiles/{Moid} | Delete a 'sdwan.Profile' resource.
-*SdwanApi* | [**delete_sdwan_router_node**](docs/SdwanApi.md#delete_sdwan_router_node) | **DELETE** /api/v1/sdwan/RouterNodes/{Moid} | Delete a 'sdwan.RouterNode' resource.
-*SdwanApi* | [**delete_sdwan_router_policy**](docs/SdwanApi.md#delete_sdwan_router_policy) | **DELETE** /api/v1/sdwan/RouterPolicies/{Moid} | Delete a 'sdwan.RouterPolicy' resource.
-*SdwanApi* | [**delete_sdwan_vmanage_account_policy**](docs/SdwanApi.md#delete_sdwan_vmanage_account_policy) | **DELETE** /api/v1/sdwan/VmanageAccountPolicies/{Moid} | Delete a 'sdwan.VmanageAccountPolicy' resource.
-*SdwanApi* | [**get_sdwan_profile_by_moid**](docs/SdwanApi.md#get_sdwan_profile_by_moid) | **GET** /api/v1/sdwan/Profiles/{Moid} | Read a 'sdwan.Profile' resource.
-*SdwanApi* | [**get_sdwan_profile_list**](docs/SdwanApi.md#get_sdwan_profile_list) | **GET** /api/v1/sdwan/Profiles | Read a 'sdwan.Profile' resource.
-*SdwanApi* | [**get_sdwan_router_node_by_moid**](docs/SdwanApi.md#get_sdwan_router_node_by_moid) | **GET** /api/v1/sdwan/RouterNodes/{Moid} | Read a 'sdwan.RouterNode' resource.
-*SdwanApi* | [**get_sdwan_router_node_list**](docs/SdwanApi.md#get_sdwan_router_node_list) | **GET** /api/v1/sdwan/RouterNodes | Read a 'sdwan.RouterNode' resource.
-*SdwanApi* | [**get_sdwan_router_policy_by_moid**](docs/SdwanApi.md#get_sdwan_router_policy_by_moid) | **GET** /api/v1/sdwan/RouterPolicies/{Moid} | Read a 'sdwan.RouterPolicy' resource.
-*SdwanApi* | [**get_sdwan_router_policy_list**](docs/SdwanApi.md#get_sdwan_router_policy_list) | **GET** /api/v1/sdwan/RouterPolicies | Read a 'sdwan.RouterPolicy' resource.
-*SdwanApi* | [**get_sdwan_vmanage_account_policy_by_moid**](docs/SdwanApi.md#get_sdwan_vmanage_account_policy_by_moid) | **GET** /api/v1/sdwan/VmanageAccountPolicies/{Moid} | Read a 'sdwan.VmanageAccountPolicy' resource.
-*SdwanApi* | [**get_sdwan_vmanage_account_policy_list**](docs/SdwanApi.md#get_sdwan_vmanage_account_policy_list) | **GET** /api/v1/sdwan/VmanageAccountPolicies | Read a 'sdwan.VmanageAccountPolicy' resource.
-*SdwanApi* | [**patch_sdwan_profile**](docs/SdwanApi.md#patch_sdwan_profile) | **PATCH** /api/v1/sdwan/Profiles/{Moid} | Update a 'sdwan.Profile' resource.
-*SdwanApi* | [**patch_sdwan_router_node**](docs/SdwanApi.md#patch_sdwan_router_node) | **PATCH** /api/v1/sdwan/RouterNodes/{Moid} | Update a 'sdwan.RouterNode' resource.
-*SdwanApi* | [**patch_sdwan_router_policy**](docs/SdwanApi.md#patch_sdwan_router_policy) | **PATCH** /api/v1/sdwan/RouterPolicies/{Moid} | Update a 'sdwan.RouterPolicy' resource.
-*SdwanApi* | [**patch_sdwan_vmanage_account_policy**](docs/SdwanApi.md#patch_sdwan_vmanage_account_policy) | **PATCH** /api/v1/sdwan/VmanageAccountPolicies/{Moid} | Update a 'sdwan.VmanageAccountPolicy' resource.
-*SdwanApi* | [**update_sdwan_profile**](docs/SdwanApi.md#update_sdwan_profile) | **POST** /api/v1/sdwan/Profiles/{Moid} | Update a 'sdwan.Profile' resource.
-*SdwanApi* | [**update_sdwan_router_node**](docs/SdwanApi.md#update_sdwan_router_node) | **POST** /api/v1/sdwan/RouterNodes/{Moid} | Update a 'sdwan.RouterNode' resource.
-*SdwanApi* | [**update_sdwan_router_policy**](docs/SdwanApi.md#update_sdwan_router_policy) | **POST** /api/v1/sdwan/RouterPolicies/{Moid} | Update a 'sdwan.RouterPolicy' resource.
-*SdwanApi* | [**update_sdwan_vmanage_account_policy**](docs/SdwanApi.md#update_sdwan_vmanage_account_policy) | **POST** /api/v1/sdwan/VmanageAccountPolicies/{Moid} | Update a 'sdwan.VmanageAccountPolicy' resource.
-*SearchApi* | [**create_search_suggest_item**](docs/SearchApi.md#create_search_suggest_item) | **POST** /api/v1/search/SuggestItems | Create a 'search.SuggestItem' resource.
-*SearchApi* | [**get_search_search_item_by_moid**](docs/SearchApi.md#get_search_search_item_by_moid) | **GET** /api/v1/search/SearchItems/{Moid} | Read a 'search.SearchItem' resource.
-*SearchApi* | [**get_search_search_item_list**](docs/SearchApi.md#get_search_search_item_list) | **GET** /api/v1/search/SearchItems | Read a 'search.SearchItem' resource.
-*SearchApi* | [**get_search_tag_item_by_moid**](docs/SearchApi.md#get_search_tag_item_by_moid) | **GET** /api/v1/search/TagItems/{Moid} | Read a 'search.TagItem' resource.
-*SearchApi* | [**get_search_tag_item_list**](docs/SearchApi.md#get_search_tag_item_list) | **GET** /api/v1/search/TagItems | Read a 'search.TagItem' resource.
-*SecurityApi* | [**get_security_unit_by_moid**](docs/SecurityApi.md#get_security_unit_by_moid) | **GET** /api/v1/security/Units/{Moid} | Read a 'security.Unit' resource.
-*SecurityApi* | [**get_security_unit_list**](docs/SecurityApi.md#get_security_unit_list) | **GET** /api/v1/security/Units | Read a 'security.Unit' resource.
-*SecurityApi* | [**patch_security_unit**](docs/SecurityApi.md#patch_security_unit) | **PATCH** /api/v1/security/Units/{Moid} | Update a 'security.Unit' resource.
-*SecurityApi* | [**update_security_unit**](docs/SecurityApi.md#update_security_unit) | **POST** /api/v1/security/Units/{Moid} | Update a 'security.Unit' resource.
-*ServerApi* | [**create_server_config_import**](docs/ServerApi.md#create_server_config_import) | **POST** /api/v1/server/ConfigImports | Create a 'server.ConfigImport' resource.
-*ServerApi* | [**create_server_profile**](docs/ServerApi.md#create_server_profile) | **POST** /api/v1/server/Profiles | Create a 'server.Profile' resource.
-*ServerApi* | [**create_server_profile_template**](docs/ServerApi.md#create_server_profile_template) | **POST** /api/v1/server/ProfileTemplates | Create a 'server.ProfileTemplate' resource.
-*ServerApi* | [**delete_server_profile**](docs/ServerApi.md#delete_server_profile) | **DELETE** /api/v1/server/Profiles/{Moid} | Delete a 'server.Profile' resource.
-*ServerApi* | [**delete_server_profile_template**](docs/ServerApi.md#delete_server_profile_template) | **DELETE** /api/v1/server/ProfileTemplates/{Moid} | Delete a 'server.ProfileTemplate' resource.
-*ServerApi* | [**get_server_config_change_detail_by_moid**](docs/ServerApi.md#get_server_config_change_detail_by_moid) | **GET** /api/v1/server/ConfigChangeDetails/{Moid} | Read a 'server.ConfigChangeDetail' resource.
-*ServerApi* | [**get_server_config_change_detail_list**](docs/ServerApi.md#get_server_config_change_detail_list) | **GET** /api/v1/server/ConfigChangeDetails | Read a 'server.ConfigChangeDetail' resource.
-*ServerApi* | [**get_server_config_import_by_moid**](docs/ServerApi.md#get_server_config_import_by_moid) | **GET** /api/v1/server/ConfigImports/{Moid} | Read a 'server.ConfigImport' resource.
-*ServerApi* | [**get_server_config_import_list**](docs/ServerApi.md#get_server_config_import_list) | **GET** /api/v1/server/ConfigImports | Read a 'server.ConfigImport' resource.
-*ServerApi* | [**get_server_config_result_by_moid**](docs/ServerApi.md#get_server_config_result_by_moid) | **GET** /api/v1/server/ConfigResults/{Moid} | Read a 'server.ConfigResult' resource.
-*ServerApi* | [**get_server_config_result_entry_by_moid**](docs/ServerApi.md#get_server_config_result_entry_by_moid) | **GET** /api/v1/server/ConfigResultEntries/{Moid} | Read a 'server.ConfigResultEntry' resource.
-*ServerApi* | [**get_server_config_result_entry_list**](docs/ServerApi.md#get_server_config_result_entry_list) | **GET** /api/v1/server/ConfigResultEntries | Read a 'server.ConfigResultEntry' resource.
-*ServerApi* | [**get_server_config_result_list**](docs/ServerApi.md#get_server_config_result_list) | **GET** /api/v1/server/ConfigResults | Read a 'server.ConfigResult' resource.
-*ServerApi* | [**get_server_profile_by_moid**](docs/ServerApi.md#get_server_profile_by_moid) | **GET** /api/v1/server/Profiles/{Moid} | Read a 'server.Profile' resource.
-*ServerApi* | [**get_server_profile_list**](docs/ServerApi.md#get_server_profile_list) | **GET** /api/v1/server/Profiles | Read a 'server.Profile' resource.
-*ServerApi* | [**get_server_profile_template_by_moid**](docs/ServerApi.md#get_server_profile_template_by_moid) | **GET** /api/v1/server/ProfileTemplates/{Moid} | Read a 'server.ProfileTemplate' resource.
-*ServerApi* | [**get_server_profile_template_list**](docs/ServerApi.md#get_server_profile_template_list) | **GET** /api/v1/server/ProfileTemplates | Read a 'server.ProfileTemplate' resource.
-*ServerApi* | [**patch_server_profile**](docs/ServerApi.md#patch_server_profile) | **PATCH** /api/v1/server/Profiles/{Moid} | Update a 'server.Profile' resource.
-*ServerApi* | [**patch_server_profile_template**](docs/ServerApi.md#patch_server_profile_template) | **PATCH** /api/v1/server/ProfileTemplates/{Moid} | Update a 'server.ProfileTemplate' resource.
-*ServerApi* | [**update_server_profile**](docs/ServerApi.md#update_server_profile) | **POST** /api/v1/server/Profiles/{Moid} | Update a 'server.Profile' resource.
-*ServerApi* | [**update_server_profile_template**](docs/ServerApi.md#update_server_profile_template) | **POST** /api/v1/server/ProfileTemplates/{Moid} | Update a 'server.ProfileTemplate' resource.
-*SmtpApi* | [**create_smtp_policy**](docs/SmtpApi.md#create_smtp_policy) | **POST** /api/v1/smtp/Policies | Create a 'smtp.Policy' resource.
-*SmtpApi* | [**delete_smtp_policy**](docs/SmtpApi.md#delete_smtp_policy) | **DELETE** /api/v1/smtp/Policies/{Moid} | Delete a 'smtp.Policy' resource.
-*SmtpApi* | [**get_smtp_policy_by_moid**](docs/SmtpApi.md#get_smtp_policy_by_moid) | **GET** /api/v1/smtp/Policies/{Moid} | Read a 'smtp.Policy' resource.
-*SmtpApi* | [**get_smtp_policy_list**](docs/SmtpApi.md#get_smtp_policy_list) | **GET** /api/v1/smtp/Policies | Read a 'smtp.Policy' resource.
-*SmtpApi* | [**patch_smtp_policy**](docs/SmtpApi.md#patch_smtp_policy) | **PATCH** /api/v1/smtp/Policies/{Moid} | Update a 'smtp.Policy' resource.
-*SmtpApi* | [**update_smtp_policy**](docs/SmtpApi.md#update_smtp_policy) | **POST** /api/v1/smtp/Policies/{Moid} | Update a 'smtp.Policy' resource.
-*SnmpApi* | [**create_snmp_policy**](docs/SnmpApi.md#create_snmp_policy) | **POST** /api/v1/snmp/Policies | Create a 'snmp.Policy' resource.
-*SnmpApi* | [**delete_snmp_policy**](docs/SnmpApi.md#delete_snmp_policy) | **DELETE** /api/v1/snmp/Policies/{Moid} | Delete a 'snmp.Policy' resource.
-*SnmpApi* | [**get_snmp_policy_by_moid**](docs/SnmpApi.md#get_snmp_policy_by_moid) | **GET** /api/v1/snmp/Policies/{Moid} | Read a 'snmp.Policy' resource.
-*SnmpApi* | [**get_snmp_policy_list**](docs/SnmpApi.md#get_snmp_policy_list) | **GET** /api/v1/snmp/Policies | Read a 'snmp.Policy' resource.
-*SnmpApi* | [**patch_snmp_policy**](docs/SnmpApi.md#patch_snmp_policy) | **PATCH** /api/v1/snmp/Policies/{Moid} | Update a 'snmp.Policy' resource.
-*SnmpApi* | [**update_snmp_policy**](docs/SnmpApi.md#update_snmp_policy) | **POST** /api/v1/snmp/Policies/{Moid} | Update a 'snmp.Policy' resource.
-*SoftwareApi* | [**create_software_appliance_distributable**](docs/SoftwareApi.md#create_software_appliance_distributable) | **POST** /api/v1/software/ApplianceDistributables | Create a 'software.ApplianceDistributable' resource.
-*SoftwareApi* | [**create_software_hcl_meta**](docs/SoftwareApi.md#create_software_hcl_meta) | **POST** /api/v1/software/HclMeta | Create a 'software.HclMeta' resource.
-*SoftwareApi* | [**create_software_hyperflex_bundle_distributable**](docs/SoftwareApi.md#create_software_hyperflex_bundle_distributable) | **POST** /api/v1/software/HyperflexBundleDistributables | Create a 'software.HyperflexBundleDistributable' resource.
-*SoftwareApi* | [**create_software_hyperflex_distributable**](docs/SoftwareApi.md#create_software_hyperflex_distributable) | **POST** /api/v1/software/HyperflexDistributables | Create a 'software.HyperflexDistributable' resource.
-*SoftwareApi* | [**create_software_release_meta**](docs/SoftwareApi.md#create_software_release_meta) | **POST** /api/v1/software/ReleaseMeta | Create a 'software.ReleaseMeta' resource.
-*SoftwareApi* | [**create_software_solution_distributable**](docs/SoftwareApi.md#create_software_solution_distributable) | **POST** /api/v1/software/SolutionDistributables | Create a 'software.SolutionDistributable' resource.
-*SoftwareApi* | [**create_software_ucsd_bundle_distributable**](docs/SoftwareApi.md#create_software_ucsd_bundle_distributable) | **POST** /api/v1/software/UcsdBundleDistributables | Create a 'software.UcsdBundleDistributable' resource.
-*SoftwareApi* | [**create_software_ucsd_distributable**](docs/SoftwareApi.md#create_software_ucsd_distributable) | **POST** /api/v1/software/UcsdDistributables | Create a 'software.UcsdDistributable' resource.
-*SoftwareApi* | [**delete_software_appliance_distributable**](docs/SoftwareApi.md#delete_software_appliance_distributable) | **DELETE** /api/v1/software/ApplianceDistributables/{Moid} | Delete a 'software.ApplianceDistributable' resource.
-*SoftwareApi* | [**delete_software_hcl_meta**](docs/SoftwareApi.md#delete_software_hcl_meta) | **DELETE** /api/v1/software/HclMeta/{Moid} | Delete a 'software.HclMeta' resource.
-*SoftwareApi* | [**delete_software_hyperflex_bundle_distributable**](docs/SoftwareApi.md#delete_software_hyperflex_bundle_distributable) | **DELETE** /api/v1/software/HyperflexBundleDistributables/{Moid} | Delete a 'software.HyperflexBundleDistributable' resource.
-*SoftwareApi* | [**delete_software_hyperflex_distributable**](docs/SoftwareApi.md#delete_software_hyperflex_distributable) | **DELETE** /api/v1/software/HyperflexDistributables/{Moid} | Delete a 'software.HyperflexDistributable' resource.
-*SoftwareApi* | [**delete_software_release_meta**](docs/SoftwareApi.md#delete_software_release_meta) | **DELETE** /api/v1/software/ReleaseMeta/{Moid} | Delete a 'software.ReleaseMeta' resource.
-*SoftwareApi* | [**delete_software_solution_distributable**](docs/SoftwareApi.md#delete_software_solution_distributable) | **DELETE** /api/v1/software/SolutionDistributables/{Moid} | Delete a 'software.SolutionDistributable' resource.
-*SoftwareApi* | [**delete_software_ucsd_bundle_distributable**](docs/SoftwareApi.md#delete_software_ucsd_bundle_distributable) | **DELETE** /api/v1/software/UcsdBundleDistributables/{Moid} | Delete a 'software.UcsdBundleDistributable' resource.
-*SoftwareApi* | [**delete_software_ucsd_distributable**](docs/SoftwareApi.md#delete_software_ucsd_distributable) | **DELETE** /api/v1/software/UcsdDistributables/{Moid} | Delete a 'software.UcsdDistributable' resource.
-*SoftwareApi* | [**get_software_appliance_distributable_by_moid**](docs/SoftwareApi.md#get_software_appliance_distributable_by_moid) | **GET** /api/v1/software/ApplianceDistributables/{Moid} | Read a 'software.ApplianceDistributable' resource.
-*SoftwareApi* | [**get_software_appliance_distributable_list**](docs/SoftwareApi.md#get_software_appliance_distributable_list) | **GET** /api/v1/software/ApplianceDistributables | Read a 'software.ApplianceDistributable' resource.
-*SoftwareApi* | [**get_software_download_history_by_moid**](docs/SoftwareApi.md#get_software_download_history_by_moid) | **GET** /api/v1/software/DownloadHistories/{Moid} | Read a 'software.DownloadHistory' resource.
-*SoftwareApi* | [**get_software_download_history_list**](docs/SoftwareApi.md#get_software_download_history_list) | **GET** /api/v1/software/DownloadHistories | Read a 'software.DownloadHistory' resource.
-*SoftwareApi* | [**get_software_hcl_meta_by_moid**](docs/SoftwareApi.md#get_software_hcl_meta_by_moid) | **GET** /api/v1/software/HclMeta/{Moid} | Read a 'software.HclMeta' resource.
-*SoftwareApi* | [**get_software_hcl_meta_list**](docs/SoftwareApi.md#get_software_hcl_meta_list) | **GET** /api/v1/software/HclMeta | Read a 'software.HclMeta' resource.
-*SoftwareApi* | [**get_software_hyperflex_bundle_distributable_by_moid**](docs/SoftwareApi.md#get_software_hyperflex_bundle_distributable_by_moid) | **GET** /api/v1/software/HyperflexBundleDistributables/{Moid} | Read a 'software.HyperflexBundleDistributable' resource.
-*SoftwareApi* | [**get_software_hyperflex_bundle_distributable_list**](docs/SoftwareApi.md#get_software_hyperflex_bundle_distributable_list) | **GET** /api/v1/software/HyperflexBundleDistributables | Read a 'software.HyperflexBundleDistributable' resource.
-*SoftwareApi* | [**get_software_hyperflex_distributable_by_moid**](docs/SoftwareApi.md#get_software_hyperflex_distributable_by_moid) | **GET** /api/v1/software/HyperflexDistributables/{Moid} | Read a 'software.HyperflexDistributable' resource.
-*SoftwareApi* | [**get_software_hyperflex_distributable_list**](docs/SoftwareApi.md#get_software_hyperflex_distributable_list) | **GET** /api/v1/software/HyperflexDistributables | Read a 'software.HyperflexDistributable' resource.
-*SoftwareApi* | [**get_software_release_meta_by_moid**](docs/SoftwareApi.md#get_software_release_meta_by_moid) | **GET** /api/v1/software/ReleaseMeta/{Moid} | Read a 'software.ReleaseMeta' resource.
-*SoftwareApi* | [**get_software_release_meta_list**](docs/SoftwareApi.md#get_software_release_meta_list) | **GET** /api/v1/software/ReleaseMeta | Read a 'software.ReleaseMeta' resource.
-*SoftwareApi* | [**get_software_solution_distributable_by_moid**](docs/SoftwareApi.md#get_software_solution_distributable_by_moid) | **GET** /api/v1/software/SolutionDistributables/{Moid} | Read a 'software.SolutionDistributable' resource.
-*SoftwareApi* | [**get_software_solution_distributable_list**](docs/SoftwareApi.md#get_software_solution_distributable_list) | **GET** /api/v1/software/SolutionDistributables | Read a 'software.SolutionDistributable' resource.
-*SoftwareApi* | [**get_software_ucsd_bundle_distributable_by_moid**](docs/SoftwareApi.md#get_software_ucsd_bundle_distributable_by_moid) | **GET** /api/v1/software/UcsdBundleDistributables/{Moid} | Read a 'software.UcsdBundleDistributable' resource.
-*SoftwareApi* | [**get_software_ucsd_bundle_distributable_list**](docs/SoftwareApi.md#get_software_ucsd_bundle_distributable_list) | **GET** /api/v1/software/UcsdBundleDistributables | Read a 'software.UcsdBundleDistributable' resource.
-*SoftwareApi* | [**get_software_ucsd_distributable_by_moid**](docs/SoftwareApi.md#get_software_ucsd_distributable_by_moid) | **GET** /api/v1/software/UcsdDistributables/{Moid} | Read a 'software.UcsdDistributable' resource.
-*SoftwareApi* | [**get_software_ucsd_distributable_list**](docs/SoftwareApi.md#get_software_ucsd_distributable_list) | **GET** /api/v1/software/UcsdDistributables | Read a 'software.UcsdDistributable' resource.
-*SoftwareApi* | [**patch_software_appliance_distributable**](docs/SoftwareApi.md#patch_software_appliance_distributable) | **PATCH** /api/v1/software/ApplianceDistributables/{Moid} | Update a 'software.ApplianceDistributable' resource.
-*SoftwareApi* | [**patch_software_hcl_meta**](docs/SoftwareApi.md#patch_software_hcl_meta) | **PATCH** /api/v1/software/HclMeta/{Moid} | Update a 'software.HclMeta' resource.
-*SoftwareApi* | [**patch_software_hyperflex_bundle_distributable**](docs/SoftwareApi.md#patch_software_hyperflex_bundle_distributable) | **PATCH** /api/v1/software/HyperflexBundleDistributables/{Moid} | Update a 'software.HyperflexBundleDistributable' resource.
-*SoftwareApi* | [**patch_software_hyperflex_distributable**](docs/SoftwareApi.md#patch_software_hyperflex_distributable) | **PATCH** /api/v1/software/HyperflexDistributables/{Moid} | Update a 'software.HyperflexDistributable' resource.
-*SoftwareApi* | [**patch_software_release_meta**](docs/SoftwareApi.md#patch_software_release_meta) | **PATCH** /api/v1/software/ReleaseMeta/{Moid} | Update a 'software.ReleaseMeta' resource.
-*SoftwareApi* | [**patch_software_solution_distributable**](docs/SoftwareApi.md#patch_software_solution_distributable) | **PATCH** /api/v1/software/SolutionDistributables/{Moid} | Update a 'software.SolutionDistributable' resource.
-*SoftwareApi* | [**patch_software_ucsd_bundle_distributable**](docs/SoftwareApi.md#patch_software_ucsd_bundle_distributable) | **PATCH** /api/v1/software/UcsdBundleDistributables/{Moid} | Update a 'software.UcsdBundleDistributable' resource.
-*SoftwareApi* | [**patch_software_ucsd_distributable**](docs/SoftwareApi.md#patch_software_ucsd_distributable) | **PATCH** /api/v1/software/UcsdDistributables/{Moid} | Update a 'software.UcsdDistributable' resource.
-*SoftwareApi* | [**update_software_appliance_distributable**](docs/SoftwareApi.md#update_software_appliance_distributable) | **POST** /api/v1/software/ApplianceDistributables/{Moid} | Update a 'software.ApplianceDistributable' resource.
-*SoftwareApi* | [**update_software_hcl_meta**](docs/SoftwareApi.md#update_software_hcl_meta) | **POST** /api/v1/software/HclMeta/{Moid} | Update a 'software.HclMeta' resource.
-*SoftwareApi* | [**update_software_hyperflex_bundle_distributable**](docs/SoftwareApi.md#update_software_hyperflex_bundle_distributable) | **POST** /api/v1/software/HyperflexBundleDistributables/{Moid} | Update a 'software.HyperflexBundleDistributable' resource.
-*SoftwareApi* | [**update_software_hyperflex_distributable**](docs/SoftwareApi.md#update_software_hyperflex_distributable) | **POST** /api/v1/software/HyperflexDistributables/{Moid} | Update a 'software.HyperflexDistributable' resource.
-*SoftwareApi* | [**update_software_release_meta**](docs/SoftwareApi.md#update_software_release_meta) | **POST** /api/v1/software/ReleaseMeta/{Moid} | Update a 'software.ReleaseMeta' resource.
-*SoftwareApi* | [**update_software_solution_distributable**](docs/SoftwareApi.md#update_software_solution_distributable) | **POST** /api/v1/software/SolutionDistributables/{Moid} | Update a 'software.SolutionDistributable' resource.
-*SoftwareApi* | [**update_software_ucsd_bundle_distributable**](docs/SoftwareApi.md#update_software_ucsd_bundle_distributable) | **POST** /api/v1/software/UcsdBundleDistributables/{Moid} | Update a 'software.UcsdBundleDistributable' resource.
-*SoftwareApi* | [**update_software_ucsd_distributable**](docs/SoftwareApi.md#update_software_ucsd_distributable) | **POST** /api/v1/software/UcsdDistributables/{Moid} | Update a 'software.UcsdDistributable' resource.
-*SoftwarerepositoryApi* | [**create_softwarerepository_authorization**](docs/SoftwarerepositoryApi.md#create_softwarerepository_authorization) | **POST** /api/v1/softwarerepository/Authorizations | Create a 'softwarerepository.Authorization' resource.
-*SoftwarerepositoryApi* | [**create_softwarerepository_category_mapper**](docs/SoftwarerepositoryApi.md#create_softwarerepository_category_mapper) | **POST** /api/v1/softwarerepository/CategoryMappers | Create a 'softwarerepository.CategoryMapper' resource.
-*SoftwarerepositoryApi* | [**create_softwarerepository_category_mapper_model**](docs/SoftwarerepositoryApi.md#create_softwarerepository_category_mapper_model) | **POST** /api/v1/softwarerepository/CategoryMapperModels | Create a 'softwarerepository.CategoryMapperModel' resource.
-*SoftwarerepositoryApi* | [**create_softwarerepository_category_support_constraint**](docs/SoftwarerepositoryApi.md#create_softwarerepository_category_support_constraint) | **POST** /api/v1/softwarerepository/CategorySupportConstraints | Create a 'softwarerepository.CategorySupportConstraint' resource.
-*SoftwarerepositoryApi* | [**create_softwarerepository_operating_system_file**](docs/SoftwarerepositoryApi.md#create_softwarerepository_operating_system_file) | **POST** /api/v1/softwarerepository/OperatingSystemFiles | Create a 'softwarerepository.OperatingSystemFile' resource.
-*SoftwarerepositoryApi* | [**create_softwarerepository_release**](docs/SoftwarerepositoryApi.md#create_softwarerepository_release) | **POST** /api/v1/softwarerepository/Releases | Create a 'softwarerepository.Release' resource.
-*SoftwarerepositoryApi* | [**delete_softwarerepository_category_mapper**](docs/SoftwarerepositoryApi.md#delete_softwarerepository_category_mapper) | **DELETE** /api/v1/softwarerepository/CategoryMappers/{Moid} | Delete a 'softwarerepository.CategoryMapper' resource.
-*SoftwarerepositoryApi* | [**delete_softwarerepository_category_mapper_model**](docs/SoftwarerepositoryApi.md#delete_softwarerepository_category_mapper_model) | **DELETE** /api/v1/softwarerepository/CategoryMapperModels/{Moid} | Delete a 'softwarerepository.CategoryMapperModel' resource.
-*SoftwarerepositoryApi* | [**delete_softwarerepository_category_support_constraint**](docs/SoftwarerepositoryApi.md#delete_softwarerepository_category_support_constraint) | **DELETE** /api/v1/softwarerepository/CategorySupportConstraints/{Moid} | Delete a 'softwarerepository.CategorySupportConstraint' resource.
-*SoftwarerepositoryApi* | [**delete_softwarerepository_operating_system_file**](docs/SoftwarerepositoryApi.md#delete_softwarerepository_operating_system_file) | **DELETE** /api/v1/softwarerepository/OperatingSystemFiles/{Moid} | Delete a 'softwarerepository.OperatingSystemFile' resource.
-*SoftwarerepositoryApi* | [**delete_softwarerepository_release**](docs/SoftwarerepositoryApi.md#delete_softwarerepository_release) | **DELETE** /api/v1/softwarerepository/Releases/{Moid} | Delete a 'softwarerepository.Release' resource.
-*SoftwarerepositoryApi* | [**get_softwarerepository_authorization_by_moid**](docs/SoftwarerepositoryApi.md#get_softwarerepository_authorization_by_moid) | **GET** /api/v1/softwarerepository/Authorizations/{Moid} | Read a 'softwarerepository.Authorization' resource.
-*SoftwarerepositoryApi* | [**get_softwarerepository_authorization_list**](docs/SoftwarerepositoryApi.md#get_softwarerepository_authorization_list) | **GET** /api/v1/softwarerepository/Authorizations | Read a 'softwarerepository.Authorization' resource.
-*SoftwarerepositoryApi* | [**get_softwarerepository_cached_image_by_moid**](docs/SoftwarerepositoryApi.md#get_softwarerepository_cached_image_by_moid) | **GET** /api/v1/softwarerepository/CachedImages/{Moid} | Read a 'softwarerepository.CachedImage' resource.
-*SoftwarerepositoryApi* | [**get_softwarerepository_cached_image_list**](docs/SoftwarerepositoryApi.md#get_softwarerepository_cached_image_list) | **GET** /api/v1/softwarerepository/CachedImages | Read a 'softwarerepository.CachedImage' resource.
-*SoftwarerepositoryApi* | [**get_softwarerepository_catalog_by_moid**](docs/SoftwarerepositoryApi.md#get_softwarerepository_catalog_by_moid) | **GET** /api/v1/softwarerepository/Catalogs/{Moid} | Read a 'softwarerepository.Catalog' resource.
-*SoftwarerepositoryApi* | [**get_softwarerepository_catalog_list**](docs/SoftwarerepositoryApi.md#get_softwarerepository_catalog_list) | **GET** /api/v1/softwarerepository/Catalogs | Read a 'softwarerepository.Catalog' resource.
-*SoftwarerepositoryApi* | [**get_softwarerepository_category_mapper_by_moid**](docs/SoftwarerepositoryApi.md#get_softwarerepository_category_mapper_by_moid) | **GET** /api/v1/softwarerepository/CategoryMappers/{Moid} | Read a 'softwarerepository.CategoryMapper' resource.
-*SoftwarerepositoryApi* | [**get_softwarerepository_category_mapper_list**](docs/SoftwarerepositoryApi.md#get_softwarerepository_category_mapper_list) | **GET** /api/v1/softwarerepository/CategoryMappers | Read a 'softwarerepository.CategoryMapper' resource.
-*SoftwarerepositoryApi* | [**get_softwarerepository_category_mapper_model_by_moid**](docs/SoftwarerepositoryApi.md#get_softwarerepository_category_mapper_model_by_moid) | **GET** /api/v1/softwarerepository/CategoryMapperModels/{Moid} | Read a 'softwarerepository.CategoryMapperModel' resource.
-*SoftwarerepositoryApi* | [**get_softwarerepository_category_mapper_model_list**](docs/SoftwarerepositoryApi.md#get_softwarerepository_category_mapper_model_list) | **GET** /api/v1/softwarerepository/CategoryMapperModels | Read a 'softwarerepository.CategoryMapperModel' resource.
-*SoftwarerepositoryApi* | [**get_softwarerepository_category_support_constraint_by_moid**](docs/SoftwarerepositoryApi.md#get_softwarerepository_category_support_constraint_by_moid) | **GET** /api/v1/softwarerepository/CategorySupportConstraints/{Moid} | Read a 'softwarerepository.CategorySupportConstraint' resource.
-*SoftwarerepositoryApi* | [**get_softwarerepository_category_support_constraint_list**](docs/SoftwarerepositoryApi.md#get_softwarerepository_category_support_constraint_list) | **GET** /api/v1/softwarerepository/CategorySupportConstraints | Read a 'softwarerepository.CategorySupportConstraint' resource.
-*SoftwarerepositoryApi* | [**get_softwarerepository_download_spec_by_moid**](docs/SoftwarerepositoryApi.md#get_softwarerepository_download_spec_by_moid) | **GET** /api/v1/softwarerepository/DownloadSpecs/{Moid} | Read a 'softwarerepository.DownloadSpec' resource.
-*SoftwarerepositoryApi* | [**get_softwarerepository_download_spec_list**](docs/SoftwarerepositoryApi.md#get_softwarerepository_download_spec_list) | **GET** /api/v1/softwarerepository/DownloadSpecs | Read a 'softwarerepository.DownloadSpec' resource.
-*SoftwarerepositoryApi* | [**get_softwarerepository_operating_system_file_by_moid**](docs/SoftwarerepositoryApi.md#get_softwarerepository_operating_system_file_by_moid) | **GET** /api/v1/softwarerepository/OperatingSystemFiles/{Moid} | Read a 'softwarerepository.OperatingSystemFile' resource.
-*SoftwarerepositoryApi* | [**get_softwarerepository_operating_system_file_list**](docs/SoftwarerepositoryApi.md#get_softwarerepository_operating_system_file_list) | **GET** /api/v1/softwarerepository/OperatingSystemFiles | Read a 'softwarerepository.OperatingSystemFile' resource.
-*SoftwarerepositoryApi* | [**get_softwarerepository_release_by_moid**](docs/SoftwarerepositoryApi.md#get_softwarerepository_release_by_moid) | **GET** /api/v1/softwarerepository/Releases/{Moid} | Read a 'softwarerepository.Release' resource.
-*SoftwarerepositoryApi* | [**get_softwarerepository_release_list**](docs/SoftwarerepositoryApi.md#get_softwarerepository_release_list) | **GET** /api/v1/softwarerepository/Releases | Read a 'softwarerepository.Release' resource.
-*SoftwarerepositoryApi* | [**patch_softwarerepository_authorization**](docs/SoftwarerepositoryApi.md#patch_softwarerepository_authorization) | **PATCH** /api/v1/softwarerepository/Authorizations/{Moid} | Update a 'softwarerepository.Authorization' resource.
-*SoftwarerepositoryApi* | [**patch_softwarerepository_category_mapper**](docs/SoftwarerepositoryApi.md#patch_softwarerepository_category_mapper) | **PATCH** /api/v1/softwarerepository/CategoryMappers/{Moid} | Update a 'softwarerepository.CategoryMapper' resource.
-*SoftwarerepositoryApi* | [**patch_softwarerepository_category_mapper_model**](docs/SoftwarerepositoryApi.md#patch_softwarerepository_category_mapper_model) | **PATCH** /api/v1/softwarerepository/CategoryMapperModels/{Moid} | Update a 'softwarerepository.CategoryMapperModel' resource.
-*SoftwarerepositoryApi* | [**patch_softwarerepository_category_support_constraint**](docs/SoftwarerepositoryApi.md#patch_softwarerepository_category_support_constraint) | **PATCH** /api/v1/softwarerepository/CategorySupportConstraints/{Moid} | Update a 'softwarerepository.CategorySupportConstraint' resource.
-*SoftwarerepositoryApi* | [**patch_softwarerepository_operating_system_file**](docs/SoftwarerepositoryApi.md#patch_softwarerepository_operating_system_file) | **PATCH** /api/v1/softwarerepository/OperatingSystemFiles/{Moid} | Update a 'softwarerepository.OperatingSystemFile' resource.
-*SoftwarerepositoryApi* | [**patch_softwarerepository_release**](docs/SoftwarerepositoryApi.md#patch_softwarerepository_release) | **PATCH** /api/v1/softwarerepository/Releases/{Moid} | Update a 'softwarerepository.Release' resource.
-*SoftwarerepositoryApi* | [**update_softwarerepository_authorization**](docs/SoftwarerepositoryApi.md#update_softwarerepository_authorization) | **POST** /api/v1/softwarerepository/Authorizations/{Moid} | Update a 'softwarerepository.Authorization' resource.
-*SoftwarerepositoryApi* | [**update_softwarerepository_category_mapper**](docs/SoftwarerepositoryApi.md#update_softwarerepository_category_mapper) | **POST** /api/v1/softwarerepository/CategoryMappers/{Moid} | Update a 'softwarerepository.CategoryMapper' resource.
-*SoftwarerepositoryApi* | [**update_softwarerepository_category_mapper_model**](docs/SoftwarerepositoryApi.md#update_softwarerepository_category_mapper_model) | **POST** /api/v1/softwarerepository/CategoryMapperModels/{Moid} | Update a 'softwarerepository.CategoryMapperModel' resource.
-*SoftwarerepositoryApi* | [**update_softwarerepository_category_support_constraint**](docs/SoftwarerepositoryApi.md#update_softwarerepository_category_support_constraint) | **POST** /api/v1/softwarerepository/CategorySupportConstraints/{Moid} | Update a 'softwarerepository.CategorySupportConstraint' resource.
-*SoftwarerepositoryApi* | [**update_softwarerepository_operating_system_file**](docs/SoftwarerepositoryApi.md#update_softwarerepository_operating_system_file) | **POST** /api/v1/softwarerepository/OperatingSystemFiles/{Moid} | Update a 'softwarerepository.OperatingSystemFile' resource.
-*SoftwarerepositoryApi* | [**update_softwarerepository_release**](docs/SoftwarerepositoryApi.md#update_softwarerepository_release) | **POST** /api/v1/softwarerepository/Releases/{Moid} | Update a 'softwarerepository.Release' resource.
-*SolApi* | [**create_sol_policy**](docs/SolApi.md#create_sol_policy) | **POST** /api/v1/sol/Policies | Create a 'sol.Policy' resource.
-*SolApi* | [**delete_sol_policy**](docs/SolApi.md#delete_sol_policy) | **DELETE** /api/v1/sol/Policies/{Moid} | Delete a 'sol.Policy' resource.
-*SolApi* | [**get_sol_policy_by_moid**](docs/SolApi.md#get_sol_policy_by_moid) | **GET** /api/v1/sol/Policies/{Moid} | Read a 'sol.Policy' resource.
-*SolApi* | [**get_sol_policy_list**](docs/SolApi.md#get_sol_policy_list) | **GET** /api/v1/sol/Policies | Read a 'sol.Policy' resource.
-*SolApi* | [**patch_sol_policy**](docs/SolApi.md#patch_sol_policy) | **PATCH** /api/v1/sol/Policies/{Moid} | Update a 'sol.Policy' resource.
-*SolApi* | [**update_sol_policy**](docs/SolApi.md#update_sol_policy) | **POST** /api/v1/sol/Policies/{Moid} | Update a 'sol.Policy' resource.
-*SshApi* | [**create_ssh_policy**](docs/SshApi.md#create_ssh_policy) | **POST** /api/v1/ssh/Policies | Create a 'ssh.Policy' resource.
-*SshApi* | [**delete_ssh_policy**](docs/SshApi.md#delete_ssh_policy) | **DELETE** /api/v1/ssh/Policies/{Moid} | Delete a 'ssh.Policy' resource.
-*SshApi* | [**get_ssh_policy_by_moid**](docs/SshApi.md#get_ssh_policy_by_moid) | **GET** /api/v1/ssh/Policies/{Moid} | Read a 'ssh.Policy' resource.
-*SshApi* | [**get_ssh_policy_list**](docs/SshApi.md#get_ssh_policy_list) | **GET** /api/v1/ssh/Policies | Read a 'ssh.Policy' resource.
-*SshApi* | [**patch_ssh_policy**](docs/SshApi.md#patch_ssh_policy) | **PATCH** /api/v1/ssh/Policies/{Moid} | Update a 'ssh.Policy' resource.
-*SshApi* | [**update_ssh_policy**](docs/SshApi.md#update_ssh_policy) | **POST** /api/v1/ssh/Policies/{Moid} | Update a 'ssh.Policy' resource.
-*StorageApi* | [**create_storage_drive_group**](docs/StorageApi.md#create_storage_drive_group) | **POST** /api/v1/storage/DriveGroups | Create a 'storage.DriveGroup' resource.
-*StorageApi* | [**create_storage_storage_policy**](docs/StorageApi.md#create_storage_storage_policy) | **POST** /api/v1/storage/StoragePolicies | Create a 'storage.StoragePolicy' resource.
-*StorageApi* | [**delete_storage_drive_group**](docs/StorageApi.md#delete_storage_drive_group) | **DELETE** /api/v1/storage/DriveGroups/{Moid} | Delete a 'storage.DriveGroup' resource.
-*StorageApi* | [**delete_storage_storage_policy**](docs/StorageApi.md#delete_storage_storage_policy) | **DELETE** /api/v1/storage/StoragePolicies/{Moid} | Delete a 'storage.StoragePolicy' resource.
-*StorageApi* | [**get_storage_controller_by_moid**](docs/StorageApi.md#get_storage_controller_by_moid) | **GET** /api/v1/storage/Controllers/{Moid} | Read a 'storage.Controller' resource.
-*StorageApi* | [**get_storage_controller_list**](docs/StorageApi.md#get_storage_controller_list) | **GET** /api/v1/storage/Controllers | Read a 'storage.Controller' resource.
-*StorageApi* | [**get_storage_disk_group_by_moid**](docs/StorageApi.md#get_storage_disk_group_by_moid) | **GET** /api/v1/storage/DiskGroups/{Moid} | Read a 'storage.DiskGroup' resource.
-*StorageApi* | [**get_storage_disk_group_list**](docs/StorageApi.md#get_storage_disk_group_list) | **GET** /api/v1/storage/DiskGroups | Read a 'storage.DiskGroup' resource.
-*StorageApi* | [**get_storage_disk_slot_by_moid**](docs/StorageApi.md#get_storage_disk_slot_by_moid) | **GET** /api/v1/storage/DiskSlots/{Moid} | Read a 'storage.DiskSlot' resource.
-*StorageApi* | [**get_storage_disk_slot_list**](docs/StorageApi.md#get_storage_disk_slot_list) | **GET** /api/v1/storage/DiskSlots | Read a 'storage.DiskSlot' resource.
-*StorageApi* | [**get_storage_drive_group_by_moid**](docs/StorageApi.md#get_storage_drive_group_by_moid) | **GET** /api/v1/storage/DriveGroups/{Moid} | Read a 'storage.DriveGroup' resource.
-*StorageApi* | [**get_storage_drive_group_list**](docs/StorageApi.md#get_storage_drive_group_list) | **GET** /api/v1/storage/DriveGroups | Read a 'storage.DriveGroup' resource.
-*StorageApi* | [**get_storage_enclosure_by_moid**](docs/StorageApi.md#get_storage_enclosure_by_moid) | **GET** /api/v1/storage/Enclosures/{Moid} | Read a 'storage.Enclosure' resource.
-*StorageApi* | [**get_storage_enclosure_disk_by_moid**](docs/StorageApi.md#get_storage_enclosure_disk_by_moid) | **GET** /api/v1/storage/EnclosureDisks/{Moid} | Read a 'storage.EnclosureDisk' resource.
-*StorageApi* | [**get_storage_enclosure_disk_list**](docs/StorageApi.md#get_storage_enclosure_disk_list) | **GET** /api/v1/storage/EnclosureDisks | Read a 'storage.EnclosureDisk' resource.
-*StorageApi* | [**get_storage_enclosure_disk_slot_ep_by_moid**](docs/StorageApi.md#get_storage_enclosure_disk_slot_ep_by_moid) | **GET** /api/v1/storage/EnclosureDiskSlotEps/{Moid} | Read a 'storage.EnclosureDiskSlotEp' resource.
-*StorageApi* | [**get_storage_enclosure_disk_slot_ep_list**](docs/StorageApi.md#get_storage_enclosure_disk_slot_ep_list) | **GET** /api/v1/storage/EnclosureDiskSlotEps | Read a 'storage.EnclosureDiskSlotEp' resource.
-*StorageApi* | [**get_storage_enclosure_list**](docs/StorageApi.md#get_storage_enclosure_list) | **GET** /api/v1/storage/Enclosures | Read a 'storage.Enclosure' resource.
-*StorageApi* | [**get_storage_flex_flash_controller_by_moid**](docs/StorageApi.md#get_storage_flex_flash_controller_by_moid) | **GET** /api/v1/storage/FlexFlashControllers/{Moid} | Read a 'storage.FlexFlashController' resource.
-*StorageApi* | [**get_storage_flex_flash_controller_list**](docs/StorageApi.md#get_storage_flex_flash_controller_list) | **GET** /api/v1/storage/FlexFlashControllers | Read a 'storage.FlexFlashController' resource.
-*StorageApi* | [**get_storage_flex_flash_controller_props_by_moid**](docs/StorageApi.md#get_storage_flex_flash_controller_props_by_moid) | **GET** /api/v1/storage/FlexFlashControllerProps/{Moid} | Read a 'storage.FlexFlashControllerProps' resource.
-*StorageApi* | [**get_storage_flex_flash_controller_props_list**](docs/StorageApi.md#get_storage_flex_flash_controller_props_list) | **GET** /api/v1/storage/FlexFlashControllerProps | Read a 'storage.FlexFlashControllerProps' resource.
-*StorageApi* | [**get_storage_flex_flash_physical_drive_by_moid**](docs/StorageApi.md#get_storage_flex_flash_physical_drive_by_moid) | **GET** /api/v1/storage/FlexFlashPhysicalDrives/{Moid} | Read a 'storage.FlexFlashPhysicalDrive' resource.
-*StorageApi* | [**get_storage_flex_flash_physical_drive_list**](docs/StorageApi.md#get_storage_flex_flash_physical_drive_list) | **GET** /api/v1/storage/FlexFlashPhysicalDrives | Read a 'storage.FlexFlashPhysicalDrive' resource.
-*StorageApi* | [**get_storage_flex_flash_virtual_drive_by_moid**](docs/StorageApi.md#get_storage_flex_flash_virtual_drive_by_moid) | **GET** /api/v1/storage/FlexFlashVirtualDrives/{Moid} | Read a 'storage.FlexFlashVirtualDrive' resource.
-*StorageApi* | [**get_storage_flex_flash_virtual_drive_list**](docs/StorageApi.md#get_storage_flex_flash_virtual_drive_list) | **GET** /api/v1/storage/FlexFlashVirtualDrives | Read a 'storage.FlexFlashVirtualDrive' resource.
-*StorageApi* | [**get_storage_flex_util_controller_by_moid**](docs/StorageApi.md#get_storage_flex_util_controller_by_moid) | **GET** /api/v1/storage/FlexUtilControllers/{Moid} | Read a 'storage.FlexUtilController' resource.
-*StorageApi* | [**get_storage_flex_util_controller_list**](docs/StorageApi.md#get_storage_flex_util_controller_list) | **GET** /api/v1/storage/FlexUtilControllers | Read a 'storage.FlexUtilController' resource.
-*StorageApi* | [**get_storage_flex_util_physical_drive_by_moid**](docs/StorageApi.md#get_storage_flex_util_physical_drive_by_moid) | **GET** /api/v1/storage/FlexUtilPhysicalDrives/{Moid} | Read a 'storage.FlexUtilPhysicalDrive' resource.
-*StorageApi* | [**get_storage_flex_util_physical_drive_list**](docs/StorageApi.md#get_storage_flex_util_physical_drive_list) | **GET** /api/v1/storage/FlexUtilPhysicalDrives | Read a 'storage.FlexUtilPhysicalDrive' resource.
-*StorageApi* | [**get_storage_flex_util_virtual_drive_by_moid**](docs/StorageApi.md#get_storage_flex_util_virtual_drive_by_moid) | **GET** /api/v1/storage/FlexUtilVirtualDrives/{Moid} | Read a 'storage.FlexUtilVirtualDrive' resource.
-*StorageApi* | [**get_storage_flex_util_virtual_drive_list**](docs/StorageApi.md#get_storage_flex_util_virtual_drive_list) | **GET** /api/v1/storage/FlexUtilVirtualDrives | Read a 'storage.FlexUtilVirtualDrive' resource.
-*StorageApi* | [**get_storage_hitachi_array_by_moid**](docs/StorageApi.md#get_storage_hitachi_array_by_moid) | **GET** /api/v1/storage/HitachiArrays/{Moid} | Read a 'storage.HitachiArray' resource.
-*StorageApi* | [**get_storage_hitachi_array_list**](docs/StorageApi.md#get_storage_hitachi_array_list) | **GET** /api/v1/storage/HitachiArrays | Read a 'storage.HitachiArray' resource.
-*StorageApi* | [**get_storage_hitachi_controller_by_moid**](docs/StorageApi.md#get_storage_hitachi_controller_by_moid) | **GET** /api/v1/storage/HitachiControllers/{Moid} | Read a 'storage.HitachiController' resource.
-*StorageApi* | [**get_storage_hitachi_controller_list**](docs/StorageApi.md#get_storage_hitachi_controller_list) | **GET** /api/v1/storage/HitachiControllers | Read a 'storage.HitachiController' resource.
-*StorageApi* | [**get_storage_hitachi_disk_by_moid**](docs/StorageApi.md#get_storage_hitachi_disk_by_moid) | **GET** /api/v1/storage/HitachiDisks/{Moid} | Read a 'storage.HitachiDisk' resource.
-*StorageApi* | [**get_storage_hitachi_disk_list**](docs/StorageApi.md#get_storage_hitachi_disk_list) | **GET** /api/v1/storage/HitachiDisks | Read a 'storage.HitachiDisk' resource.
-*StorageApi* | [**get_storage_hitachi_host_by_moid**](docs/StorageApi.md#get_storage_hitachi_host_by_moid) | **GET** /api/v1/storage/HitachiHosts/{Moid} | Read a 'storage.HitachiHost' resource.
-*StorageApi* | [**get_storage_hitachi_host_list**](docs/StorageApi.md#get_storage_hitachi_host_list) | **GET** /api/v1/storage/HitachiHosts | Read a 'storage.HitachiHost' resource.
-*StorageApi* | [**get_storage_hitachi_host_lun_by_moid**](docs/StorageApi.md#get_storage_hitachi_host_lun_by_moid) | **GET** /api/v1/storage/HitachiHostLuns/{Moid} | Read a 'storage.HitachiHostLun' resource.
-*StorageApi* | [**get_storage_hitachi_host_lun_list**](docs/StorageApi.md#get_storage_hitachi_host_lun_list) | **GET** /api/v1/storage/HitachiHostLuns | Read a 'storage.HitachiHostLun' resource.
-*StorageApi* | [**get_storage_hitachi_parity_group_by_moid**](docs/StorageApi.md#get_storage_hitachi_parity_group_by_moid) | **GET** /api/v1/storage/HitachiParityGroups/{Moid} | Read a 'storage.HitachiParityGroup' resource.
-*StorageApi* | [**get_storage_hitachi_parity_group_list**](docs/StorageApi.md#get_storage_hitachi_parity_group_list) | **GET** /api/v1/storage/HitachiParityGroups | Read a 'storage.HitachiParityGroup' resource.
-*StorageApi* | [**get_storage_hitachi_pool_by_moid**](docs/StorageApi.md#get_storage_hitachi_pool_by_moid) | **GET** /api/v1/storage/HitachiPools/{Moid} | Read a 'storage.HitachiPool' resource.
-*StorageApi* | [**get_storage_hitachi_pool_list**](docs/StorageApi.md#get_storage_hitachi_pool_list) | **GET** /api/v1/storage/HitachiPools | Read a 'storage.HitachiPool' resource.
-*StorageApi* | [**get_storage_hitachi_port_by_moid**](docs/StorageApi.md#get_storage_hitachi_port_by_moid) | **GET** /api/v1/storage/HitachiPorts/{Moid} | Read a 'storage.HitachiPort' resource.
-*StorageApi* | [**get_storage_hitachi_port_list**](docs/StorageApi.md#get_storage_hitachi_port_list) | **GET** /api/v1/storage/HitachiPorts | Read a 'storage.HitachiPort' resource.
-*StorageApi* | [**get_storage_hitachi_volume_by_moid**](docs/StorageApi.md#get_storage_hitachi_volume_by_moid) | **GET** /api/v1/storage/HitachiVolumes/{Moid} | Read a 'storage.HitachiVolume' resource.
-*StorageApi* | [**get_storage_hitachi_volume_list**](docs/StorageApi.md#get_storage_hitachi_volume_list) | **GET** /api/v1/storage/HitachiVolumes | Read a 'storage.HitachiVolume' resource.
-*StorageApi* | [**get_storage_hyper_flex_storage_container_by_moid**](docs/StorageApi.md#get_storage_hyper_flex_storage_container_by_moid) | **GET** /api/v1/storage/HyperFlexStorageContainers/{Moid} | Read a 'storage.HyperFlexStorageContainer' resource.
-*StorageApi* | [**get_storage_hyper_flex_storage_container_list**](docs/StorageApi.md#get_storage_hyper_flex_storage_container_list) | **GET** /api/v1/storage/HyperFlexStorageContainers | Read a 'storage.HyperFlexStorageContainer' resource.
-*StorageApi* | [**get_storage_hyper_flex_volume_by_moid**](docs/StorageApi.md#get_storage_hyper_flex_volume_by_moid) | **GET** /api/v1/storage/HyperFlexVolumes/{Moid} | Read a 'storage.HyperFlexVolume' resource.
-*StorageApi* | [**get_storage_hyper_flex_volume_list**](docs/StorageApi.md#get_storage_hyper_flex_volume_list) | **GET** /api/v1/storage/HyperFlexVolumes | Read a 'storage.HyperFlexVolume' resource.
-*StorageApi* | [**get_storage_item_by_moid**](docs/StorageApi.md#get_storage_item_by_moid) | **GET** /api/v1/storage/Items/{Moid} | Read a 'storage.Item' resource.
-*StorageApi* | [**get_storage_item_list**](docs/StorageApi.md#get_storage_item_list) | **GET** /api/v1/storage/Items | Read a 'storage.Item' resource.
-*StorageApi* | [**get_storage_net_app_aggregate_by_moid**](docs/StorageApi.md#get_storage_net_app_aggregate_by_moid) | **GET** /api/v1/storage/NetAppAggregates/{Moid} | Read a 'storage.NetAppAggregate' resource.
-*StorageApi* | [**get_storage_net_app_aggregate_list**](docs/StorageApi.md#get_storage_net_app_aggregate_list) | **GET** /api/v1/storage/NetAppAggregates | Read a 'storage.NetAppAggregate' resource.
-*StorageApi* | [**get_storage_net_app_base_disk_by_moid**](docs/StorageApi.md#get_storage_net_app_base_disk_by_moid) | **GET** /api/v1/storage/NetAppBaseDisks/{Moid} | Read a 'storage.NetAppBaseDisk' resource.
-*StorageApi* | [**get_storage_net_app_base_disk_list**](docs/StorageApi.md#get_storage_net_app_base_disk_list) | **GET** /api/v1/storage/NetAppBaseDisks | Read a 'storage.NetAppBaseDisk' resource.
-*StorageApi* | [**get_storage_net_app_cluster_by_moid**](docs/StorageApi.md#get_storage_net_app_cluster_by_moid) | **GET** /api/v1/storage/NetAppClusters/{Moid} | Read a 'storage.NetAppCluster' resource.
-*StorageApi* | [**get_storage_net_app_cluster_list**](docs/StorageApi.md#get_storage_net_app_cluster_list) | **GET** /api/v1/storage/NetAppClusters | Read a 'storage.NetAppCluster' resource.
-*StorageApi* | [**get_storage_net_app_ethernet_port_by_moid**](docs/StorageApi.md#get_storage_net_app_ethernet_port_by_moid) | **GET** /api/v1/storage/NetAppEthernetPorts/{Moid} | Read a 'storage.NetAppEthernetPort' resource.
-*StorageApi* | [**get_storage_net_app_ethernet_port_list**](docs/StorageApi.md#get_storage_net_app_ethernet_port_list) | **GET** /api/v1/storage/NetAppEthernetPorts | Read a 'storage.NetAppEthernetPort' resource.
-*StorageApi* | [**get_storage_net_app_export_policy_by_moid**](docs/StorageApi.md#get_storage_net_app_export_policy_by_moid) | **GET** /api/v1/storage/NetAppExportPolicies/{Moid} | Read a 'storage.NetAppExportPolicy' resource.
-*StorageApi* | [**get_storage_net_app_export_policy_list**](docs/StorageApi.md#get_storage_net_app_export_policy_list) | **GET** /api/v1/storage/NetAppExportPolicies | Read a 'storage.NetAppExportPolicy' resource.
-*StorageApi* | [**get_storage_net_app_fc_interface_by_moid**](docs/StorageApi.md#get_storage_net_app_fc_interface_by_moid) | **GET** /api/v1/storage/NetAppFcInterfaces/{Moid} | Read a 'storage.NetAppFcInterface' resource.
-*StorageApi* | [**get_storage_net_app_fc_interface_list**](docs/StorageApi.md#get_storage_net_app_fc_interface_list) | **GET** /api/v1/storage/NetAppFcInterfaces | Read a 'storage.NetAppFcInterface' resource.
-*StorageApi* | [**get_storage_net_app_fc_port_by_moid**](docs/StorageApi.md#get_storage_net_app_fc_port_by_moid) | **GET** /api/v1/storage/NetAppFcPorts/{Moid} | Read a 'storage.NetAppFcPort' resource.
-*StorageApi* | [**get_storage_net_app_fc_port_list**](docs/StorageApi.md#get_storage_net_app_fc_port_list) | **GET** /api/v1/storage/NetAppFcPorts | Read a 'storage.NetAppFcPort' resource.
-*StorageApi* | [**get_storage_net_app_initiator_group_by_moid**](docs/StorageApi.md#get_storage_net_app_initiator_group_by_moid) | **GET** /api/v1/storage/NetAppInitiatorGroups/{Moid} | Read a 'storage.NetAppInitiatorGroup' resource.
-*StorageApi* | [**get_storage_net_app_initiator_group_list**](docs/StorageApi.md#get_storage_net_app_initiator_group_list) | **GET** /api/v1/storage/NetAppInitiatorGroups | Read a 'storage.NetAppInitiatorGroup' resource.
-*StorageApi* | [**get_storage_net_app_ip_interface_by_moid**](docs/StorageApi.md#get_storage_net_app_ip_interface_by_moid) | **GET** /api/v1/storage/NetAppIpInterfaces/{Moid} | Read a 'storage.NetAppIpInterface' resource.
-*StorageApi* | [**get_storage_net_app_ip_interface_list**](docs/StorageApi.md#get_storage_net_app_ip_interface_list) | **GET** /api/v1/storage/NetAppIpInterfaces | Read a 'storage.NetAppIpInterface' resource.
-*StorageApi* | [**get_storage_net_app_license_by_moid**](docs/StorageApi.md#get_storage_net_app_license_by_moid) | **GET** /api/v1/storage/NetAppLicenses/{Moid} | Read a 'storage.NetAppLicense' resource.
-*StorageApi* | [**get_storage_net_app_license_list**](docs/StorageApi.md#get_storage_net_app_license_list) | **GET** /api/v1/storage/NetAppLicenses | Read a 'storage.NetAppLicense' resource.
-*StorageApi* | [**get_storage_net_app_lun_by_moid**](docs/StorageApi.md#get_storage_net_app_lun_by_moid) | **GET** /api/v1/storage/NetAppLuns/{Moid} | Read a 'storage.NetAppLun' resource.
-*StorageApi* | [**get_storage_net_app_lun_list**](docs/StorageApi.md#get_storage_net_app_lun_list) | **GET** /api/v1/storage/NetAppLuns | Read a 'storage.NetAppLun' resource.
-*StorageApi* | [**get_storage_net_app_lun_map_by_moid**](docs/StorageApi.md#get_storage_net_app_lun_map_by_moid) | **GET** /api/v1/storage/NetAppLunMaps/{Moid} | Read a 'storage.NetAppLunMap' resource.
-*StorageApi* | [**get_storage_net_app_lun_map_list**](docs/StorageApi.md#get_storage_net_app_lun_map_list) | **GET** /api/v1/storage/NetAppLunMaps | Read a 'storage.NetAppLunMap' resource.
-*StorageApi* | [**get_storage_net_app_node_by_moid**](docs/StorageApi.md#get_storage_net_app_node_by_moid) | **GET** /api/v1/storage/NetAppNodes/{Moid} | Read a 'storage.NetAppNode' resource.
-*StorageApi* | [**get_storage_net_app_node_list**](docs/StorageApi.md#get_storage_net_app_node_list) | **GET** /api/v1/storage/NetAppNodes | Read a 'storage.NetAppNode' resource.
-*StorageApi* | [**get_storage_net_app_storage_vm_by_moid**](docs/StorageApi.md#get_storage_net_app_storage_vm_by_moid) | **GET** /api/v1/storage/NetAppStorageVms/{Moid} | Read a 'storage.NetAppStorageVm' resource.
-*StorageApi* | [**get_storage_net_app_storage_vm_list**](docs/StorageApi.md#get_storage_net_app_storage_vm_list) | **GET** /api/v1/storage/NetAppStorageVms | Read a 'storage.NetAppStorageVm' resource.
-*StorageApi* | [**get_storage_net_app_volume_by_moid**](docs/StorageApi.md#get_storage_net_app_volume_by_moid) | **GET** /api/v1/storage/NetAppVolumes/{Moid} | Read a 'storage.NetAppVolume' resource.
-*StorageApi* | [**get_storage_net_app_volume_list**](docs/StorageApi.md#get_storage_net_app_volume_list) | **GET** /api/v1/storage/NetAppVolumes | Read a 'storage.NetAppVolume' resource.
-*StorageApi* | [**get_storage_net_app_volume_snapshot_by_moid**](docs/StorageApi.md#get_storage_net_app_volume_snapshot_by_moid) | **GET** /api/v1/storage/NetAppVolumeSnapshots/{Moid} | Read a 'storage.NetAppVolumeSnapshot' resource.
-*StorageApi* | [**get_storage_net_app_volume_snapshot_list**](docs/StorageApi.md#get_storage_net_app_volume_snapshot_list) | **GET** /api/v1/storage/NetAppVolumeSnapshots | Read a 'storage.NetAppVolumeSnapshot' resource.
-*StorageApi* | [**get_storage_physical_disk_by_moid**](docs/StorageApi.md#get_storage_physical_disk_by_moid) | **GET** /api/v1/storage/PhysicalDisks/{Moid} | Read a 'storage.PhysicalDisk' resource.
-*StorageApi* | [**get_storage_physical_disk_extension_by_moid**](docs/StorageApi.md#get_storage_physical_disk_extension_by_moid) | **GET** /api/v1/storage/PhysicalDiskExtensions/{Moid} | Read a 'storage.PhysicalDiskExtension' resource.
-*StorageApi* | [**get_storage_physical_disk_extension_list**](docs/StorageApi.md#get_storage_physical_disk_extension_list) | **GET** /api/v1/storage/PhysicalDiskExtensions | Read a 'storage.PhysicalDiskExtension' resource.
-*StorageApi* | [**get_storage_physical_disk_list**](docs/StorageApi.md#get_storage_physical_disk_list) | **GET** /api/v1/storage/PhysicalDisks | Read a 'storage.PhysicalDisk' resource.
-*StorageApi* | [**get_storage_physical_disk_usage_by_moid**](docs/StorageApi.md#get_storage_physical_disk_usage_by_moid) | **GET** /api/v1/storage/PhysicalDiskUsages/{Moid} | Read a 'storage.PhysicalDiskUsage' resource.
-*StorageApi* | [**get_storage_physical_disk_usage_list**](docs/StorageApi.md#get_storage_physical_disk_usage_list) | **GET** /api/v1/storage/PhysicalDiskUsages | Read a 'storage.PhysicalDiskUsage' resource.
-*StorageApi* | [**get_storage_pure_array_by_moid**](docs/StorageApi.md#get_storage_pure_array_by_moid) | **GET** /api/v1/storage/PureArrays/{Moid} | Read a 'storage.PureArray' resource.
-*StorageApi* | [**get_storage_pure_array_list**](docs/StorageApi.md#get_storage_pure_array_list) | **GET** /api/v1/storage/PureArrays | Read a 'storage.PureArray' resource.
-*StorageApi* | [**get_storage_pure_controller_by_moid**](docs/StorageApi.md#get_storage_pure_controller_by_moid) | **GET** /api/v1/storage/PureControllers/{Moid} | Read a 'storage.PureController' resource.
-*StorageApi* | [**get_storage_pure_controller_list**](docs/StorageApi.md#get_storage_pure_controller_list) | **GET** /api/v1/storage/PureControllers | Read a 'storage.PureController' resource.
-*StorageApi* | [**get_storage_pure_disk_by_moid**](docs/StorageApi.md#get_storage_pure_disk_by_moid) | **GET** /api/v1/storage/PureDisks/{Moid} | Read a 'storage.PureDisk' resource.
-*StorageApi* | [**get_storage_pure_disk_list**](docs/StorageApi.md#get_storage_pure_disk_list) | **GET** /api/v1/storage/PureDisks | Read a 'storage.PureDisk' resource.
-*StorageApi* | [**get_storage_pure_host_by_moid**](docs/StorageApi.md#get_storage_pure_host_by_moid) | **GET** /api/v1/storage/PureHosts/{Moid} | Read a 'storage.PureHost' resource.
-*StorageApi* | [**get_storage_pure_host_group_by_moid**](docs/StorageApi.md#get_storage_pure_host_group_by_moid) | **GET** /api/v1/storage/PureHostGroups/{Moid} | Read a 'storage.PureHostGroup' resource.
-*StorageApi* | [**get_storage_pure_host_group_list**](docs/StorageApi.md#get_storage_pure_host_group_list) | **GET** /api/v1/storage/PureHostGroups | Read a 'storage.PureHostGroup' resource.
-*StorageApi* | [**get_storage_pure_host_list**](docs/StorageApi.md#get_storage_pure_host_list) | **GET** /api/v1/storage/PureHosts | Read a 'storage.PureHost' resource.
-*StorageApi* | [**get_storage_pure_host_lun_by_moid**](docs/StorageApi.md#get_storage_pure_host_lun_by_moid) | **GET** /api/v1/storage/PureHostLuns/{Moid} | Read a 'storage.PureHostLun' resource.
-*StorageApi* | [**get_storage_pure_host_lun_list**](docs/StorageApi.md#get_storage_pure_host_lun_list) | **GET** /api/v1/storage/PureHostLuns | Read a 'storage.PureHostLun' resource.
-*StorageApi* | [**get_storage_pure_port_by_moid**](docs/StorageApi.md#get_storage_pure_port_by_moid) | **GET** /api/v1/storage/PurePorts/{Moid} | Read a 'storage.PurePort' resource.
-*StorageApi* | [**get_storage_pure_port_list**](docs/StorageApi.md#get_storage_pure_port_list) | **GET** /api/v1/storage/PurePorts | Read a 'storage.PurePort' resource.
-*StorageApi* | [**get_storage_pure_protection_group_by_moid**](docs/StorageApi.md#get_storage_pure_protection_group_by_moid) | **GET** /api/v1/storage/PureProtectionGroups/{Moid} | Read a 'storage.PureProtectionGroup' resource.
-*StorageApi* | [**get_storage_pure_protection_group_list**](docs/StorageApi.md#get_storage_pure_protection_group_list) | **GET** /api/v1/storage/PureProtectionGroups | Read a 'storage.PureProtectionGroup' resource.
-*StorageApi* | [**get_storage_pure_protection_group_snapshot_by_moid**](docs/StorageApi.md#get_storage_pure_protection_group_snapshot_by_moid) | **GET** /api/v1/storage/PureProtectionGroupSnapshots/{Moid} | Read a 'storage.PureProtectionGroupSnapshot' resource.
-*StorageApi* | [**get_storage_pure_protection_group_snapshot_list**](docs/StorageApi.md#get_storage_pure_protection_group_snapshot_list) | **GET** /api/v1/storage/PureProtectionGroupSnapshots | Read a 'storage.PureProtectionGroupSnapshot' resource.
-*StorageApi* | [**get_storage_pure_replication_schedule_by_moid**](docs/StorageApi.md#get_storage_pure_replication_schedule_by_moid) | **GET** /api/v1/storage/PureReplicationSchedules/{Moid} | Read a 'storage.PureReplicationSchedule' resource.
-*StorageApi* | [**get_storage_pure_replication_schedule_list**](docs/StorageApi.md#get_storage_pure_replication_schedule_list) | **GET** /api/v1/storage/PureReplicationSchedules | Read a 'storage.PureReplicationSchedule' resource.
-*StorageApi* | [**get_storage_pure_snapshot_schedule_by_moid**](docs/StorageApi.md#get_storage_pure_snapshot_schedule_by_moid) | **GET** /api/v1/storage/PureSnapshotSchedules/{Moid} | Read a 'storage.PureSnapshotSchedule' resource.
-*StorageApi* | [**get_storage_pure_snapshot_schedule_list**](docs/StorageApi.md#get_storage_pure_snapshot_schedule_list) | **GET** /api/v1/storage/PureSnapshotSchedules | Read a 'storage.PureSnapshotSchedule' resource.
-*StorageApi* | [**get_storage_pure_volume_by_moid**](docs/StorageApi.md#get_storage_pure_volume_by_moid) | **GET** /api/v1/storage/PureVolumes/{Moid} | Read a 'storage.PureVolume' resource.
-*StorageApi* | [**get_storage_pure_volume_list**](docs/StorageApi.md#get_storage_pure_volume_list) | **GET** /api/v1/storage/PureVolumes | Read a 'storage.PureVolume' resource.
-*StorageApi* | [**get_storage_pure_volume_snapshot_by_moid**](docs/StorageApi.md#get_storage_pure_volume_snapshot_by_moid) | **GET** /api/v1/storage/PureVolumeSnapshots/{Moid} | Read a 'storage.PureVolumeSnapshot' resource.
-*StorageApi* | [**get_storage_pure_volume_snapshot_list**](docs/StorageApi.md#get_storage_pure_volume_snapshot_list) | **GET** /api/v1/storage/PureVolumeSnapshots | Read a 'storage.PureVolumeSnapshot' resource.
-*StorageApi* | [**get_storage_sas_expander_by_moid**](docs/StorageApi.md#get_storage_sas_expander_by_moid) | **GET** /api/v1/storage/SasExpanders/{Moid} | Read a 'storage.SasExpander' resource.
-*StorageApi* | [**get_storage_sas_expander_list**](docs/StorageApi.md#get_storage_sas_expander_list) | **GET** /api/v1/storage/SasExpanders | Read a 'storage.SasExpander' resource.
-*StorageApi* | [**get_storage_sas_port_by_moid**](docs/StorageApi.md#get_storage_sas_port_by_moid) | **GET** /api/v1/storage/SasPorts/{Moid} | Read a 'storage.SasPort' resource.
-*StorageApi* | [**get_storage_sas_port_list**](docs/StorageApi.md#get_storage_sas_port_list) | **GET** /api/v1/storage/SasPorts | Read a 'storage.SasPort' resource.
-*StorageApi* | [**get_storage_span_by_moid**](docs/StorageApi.md#get_storage_span_by_moid) | **GET** /api/v1/storage/Spans/{Moid} | Read a 'storage.Span' resource.
-*StorageApi* | [**get_storage_span_list**](docs/StorageApi.md#get_storage_span_list) | **GET** /api/v1/storage/Spans | Read a 'storage.Span' resource.
-*StorageApi* | [**get_storage_storage_policy_by_moid**](docs/StorageApi.md#get_storage_storage_policy_by_moid) | **GET** /api/v1/storage/StoragePolicies/{Moid} | Read a 'storage.StoragePolicy' resource.
-*StorageApi* | [**get_storage_storage_policy_list**](docs/StorageApi.md#get_storage_storage_policy_list) | **GET** /api/v1/storage/StoragePolicies | Read a 'storage.StoragePolicy' resource.
-*StorageApi* | [**get_storage_vd_member_ep_by_moid**](docs/StorageApi.md#get_storage_vd_member_ep_by_moid) | **GET** /api/v1/storage/VdMemberEps/{Moid} | Read a 'storage.VdMemberEp' resource.
-*StorageApi* | [**get_storage_vd_member_ep_list**](docs/StorageApi.md#get_storage_vd_member_ep_list) | **GET** /api/v1/storage/VdMemberEps | Read a 'storage.VdMemberEp' resource.
-*StorageApi* | [**get_storage_virtual_drive_by_moid**](docs/StorageApi.md#get_storage_virtual_drive_by_moid) | **GET** /api/v1/storage/VirtualDrives/{Moid} | Read a 'storage.VirtualDrive' resource.
-*StorageApi* | [**get_storage_virtual_drive_container_by_moid**](docs/StorageApi.md#get_storage_virtual_drive_container_by_moid) | **GET** /api/v1/storage/VirtualDriveContainers/{Moid} | Read a 'storage.VirtualDriveContainer' resource.
-*StorageApi* | [**get_storage_virtual_drive_container_list**](docs/StorageApi.md#get_storage_virtual_drive_container_list) | **GET** /api/v1/storage/VirtualDriveContainers | Read a 'storage.VirtualDriveContainer' resource.
-*StorageApi* | [**get_storage_virtual_drive_extension_by_moid**](docs/StorageApi.md#get_storage_virtual_drive_extension_by_moid) | **GET** /api/v1/storage/VirtualDriveExtensions/{Moid} | Read a 'storage.VirtualDriveExtension' resource.
-*StorageApi* | [**get_storage_virtual_drive_extension_list**](docs/StorageApi.md#get_storage_virtual_drive_extension_list) | **GET** /api/v1/storage/VirtualDriveExtensions | Read a 'storage.VirtualDriveExtension' resource.
-*StorageApi* | [**get_storage_virtual_drive_identity_by_moid**](docs/StorageApi.md#get_storage_virtual_drive_identity_by_moid) | **GET** /api/v1/storage/VirtualDriveIdentities/{Moid} | Read a 'storage.VirtualDriveIdentity' resource.
-*StorageApi* | [**get_storage_virtual_drive_identity_list**](docs/StorageApi.md#get_storage_virtual_drive_identity_list) | **GET** /api/v1/storage/VirtualDriveIdentities | Read a 'storage.VirtualDriveIdentity' resource.
-*StorageApi* | [**get_storage_virtual_drive_list**](docs/StorageApi.md#get_storage_virtual_drive_list) | **GET** /api/v1/storage/VirtualDrives | Read a 'storage.VirtualDrive' resource.
-*StorageApi* | [**patch_storage_controller**](docs/StorageApi.md#patch_storage_controller) | **PATCH** /api/v1/storage/Controllers/{Moid} | Update a 'storage.Controller' resource.
-*StorageApi* | [**patch_storage_disk_group**](docs/StorageApi.md#patch_storage_disk_group) | **PATCH** /api/v1/storage/DiskGroups/{Moid} | Update a 'storage.DiskGroup' resource.
-*StorageApi* | [**patch_storage_drive_group**](docs/StorageApi.md#patch_storage_drive_group) | **PATCH** /api/v1/storage/DriveGroups/{Moid} | Update a 'storage.DriveGroup' resource.
-*StorageApi* | [**patch_storage_enclosure**](docs/StorageApi.md#patch_storage_enclosure) | **PATCH** /api/v1/storage/Enclosures/{Moid} | Update a 'storage.Enclosure' resource.
-*StorageApi* | [**patch_storage_enclosure_disk**](docs/StorageApi.md#patch_storage_enclosure_disk) | **PATCH** /api/v1/storage/EnclosureDisks/{Moid} | Update a 'storage.EnclosureDisk' resource.
-*StorageApi* | [**patch_storage_enclosure_disk_slot_ep**](docs/StorageApi.md#patch_storage_enclosure_disk_slot_ep) | **PATCH** /api/v1/storage/EnclosureDiskSlotEps/{Moid} | Update a 'storage.EnclosureDiskSlotEp' resource.
-*StorageApi* | [**patch_storage_flex_flash_controller**](docs/StorageApi.md#patch_storage_flex_flash_controller) | **PATCH** /api/v1/storage/FlexFlashControllers/{Moid} | Update a 'storage.FlexFlashController' resource.
-*StorageApi* | [**patch_storage_flex_flash_controller_props**](docs/StorageApi.md#patch_storage_flex_flash_controller_props) | **PATCH** /api/v1/storage/FlexFlashControllerProps/{Moid} | Update a 'storage.FlexFlashControllerProps' resource.
-*StorageApi* | [**patch_storage_flex_flash_physical_drive**](docs/StorageApi.md#patch_storage_flex_flash_physical_drive) | **PATCH** /api/v1/storage/FlexFlashPhysicalDrives/{Moid} | Update a 'storage.FlexFlashPhysicalDrive' resource.
-*StorageApi* | [**patch_storage_flex_flash_virtual_drive**](docs/StorageApi.md#patch_storage_flex_flash_virtual_drive) | **PATCH** /api/v1/storage/FlexFlashVirtualDrives/{Moid} | Update a 'storage.FlexFlashVirtualDrive' resource.
-*StorageApi* | [**patch_storage_flex_util_controller**](docs/StorageApi.md#patch_storage_flex_util_controller) | **PATCH** /api/v1/storage/FlexUtilControllers/{Moid} | Update a 'storage.FlexUtilController' resource.
-*StorageApi* | [**patch_storage_flex_util_physical_drive**](docs/StorageApi.md#patch_storage_flex_util_physical_drive) | **PATCH** /api/v1/storage/FlexUtilPhysicalDrives/{Moid} | Update a 'storage.FlexUtilPhysicalDrive' resource.
-*StorageApi* | [**patch_storage_flex_util_virtual_drive**](docs/StorageApi.md#patch_storage_flex_util_virtual_drive) | **PATCH** /api/v1/storage/FlexUtilVirtualDrives/{Moid} | Update a 'storage.FlexUtilVirtualDrive' resource.
-*StorageApi* | [**patch_storage_hitachi_array**](docs/StorageApi.md#patch_storage_hitachi_array) | **PATCH** /api/v1/storage/HitachiArrays/{Moid} | Update a 'storage.HitachiArray' resource.
-*StorageApi* | [**patch_storage_net_app_cluster**](docs/StorageApi.md#patch_storage_net_app_cluster) | **PATCH** /api/v1/storage/NetAppClusters/{Moid} | Update a 'storage.NetAppCluster' resource.
-*StorageApi* | [**patch_storage_physical_disk**](docs/StorageApi.md#patch_storage_physical_disk) | **PATCH** /api/v1/storage/PhysicalDisks/{Moid} | Update a 'storage.PhysicalDisk' resource.
-*StorageApi* | [**patch_storage_physical_disk_extension**](docs/StorageApi.md#patch_storage_physical_disk_extension) | **PATCH** /api/v1/storage/PhysicalDiskExtensions/{Moid} | Update a 'storage.PhysicalDiskExtension' resource.
-*StorageApi* | [**patch_storage_physical_disk_usage**](docs/StorageApi.md#patch_storage_physical_disk_usage) | **PATCH** /api/v1/storage/PhysicalDiskUsages/{Moid} | Update a 'storage.PhysicalDiskUsage' resource.
-*StorageApi* | [**patch_storage_pure_array**](docs/StorageApi.md#patch_storage_pure_array) | **PATCH** /api/v1/storage/PureArrays/{Moid} | Update a 'storage.PureArray' resource.
-*StorageApi* | [**patch_storage_sas_expander**](docs/StorageApi.md#patch_storage_sas_expander) | **PATCH** /api/v1/storage/SasExpanders/{Moid} | Update a 'storage.SasExpander' resource.
-*StorageApi* | [**patch_storage_sas_port**](docs/StorageApi.md#patch_storage_sas_port) | **PATCH** /api/v1/storage/SasPorts/{Moid} | Update a 'storage.SasPort' resource.
-*StorageApi* | [**patch_storage_span**](docs/StorageApi.md#patch_storage_span) | **PATCH** /api/v1/storage/Spans/{Moid} | Update a 'storage.Span' resource.
-*StorageApi* | [**patch_storage_storage_policy**](docs/StorageApi.md#patch_storage_storage_policy) | **PATCH** /api/v1/storage/StoragePolicies/{Moid} | Update a 'storage.StoragePolicy' resource.
-*StorageApi* | [**patch_storage_vd_member_ep**](docs/StorageApi.md#patch_storage_vd_member_ep) | **PATCH** /api/v1/storage/VdMemberEps/{Moid} | Update a 'storage.VdMemberEp' resource.
-*StorageApi* | [**patch_storage_virtual_drive**](docs/StorageApi.md#patch_storage_virtual_drive) | **PATCH** /api/v1/storage/VirtualDrives/{Moid} | Update a 'storage.VirtualDrive' resource.
-*StorageApi* | [**patch_storage_virtual_drive_container**](docs/StorageApi.md#patch_storage_virtual_drive_container) | **PATCH** /api/v1/storage/VirtualDriveContainers/{Moid} | Update a 'storage.VirtualDriveContainer' resource.
-*StorageApi* | [**patch_storage_virtual_drive_extension**](docs/StorageApi.md#patch_storage_virtual_drive_extension) | **PATCH** /api/v1/storage/VirtualDriveExtensions/{Moid} | Update a 'storage.VirtualDriveExtension' resource.
-*StorageApi* | [**update_storage_controller**](docs/StorageApi.md#update_storage_controller) | **POST** /api/v1/storage/Controllers/{Moid} | Update a 'storage.Controller' resource.
-*StorageApi* | [**update_storage_disk_group**](docs/StorageApi.md#update_storage_disk_group) | **POST** /api/v1/storage/DiskGroups/{Moid} | Update a 'storage.DiskGroup' resource.
-*StorageApi* | [**update_storage_drive_group**](docs/StorageApi.md#update_storage_drive_group) | **POST** /api/v1/storage/DriveGroups/{Moid} | Update a 'storage.DriveGroup' resource.
-*StorageApi* | [**update_storage_enclosure**](docs/StorageApi.md#update_storage_enclosure) | **POST** /api/v1/storage/Enclosures/{Moid} | Update a 'storage.Enclosure' resource.
-*StorageApi* | [**update_storage_enclosure_disk**](docs/StorageApi.md#update_storage_enclosure_disk) | **POST** /api/v1/storage/EnclosureDisks/{Moid} | Update a 'storage.EnclosureDisk' resource.
-*StorageApi* | [**update_storage_enclosure_disk_slot_ep**](docs/StorageApi.md#update_storage_enclosure_disk_slot_ep) | **POST** /api/v1/storage/EnclosureDiskSlotEps/{Moid} | Update a 'storage.EnclosureDiskSlotEp' resource.
-*StorageApi* | [**update_storage_flex_flash_controller**](docs/StorageApi.md#update_storage_flex_flash_controller) | **POST** /api/v1/storage/FlexFlashControllers/{Moid} | Update a 'storage.FlexFlashController' resource.
-*StorageApi* | [**update_storage_flex_flash_controller_props**](docs/StorageApi.md#update_storage_flex_flash_controller_props) | **POST** /api/v1/storage/FlexFlashControllerProps/{Moid} | Update a 'storage.FlexFlashControllerProps' resource.
-*StorageApi* | [**update_storage_flex_flash_physical_drive**](docs/StorageApi.md#update_storage_flex_flash_physical_drive) | **POST** /api/v1/storage/FlexFlashPhysicalDrives/{Moid} | Update a 'storage.FlexFlashPhysicalDrive' resource.
-*StorageApi* | [**update_storage_flex_flash_virtual_drive**](docs/StorageApi.md#update_storage_flex_flash_virtual_drive) | **POST** /api/v1/storage/FlexFlashVirtualDrives/{Moid} | Update a 'storage.FlexFlashVirtualDrive' resource.
-*StorageApi* | [**update_storage_flex_util_controller**](docs/StorageApi.md#update_storage_flex_util_controller) | **POST** /api/v1/storage/FlexUtilControllers/{Moid} | Update a 'storage.FlexUtilController' resource.
-*StorageApi* | [**update_storage_flex_util_physical_drive**](docs/StorageApi.md#update_storage_flex_util_physical_drive) | **POST** /api/v1/storage/FlexUtilPhysicalDrives/{Moid} | Update a 'storage.FlexUtilPhysicalDrive' resource.
-*StorageApi* | [**update_storage_flex_util_virtual_drive**](docs/StorageApi.md#update_storage_flex_util_virtual_drive) | **POST** /api/v1/storage/FlexUtilVirtualDrives/{Moid} | Update a 'storage.FlexUtilVirtualDrive' resource.
-*StorageApi* | [**update_storage_hitachi_array**](docs/StorageApi.md#update_storage_hitachi_array) | **POST** /api/v1/storage/HitachiArrays/{Moid} | Update a 'storage.HitachiArray' resource.
-*StorageApi* | [**update_storage_net_app_cluster**](docs/StorageApi.md#update_storage_net_app_cluster) | **POST** /api/v1/storage/NetAppClusters/{Moid} | Update a 'storage.NetAppCluster' resource.
-*StorageApi* | [**update_storage_physical_disk**](docs/StorageApi.md#update_storage_physical_disk) | **POST** /api/v1/storage/PhysicalDisks/{Moid} | Update a 'storage.PhysicalDisk' resource.
-*StorageApi* | [**update_storage_physical_disk_extension**](docs/StorageApi.md#update_storage_physical_disk_extension) | **POST** /api/v1/storage/PhysicalDiskExtensions/{Moid} | Update a 'storage.PhysicalDiskExtension' resource.
-*StorageApi* | [**update_storage_physical_disk_usage**](docs/StorageApi.md#update_storage_physical_disk_usage) | **POST** /api/v1/storage/PhysicalDiskUsages/{Moid} | Update a 'storage.PhysicalDiskUsage' resource.
-*StorageApi* | [**update_storage_pure_array**](docs/StorageApi.md#update_storage_pure_array) | **POST** /api/v1/storage/PureArrays/{Moid} | Update a 'storage.PureArray' resource.
-*StorageApi* | [**update_storage_sas_expander**](docs/StorageApi.md#update_storage_sas_expander) | **POST** /api/v1/storage/SasExpanders/{Moid} | Update a 'storage.SasExpander' resource.
-*StorageApi* | [**update_storage_sas_port**](docs/StorageApi.md#update_storage_sas_port) | **POST** /api/v1/storage/SasPorts/{Moid} | Update a 'storage.SasPort' resource.
-*StorageApi* | [**update_storage_span**](docs/StorageApi.md#update_storage_span) | **POST** /api/v1/storage/Spans/{Moid} | Update a 'storage.Span' resource.
-*StorageApi* | [**update_storage_storage_policy**](docs/StorageApi.md#update_storage_storage_policy) | **POST** /api/v1/storage/StoragePolicies/{Moid} | Update a 'storage.StoragePolicy' resource.
-*StorageApi* | [**update_storage_vd_member_ep**](docs/StorageApi.md#update_storage_vd_member_ep) | **POST** /api/v1/storage/VdMemberEps/{Moid} | Update a 'storage.VdMemberEp' resource.
-*StorageApi* | [**update_storage_virtual_drive**](docs/StorageApi.md#update_storage_virtual_drive) | **POST** /api/v1/storage/VirtualDrives/{Moid} | Update a 'storage.VirtualDrive' resource.
-*StorageApi* | [**update_storage_virtual_drive_container**](docs/StorageApi.md#update_storage_virtual_drive_container) | **POST** /api/v1/storage/VirtualDriveContainers/{Moid} | Update a 'storage.VirtualDriveContainer' resource.
-*StorageApi* | [**update_storage_virtual_drive_extension**](docs/StorageApi.md#update_storage_virtual_drive_extension) | **POST** /api/v1/storage/VirtualDriveExtensions/{Moid} | Update a 'storage.VirtualDriveExtension' resource.
-*SyslogApi* | [**create_syslog_policy**](docs/SyslogApi.md#create_syslog_policy) | **POST** /api/v1/syslog/Policies | Create a 'syslog.Policy' resource.
-*SyslogApi* | [**delete_syslog_policy**](docs/SyslogApi.md#delete_syslog_policy) | **DELETE** /api/v1/syslog/Policies/{Moid} | Delete a 'syslog.Policy' resource.
-*SyslogApi* | [**get_syslog_policy_by_moid**](docs/SyslogApi.md#get_syslog_policy_by_moid) | **GET** /api/v1/syslog/Policies/{Moid} | Read a 'syslog.Policy' resource.
-*SyslogApi* | [**get_syslog_policy_list**](docs/SyslogApi.md#get_syslog_policy_list) | **GET** /api/v1/syslog/Policies | Read a 'syslog.Policy' resource.
-*SyslogApi* | [**patch_syslog_policy**](docs/SyslogApi.md#patch_syslog_policy) | **PATCH** /api/v1/syslog/Policies/{Moid} | Update a 'syslog.Policy' resource.
-*SyslogApi* | [**update_syslog_policy**](docs/SyslogApi.md#update_syslog_policy) | **POST** /api/v1/syslog/Policies/{Moid} | Update a 'syslog.Policy' resource.
-*TamApi* | [**create_tam_advisory_count**](docs/TamApi.md#create_tam_advisory_count) | **POST** /api/v1/tam/AdvisoryCounts | Create a 'tam.AdvisoryCount' resource.
-*TamApi* | [**create_tam_advisory_definition**](docs/TamApi.md#create_tam_advisory_definition) | **POST** /api/v1/tam/AdvisoryDefinitions | Create a 'tam.AdvisoryDefinition' resource.
-*TamApi* | [**create_tam_advisory_info**](docs/TamApi.md#create_tam_advisory_info) | **POST** /api/v1/tam/AdvisoryInfos | Create a 'tam.AdvisoryInfo' resource.
-*TamApi* | [**create_tam_advisory_instance**](docs/TamApi.md#create_tam_advisory_instance) | **POST** /api/v1/tam/AdvisoryInstances | Create a 'tam.AdvisoryInstance' resource.
-*TamApi* | [**create_tam_security_advisory**](docs/TamApi.md#create_tam_security_advisory) | **POST** /api/v1/tam/SecurityAdvisories | Create a 'tam.SecurityAdvisory' resource.
-*TamApi* | [**delete_tam_advisory_count**](docs/TamApi.md#delete_tam_advisory_count) | **DELETE** /api/v1/tam/AdvisoryCounts/{Moid} | Delete a 'tam.AdvisoryCount' resource.
-*TamApi* | [**delete_tam_advisory_definition**](docs/TamApi.md#delete_tam_advisory_definition) | **DELETE** /api/v1/tam/AdvisoryDefinitions/{Moid} | Delete a 'tam.AdvisoryDefinition' resource.
-*TamApi* | [**delete_tam_advisory_info**](docs/TamApi.md#delete_tam_advisory_info) | **DELETE** /api/v1/tam/AdvisoryInfos/{Moid} | Delete a 'tam.AdvisoryInfo' resource.
-*TamApi* | [**delete_tam_advisory_instance**](docs/TamApi.md#delete_tam_advisory_instance) | **DELETE** /api/v1/tam/AdvisoryInstances/{Moid} | Delete a 'tam.AdvisoryInstance' resource.
-*TamApi* | [**delete_tam_security_advisory**](docs/TamApi.md#delete_tam_security_advisory) | **DELETE** /api/v1/tam/SecurityAdvisories/{Moid} | Delete a 'tam.SecurityAdvisory' resource.
-*TamApi* | [**get_tam_advisory_count_by_moid**](docs/TamApi.md#get_tam_advisory_count_by_moid) | **GET** /api/v1/tam/AdvisoryCounts/{Moid} | Read a 'tam.AdvisoryCount' resource.
-*TamApi* | [**get_tam_advisory_count_list**](docs/TamApi.md#get_tam_advisory_count_list) | **GET** /api/v1/tam/AdvisoryCounts | Read a 'tam.AdvisoryCount' resource.
-*TamApi* | [**get_tam_advisory_definition_by_moid**](docs/TamApi.md#get_tam_advisory_definition_by_moid) | **GET** /api/v1/tam/AdvisoryDefinitions/{Moid} | Read a 'tam.AdvisoryDefinition' resource.
-*TamApi* | [**get_tam_advisory_definition_list**](docs/TamApi.md#get_tam_advisory_definition_list) | **GET** /api/v1/tam/AdvisoryDefinitions | Read a 'tam.AdvisoryDefinition' resource.
-*TamApi* | [**get_tam_advisory_info_by_moid**](docs/TamApi.md#get_tam_advisory_info_by_moid) | **GET** /api/v1/tam/AdvisoryInfos/{Moid} | Read a 'tam.AdvisoryInfo' resource.
-*TamApi* | [**get_tam_advisory_info_list**](docs/TamApi.md#get_tam_advisory_info_list) | **GET** /api/v1/tam/AdvisoryInfos | Read a 'tam.AdvisoryInfo' resource.
-*TamApi* | [**get_tam_advisory_instance_by_moid**](docs/TamApi.md#get_tam_advisory_instance_by_moid) | **GET** /api/v1/tam/AdvisoryInstances/{Moid} | Read a 'tam.AdvisoryInstance' resource.
-*TamApi* | [**get_tam_advisory_instance_list**](docs/TamApi.md#get_tam_advisory_instance_list) | **GET** /api/v1/tam/AdvisoryInstances | Read a 'tam.AdvisoryInstance' resource.
-*TamApi* | [**get_tam_security_advisory_by_moid**](docs/TamApi.md#get_tam_security_advisory_by_moid) | **GET** /api/v1/tam/SecurityAdvisories/{Moid} | Read a 'tam.SecurityAdvisory' resource.
-*TamApi* | [**get_tam_security_advisory_list**](docs/TamApi.md#get_tam_security_advisory_list) | **GET** /api/v1/tam/SecurityAdvisories | Read a 'tam.SecurityAdvisory' resource.
-*TamApi* | [**patch_tam_advisory_count**](docs/TamApi.md#patch_tam_advisory_count) | **PATCH** /api/v1/tam/AdvisoryCounts/{Moid} | Update a 'tam.AdvisoryCount' resource.
-*TamApi* | [**patch_tam_advisory_definition**](docs/TamApi.md#patch_tam_advisory_definition) | **PATCH** /api/v1/tam/AdvisoryDefinitions/{Moid} | Update a 'tam.AdvisoryDefinition' resource.
-*TamApi* | [**patch_tam_advisory_info**](docs/TamApi.md#patch_tam_advisory_info) | **PATCH** /api/v1/tam/AdvisoryInfos/{Moid} | Update a 'tam.AdvisoryInfo' resource.
-*TamApi* | [**patch_tam_advisory_instance**](docs/TamApi.md#patch_tam_advisory_instance) | **PATCH** /api/v1/tam/AdvisoryInstances/{Moid} | Update a 'tam.AdvisoryInstance' resource.
-*TamApi* | [**patch_tam_security_advisory**](docs/TamApi.md#patch_tam_security_advisory) | **PATCH** /api/v1/tam/SecurityAdvisories/{Moid} | Update a 'tam.SecurityAdvisory' resource.
-*TamApi* | [**update_tam_advisory_count**](docs/TamApi.md#update_tam_advisory_count) | **POST** /api/v1/tam/AdvisoryCounts/{Moid} | Update a 'tam.AdvisoryCount' resource.
-*TamApi* | [**update_tam_advisory_definition**](docs/TamApi.md#update_tam_advisory_definition) | **POST** /api/v1/tam/AdvisoryDefinitions/{Moid} | Update a 'tam.AdvisoryDefinition' resource.
-*TamApi* | [**update_tam_advisory_info**](docs/TamApi.md#update_tam_advisory_info) | **POST** /api/v1/tam/AdvisoryInfos/{Moid} | Update a 'tam.AdvisoryInfo' resource.
-*TamApi* | [**update_tam_advisory_instance**](docs/TamApi.md#update_tam_advisory_instance) | **POST** /api/v1/tam/AdvisoryInstances/{Moid} | Update a 'tam.AdvisoryInstance' resource.
-*TamApi* | [**update_tam_security_advisory**](docs/TamApi.md#update_tam_security_advisory) | **POST** /api/v1/tam/SecurityAdvisories/{Moid} | Update a 'tam.SecurityAdvisory' resource.
-*TaskApi* | [**create_task_hitachi_scoped_inventory**](docs/TaskApi.md#create_task_hitachi_scoped_inventory) | **POST** /api/v1/task/HitachiScopedInventories | Create a 'task.HitachiScopedInventory' resource.
-*TaskApi* | [**create_task_hxap_scoped_inventory**](docs/TaskApi.md#create_task_hxap_scoped_inventory) | **POST** /api/v1/task/HxapScopedInventories | Create a 'task.HxapScopedInventory' resource.
-*TaskApi* | [**create_task_net_app_scoped_inventory**](docs/TaskApi.md#create_task_net_app_scoped_inventory) | **POST** /api/v1/task/NetAppScopedInventories | Create a 'task.NetAppScopedInventory' resource.
-*TaskApi* | [**create_task_public_cloud_scoped_inventory**](docs/TaskApi.md#create_task_public_cloud_scoped_inventory) | **POST** /api/v1/task/PublicCloudScopedInventories | Create a 'task.PublicCloudScopedInventory' resource.
-*TaskApi* | [**create_task_pure_scoped_inventory**](docs/TaskApi.md#create_task_pure_scoped_inventory) | **POST** /api/v1/task/PureScopedInventories | Create a 'task.PureScopedInventory' resource.
-*TechsupportmanagementApi* | [**create_techsupportmanagement_collection_control_policy**](docs/TechsupportmanagementApi.md#create_techsupportmanagement_collection_control_policy) | **POST** /api/v1/techsupportmanagement/CollectionControlPolicies | Create a 'techsupportmanagement.CollectionControlPolicy' resource.
-*TechsupportmanagementApi* | [**create_techsupportmanagement_tech_support_bundle**](docs/TechsupportmanagementApi.md#create_techsupportmanagement_tech_support_bundle) | **POST** /api/v1/techsupportmanagement/TechSupportBundles | Create a 'techsupportmanagement.TechSupportBundle' resource.
-*TechsupportmanagementApi* | [**delete_techsupportmanagement_collection_control_policy**](docs/TechsupportmanagementApi.md#delete_techsupportmanagement_collection_control_policy) | **DELETE** /api/v1/techsupportmanagement/CollectionControlPolicies/{Moid} | Delete a 'techsupportmanagement.CollectionControlPolicy' resource.
-*TechsupportmanagementApi* | [**delete_techsupportmanagement_tech_support_bundle**](docs/TechsupportmanagementApi.md#delete_techsupportmanagement_tech_support_bundle) | **DELETE** /api/v1/techsupportmanagement/TechSupportBundles/{Moid} | Delete a 'techsupportmanagement.TechSupportBundle' resource.
-*TechsupportmanagementApi* | [**get_techsupportmanagement_collection_control_policy_by_moid**](docs/TechsupportmanagementApi.md#get_techsupportmanagement_collection_control_policy_by_moid) | **GET** /api/v1/techsupportmanagement/CollectionControlPolicies/{Moid} | Read a 'techsupportmanagement.CollectionControlPolicy' resource.
-*TechsupportmanagementApi* | [**get_techsupportmanagement_collection_control_policy_list**](docs/TechsupportmanagementApi.md#get_techsupportmanagement_collection_control_policy_list) | **GET** /api/v1/techsupportmanagement/CollectionControlPolicies | Read a 'techsupportmanagement.CollectionControlPolicy' resource.
-*TechsupportmanagementApi* | [**get_techsupportmanagement_download_by_moid**](docs/TechsupportmanagementApi.md#get_techsupportmanagement_download_by_moid) | **GET** /api/v1/techsupportmanagement/Downloads/{Moid} | Read a 'techsupportmanagement.Download' resource.
-*TechsupportmanagementApi* | [**get_techsupportmanagement_download_list**](docs/TechsupportmanagementApi.md#get_techsupportmanagement_download_list) | **GET** /api/v1/techsupportmanagement/Downloads | Read a 'techsupportmanagement.Download' resource.
-*TechsupportmanagementApi* | [**get_techsupportmanagement_tech_support_bundle_by_moid**](docs/TechsupportmanagementApi.md#get_techsupportmanagement_tech_support_bundle_by_moid) | **GET** /api/v1/techsupportmanagement/TechSupportBundles/{Moid} | Read a 'techsupportmanagement.TechSupportBundle' resource.
-*TechsupportmanagementApi* | [**get_techsupportmanagement_tech_support_bundle_list**](docs/TechsupportmanagementApi.md#get_techsupportmanagement_tech_support_bundle_list) | **GET** /api/v1/techsupportmanagement/TechSupportBundles | Read a 'techsupportmanagement.TechSupportBundle' resource.
-*TechsupportmanagementApi* | [**get_techsupportmanagement_tech_support_status_by_moid**](docs/TechsupportmanagementApi.md#get_techsupportmanagement_tech_support_status_by_moid) | **GET** /api/v1/techsupportmanagement/TechSupportStatuses/{Moid} | Read a 'techsupportmanagement.TechSupportStatus' resource.
-*TechsupportmanagementApi* | [**get_techsupportmanagement_tech_support_status_list**](docs/TechsupportmanagementApi.md#get_techsupportmanagement_tech_support_status_list) | **GET** /api/v1/techsupportmanagement/TechSupportStatuses | Read a 'techsupportmanagement.TechSupportStatus' resource.
-*TechsupportmanagementApi* | [**patch_techsupportmanagement_collection_control_policy**](docs/TechsupportmanagementApi.md#patch_techsupportmanagement_collection_control_policy) | **PATCH** /api/v1/techsupportmanagement/CollectionControlPolicies/{Moid} | Update a 'techsupportmanagement.CollectionControlPolicy' resource.
-*TechsupportmanagementApi* | [**update_techsupportmanagement_collection_control_policy**](docs/TechsupportmanagementApi.md#update_techsupportmanagement_collection_control_policy) | **POST** /api/v1/techsupportmanagement/CollectionControlPolicies/{Moid} | Update a 'techsupportmanagement.CollectionControlPolicy' resource.
-*TelemetryApi* | [**query_telemetry_datasource_metadata**](docs/TelemetryApi.md#query_telemetry_datasource_metadata) | **POST** /api/v1/telemetry/DataSourceMetadata | Perform a Druid DatasourceMetadata request.
-*TelemetryApi* | [**query_telemetry_group_by**](docs/TelemetryApi.md#query_telemetry_group_by) | **POST** /api/v1/telemetry/GroupBys | Perform a Druid GroupBy request.
-*TelemetryApi* | [**query_telemetry_scan**](docs/TelemetryApi.md#query_telemetry_scan) | **POST** /api/v1/telemetry/Scans | Perform a Druid Scan request.
-*TelemetryApi* | [**query_telemetry_search**](docs/TelemetryApi.md#query_telemetry_search) | **POST** /api/v1/telemetry/Searches | Perform a Druid Search request.
-*TelemetryApi* | [**query_telemetry_segment_metadata**](docs/TelemetryApi.md#query_telemetry_segment_metadata) | **POST** /api/v1/telemetry/SegmentMetadata | Perform a Druid SegmentMetadata request.
-*TelemetryApi* | [**query_telemetry_time_boundary**](docs/TelemetryApi.md#query_telemetry_time_boundary) | **POST** /api/v1/telemetry/TimeBoundaries | Perform a Druid TimeBoundary request.
-*TelemetryApi* | [**query_telemetry_time_series**](docs/TelemetryApi.md#query_telemetry_time_series) | **POST** /api/v1/telemetry/TimeSeries | Perform a Druid TimeSeries request.
-*TelemetryApi* | [**query_telemetry_top_n**](docs/TelemetryApi.md#query_telemetry_top_n) | **POST** /api/v1/telemetry/Topns | Perform a Druid TopN request.
-*TerminalApi* | [**get_terminal_audit_log_by_moid**](docs/TerminalApi.md#get_terminal_audit_log_by_moid) | **GET** /api/v1/terminal/AuditLogs/{Moid} | Read a 'terminal.AuditLog' resource.
-*TerminalApi* | [**get_terminal_audit_log_list**](docs/TerminalApi.md#get_terminal_audit_log_list) | **GET** /api/v1/terminal/AuditLogs | Read a 'terminal.AuditLog' resource.
-*ThermalApi* | [**create_thermal_policy**](docs/ThermalApi.md#create_thermal_policy) | **POST** /api/v1/thermal/Policies | Create a 'thermal.Policy' resource.
-*ThermalApi* | [**delete_thermal_policy**](docs/ThermalApi.md#delete_thermal_policy) | **DELETE** /api/v1/thermal/Policies/{Moid} | Delete a 'thermal.Policy' resource.
-*ThermalApi* | [**get_thermal_policy_by_moid**](docs/ThermalApi.md#get_thermal_policy_by_moid) | **GET** /api/v1/thermal/Policies/{Moid} | Read a 'thermal.Policy' resource.
-*ThermalApi* | [**get_thermal_policy_list**](docs/ThermalApi.md#get_thermal_policy_list) | **GET** /api/v1/thermal/Policies | Read a 'thermal.Policy' resource.
-*ThermalApi* | [**patch_thermal_policy**](docs/ThermalApi.md#patch_thermal_policy) | **PATCH** /api/v1/thermal/Policies/{Moid} | Update a 'thermal.Policy' resource.
-*ThermalApi* | [**update_thermal_policy**](docs/ThermalApi.md#update_thermal_policy) | **POST** /api/v1/thermal/Policies/{Moid} | Update a 'thermal.Policy' resource.
-*TopApi* | [**get_top_system_by_moid**](docs/TopApi.md#get_top_system_by_moid) | **GET** /api/v1/top/Systems/{Moid} | Read a 'top.System' resource.
-*TopApi* | [**get_top_system_list**](docs/TopApi.md#get_top_system_list) | **GET** /api/v1/top/Systems | Read a 'top.System' resource.
-*TopApi* | [**patch_top_system**](docs/TopApi.md#patch_top_system) | **PATCH** /api/v1/top/Systems/{Moid} | Update a 'top.System' resource.
-*TopApi* | [**update_top_system**](docs/TopApi.md#update_top_system) | **POST** /api/v1/top/Systems/{Moid} | Update a 'top.System' resource.
-*UcsdApi* | [**delete_ucsd_backup_info**](docs/UcsdApi.md#delete_ucsd_backup_info) | **DELETE** /api/v1/ucsd/BackupInfos/{Moid} | Delete a 'ucsd.BackupInfo' resource.
-*UcsdApi* | [**get_ucsd_backup_info_by_moid**](docs/UcsdApi.md#get_ucsd_backup_info_by_moid) | **GET** /api/v1/ucsd/BackupInfos/{Moid} | Read a 'ucsd.BackupInfo' resource.
-*UcsdApi* | [**get_ucsd_backup_info_list**](docs/UcsdApi.md#get_ucsd_backup_info_list) | **GET** /api/v1/ucsd/BackupInfos | Read a 'ucsd.BackupInfo' resource.
-*UuidpoolApi* | [**create_uuidpool_pool**](docs/UuidpoolApi.md#create_uuidpool_pool) | **POST** /api/v1/uuidpool/Pools | Create a 'uuidpool.Pool' resource.
-*UuidpoolApi* | [**delete_uuidpool_pool**](docs/UuidpoolApi.md#delete_uuidpool_pool) | **DELETE** /api/v1/uuidpool/Pools/{Moid} | Delete a 'uuidpool.Pool' resource.
-*UuidpoolApi* | [**delete_uuidpool_uuid_lease**](docs/UuidpoolApi.md#delete_uuidpool_uuid_lease) | **DELETE** /api/v1/uuidpool/UuidLeases/{Moid} | Delete a 'uuidpool.UuidLease' resource.
-*UuidpoolApi* | [**get_uuidpool_block_by_moid**](docs/UuidpoolApi.md#get_uuidpool_block_by_moid) | **GET** /api/v1/uuidpool/Blocks/{Moid} | Read a 'uuidpool.Block' resource.
-*UuidpoolApi* | [**get_uuidpool_block_list**](docs/UuidpoolApi.md#get_uuidpool_block_list) | **GET** /api/v1/uuidpool/Blocks | Read a 'uuidpool.Block' resource.
-*UuidpoolApi* | [**get_uuidpool_pool_by_moid**](docs/UuidpoolApi.md#get_uuidpool_pool_by_moid) | **GET** /api/v1/uuidpool/Pools/{Moid} | Read a 'uuidpool.Pool' resource.
-*UuidpoolApi* | [**get_uuidpool_pool_list**](docs/UuidpoolApi.md#get_uuidpool_pool_list) | **GET** /api/v1/uuidpool/Pools | Read a 'uuidpool.Pool' resource.
-*UuidpoolApi* | [**get_uuidpool_pool_member_by_moid**](docs/UuidpoolApi.md#get_uuidpool_pool_member_by_moid) | **GET** /api/v1/uuidpool/PoolMembers/{Moid} | Read a 'uuidpool.PoolMember' resource.
-*UuidpoolApi* | [**get_uuidpool_pool_member_list**](docs/UuidpoolApi.md#get_uuidpool_pool_member_list) | **GET** /api/v1/uuidpool/PoolMembers | Read a 'uuidpool.PoolMember' resource.
-*UuidpoolApi* | [**get_uuidpool_universe_by_moid**](docs/UuidpoolApi.md#get_uuidpool_universe_by_moid) | **GET** /api/v1/uuidpool/Universes/{Moid} | Read a 'uuidpool.Universe' resource.
-*UuidpoolApi* | [**get_uuidpool_universe_list**](docs/UuidpoolApi.md#get_uuidpool_universe_list) | **GET** /api/v1/uuidpool/Universes | Read a 'uuidpool.Universe' resource.
-*UuidpoolApi* | [**get_uuidpool_uuid_lease_by_moid**](docs/UuidpoolApi.md#get_uuidpool_uuid_lease_by_moid) | **GET** /api/v1/uuidpool/UuidLeases/{Moid} | Read a 'uuidpool.UuidLease' resource.
-*UuidpoolApi* | [**get_uuidpool_uuid_lease_list**](docs/UuidpoolApi.md#get_uuidpool_uuid_lease_list) | **GET** /api/v1/uuidpool/UuidLeases | Read a 'uuidpool.UuidLease' resource.
-*UuidpoolApi* | [**patch_uuidpool_pool**](docs/UuidpoolApi.md#patch_uuidpool_pool) | **PATCH** /api/v1/uuidpool/Pools/{Moid} | Update a 'uuidpool.Pool' resource.
-*UuidpoolApi* | [**update_uuidpool_pool**](docs/UuidpoolApi.md#update_uuidpool_pool) | **POST** /api/v1/uuidpool/Pools/{Moid} | Update a 'uuidpool.Pool' resource.
-*VirtualizationApi* | [**create_virtualization_virtual_disk**](docs/VirtualizationApi.md#create_virtualization_virtual_disk) | **POST** /api/v1/virtualization/VirtualDisks | Create a 'virtualization.VirtualDisk' resource.
-*VirtualizationApi* | [**create_virtualization_virtual_machine**](docs/VirtualizationApi.md#create_virtualization_virtual_machine) | **POST** /api/v1/virtualization/VirtualMachines | Create a 'virtualization.VirtualMachine' resource.
-*VirtualizationApi* | [**delete_virtualization_virtual_disk**](docs/VirtualizationApi.md#delete_virtualization_virtual_disk) | **DELETE** /api/v1/virtualization/VirtualDisks/{Moid} | Delete a 'virtualization.VirtualDisk' resource.
-*VirtualizationApi* | [**delete_virtualization_virtual_machine**](docs/VirtualizationApi.md#delete_virtualization_virtual_machine) | **DELETE** /api/v1/virtualization/VirtualMachines/{Moid} | Delete a 'virtualization.VirtualMachine' resource.
-*VirtualizationApi* | [**get_virtualization_host_by_moid**](docs/VirtualizationApi.md#get_virtualization_host_by_moid) | **GET** /api/v1/virtualization/Hosts/{Moid} | Read a 'virtualization.Host' resource.
-*VirtualizationApi* | [**get_virtualization_host_list**](docs/VirtualizationApi.md#get_virtualization_host_list) | **GET** /api/v1/virtualization/Hosts | Read a 'virtualization.Host' resource.
-*VirtualizationApi* | [**get_virtualization_virtual_disk_by_moid**](docs/VirtualizationApi.md#get_virtualization_virtual_disk_by_moid) | **GET** /api/v1/virtualization/VirtualDisks/{Moid} | Read a 'virtualization.VirtualDisk' resource.
-*VirtualizationApi* | [**get_virtualization_virtual_disk_list**](docs/VirtualizationApi.md#get_virtualization_virtual_disk_list) | **GET** /api/v1/virtualization/VirtualDisks | Read a 'virtualization.VirtualDisk' resource.
-*VirtualizationApi* | [**get_virtualization_virtual_machine_by_moid**](docs/VirtualizationApi.md#get_virtualization_virtual_machine_by_moid) | **GET** /api/v1/virtualization/VirtualMachines/{Moid} | Read a 'virtualization.VirtualMachine' resource.
-*VirtualizationApi* | [**get_virtualization_virtual_machine_list**](docs/VirtualizationApi.md#get_virtualization_virtual_machine_list) | **GET** /api/v1/virtualization/VirtualMachines | Read a 'virtualization.VirtualMachine' resource.
-*VirtualizationApi* | [**get_virtualization_vmware_cluster_by_moid**](docs/VirtualizationApi.md#get_virtualization_vmware_cluster_by_moid) | **GET** /api/v1/virtualization/VmwareClusters/{Moid} | Read a 'virtualization.VmwareCluster' resource.
-*VirtualizationApi* | [**get_virtualization_vmware_cluster_list**](docs/VirtualizationApi.md#get_virtualization_vmware_cluster_list) | **GET** /api/v1/virtualization/VmwareClusters | Read a 'virtualization.VmwareCluster' resource.
-*VirtualizationApi* | [**get_virtualization_vmware_datacenter_by_moid**](docs/VirtualizationApi.md#get_virtualization_vmware_datacenter_by_moid) | **GET** /api/v1/virtualization/VmwareDatacenters/{Moid} | Read a 'virtualization.VmwareDatacenter' resource.
-*VirtualizationApi* | [**get_virtualization_vmware_datacenter_list**](docs/VirtualizationApi.md#get_virtualization_vmware_datacenter_list) | **GET** /api/v1/virtualization/VmwareDatacenters | Read a 'virtualization.VmwareDatacenter' resource.
-*VirtualizationApi* | [**get_virtualization_vmware_datastore_by_moid**](docs/VirtualizationApi.md#get_virtualization_vmware_datastore_by_moid) | **GET** /api/v1/virtualization/VmwareDatastores/{Moid} | Read a 'virtualization.VmwareDatastore' resource.
-*VirtualizationApi* | [**get_virtualization_vmware_datastore_cluster_by_moid**](docs/VirtualizationApi.md#get_virtualization_vmware_datastore_cluster_by_moid) | **GET** /api/v1/virtualization/VmwareDatastoreClusters/{Moid} | Read a 'virtualization.VmwareDatastoreCluster' resource.
-*VirtualizationApi* | [**get_virtualization_vmware_datastore_cluster_list**](docs/VirtualizationApi.md#get_virtualization_vmware_datastore_cluster_list) | **GET** /api/v1/virtualization/VmwareDatastoreClusters | Read a 'virtualization.VmwareDatastoreCluster' resource.
-*VirtualizationApi* | [**get_virtualization_vmware_datastore_list**](docs/VirtualizationApi.md#get_virtualization_vmware_datastore_list) | **GET** /api/v1/virtualization/VmwareDatastores | Read a 'virtualization.VmwareDatastore' resource.
-*VirtualizationApi* | [**get_virtualization_vmware_distributed_network_by_moid**](docs/VirtualizationApi.md#get_virtualization_vmware_distributed_network_by_moid) | **GET** /api/v1/virtualization/VmwareDistributedNetworks/{Moid} | Read a 'virtualization.VmwareDistributedNetwork' resource.
-*VirtualizationApi* | [**get_virtualization_vmware_distributed_network_list**](docs/VirtualizationApi.md#get_virtualization_vmware_distributed_network_list) | **GET** /api/v1/virtualization/VmwareDistributedNetworks | Read a 'virtualization.VmwareDistributedNetwork' resource.
-*VirtualizationApi* | [**get_virtualization_vmware_distributed_switch_by_moid**](docs/VirtualizationApi.md#get_virtualization_vmware_distributed_switch_by_moid) | **GET** /api/v1/virtualization/VmwareDistributedSwitches/{Moid} | Read a 'virtualization.VmwareDistributedSwitch' resource.
-*VirtualizationApi* | [**get_virtualization_vmware_distributed_switch_list**](docs/VirtualizationApi.md#get_virtualization_vmware_distributed_switch_list) | **GET** /api/v1/virtualization/VmwareDistributedSwitches | Read a 'virtualization.VmwareDistributedSwitch' resource.
-*VirtualizationApi* | [**get_virtualization_vmware_folder_by_moid**](docs/VirtualizationApi.md#get_virtualization_vmware_folder_by_moid) | **GET** /api/v1/virtualization/VmwareFolders/{Moid} | Read a 'virtualization.VmwareFolder' resource.
-*VirtualizationApi* | [**get_virtualization_vmware_folder_list**](docs/VirtualizationApi.md#get_virtualization_vmware_folder_list) | **GET** /api/v1/virtualization/VmwareFolders | Read a 'virtualization.VmwareFolder' resource.
-*VirtualizationApi* | [**get_virtualization_vmware_host_by_moid**](docs/VirtualizationApi.md#get_virtualization_vmware_host_by_moid) | **GET** /api/v1/virtualization/VmwareHosts/{Moid} | Read a 'virtualization.VmwareHost' resource.
-*VirtualizationApi* | [**get_virtualization_vmware_host_list**](docs/VirtualizationApi.md#get_virtualization_vmware_host_list) | **GET** /api/v1/virtualization/VmwareHosts | Read a 'virtualization.VmwareHost' resource.
-*VirtualizationApi* | [**get_virtualization_vmware_kernel_network_by_moid**](docs/VirtualizationApi.md#get_virtualization_vmware_kernel_network_by_moid) | **GET** /api/v1/virtualization/VmwareKernelNetworks/{Moid} | Read a 'virtualization.VmwareKernelNetwork' resource.
-*VirtualizationApi* | [**get_virtualization_vmware_kernel_network_list**](docs/VirtualizationApi.md#get_virtualization_vmware_kernel_network_list) | **GET** /api/v1/virtualization/VmwareKernelNetworks | Read a 'virtualization.VmwareKernelNetwork' resource.
-*VirtualizationApi* | [**get_virtualization_vmware_network_by_moid**](docs/VirtualizationApi.md#get_virtualization_vmware_network_by_moid) | **GET** /api/v1/virtualization/VmwareNetworks/{Moid} | Read a 'virtualization.VmwareNetwork' resource.
-*VirtualizationApi* | [**get_virtualization_vmware_network_list**](docs/VirtualizationApi.md#get_virtualization_vmware_network_list) | **GET** /api/v1/virtualization/VmwareNetworks | Read a 'virtualization.VmwareNetwork' resource.
-*VirtualizationApi* | [**get_virtualization_vmware_physical_network_interface_by_moid**](docs/VirtualizationApi.md#get_virtualization_vmware_physical_network_interface_by_moid) | **GET** /api/v1/virtualization/VmwarePhysicalNetworkInterfaces/{Moid} | Read a 'virtualization.VmwarePhysicalNetworkInterface' resource.
-*VirtualizationApi* | [**get_virtualization_vmware_physical_network_interface_list**](docs/VirtualizationApi.md#get_virtualization_vmware_physical_network_interface_list) | **GET** /api/v1/virtualization/VmwarePhysicalNetworkInterfaces | Read a 'virtualization.VmwarePhysicalNetworkInterface' resource.
-*VirtualizationApi* | [**get_virtualization_vmware_uplink_port_by_moid**](docs/VirtualizationApi.md#get_virtualization_vmware_uplink_port_by_moid) | **GET** /api/v1/virtualization/VmwareUplinkPorts/{Moid} | Read a 'virtualization.VmwareUplinkPort' resource.
-*VirtualizationApi* | [**get_virtualization_vmware_uplink_port_list**](docs/VirtualizationApi.md#get_virtualization_vmware_uplink_port_list) | **GET** /api/v1/virtualization/VmwareUplinkPorts | Read a 'virtualization.VmwareUplinkPort' resource.
-*VirtualizationApi* | [**get_virtualization_vmware_vcenter_by_moid**](docs/VirtualizationApi.md#get_virtualization_vmware_vcenter_by_moid) | **GET** /api/v1/virtualization/VmwareVcenters/{Moid} | Read a 'virtualization.VmwareVcenter' resource.
-*VirtualizationApi* | [**get_virtualization_vmware_vcenter_list**](docs/VirtualizationApi.md#get_virtualization_vmware_vcenter_list) | **GET** /api/v1/virtualization/VmwareVcenters | Read a 'virtualization.VmwareVcenter' resource.
-*VirtualizationApi* | [**get_virtualization_vmware_virtual_disk_by_moid**](docs/VirtualizationApi.md#get_virtualization_vmware_virtual_disk_by_moid) | **GET** /api/v1/virtualization/VmwareVirtualDisks/{Moid} | Read a 'virtualization.VmwareVirtualDisk' resource.
-*VirtualizationApi* | [**get_virtualization_vmware_virtual_disk_list**](docs/VirtualizationApi.md#get_virtualization_vmware_virtual_disk_list) | **GET** /api/v1/virtualization/VmwareVirtualDisks | Read a 'virtualization.VmwareVirtualDisk' resource.
-*VirtualizationApi* | [**get_virtualization_vmware_virtual_machine_by_moid**](docs/VirtualizationApi.md#get_virtualization_vmware_virtual_machine_by_moid) | **GET** /api/v1/virtualization/VmwareVirtualMachines/{Moid} | Read a 'virtualization.VmwareVirtualMachine' resource.
-*VirtualizationApi* | [**get_virtualization_vmware_virtual_machine_list**](docs/VirtualizationApi.md#get_virtualization_vmware_virtual_machine_list) | **GET** /api/v1/virtualization/VmwareVirtualMachines | Read a 'virtualization.VmwareVirtualMachine' resource.
-*VirtualizationApi* | [**get_virtualization_vmware_virtual_network_interface_by_moid**](docs/VirtualizationApi.md#get_virtualization_vmware_virtual_network_interface_by_moid) | **GET** /api/v1/virtualization/VmwareVirtualNetworkInterfaces/{Moid} | Read a 'virtualization.VmwareVirtualNetworkInterface' resource.
-*VirtualizationApi* | [**get_virtualization_vmware_virtual_network_interface_list**](docs/VirtualizationApi.md#get_virtualization_vmware_virtual_network_interface_list) | **GET** /api/v1/virtualization/VmwareVirtualNetworkInterfaces | Read a 'virtualization.VmwareVirtualNetworkInterface' resource.
-*VirtualizationApi* | [**get_virtualization_vmware_virtual_switch_by_moid**](docs/VirtualizationApi.md#get_virtualization_vmware_virtual_switch_by_moid) | **GET** /api/v1/virtualization/VmwareVirtualSwitches/{Moid} | Read a 'virtualization.VmwareVirtualSwitch' resource.
-*VirtualizationApi* | [**get_virtualization_vmware_virtual_switch_list**](docs/VirtualizationApi.md#get_virtualization_vmware_virtual_switch_list) | **GET** /api/v1/virtualization/VmwareVirtualSwitches | Read a 'virtualization.VmwareVirtualSwitch' resource.
-*VirtualizationApi* | [**patch_virtualization_host**](docs/VirtualizationApi.md#patch_virtualization_host) | **PATCH** /api/v1/virtualization/Hosts/{Moid} | Update a 'virtualization.Host' resource.
-*VirtualizationApi* | [**patch_virtualization_virtual_disk**](docs/VirtualizationApi.md#patch_virtualization_virtual_disk) | **PATCH** /api/v1/virtualization/VirtualDisks/{Moid} | Update a 'virtualization.VirtualDisk' resource.
-*VirtualizationApi* | [**patch_virtualization_virtual_machine**](docs/VirtualizationApi.md#patch_virtualization_virtual_machine) | **PATCH** /api/v1/virtualization/VirtualMachines/{Moid} | Update a 'virtualization.VirtualMachine' resource.
-*VirtualizationApi* | [**patch_virtualization_vmware_cluster**](docs/VirtualizationApi.md#patch_virtualization_vmware_cluster) | **PATCH** /api/v1/virtualization/VmwareClusters/{Moid} | Update a 'virtualization.VmwareCluster' resource.
-*VirtualizationApi* | [**patch_virtualization_vmware_datacenter**](docs/VirtualizationApi.md#patch_virtualization_vmware_datacenter) | **PATCH** /api/v1/virtualization/VmwareDatacenters/{Moid} | Update a 'virtualization.VmwareDatacenter' resource.
-*VirtualizationApi* | [**patch_virtualization_vmware_datastore**](docs/VirtualizationApi.md#patch_virtualization_vmware_datastore) | **PATCH** /api/v1/virtualization/VmwareDatastores/{Moid} | Update a 'virtualization.VmwareDatastore' resource.
-*VirtualizationApi* | [**patch_virtualization_vmware_datastore_cluster**](docs/VirtualizationApi.md#patch_virtualization_vmware_datastore_cluster) | **PATCH** /api/v1/virtualization/VmwareDatastoreClusters/{Moid} | Update a 'virtualization.VmwareDatastoreCluster' resource.
-*VirtualizationApi* | [**patch_virtualization_vmware_distributed_network**](docs/VirtualizationApi.md#patch_virtualization_vmware_distributed_network) | **PATCH** /api/v1/virtualization/VmwareDistributedNetworks/{Moid} | Update a 'virtualization.VmwareDistributedNetwork' resource.
-*VirtualizationApi* | [**patch_virtualization_vmware_distributed_switch**](docs/VirtualizationApi.md#patch_virtualization_vmware_distributed_switch) | **PATCH** /api/v1/virtualization/VmwareDistributedSwitches/{Moid} | Update a 'virtualization.VmwareDistributedSwitch' resource.
-*VirtualizationApi* | [**patch_virtualization_vmware_folder**](docs/VirtualizationApi.md#patch_virtualization_vmware_folder) | **PATCH** /api/v1/virtualization/VmwareFolders/{Moid} | Update a 'virtualization.VmwareFolder' resource.
-*VirtualizationApi* | [**patch_virtualization_vmware_host**](docs/VirtualizationApi.md#patch_virtualization_vmware_host) | **PATCH** /api/v1/virtualization/VmwareHosts/{Moid} | Update a 'virtualization.VmwareHost' resource.
-*VirtualizationApi* | [**patch_virtualization_vmware_kernel_network**](docs/VirtualizationApi.md#patch_virtualization_vmware_kernel_network) | **PATCH** /api/v1/virtualization/VmwareKernelNetworks/{Moid} | Update a 'virtualization.VmwareKernelNetwork' resource.
-*VirtualizationApi* | [**patch_virtualization_vmware_network**](docs/VirtualizationApi.md#patch_virtualization_vmware_network) | **PATCH** /api/v1/virtualization/VmwareNetworks/{Moid} | Update a 'virtualization.VmwareNetwork' resource.
-*VirtualizationApi* | [**patch_virtualization_vmware_physical_network_interface**](docs/VirtualizationApi.md#patch_virtualization_vmware_physical_network_interface) | **PATCH** /api/v1/virtualization/VmwarePhysicalNetworkInterfaces/{Moid} | Update a 'virtualization.VmwarePhysicalNetworkInterface' resource.
-*VirtualizationApi* | [**patch_virtualization_vmware_uplink_port**](docs/VirtualizationApi.md#patch_virtualization_vmware_uplink_port) | **PATCH** /api/v1/virtualization/VmwareUplinkPorts/{Moid} | Update a 'virtualization.VmwareUplinkPort' resource.
-*VirtualizationApi* | [**patch_virtualization_vmware_virtual_disk**](docs/VirtualizationApi.md#patch_virtualization_vmware_virtual_disk) | **PATCH** /api/v1/virtualization/VmwareVirtualDisks/{Moid} | Update a 'virtualization.VmwareVirtualDisk' resource.
-*VirtualizationApi* | [**patch_virtualization_vmware_virtual_machine**](docs/VirtualizationApi.md#patch_virtualization_vmware_virtual_machine) | **PATCH** /api/v1/virtualization/VmwareVirtualMachines/{Moid} | Update a 'virtualization.VmwareVirtualMachine' resource.
-*VirtualizationApi* | [**patch_virtualization_vmware_virtual_network_interface**](docs/VirtualizationApi.md#patch_virtualization_vmware_virtual_network_interface) | **PATCH** /api/v1/virtualization/VmwareVirtualNetworkInterfaces/{Moid} | Update a 'virtualization.VmwareVirtualNetworkInterface' resource.
-*VirtualizationApi* | [**patch_virtualization_vmware_virtual_switch**](docs/VirtualizationApi.md#patch_virtualization_vmware_virtual_switch) | **PATCH** /api/v1/virtualization/VmwareVirtualSwitches/{Moid} | Update a 'virtualization.VmwareVirtualSwitch' resource.
-*VirtualizationApi* | [**update_virtualization_host**](docs/VirtualizationApi.md#update_virtualization_host) | **POST** /api/v1/virtualization/Hosts/{Moid} | Update a 'virtualization.Host' resource.
-*VirtualizationApi* | [**update_virtualization_virtual_disk**](docs/VirtualizationApi.md#update_virtualization_virtual_disk) | **POST** /api/v1/virtualization/VirtualDisks/{Moid} | Update a 'virtualization.VirtualDisk' resource.
-*VirtualizationApi* | [**update_virtualization_virtual_machine**](docs/VirtualizationApi.md#update_virtualization_virtual_machine) | **POST** /api/v1/virtualization/VirtualMachines/{Moid} | Update a 'virtualization.VirtualMachine' resource.
-*VirtualizationApi* | [**update_virtualization_vmware_cluster**](docs/VirtualizationApi.md#update_virtualization_vmware_cluster) | **POST** /api/v1/virtualization/VmwareClusters/{Moid} | Update a 'virtualization.VmwareCluster' resource.
-*VirtualizationApi* | [**update_virtualization_vmware_datacenter**](docs/VirtualizationApi.md#update_virtualization_vmware_datacenter) | **POST** /api/v1/virtualization/VmwareDatacenters/{Moid} | Update a 'virtualization.VmwareDatacenter' resource.
-*VirtualizationApi* | [**update_virtualization_vmware_datastore**](docs/VirtualizationApi.md#update_virtualization_vmware_datastore) | **POST** /api/v1/virtualization/VmwareDatastores/{Moid} | Update a 'virtualization.VmwareDatastore' resource.
-*VirtualizationApi* | [**update_virtualization_vmware_datastore_cluster**](docs/VirtualizationApi.md#update_virtualization_vmware_datastore_cluster) | **POST** /api/v1/virtualization/VmwareDatastoreClusters/{Moid} | Update a 'virtualization.VmwareDatastoreCluster' resource.
-*VirtualizationApi* | [**update_virtualization_vmware_distributed_network**](docs/VirtualizationApi.md#update_virtualization_vmware_distributed_network) | **POST** /api/v1/virtualization/VmwareDistributedNetworks/{Moid} | Update a 'virtualization.VmwareDistributedNetwork' resource.
-*VirtualizationApi* | [**update_virtualization_vmware_distributed_switch**](docs/VirtualizationApi.md#update_virtualization_vmware_distributed_switch) | **POST** /api/v1/virtualization/VmwareDistributedSwitches/{Moid} | Update a 'virtualization.VmwareDistributedSwitch' resource.
-*VirtualizationApi* | [**update_virtualization_vmware_folder**](docs/VirtualizationApi.md#update_virtualization_vmware_folder) | **POST** /api/v1/virtualization/VmwareFolders/{Moid} | Update a 'virtualization.VmwareFolder' resource.
-*VirtualizationApi* | [**update_virtualization_vmware_host**](docs/VirtualizationApi.md#update_virtualization_vmware_host) | **POST** /api/v1/virtualization/VmwareHosts/{Moid} | Update a 'virtualization.VmwareHost' resource.
-*VirtualizationApi* | [**update_virtualization_vmware_kernel_network**](docs/VirtualizationApi.md#update_virtualization_vmware_kernel_network) | **POST** /api/v1/virtualization/VmwareKernelNetworks/{Moid} | Update a 'virtualization.VmwareKernelNetwork' resource.
-*VirtualizationApi* | [**update_virtualization_vmware_network**](docs/VirtualizationApi.md#update_virtualization_vmware_network) | **POST** /api/v1/virtualization/VmwareNetworks/{Moid} | Update a 'virtualization.VmwareNetwork' resource.
-*VirtualizationApi* | [**update_virtualization_vmware_physical_network_interface**](docs/VirtualizationApi.md#update_virtualization_vmware_physical_network_interface) | **POST** /api/v1/virtualization/VmwarePhysicalNetworkInterfaces/{Moid} | Update a 'virtualization.VmwarePhysicalNetworkInterface' resource.
-*VirtualizationApi* | [**update_virtualization_vmware_uplink_port**](docs/VirtualizationApi.md#update_virtualization_vmware_uplink_port) | **POST** /api/v1/virtualization/VmwareUplinkPorts/{Moid} | Update a 'virtualization.VmwareUplinkPort' resource.
-*VirtualizationApi* | [**update_virtualization_vmware_virtual_disk**](docs/VirtualizationApi.md#update_virtualization_vmware_virtual_disk) | **POST** /api/v1/virtualization/VmwareVirtualDisks/{Moid} | Update a 'virtualization.VmwareVirtualDisk' resource.
-*VirtualizationApi* | [**update_virtualization_vmware_virtual_machine**](docs/VirtualizationApi.md#update_virtualization_vmware_virtual_machine) | **POST** /api/v1/virtualization/VmwareVirtualMachines/{Moid} | Update a 'virtualization.VmwareVirtualMachine' resource.
-*VirtualizationApi* | [**update_virtualization_vmware_virtual_network_interface**](docs/VirtualizationApi.md#update_virtualization_vmware_virtual_network_interface) | **POST** /api/v1/virtualization/VmwareVirtualNetworkInterfaces/{Moid} | Update a 'virtualization.VmwareVirtualNetworkInterface' resource.
-*VirtualizationApi* | [**update_virtualization_vmware_virtual_switch**](docs/VirtualizationApi.md#update_virtualization_vmware_virtual_switch) | **POST** /api/v1/virtualization/VmwareVirtualSwitches/{Moid} | Update a 'virtualization.VmwareVirtualSwitch' resource.
-*VmediaApi* | [**create_vmedia_policy**](docs/VmediaApi.md#create_vmedia_policy) | **POST** /api/v1/vmedia/Policies | Create a 'vmedia.Policy' resource.
-*VmediaApi* | [**delete_vmedia_policy**](docs/VmediaApi.md#delete_vmedia_policy) | **DELETE** /api/v1/vmedia/Policies/{Moid} | Delete a 'vmedia.Policy' resource.
-*VmediaApi* | [**get_vmedia_policy_by_moid**](docs/VmediaApi.md#get_vmedia_policy_by_moid) | **GET** /api/v1/vmedia/Policies/{Moid} | Read a 'vmedia.Policy' resource.
-*VmediaApi* | [**get_vmedia_policy_list**](docs/VmediaApi.md#get_vmedia_policy_list) | **GET** /api/v1/vmedia/Policies | Read a 'vmedia.Policy' resource.
-*VmediaApi* | [**patch_vmedia_policy**](docs/VmediaApi.md#patch_vmedia_policy) | **PATCH** /api/v1/vmedia/Policies/{Moid} | Update a 'vmedia.Policy' resource.
-*VmediaApi* | [**update_vmedia_policy**](docs/VmediaApi.md#update_vmedia_policy) | **POST** /api/v1/vmedia/Policies/{Moid} | Update a 'vmedia.Policy' resource.
-*VmrcApi* | [**create_vmrc_console**](docs/VmrcApi.md#create_vmrc_console) | **POST** /api/v1/vmrc/Consoles | Create a 'vmrc.Console' resource.
-*VmrcApi* | [**get_vmrc_console_by_moid**](docs/VmrcApi.md#get_vmrc_console_by_moid) | **GET** /api/v1/vmrc/Consoles/{Moid} | Read a 'vmrc.Console' resource.
-*VmrcApi* | [**get_vmrc_console_list**](docs/VmrcApi.md#get_vmrc_console_list) | **GET** /api/v1/vmrc/Consoles | Read a 'vmrc.Console' resource.
-*VmrcApi* | [**patch_vmrc_console**](docs/VmrcApi.md#patch_vmrc_console) | **PATCH** /api/v1/vmrc/Consoles/{Moid} | Update a 'vmrc.Console' resource.
-*VmrcApi* | [**update_vmrc_console**](docs/VmrcApi.md#update_vmrc_console) | **POST** /api/v1/vmrc/Consoles/{Moid} | Update a 'vmrc.Console' resource.
-*VnicApi* | [**create_vnic_eth_adapter_policy**](docs/VnicApi.md#create_vnic_eth_adapter_policy) | **POST** /api/v1/vnic/EthAdapterPolicies | Create a 'vnic.EthAdapterPolicy' resource.
-*VnicApi* | [**create_vnic_eth_if**](docs/VnicApi.md#create_vnic_eth_if) | **POST** /api/v1/vnic/EthIfs | Create a 'vnic.EthIf' resource.
-*VnicApi* | [**create_vnic_eth_network_policy**](docs/VnicApi.md#create_vnic_eth_network_policy) | **POST** /api/v1/vnic/EthNetworkPolicies | Create a 'vnic.EthNetworkPolicy' resource.
-*VnicApi* | [**create_vnic_eth_qos_policy**](docs/VnicApi.md#create_vnic_eth_qos_policy) | **POST** /api/v1/vnic/EthQosPolicies | Create a 'vnic.EthQosPolicy' resource.
-*VnicApi* | [**create_vnic_fc_adapter_policy**](docs/VnicApi.md#create_vnic_fc_adapter_policy) | **POST** /api/v1/vnic/FcAdapterPolicies | Create a 'vnic.FcAdapterPolicy' resource.
-*VnicApi* | [**create_vnic_fc_if**](docs/VnicApi.md#create_vnic_fc_if) | **POST** /api/v1/vnic/FcIfs | Create a 'vnic.FcIf' resource.
-*VnicApi* | [**create_vnic_fc_network_policy**](docs/VnicApi.md#create_vnic_fc_network_policy) | **POST** /api/v1/vnic/FcNetworkPolicies | Create a 'vnic.FcNetworkPolicy' resource.
-*VnicApi* | [**create_vnic_fc_qos_policy**](docs/VnicApi.md#create_vnic_fc_qos_policy) | **POST** /api/v1/vnic/FcQosPolicies | Create a 'vnic.FcQosPolicy' resource.
-*VnicApi* | [**create_vnic_iscsi_adapter_policy**](docs/VnicApi.md#create_vnic_iscsi_adapter_policy) | **POST** /api/v1/vnic/IscsiAdapterPolicies | Create a 'vnic.IscsiAdapterPolicy' resource.
-*VnicApi* | [**create_vnic_iscsi_boot_policy**](docs/VnicApi.md#create_vnic_iscsi_boot_policy) | **POST** /api/v1/vnic/IscsiBootPolicies | Create a 'vnic.IscsiBootPolicy' resource.
-*VnicApi* | [**create_vnic_iscsi_static_target_policy**](docs/VnicApi.md#create_vnic_iscsi_static_target_policy) | **POST** /api/v1/vnic/IscsiStaticTargetPolicies | Create a 'vnic.IscsiStaticTargetPolicy' resource.
-*VnicApi* | [**create_vnic_lan_connectivity_policy**](docs/VnicApi.md#create_vnic_lan_connectivity_policy) | **POST** /api/v1/vnic/LanConnectivityPolicies | Create a 'vnic.LanConnectivityPolicy' resource.
-*VnicApi* | [**create_vnic_san_connectivity_policy**](docs/VnicApi.md#create_vnic_san_connectivity_policy) | **POST** /api/v1/vnic/SanConnectivityPolicies | Create a 'vnic.SanConnectivityPolicy' resource.
-*VnicApi* | [**delete_vnic_eth_adapter_policy**](docs/VnicApi.md#delete_vnic_eth_adapter_policy) | **DELETE** /api/v1/vnic/EthAdapterPolicies/{Moid} | Delete a 'vnic.EthAdapterPolicy' resource.
-*VnicApi* | [**delete_vnic_eth_if**](docs/VnicApi.md#delete_vnic_eth_if) | **DELETE** /api/v1/vnic/EthIfs/{Moid} | Delete a 'vnic.EthIf' resource.
-*VnicApi* | [**delete_vnic_eth_network_policy**](docs/VnicApi.md#delete_vnic_eth_network_policy) | **DELETE** /api/v1/vnic/EthNetworkPolicies/{Moid} | Delete a 'vnic.EthNetworkPolicy' resource.
-*VnicApi* | [**delete_vnic_eth_qos_policy**](docs/VnicApi.md#delete_vnic_eth_qos_policy) | **DELETE** /api/v1/vnic/EthQosPolicies/{Moid} | Delete a 'vnic.EthQosPolicy' resource.
-*VnicApi* | [**delete_vnic_fc_adapter_policy**](docs/VnicApi.md#delete_vnic_fc_adapter_policy) | **DELETE** /api/v1/vnic/FcAdapterPolicies/{Moid} | Delete a 'vnic.FcAdapterPolicy' resource.
-*VnicApi* | [**delete_vnic_fc_if**](docs/VnicApi.md#delete_vnic_fc_if) | **DELETE** /api/v1/vnic/FcIfs/{Moid} | Delete a 'vnic.FcIf' resource.
-*VnicApi* | [**delete_vnic_fc_network_policy**](docs/VnicApi.md#delete_vnic_fc_network_policy) | **DELETE** /api/v1/vnic/FcNetworkPolicies/{Moid} | Delete a 'vnic.FcNetworkPolicy' resource.
-*VnicApi* | [**delete_vnic_fc_qos_policy**](docs/VnicApi.md#delete_vnic_fc_qos_policy) | **DELETE** /api/v1/vnic/FcQosPolicies/{Moid} | Delete a 'vnic.FcQosPolicy' resource.
-*VnicApi* | [**delete_vnic_iscsi_adapter_policy**](docs/VnicApi.md#delete_vnic_iscsi_adapter_policy) | **DELETE** /api/v1/vnic/IscsiAdapterPolicies/{Moid} | Delete a 'vnic.IscsiAdapterPolicy' resource.
-*VnicApi* | [**delete_vnic_iscsi_boot_policy**](docs/VnicApi.md#delete_vnic_iscsi_boot_policy) | **DELETE** /api/v1/vnic/IscsiBootPolicies/{Moid} | Delete a 'vnic.IscsiBootPolicy' resource.
-*VnicApi* | [**delete_vnic_iscsi_static_target_policy**](docs/VnicApi.md#delete_vnic_iscsi_static_target_policy) | **DELETE** /api/v1/vnic/IscsiStaticTargetPolicies/{Moid} | Delete a 'vnic.IscsiStaticTargetPolicy' resource.
-*VnicApi* | [**delete_vnic_lan_connectivity_policy**](docs/VnicApi.md#delete_vnic_lan_connectivity_policy) | **DELETE** /api/v1/vnic/LanConnectivityPolicies/{Moid} | Delete a 'vnic.LanConnectivityPolicy' resource.
-*VnicApi* | [**delete_vnic_san_connectivity_policy**](docs/VnicApi.md#delete_vnic_san_connectivity_policy) | **DELETE** /api/v1/vnic/SanConnectivityPolicies/{Moid} | Delete a 'vnic.SanConnectivityPolicy' resource.
-*VnicApi* | [**get_vnic_eth_adapter_policy_by_moid**](docs/VnicApi.md#get_vnic_eth_adapter_policy_by_moid) | **GET** /api/v1/vnic/EthAdapterPolicies/{Moid} | Read a 'vnic.EthAdapterPolicy' resource.
-*VnicApi* | [**get_vnic_eth_adapter_policy_list**](docs/VnicApi.md#get_vnic_eth_adapter_policy_list) | **GET** /api/v1/vnic/EthAdapterPolicies | Read a 'vnic.EthAdapterPolicy' resource.
-*VnicApi* | [**get_vnic_eth_if_by_moid**](docs/VnicApi.md#get_vnic_eth_if_by_moid) | **GET** /api/v1/vnic/EthIfs/{Moid} | Read a 'vnic.EthIf' resource.
-*VnicApi* | [**get_vnic_eth_if_list**](docs/VnicApi.md#get_vnic_eth_if_list) | **GET** /api/v1/vnic/EthIfs | Read a 'vnic.EthIf' resource.
-*VnicApi* | [**get_vnic_eth_network_policy_by_moid**](docs/VnicApi.md#get_vnic_eth_network_policy_by_moid) | **GET** /api/v1/vnic/EthNetworkPolicies/{Moid} | Read a 'vnic.EthNetworkPolicy' resource.
-*VnicApi* | [**get_vnic_eth_network_policy_list**](docs/VnicApi.md#get_vnic_eth_network_policy_list) | **GET** /api/v1/vnic/EthNetworkPolicies | Read a 'vnic.EthNetworkPolicy' resource.
-*VnicApi* | [**get_vnic_eth_qos_policy_by_moid**](docs/VnicApi.md#get_vnic_eth_qos_policy_by_moid) | **GET** /api/v1/vnic/EthQosPolicies/{Moid} | Read a 'vnic.EthQosPolicy' resource.
-*VnicApi* | [**get_vnic_eth_qos_policy_list**](docs/VnicApi.md#get_vnic_eth_qos_policy_list) | **GET** /api/v1/vnic/EthQosPolicies | Read a 'vnic.EthQosPolicy' resource.
-*VnicApi* | [**get_vnic_fc_adapter_policy_by_moid**](docs/VnicApi.md#get_vnic_fc_adapter_policy_by_moid) | **GET** /api/v1/vnic/FcAdapterPolicies/{Moid} | Read a 'vnic.FcAdapterPolicy' resource.
-*VnicApi* | [**get_vnic_fc_adapter_policy_list**](docs/VnicApi.md#get_vnic_fc_adapter_policy_list) | **GET** /api/v1/vnic/FcAdapterPolicies | Read a 'vnic.FcAdapterPolicy' resource.
-*VnicApi* | [**get_vnic_fc_if_by_moid**](docs/VnicApi.md#get_vnic_fc_if_by_moid) | **GET** /api/v1/vnic/FcIfs/{Moid} | Read a 'vnic.FcIf' resource.
-*VnicApi* | [**get_vnic_fc_if_list**](docs/VnicApi.md#get_vnic_fc_if_list) | **GET** /api/v1/vnic/FcIfs | Read a 'vnic.FcIf' resource.
-*VnicApi* | [**get_vnic_fc_network_policy_by_moid**](docs/VnicApi.md#get_vnic_fc_network_policy_by_moid) | **GET** /api/v1/vnic/FcNetworkPolicies/{Moid} | Read a 'vnic.FcNetworkPolicy' resource.
-*VnicApi* | [**get_vnic_fc_network_policy_list**](docs/VnicApi.md#get_vnic_fc_network_policy_list) | **GET** /api/v1/vnic/FcNetworkPolicies | Read a 'vnic.FcNetworkPolicy' resource.
-*VnicApi* | [**get_vnic_fc_qos_policy_by_moid**](docs/VnicApi.md#get_vnic_fc_qos_policy_by_moid) | **GET** /api/v1/vnic/FcQosPolicies/{Moid} | Read a 'vnic.FcQosPolicy' resource.
-*VnicApi* | [**get_vnic_fc_qos_policy_list**](docs/VnicApi.md#get_vnic_fc_qos_policy_list) | **GET** /api/v1/vnic/FcQosPolicies | Read a 'vnic.FcQosPolicy' resource.
-*VnicApi* | [**get_vnic_iscsi_adapter_policy_by_moid**](docs/VnicApi.md#get_vnic_iscsi_adapter_policy_by_moid) | **GET** /api/v1/vnic/IscsiAdapterPolicies/{Moid} | Read a 'vnic.IscsiAdapterPolicy' resource.
-*VnicApi* | [**get_vnic_iscsi_adapter_policy_list**](docs/VnicApi.md#get_vnic_iscsi_adapter_policy_list) | **GET** /api/v1/vnic/IscsiAdapterPolicies | Read a 'vnic.IscsiAdapterPolicy' resource.
-*VnicApi* | [**get_vnic_iscsi_boot_policy_by_moid**](docs/VnicApi.md#get_vnic_iscsi_boot_policy_by_moid) | **GET** /api/v1/vnic/IscsiBootPolicies/{Moid} | Read a 'vnic.IscsiBootPolicy' resource.
-*VnicApi* | [**get_vnic_iscsi_boot_policy_list**](docs/VnicApi.md#get_vnic_iscsi_boot_policy_list) | **GET** /api/v1/vnic/IscsiBootPolicies | Read a 'vnic.IscsiBootPolicy' resource.
-*VnicApi* | [**get_vnic_iscsi_static_target_policy_by_moid**](docs/VnicApi.md#get_vnic_iscsi_static_target_policy_by_moid) | **GET** /api/v1/vnic/IscsiStaticTargetPolicies/{Moid} | Read a 'vnic.IscsiStaticTargetPolicy' resource.
-*VnicApi* | [**get_vnic_iscsi_static_target_policy_list**](docs/VnicApi.md#get_vnic_iscsi_static_target_policy_list) | **GET** /api/v1/vnic/IscsiStaticTargetPolicies | Read a 'vnic.IscsiStaticTargetPolicy' resource.
-*VnicApi* | [**get_vnic_lan_connectivity_policy_by_moid**](docs/VnicApi.md#get_vnic_lan_connectivity_policy_by_moid) | **GET** /api/v1/vnic/LanConnectivityPolicies/{Moid} | Read a 'vnic.LanConnectivityPolicy' resource.
-*VnicApi* | [**get_vnic_lan_connectivity_policy_list**](docs/VnicApi.md#get_vnic_lan_connectivity_policy_list) | **GET** /api/v1/vnic/LanConnectivityPolicies | Read a 'vnic.LanConnectivityPolicy' resource.
-*VnicApi* | [**get_vnic_lcp_status_by_moid**](docs/VnicApi.md#get_vnic_lcp_status_by_moid) | **GET** /api/v1/vnic/LcpStatuses/{Moid} | Read a 'vnic.LcpStatus' resource.
-*VnicApi* | [**get_vnic_lcp_status_list**](docs/VnicApi.md#get_vnic_lcp_status_list) | **GET** /api/v1/vnic/LcpStatuses | Read a 'vnic.LcpStatus' resource.
-*VnicApi* | [**get_vnic_san_connectivity_policy_by_moid**](docs/VnicApi.md#get_vnic_san_connectivity_policy_by_moid) | **GET** /api/v1/vnic/SanConnectivityPolicies/{Moid} | Read a 'vnic.SanConnectivityPolicy' resource.
-*VnicApi* | [**get_vnic_san_connectivity_policy_list**](docs/VnicApi.md#get_vnic_san_connectivity_policy_list) | **GET** /api/v1/vnic/SanConnectivityPolicies | Read a 'vnic.SanConnectivityPolicy' resource.
-*VnicApi* | [**get_vnic_scp_status_by_moid**](docs/VnicApi.md#get_vnic_scp_status_by_moid) | **GET** /api/v1/vnic/ScpStatuses/{Moid} | Read a 'vnic.ScpStatus' resource.
-*VnicApi* | [**get_vnic_scp_status_list**](docs/VnicApi.md#get_vnic_scp_status_list) | **GET** /api/v1/vnic/ScpStatuses | Read a 'vnic.ScpStatus' resource.
-*VnicApi* | [**patch_vnic_eth_adapter_policy**](docs/VnicApi.md#patch_vnic_eth_adapter_policy) | **PATCH** /api/v1/vnic/EthAdapterPolicies/{Moid} | Update a 'vnic.EthAdapterPolicy' resource.
-*VnicApi* | [**patch_vnic_eth_if**](docs/VnicApi.md#patch_vnic_eth_if) | **PATCH** /api/v1/vnic/EthIfs/{Moid} | Update a 'vnic.EthIf' resource.
-*VnicApi* | [**patch_vnic_eth_network_policy**](docs/VnicApi.md#patch_vnic_eth_network_policy) | **PATCH** /api/v1/vnic/EthNetworkPolicies/{Moid} | Update a 'vnic.EthNetworkPolicy' resource.
-*VnicApi* | [**patch_vnic_eth_qos_policy**](docs/VnicApi.md#patch_vnic_eth_qos_policy) | **PATCH** /api/v1/vnic/EthQosPolicies/{Moid} | Update a 'vnic.EthQosPolicy' resource.
-*VnicApi* | [**patch_vnic_fc_adapter_policy**](docs/VnicApi.md#patch_vnic_fc_adapter_policy) | **PATCH** /api/v1/vnic/FcAdapterPolicies/{Moid} | Update a 'vnic.FcAdapterPolicy' resource.
-*VnicApi* | [**patch_vnic_fc_if**](docs/VnicApi.md#patch_vnic_fc_if) | **PATCH** /api/v1/vnic/FcIfs/{Moid} | Update a 'vnic.FcIf' resource.
-*VnicApi* | [**patch_vnic_fc_network_policy**](docs/VnicApi.md#patch_vnic_fc_network_policy) | **PATCH** /api/v1/vnic/FcNetworkPolicies/{Moid} | Update a 'vnic.FcNetworkPolicy' resource.
-*VnicApi* | [**patch_vnic_fc_qos_policy**](docs/VnicApi.md#patch_vnic_fc_qos_policy) | **PATCH** /api/v1/vnic/FcQosPolicies/{Moid} | Update a 'vnic.FcQosPolicy' resource.
-*VnicApi* | [**patch_vnic_iscsi_adapter_policy**](docs/VnicApi.md#patch_vnic_iscsi_adapter_policy) | **PATCH** /api/v1/vnic/IscsiAdapterPolicies/{Moid} | Update a 'vnic.IscsiAdapterPolicy' resource.
-*VnicApi* | [**patch_vnic_iscsi_boot_policy**](docs/VnicApi.md#patch_vnic_iscsi_boot_policy) | **PATCH** /api/v1/vnic/IscsiBootPolicies/{Moid} | Update a 'vnic.IscsiBootPolicy' resource.
-*VnicApi* | [**patch_vnic_iscsi_static_target_policy**](docs/VnicApi.md#patch_vnic_iscsi_static_target_policy) | **PATCH** /api/v1/vnic/IscsiStaticTargetPolicies/{Moid} | Update a 'vnic.IscsiStaticTargetPolicy' resource.
-*VnicApi* | [**patch_vnic_lan_connectivity_policy**](docs/VnicApi.md#patch_vnic_lan_connectivity_policy) | **PATCH** /api/v1/vnic/LanConnectivityPolicies/{Moid} | Update a 'vnic.LanConnectivityPolicy' resource.
-*VnicApi* | [**patch_vnic_san_connectivity_policy**](docs/VnicApi.md#patch_vnic_san_connectivity_policy) | **PATCH** /api/v1/vnic/SanConnectivityPolicies/{Moid} | Update a 'vnic.SanConnectivityPolicy' resource.
-*VnicApi* | [**update_vnic_eth_adapter_policy**](docs/VnicApi.md#update_vnic_eth_adapter_policy) | **POST** /api/v1/vnic/EthAdapterPolicies/{Moid} | Update a 'vnic.EthAdapterPolicy' resource.
-*VnicApi* | [**update_vnic_eth_if**](docs/VnicApi.md#update_vnic_eth_if) | **POST** /api/v1/vnic/EthIfs/{Moid} | Update a 'vnic.EthIf' resource.
-*VnicApi* | [**update_vnic_eth_network_policy**](docs/VnicApi.md#update_vnic_eth_network_policy) | **POST** /api/v1/vnic/EthNetworkPolicies/{Moid} | Update a 'vnic.EthNetworkPolicy' resource.
-*VnicApi* | [**update_vnic_eth_qos_policy**](docs/VnicApi.md#update_vnic_eth_qos_policy) | **POST** /api/v1/vnic/EthQosPolicies/{Moid} | Update a 'vnic.EthQosPolicy' resource.
-*VnicApi* | [**update_vnic_fc_adapter_policy**](docs/VnicApi.md#update_vnic_fc_adapter_policy) | **POST** /api/v1/vnic/FcAdapterPolicies/{Moid} | Update a 'vnic.FcAdapterPolicy' resource.
-*VnicApi* | [**update_vnic_fc_if**](docs/VnicApi.md#update_vnic_fc_if) | **POST** /api/v1/vnic/FcIfs/{Moid} | Update a 'vnic.FcIf' resource.
-*VnicApi* | [**update_vnic_fc_network_policy**](docs/VnicApi.md#update_vnic_fc_network_policy) | **POST** /api/v1/vnic/FcNetworkPolicies/{Moid} | Update a 'vnic.FcNetworkPolicy' resource.
-*VnicApi* | [**update_vnic_fc_qos_policy**](docs/VnicApi.md#update_vnic_fc_qos_policy) | **POST** /api/v1/vnic/FcQosPolicies/{Moid} | Update a 'vnic.FcQosPolicy' resource.
-*VnicApi* | [**update_vnic_iscsi_adapter_policy**](docs/VnicApi.md#update_vnic_iscsi_adapter_policy) | **POST** /api/v1/vnic/IscsiAdapterPolicies/{Moid} | Update a 'vnic.IscsiAdapterPolicy' resource.
-*VnicApi* | [**update_vnic_iscsi_boot_policy**](docs/VnicApi.md#update_vnic_iscsi_boot_policy) | **POST** /api/v1/vnic/IscsiBootPolicies/{Moid} | Update a 'vnic.IscsiBootPolicy' resource.
-*VnicApi* | [**update_vnic_iscsi_static_target_policy**](docs/VnicApi.md#update_vnic_iscsi_static_target_policy) | **POST** /api/v1/vnic/IscsiStaticTargetPolicies/{Moid} | Update a 'vnic.IscsiStaticTargetPolicy' resource.
-*VnicApi* | [**update_vnic_lan_connectivity_policy**](docs/VnicApi.md#update_vnic_lan_connectivity_policy) | **POST** /api/v1/vnic/LanConnectivityPolicies/{Moid} | Update a 'vnic.LanConnectivityPolicy' resource.
-*VnicApi* | [**update_vnic_san_connectivity_policy**](docs/VnicApi.md#update_vnic_san_connectivity_policy) | **POST** /api/v1/vnic/SanConnectivityPolicies/{Moid} | Update a 'vnic.SanConnectivityPolicy' resource.
-*VrfApi* | [**create_vrf_vrf**](docs/VrfApi.md#create_vrf_vrf) | **POST** /api/v1/vrf/Vrves | Create a 'vrf.Vrf' resource.
-*VrfApi* | [**delete_vrf_vrf**](docs/VrfApi.md#delete_vrf_vrf) | **DELETE** /api/v1/vrf/Vrves/{Moid} | Delete a 'vrf.Vrf' resource.
-*VrfApi* | [**get_vrf_vrf_by_moid**](docs/VrfApi.md#get_vrf_vrf_by_moid) | **GET** /api/v1/vrf/Vrves/{Moid} | Read a 'vrf.Vrf' resource.
-*VrfApi* | [**get_vrf_vrf_list**](docs/VrfApi.md#get_vrf_vrf_list) | **GET** /api/v1/vrf/Vrves | Read a 'vrf.Vrf' resource.
-*VrfApi* | [**patch_vrf_vrf**](docs/VrfApi.md#patch_vrf_vrf) | **PATCH** /api/v1/vrf/Vrves/{Moid} | Update a 'vrf.Vrf' resource.
-*VrfApi* | [**update_vrf_vrf**](docs/VrfApi.md#update_vrf_vrf) | **POST** /api/v1/vrf/Vrves/{Moid} | Update a 'vrf.Vrf' resource.
-*WorkflowApi* | [**create_workflow_batch_api_executor**](docs/WorkflowApi.md#create_workflow_batch_api_executor) | **POST** /api/v1/workflow/BatchApiExecutors | Create a 'workflow.BatchApiExecutor' resource.
-*WorkflowApi* | [**create_workflow_custom_data_type_definition**](docs/WorkflowApi.md#create_workflow_custom_data_type_definition) | **POST** /api/v1/workflow/CustomDataTypeDefinitions | Create a 'workflow.CustomDataTypeDefinition' resource.
-*WorkflowApi* | [**create_workflow_error_response_handler**](docs/WorkflowApi.md#create_workflow_error_response_handler) | **POST** /api/v1/workflow/ErrorResponseHandlers | Create a 'workflow.ErrorResponseHandler' resource.
-*WorkflowApi* | [**create_workflow_rollback_workflow**](docs/WorkflowApi.md#create_workflow_rollback_workflow) | **POST** /api/v1/workflow/RollbackWorkflows | Create a 'workflow.RollbackWorkflow' resource.
-*WorkflowApi* | [**create_workflow_task_definition**](docs/WorkflowApi.md#create_workflow_task_definition) | **POST** /api/v1/workflow/TaskDefinitions | Create a 'workflow.TaskDefinition' resource.
-*WorkflowApi* | [**create_workflow_template_evaluation**](docs/WorkflowApi.md#create_workflow_template_evaluation) | **POST** /api/v1/workflow/TemplateEvaluations | Create a 'workflow.TemplateEvaluation' resource.
-*WorkflowApi* | [**create_workflow_workflow_definition**](docs/WorkflowApi.md#create_workflow_workflow_definition) | **POST** /api/v1/workflow/WorkflowDefinitions | Create a 'workflow.WorkflowDefinition' resource.
-*WorkflowApi* | [**create_workflow_workflow_info**](docs/WorkflowApi.md#create_workflow_workflow_info) | **POST** /api/v1/workflow/WorkflowInfos | Create a 'workflow.WorkflowInfo' resource.
-*WorkflowApi* | [**delete_workflow_batch_api_executor**](docs/WorkflowApi.md#delete_workflow_batch_api_executor) | **DELETE** /api/v1/workflow/BatchApiExecutors/{Moid} | Delete a 'workflow.BatchApiExecutor' resource.
-*WorkflowApi* | [**delete_workflow_custom_data_type_definition**](docs/WorkflowApi.md#delete_workflow_custom_data_type_definition) | **DELETE** /api/v1/workflow/CustomDataTypeDefinitions/{Moid} | Delete a 'workflow.CustomDataTypeDefinition' resource.
-*WorkflowApi* | [**delete_workflow_error_response_handler**](docs/WorkflowApi.md#delete_workflow_error_response_handler) | **DELETE** /api/v1/workflow/ErrorResponseHandlers/{Moid} | Delete a 'workflow.ErrorResponseHandler' resource.
-*WorkflowApi* | [**delete_workflow_rollback_workflow**](docs/WorkflowApi.md#delete_workflow_rollback_workflow) | **DELETE** /api/v1/workflow/RollbackWorkflows/{Moid} | Delete a 'workflow.RollbackWorkflow' resource.
-*WorkflowApi* | [**delete_workflow_task_definition**](docs/WorkflowApi.md#delete_workflow_task_definition) | **DELETE** /api/v1/workflow/TaskDefinitions/{Moid} | Delete a 'workflow.TaskDefinition' resource.
-*WorkflowApi* | [**delete_workflow_workflow_definition**](docs/WorkflowApi.md#delete_workflow_workflow_definition) | **DELETE** /api/v1/workflow/WorkflowDefinitions/{Moid} | Delete a 'workflow.WorkflowDefinition' resource.
-*WorkflowApi* | [**delete_workflow_workflow_info**](docs/WorkflowApi.md#delete_workflow_workflow_info) | **DELETE** /api/v1/workflow/WorkflowInfos/{Moid} | Delete a 'workflow.WorkflowInfo' resource.
-*WorkflowApi* | [**get_workflow_batch_api_executor_by_moid**](docs/WorkflowApi.md#get_workflow_batch_api_executor_by_moid) | **GET** /api/v1/workflow/BatchApiExecutors/{Moid} | Read a 'workflow.BatchApiExecutor' resource.
-*WorkflowApi* | [**get_workflow_batch_api_executor_list**](docs/WorkflowApi.md#get_workflow_batch_api_executor_list) | **GET** /api/v1/workflow/BatchApiExecutors | Read a 'workflow.BatchApiExecutor' resource.
-*WorkflowApi* | [**get_workflow_build_task_meta_by_moid**](docs/WorkflowApi.md#get_workflow_build_task_meta_by_moid) | **GET** /api/v1/workflow/BuildTaskMeta/{Moid} | Read a 'workflow.BuildTaskMeta' resource.
-*WorkflowApi* | [**get_workflow_build_task_meta_list**](docs/WorkflowApi.md#get_workflow_build_task_meta_list) | **GET** /api/v1/workflow/BuildTaskMeta | Read a 'workflow.BuildTaskMeta' resource.
-*WorkflowApi* | [**get_workflow_build_task_meta_owner_by_moid**](docs/WorkflowApi.md#get_workflow_build_task_meta_owner_by_moid) | **GET** /api/v1/workflow/BuildTaskMetaOwners/{Moid} | Read a 'workflow.BuildTaskMetaOwner' resource.
-*WorkflowApi* | [**get_workflow_build_task_meta_owner_list**](docs/WorkflowApi.md#get_workflow_build_task_meta_owner_list) | **GET** /api/v1/workflow/BuildTaskMetaOwners | Read a 'workflow.BuildTaskMetaOwner' resource.
-*WorkflowApi* | [**get_workflow_catalog_by_moid**](docs/WorkflowApi.md#get_workflow_catalog_by_moid) | **GET** /api/v1/workflow/Catalogs/{Moid} | Read a 'workflow.Catalog' resource.
-*WorkflowApi* | [**get_workflow_catalog_list**](docs/WorkflowApi.md#get_workflow_catalog_list) | **GET** /api/v1/workflow/Catalogs | Read a 'workflow.Catalog' resource.
-*WorkflowApi* | [**get_workflow_custom_data_type_definition_by_moid**](docs/WorkflowApi.md#get_workflow_custom_data_type_definition_by_moid) | **GET** /api/v1/workflow/CustomDataTypeDefinitions/{Moid} | Read a 'workflow.CustomDataTypeDefinition' resource.
-*WorkflowApi* | [**get_workflow_custom_data_type_definition_list**](docs/WorkflowApi.md#get_workflow_custom_data_type_definition_list) | **GET** /api/v1/workflow/CustomDataTypeDefinitions | Read a 'workflow.CustomDataTypeDefinition' resource.
-*WorkflowApi* | [**get_workflow_error_response_handler_by_moid**](docs/WorkflowApi.md#get_workflow_error_response_handler_by_moid) | **GET** /api/v1/workflow/ErrorResponseHandlers/{Moid} | Read a 'workflow.ErrorResponseHandler' resource.
-*WorkflowApi* | [**get_workflow_error_response_handler_list**](docs/WorkflowApi.md#get_workflow_error_response_handler_list) | **GET** /api/v1/workflow/ErrorResponseHandlers | Read a 'workflow.ErrorResponseHandler' resource.
-*WorkflowApi* | [**get_workflow_pending_dynamic_workflow_info_by_moid**](docs/WorkflowApi.md#get_workflow_pending_dynamic_workflow_info_by_moid) | **GET** /api/v1/workflow/PendingDynamicWorkflowInfos/{Moid} | Read a 'workflow.PendingDynamicWorkflowInfo' resource.
-*WorkflowApi* | [**get_workflow_pending_dynamic_workflow_info_list**](docs/WorkflowApi.md#get_workflow_pending_dynamic_workflow_info_list) | **GET** /api/v1/workflow/PendingDynamicWorkflowInfos | Read a 'workflow.PendingDynamicWorkflowInfo' resource.
-*WorkflowApi* | [**get_workflow_rollback_workflow_by_moid**](docs/WorkflowApi.md#get_workflow_rollback_workflow_by_moid) | **GET** /api/v1/workflow/RollbackWorkflows/{Moid} | Read a 'workflow.RollbackWorkflow' resource.
-*WorkflowApi* | [**get_workflow_rollback_workflow_list**](docs/WorkflowApi.md#get_workflow_rollback_workflow_list) | **GET** /api/v1/workflow/RollbackWorkflows | Read a 'workflow.RollbackWorkflow' resource.
-*WorkflowApi* | [**get_workflow_task_debug_log_by_moid**](docs/WorkflowApi.md#get_workflow_task_debug_log_by_moid) | **GET** /api/v1/workflow/TaskDebugLogs/{Moid} | Read a 'workflow.TaskDebugLog' resource.
-*WorkflowApi* | [**get_workflow_task_debug_log_list**](docs/WorkflowApi.md#get_workflow_task_debug_log_list) | **GET** /api/v1/workflow/TaskDebugLogs | Read a 'workflow.TaskDebugLog' resource.
-*WorkflowApi* | [**get_workflow_task_definition_by_moid**](docs/WorkflowApi.md#get_workflow_task_definition_by_moid) | **GET** /api/v1/workflow/TaskDefinitions/{Moid} | Read a 'workflow.TaskDefinition' resource.
-*WorkflowApi* | [**get_workflow_task_definition_list**](docs/WorkflowApi.md#get_workflow_task_definition_list) | **GET** /api/v1/workflow/TaskDefinitions | Read a 'workflow.TaskDefinition' resource.
-*WorkflowApi* | [**get_workflow_task_info_by_moid**](docs/WorkflowApi.md#get_workflow_task_info_by_moid) | **GET** /api/v1/workflow/TaskInfos/{Moid} | Read a 'workflow.TaskInfo' resource.
-*WorkflowApi* | [**get_workflow_task_info_list**](docs/WorkflowApi.md#get_workflow_task_info_list) | **GET** /api/v1/workflow/TaskInfos | Read a 'workflow.TaskInfo' resource.
-*WorkflowApi* | [**get_workflow_task_metadata_by_moid**](docs/WorkflowApi.md#get_workflow_task_metadata_by_moid) | **GET** /api/v1/workflow/TaskMetadata/{Moid} | Read a 'workflow.TaskMetadata' resource.
-*WorkflowApi* | [**get_workflow_task_metadata_list**](docs/WorkflowApi.md#get_workflow_task_metadata_list) | **GET** /api/v1/workflow/TaskMetadata | Read a 'workflow.TaskMetadata' resource.
-*WorkflowApi* | [**get_workflow_template_function_meta_by_moid**](docs/WorkflowApi.md#get_workflow_template_function_meta_by_moid) | **GET** /api/v1/workflow/TemplateFunctionMeta/{Moid} | Read a 'workflow.TemplateFunctionMeta' resource.
-*WorkflowApi* | [**get_workflow_template_function_meta_list**](docs/WorkflowApi.md#get_workflow_template_function_meta_list) | **GET** /api/v1/workflow/TemplateFunctionMeta | Read a 'workflow.TemplateFunctionMeta' resource.
-*WorkflowApi* | [**get_workflow_workflow_definition_by_moid**](docs/WorkflowApi.md#get_workflow_workflow_definition_by_moid) | **GET** /api/v1/workflow/WorkflowDefinitions/{Moid} | Read a 'workflow.WorkflowDefinition' resource.
-*WorkflowApi* | [**get_workflow_workflow_definition_list**](docs/WorkflowApi.md#get_workflow_workflow_definition_list) | **GET** /api/v1/workflow/WorkflowDefinitions | Read a 'workflow.WorkflowDefinition' resource.
-*WorkflowApi* | [**get_workflow_workflow_info_by_moid**](docs/WorkflowApi.md#get_workflow_workflow_info_by_moid) | **GET** /api/v1/workflow/WorkflowInfos/{Moid} | Read a 'workflow.WorkflowInfo' resource.
-*WorkflowApi* | [**get_workflow_workflow_info_list**](docs/WorkflowApi.md#get_workflow_workflow_info_list) | **GET** /api/v1/workflow/WorkflowInfos | Read a 'workflow.WorkflowInfo' resource.
-*WorkflowApi* | [**get_workflow_workflow_meta_by_moid**](docs/WorkflowApi.md#get_workflow_workflow_meta_by_moid) | **GET** /api/v1/workflow/WorkflowMeta/{Moid} | Read a 'workflow.WorkflowMeta' resource.
-*WorkflowApi* | [**get_workflow_workflow_meta_list**](docs/WorkflowApi.md#get_workflow_workflow_meta_list) | **GET** /api/v1/workflow/WorkflowMeta | Read a 'workflow.WorkflowMeta' resource.
-*WorkflowApi* | [**get_workflow_workflow_metadata_by_moid**](docs/WorkflowApi.md#get_workflow_workflow_metadata_by_moid) | **GET** /api/v1/workflow/WorkflowMetadata/{Moid} | Read a 'workflow.WorkflowMetadata' resource.
-*WorkflowApi* | [**get_workflow_workflow_metadata_list**](docs/WorkflowApi.md#get_workflow_workflow_metadata_list) | **GET** /api/v1/workflow/WorkflowMetadata | Read a 'workflow.WorkflowMetadata' resource.
-*WorkflowApi* | [**patch_workflow_batch_api_executor**](docs/WorkflowApi.md#patch_workflow_batch_api_executor) | **PATCH** /api/v1/workflow/BatchApiExecutors/{Moid} | Update a 'workflow.BatchApiExecutor' resource.
-*WorkflowApi* | [**patch_workflow_custom_data_type_definition**](docs/WorkflowApi.md#patch_workflow_custom_data_type_definition) | **PATCH** /api/v1/workflow/CustomDataTypeDefinitions/{Moid} | Update a 'workflow.CustomDataTypeDefinition' resource.
-*WorkflowApi* | [**patch_workflow_error_response_handler**](docs/WorkflowApi.md#patch_workflow_error_response_handler) | **PATCH** /api/v1/workflow/ErrorResponseHandlers/{Moid} | Update a 'workflow.ErrorResponseHandler' resource.
-*WorkflowApi* | [**patch_workflow_rollback_workflow**](docs/WorkflowApi.md#patch_workflow_rollback_workflow) | **PATCH** /api/v1/workflow/RollbackWorkflows/{Moid} | Update a 'workflow.RollbackWorkflow' resource.
-*WorkflowApi* | [**patch_workflow_task_definition**](docs/WorkflowApi.md#patch_workflow_task_definition) | **PATCH** /api/v1/workflow/TaskDefinitions/{Moid} | Update a 'workflow.TaskDefinition' resource.
-*WorkflowApi* | [**patch_workflow_task_info**](docs/WorkflowApi.md#patch_workflow_task_info) | **PATCH** /api/v1/workflow/TaskInfos/{Moid} | Update a 'workflow.TaskInfo' resource.
-*WorkflowApi* | [**patch_workflow_workflow_definition**](docs/WorkflowApi.md#patch_workflow_workflow_definition) | **PATCH** /api/v1/workflow/WorkflowDefinitions/{Moid} | Update a 'workflow.WorkflowDefinition' resource.
-*WorkflowApi* | [**patch_workflow_workflow_info**](docs/WorkflowApi.md#patch_workflow_workflow_info) | **PATCH** /api/v1/workflow/WorkflowInfos/{Moid} | Update a 'workflow.WorkflowInfo' resource.
-*WorkflowApi* | [**update_workflow_batch_api_executor**](docs/WorkflowApi.md#update_workflow_batch_api_executor) | **POST** /api/v1/workflow/BatchApiExecutors/{Moid} | Update a 'workflow.BatchApiExecutor' resource.
-*WorkflowApi* | [**update_workflow_custom_data_type_definition**](docs/WorkflowApi.md#update_workflow_custom_data_type_definition) | **POST** /api/v1/workflow/CustomDataTypeDefinitions/{Moid} | Update a 'workflow.CustomDataTypeDefinition' resource.
-*WorkflowApi* | [**update_workflow_error_response_handler**](docs/WorkflowApi.md#update_workflow_error_response_handler) | **POST** /api/v1/workflow/ErrorResponseHandlers/{Moid} | Update a 'workflow.ErrorResponseHandler' resource.
-*WorkflowApi* | [**update_workflow_rollback_workflow**](docs/WorkflowApi.md#update_workflow_rollback_workflow) | **POST** /api/v1/workflow/RollbackWorkflows/{Moid} | Update a 'workflow.RollbackWorkflow' resource.
-*WorkflowApi* | [**update_workflow_task_definition**](docs/WorkflowApi.md#update_workflow_task_definition) | **POST** /api/v1/workflow/TaskDefinitions/{Moid} | Update a 'workflow.TaskDefinition' resource.
-*WorkflowApi* | [**update_workflow_task_info**](docs/WorkflowApi.md#update_workflow_task_info) | **POST** /api/v1/workflow/TaskInfos/{Moid} | Update a 'workflow.TaskInfo' resource.
-*WorkflowApi* | [**update_workflow_workflow_definition**](docs/WorkflowApi.md#update_workflow_workflow_definition) | **POST** /api/v1/workflow/WorkflowDefinitions/{Moid} | Update a 'workflow.WorkflowDefinition' resource.
-*WorkflowApi* | [**update_workflow_workflow_info**](docs/WorkflowApi.md#update_workflow_workflow_info) | **POST** /api/v1/workflow/WorkflowInfos/{Moid} | Update a 'workflow.WorkflowInfo' resource.
-
-
-## Documentation For Models
-
- - [AaaAbstractAuditRecord](docs/AaaAbstractAuditRecord.md)
- - [AaaAbstractAuditRecordAllOf](docs/AaaAbstractAuditRecordAllOf.md)
- - [AaaAuditRecord](docs/AaaAuditRecord.md)
- - [AaaAuditRecordAllOf](docs/AaaAuditRecordAllOf.md)
- - [AaaAuditRecordList](docs/AaaAuditRecordList.md)
- - [AaaAuditRecordListAllOf](docs/AaaAuditRecordListAllOf.md)
- - [AaaAuditRecordResponse](docs/AaaAuditRecordResponse.md)
- - [AccessAddressType](docs/AccessAddressType.md)
- - [AccessAddressTypeAllOf](docs/AccessAddressTypeAllOf.md)
- - [AccessPolicy](docs/AccessPolicy.md)
- - [AccessPolicyAllOf](docs/AccessPolicyAllOf.md)
- - [AccessPolicyList](docs/AccessPolicyList.md)
- - [AccessPolicyListAllOf](docs/AccessPolicyListAllOf.md)
- - [AccessPolicyResponse](docs/AccessPolicyResponse.md)
- - [AdapterAdapterConfig](docs/AdapterAdapterConfig.md)
- - [AdapterAdapterConfigAllOf](docs/AdapterAdapterConfigAllOf.md)
- - [AdapterConfigPolicy](docs/AdapterConfigPolicy.md)
- - [AdapterConfigPolicyAllOf](docs/AdapterConfigPolicyAllOf.md)
- - [AdapterConfigPolicyList](docs/AdapterConfigPolicyList.md)
- - [AdapterConfigPolicyListAllOf](docs/AdapterConfigPolicyListAllOf.md)
- - [AdapterConfigPolicyResponse](docs/AdapterConfigPolicyResponse.md)
- - [AdapterDceInterfaceSettings](docs/AdapterDceInterfaceSettings.md)
- - [AdapterDceInterfaceSettingsAllOf](docs/AdapterDceInterfaceSettingsAllOf.md)
- - [AdapterEthSettings](docs/AdapterEthSettings.md)
- - [AdapterEthSettingsAllOf](docs/AdapterEthSettingsAllOf.md)
- - [AdapterExtEthInterface](docs/AdapterExtEthInterface.md)
- - [AdapterExtEthInterfaceAllOf](docs/AdapterExtEthInterfaceAllOf.md)
- - [AdapterExtEthInterfaceList](docs/AdapterExtEthInterfaceList.md)
- - [AdapterExtEthInterfaceListAllOf](docs/AdapterExtEthInterfaceListAllOf.md)
- - [AdapterExtEthInterfaceRelationship](docs/AdapterExtEthInterfaceRelationship.md)
- - [AdapterExtEthInterfaceResponse](docs/AdapterExtEthInterfaceResponse.md)
- - [AdapterFcSettings](docs/AdapterFcSettings.md)
- - [AdapterFcSettingsAllOf](docs/AdapterFcSettingsAllOf.md)
- - [AdapterHostEthInterface](docs/AdapterHostEthInterface.md)
- - [AdapterHostEthInterfaceAllOf](docs/AdapterHostEthInterfaceAllOf.md)
- - [AdapterHostEthInterfaceList](docs/AdapterHostEthInterfaceList.md)
- - [AdapterHostEthInterfaceListAllOf](docs/AdapterHostEthInterfaceListAllOf.md)
- - [AdapterHostEthInterfaceRelationship](docs/AdapterHostEthInterfaceRelationship.md)
- - [AdapterHostEthInterfaceResponse](docs/AdapterHostEthInterfaceResponse.md)
- - [AdapterHostFcInterface](docs/AdapterHostFcInterface.md)
- - [AdapterHostFcInterfaceAllOf](docs/AdapterHostFcInterfaceAllOf.md)
- - [AdapterHostFcInterfaceList](docs/AdapterHostFcInterfaceList.md)
- - [AdapterHostFcInterfaceListAllOf](docs/AdapterHostFcInterfaceListAllOf.md)
- - [AdapterHostFcInterfaceRelationship](docs/AdapterHostFcInterfaceRelationship.md)
- - [AdapterHostFcInterfaceResponse](docs/AdapterHostFcInterfaceResponse.md)
- - [AdapterHostIscsiInterface](docs/AdapterHostIscsiInterface.md)
- - [AdapterHostIscsiInterfaceAllOf](docs/AdapterHostIscsiInterfaceAllOf.md)
- - [AdapterHostIscsiInterfaceList](docs/AdapterHostIscsiInterfaceList.md)
- - [AdapterHostIscsiInterfaceListAllOf](docs/AdapterHostIscsiInterfaceListAllOf.md)
- - [AdapterHostIscsiInterfaceRelationship](docs/AdapterHostIscsiInterfaceRelationship.md)
- - [AdapterHostIscsiInterfaceResponse](docs/AdapterHostIscsiInterfaceResponse.md)
- - [AdapterPortChannelSettings](docs/AdapterPortChannelSettings.md)
- - [AdapterPortChannelSettingsAllOf](docs/AdapterPortChannelSettingsAllOf.md)
- - [AdapterUnit](docs/AdapterUnit.md)
- - [AdapterUnitAllOf](docs/AdapterUnitAllOf.md)
- - [AdapterUnitExpander](docs/AdapterUnitExpander.md)
- - [AdapterUnitExpanderAllOf](docs/AdapterUnitExpanderAllOf.md)
- - [AdapterUnitExpanderList](docs/AdapterUnitExpanderList.md)
- - [AdapterUnitExpanderListAllOf](docs/AdapterUnitExpanderListAllOf.md)
- - [AdapterUnitExpanderRelationship](docs/AdapterUnitExpanderRelationship.md)
- - [AdapterUnitExpanderResponse](docs/AdapterUnitExpanderResponse.md)
- - [AdapterUnitList](docs/AdapterUnitList.md)
- - [AdapterUnitListAllOf](docs/AdapterUnitListAllOf.md)
- - [AdapterUnitRelationship](docs/AdapterUnitRelationship.md)
- - [AdapterUnitResponse](docs/AdapterUnitResponse.md)
- - [ApplianceApiStatus](docs/ApplianceApiStatus.md)
- - [ApplianceApiStatusAllOf](docs/ApplianceApiStatusAllOf.md)
- - [ApplianceAppStatus](docs/ApplianceAppStatus.md)
- - [ApplianceAppStatusAllOf](docs/ApplianceAppStatusAllOf.md)
- - [ApplianceAppStatusList](docs/ApplianceAppStatusList.md)
- - [ApplianceAppStatusListAllOf](docs/ApplianceAppStatusListAllOf.md)
- - [ApplianceAppStatusRelationship](docs/ApplianceAppStatusRelationship.md)
- - [ApplianceAppStatusResponse](docs/ApplianceAppStatusResponse.md)
- - [ApplianceAutoRmaPolicy](docs/ApplianceAutoRmaPolicy.md)
- - [ApplianceAutoRmaPolicyAllOf](docs/ApplianceAutoRmaPolicyAllOf.md)
- - [ApplianceAutoRmaPolicyList](docs/ApplianceAutoRmaPolicyList.md)
- - [ApplianceAutoRmaPolicyListAllOf](docs/ApplianceAutoRmaPolicyListAllOf.md)
- - [ApplianceAutoRmaPolicyResponse](docs/ApplianceAutoRmaPolicyResponse.md)
- - [ApplianceBackup](docs/ApplianceBackup.md)
- - [ApplianceBackupAllOf](docs/ApplianceBackupAllOf.md)
- - [ApplianceBackupBase](docs/ApplianceBackupBase.md)
- - [ApplianceBackupBaseAllOf](docs/ApplianceBackupBaseAllOf.md)
- - [ApplianceBackupList](docs/ApplianceBackupList.md)
- - [ApplianceBackupListAllOf](docs/ApplianceBackupListAllOf.md)
- - [ApplianceBackupPolicy](docs/ApplianceBackupPolicy.md)
- - [ApplianceBackupPolicyAllOf](docs/ApplianceBackupPolicyAllOf.md)
- - [ApplianceBackupPolicyList](docs/ApplianceBackupPolicyList.md)
- - [ApplianceBackupPolicyListAllOf](docs/ApplianceBackupPolicyListAllOf.md)
- - [ApplianceBackupPolicyResponse](docs/ApplianceBackupPolicyResponse.md)
- - [ApplianceBackupResponse](docs/ApplianceBackupResponse.md)
- - [ApplianceCertRenewalPhase](docs/ApplianceCertRenewalPhase.md)
- - [ApplianceCertRenewalPhaseAllOf](docs/ApplianceCertRenewalPhaseAllOf.md)
- - [ApplianceCertificateSetting](docs/ApplianceCertificateSetting.md)
- - [ApplianceCertificateSettingAllOf](docs/ApplianceCertificateSettingAllOf.md)
- - [ApplianceCertificateSettingList](docs/ApplianceCertificateSettingList.md)
- - [ApplianceCertificateSettingListAllOf](docs/ApplianceCertificateSettingListAllOf.md)
- - [ApplianceCertificateSettingResponse](docs/ApplianceCertificateSettingResponse.md)
- - [ApplianceDataExportPolicy](docs/ApplianceDataExportPolicy.md)
- - [ApplianceDataExportPolicyAllOf](docs/ApplianceDataExportPolicyAllOf.md)
- - [ApplianceDataExportPolicyList](docs/ApplianceDataExportPolicyList.md)
- - [ApplianceDataExportPolicyListAllOf](docs/ApplianceDataExportPolicyListAllOf.md)
- - [ApplianceDataExportPolicyRelationship](docs/ApplianceDataExportPolicyRelationship.md)
- - [ApplianceDataExportPolicyResponse](docs/ApplianceDataExportPolicyResponse.md)
- - [ApplianceDeviceCertificate](docs/ApplianceDeviceCertificate.md)
- - [ApplianceDeviceCertificateAllOf](docs/ApplianceDeviceCertificateAllOf.md)
- - [ApplianceDeviceCertificateList](docs/ApplianceDeviceCertificateList.md)
- - [ApplianceDeviceCertificateListAllOf](docs/ApplianceDeviceCertificateListAllOf.md)
- - [ApplianceDeviceCertificateResponse](docs/ApplianceDeviceCertificateResponse.md)
- - [ApplianceDeviceClaim](docs/ApplianceDeviceClaim.md)
- - [ApplianceDeviceClaimAllOf](docs/ApplianceDeviceClaimAllOf.md)
- - [ApplianceDeviceClaimList](docs/ApplianceDeviceClaimList.md)
- - [ApplianceDeviceClaimListAllOf](docs/ApplianceDeviceClaimListAllOf.md)
- - [ApplianceDeviceClaimResponse](docs/ApplianceDeviceClaimResponse.md)
- - [ApplianceDiagSetting](docs/ApplianceDiagSetting.md)
- - [ApplianceDiagSettingAllOf](docs/ApplianceDiagSettingAllOf.md)
- - [ApplianceDiagSettingList](docs/ApplianceDiagSettingList.md)
- - [ApplianceDiagSettingListAllOf](docs/ApplianceDiagSettingListAllOf.md)
- - [ApplianceDiagSettingResponse](docs/ApplianceDiagSettingResponse.md)
- - [ApplianceExternalSyslogSetting](docs/ApplianceExternalSyslogSetting.md)
- - [ApplianceExternalSyslogSettingAllOf](docs/ApplianceExternalSyslogSettingAllOf.md)
- - [ApplianceExternalSyslogSettingList](docs/ApplianceExternalSyslogSettingList.md)
- - [ApplianceExternalSyslogSettingListAllOf](docs/ApplianceExternalSyslogSettingListAllOf.md)
- - [ApplianceExternalSyslogSettingResponse](docs/ApplianceExternalSyslogSettingResponse.md)
- - [ApplianceFileSystemStatus](docs/ApplianceFileSystemStatus.md)
- - [ApplianceFileSystemStatusAllOf](docs/ApplianceFileSystemStatusAllOf.md)
- - [ApplianceFileSystemStatusList](docs/ApplianceFileSystemStatusList.md)
- - [ApplianceFileSystemStatusListAllOf](docs/ApplianceFileSystemStatusListAllOf.md)
- - [ApplianceFileSystemStatusRelationship](docs/ApplianceFileSystemStatusRelationship.md)
- - [ApplianceFileSystemStatusResponse](docs/ApplianceFileSystemStatusResponse.md)
- - [ApplianceGroupStatus](docs/ApplianceGroupStatus.md)
- - [ApplianceGroupStatusAllOf](docs/ApplianceGroupStatusAllOf.md)
- - [ApplianceGroupStatusList](docs/ApplianceGroupStatusList.md)
- - [ApplianceGroupStatusListAllOf](docs/ApplianceGroupStatusListAllOf.md)
- - [ApplianceGroupStatusRelationship](docs/ApplianceGroupStatusRelationship.md)
- - [ApplianceGroupStatusResponse](docs/ApplianceGroupStatusResponse.md)
- - [ApplianceImageBundle](docs/ApplianceImageBundle.md)
- - [ApplianceImageBundleAllOf](docs/ApplianceImageBundleAllOf.md)
- - [ApplianceImageBundleList](docs/ApplianceImageBundleList.md)
- - [ApplianceImageBundleListAllOf](docs/ApplianceImageBundleListAllOf.md)
- - [ApplianceImageBundleRelationship](docs/ApplianceImageBundleRelationship.md)
- - [ApplianceImageBundleResponse](docs/ApplianceImageBundleResponse.md)
- - [ApplianceKeyValuePair](docs/ApplianceKeyValuePair.md)
- - [ApplianceKeyValuePairAllOf](docs/ApplianceKeyValuePairAllOf.md)
- - [ApplianceNodeInfo](docs/ApplianceNodeInfo.md)
- - [ApplianceNodeInfoAllOf](docs/ApplianceNodeInfoAllOf.md)
- - [ApplianceNodeInfoList](docs/ApplianceNodeInfoList.md)
- - [ApplianceNodeInfoListAllOf](docs/ApplianceNodeInfoListAllOf.md)
- - [ApplianceNodeInfoRelationship](docs/ApplianceNodeInfoRelationship.md)
- - [ApplianceNodeInfoResponse](docs/ApplianceNodeInfoResponse.md)
- - [ApplianceNodeStatus](docs/ApplianceNodeStatus.md)
- - [ApplianceNodeStatusAllOf](docs/ApplianceNodeStatusAllOf.md)
- - [ApplianceNodeStatusList](docs/ApplianceNodeStatusList.md)
- - [ApplianceNodeStatusListAllOf](docs/ApplianceNodeStatusListAllOf.md)
- - [ApplianceNodeStatusRelationship](docs/ApplianceNodeStatusRelationship.md)
- - [ApplianceNodeStatusResponse](docs/ApplianceNodeStatusResponse.md)
- - [ApplianceReleaseNote](docs/ApplianceReleaseNote.md)
- - [ApplianceReleaseNoteAllOf](docs/ApplianceReleaseNoteAllOf.md)
- - [ApplianceReleaseNoteList](docs/ApplianceReleaseNoteList.md)
- - [ApplianceReleaseNoteListAllOf](docs/ApplianceReleaseNoteListAllOf.md)
- - [ApplianceReleaseNoteResponse](docs/ApplianceReleaseNoteResponse.md)
- - [ApplianceRemoteFileImport](docs/ApplianceRemoteFileImport.md)
- - [ApplianceRemoteFileImportAllOf](docs/ApplianceRemoteFileImportAllOf.md)
- - [ApplianceRemoteFileImportList](docs/ApplianceRemoteFileImportList.md)
- - [ApplianceRemoteFileImportListAllOf](docs/ApplianceRemoteFileImportListAllOf.md)
- - [ApplianceRemoteFileImportResponse](docs/ApplianceRemoteFileImportResponse.md)
- - [ApplianceRestore](docs/ApplianceRestore.md)
- - [ApplianceRestoreAllOf](docs/ApplianceRestoreAllOf.md)
- - [ApplianceRestoreList](docs/ApplianceRestoreList.md)
- - [ApplianceRestoreListAllOf](docs/ApplianceRestoreListAllOf.md)
- - [ApplianceRestoreResponse](docs/ApplianceRestoreResponse.md)
- - [ApplianceSetupInfo](docs/ApplianceSetupInfo.md)
- - [ApplianceSetupInfoAllOf](docs/ApplianceSetupInfoAllOf.md)
- - [ApplianceSetupInfoList](docs/ApplianceSetupInfoList.md)
- - [ApplianceSetupInfoListAllOf](docs/ApplianceSetupInfoListAllOf.md)
- - [ApplianceSetupInfoResponse](docs/ApplianceSetupInfoResponse.md)
- - [ApplianceStatusCheck](docs/ApplianceStatusCheck.md)
- - [ApplianceStatusCheckAllOf](docs/ApplianceStatusCheckAllOf.md)
- - [ApplianceSystemInfo](docs/ApplianceSystemInfo.md)
- - [ApplianceSystemInfoAllOf](docs/ApplianceSystemInfoAllOf.md)
- - [ApplianceSystemInfoList](docs/ApplianceSystemInfoList.md)
- - [ApplianceSystemInfoListAllOf](docs/ApplianceSystemInfoListAllOf.md)
- - [ApplianceSystemInfoRelationship](docs/ApplianceSystemInfoRelationship.md)
- - [ApplianceSystemInfoResponse](docs/ApplianceSystemInfoResponse.md)
- - [ApplianceSystemStatus](docs/ApplianceSystemStatus.md)
- - [ApplianceSystemStatusAllOf](docs/ApplianceSystemStatusAllOf.md)
- - [ApplianceSystemStatusList](docs/ApplianceSystemStatusList.md)
- - [ApplianceSystemStatusListAllOf](docs/ApplianceSystemStatusListAllOf.md)
- - [ApplianceSystemStatusRelationship](docs/ApplianceSystemStatusRelationship.md)
- - [ApplianceSystemStatusResponse](docs/ApplianceSystemStatusResponse.md)
- - [ApplianceUpgrade](docs/ApplianceUpgrade.md)
- - [ApplianceUpgradeAllOf](docs/ApplianceUpgradeAllOf.md)
- - [ApplianceUpgradeList](docs/ApplianceUpgradeList.md)
- - [ApplianceUpgradeListAllOf](docs/ApplianceUpgradeListAllOf.md)
- - [ApplianceUpgradePolicy](docs/ApplianceUpgradePolicy.md)
- - [ApplianceUpgradePolicyAllOf](docs/ApplianceUpgradePolicyAllOf.md)
- - [ApplianceUpgradePolicyList](docs/ApplianceUpgradePolicyList.md)
- - [ApplianceUpgradePolicyListAllOf](docs/ApplianceUpgradePolicyListAllOf.md)
- - [ApplianceUpgradePolicyResponse](docs/ApplianceUpgradePolicyResponse.md)
- - [ApplianceUpgradeResponse](docs/ApplianceUpgradeResponse.md)
- - [AssetAddressInformation](docs/AssetAddressInformation.md)
- - [AssetAddressInformationAllOf](docs/AssetAddressInformationAllOf.md)
- - [AssetApiKeyCredential](docs/AssetApiKeyCredential.md)
- - [AssetApiKeyCredentialAllOf](docs/AssetApiKeyCredentialAllOf.md)
- - [AssetClaimSignature](docs/AssetClaimSignature.md)
- - [AssetClaimSignatureAllOf](docs/AssetClaimSignatureAllOf.md)
- - [AssetClientCertificateCredential](docs/AssetClientCertificateCredential.md)
- - [AssetClientCertificateCredentialAllOf](docs/AssetClientCertificateCredentialAllOf.md)
- - [AssetCloudConnection](docs/AssetCloudConnection.md)
- - [AssetClusterMember](docs/AssetClusterMember.md)
- - [AssetClusterMemberAllOf](docs/AssetClusterMemberAllOf.md)
- - [AssetClusterMemberList](docs/AssetClusterMemberList.md)
- - [AssetClusterMemberListAllOf](docs/AssetClusterMemberListAllOf.md)
- - [AssetClusterMemberRelationship](docs/AssetClusterMemberRelationship.md)
- - [AssetClusterMemberResponse](docs/AssetClusterMemberResponse.md)
- - [AssetConnection](docs/AssetConnection.md)
- - [AssetConnectionAllOf](docs/AssetConnectionAllOf.md)
- - [AssetConnectionControlMessage](docs/AssetConnectionControlMessage.md)
- - [AssetConnectionControlMessageAllOf](docs/AssetConnectionControlMessageAllOf.md)
- - [AssetContractInformation](docs/AssetContractInformation.md)
- - [AssetContractInformationAllOf](docs/AssetContractInformationAllOf.md)
- - [AssetCredential](docs/AssetCredential.md)
- - [AssetCustomerInformation](docs/AssetCustomerInformation.md)
- - [AssetCustomerInformationAllOf](docs/AssetCustomerInformationAllOf.md)
- - [AssetDeployment](docs/AssetDeployment.md)
- - [AssetDeploymentAllOf](docs/AssetDeploymentAllOf.md)
- - [AssetDeploymentDevice](docs/AssetDeploymentDevice.md)
- - [AssetDeploymentDeviceAllOf](docs/AssetDeploymentDeviceAllOf.md)
- - [AssetDeploymentDeviceInformation](docs/AssetDeploymentDeviceInformation.md)
- - [AssetDeploymentDeviceInformationAllOf](docs/AssetDeploymentDeviceInformationAllOf.md)
- - [AssetDeploymentDeviceList](docs/AssetDeploymentDeviceList.md)
- - [AssetDeploymentDeviceListAllOf](docs/AssetDeploymentDeviceListAllOf.md)
- - [AssetDeploymentDeviceRelationship](docs/AssetDeploymentDeviceRelationship.md)
- - [AssetDeploymentDeviceResponse](docs/AssetDeploymentDeviceResponse.md)
- - [AssetDeploymentList](docs/AssetDeploymentList.md)
- - [AssetDeploymentListAllOf](docs/AssetDeploymentListAllOf.md)
- - [AssetDeploymentRelationship](docs/AssetDeploymentRelationship.md)
- - [AssetDeploymentResponse](docs/AssetDeploymentResponse.md)
- - [AssetDeviceClaim](docs/AssetDeviceClaim.md)
- - [AssetDeviceClaimAllOf](docs/AssetDeviceClaimAllOf.md)
- - [AssetDeviceClaimRelationship](docs/AssetDeviceClaimRelationship.md)
- - [AssetDeviceConfiguration](docs/AssetDeviceConfiguration.md)
- - [AssetDeviceConfigurationAllOf](docs/AssetDeviceConfigurationAllOf.md)
- - [AssetDeviceConfigurationList](docs/AssetDeviceConfigurationList.md)
- - [AssetDeviceConfigurationListAllOf](docs/AssetDeviceConfigurationListAllOf.md)
- - [AssetDeviceConfigurationRelationship](docs/AssetDeviceConfigurationRelationship.md)
- - [AssetDeviceConfigurationResponse](docs/AssetDeviceConfigurationResponse.md)
- - [AssetDeviceConnection](docs/AssetDeviceConnection.md)
- - [AssetDeviceConnectionAllOf](docs/AssetDeviceConnectionAllOf.md)
- - [AssetDeviceConnectionRelationship](docs/AssetDeviceConnectionRelationship.md)
- - [AssetDeviceConnectorManager](docs/AssetDeviceConnectorManager.md)
- - [AssetDeviceConnectorManagerAllOf](docs/AssetDeviceConnectorManagerAllOf.md)
- - [AssetDeviceConnectorManagerList](docs/AssetDeviceConnectorManagerList.md)
- - [AssetDeviceConnectorManagerListAllOf](docs/AssetDeviceConnectorManagerListAllOf.md)
- - [AssetDeviceConnectorManagerResponse](docs/AssetDeviceConnectorManagerResponse.md)
- - [AssetDeviceContractInformation](docs/AssetDeviceContractInformation.md)
- - [AssetDeviceContractInformationAllOf](docs/AssetDeviceContractInformationAllOf.md)
- - [AssetDeviceContractInformationList](docs/AssetDeviceContractInformationList.md)
- - [AssetDeviceContractInformationListAllOf](docs/AssetDeviceContractInformationListAllOf.md)
- - [AssetDeviceContractInformationRelationship](docs/AssetDeviceContractInformationRelationship.md)
- - [AssetDeviceContractInformationResponse](docs/AssetDeviceContractInformationResponse.md)
- - [AssetDeviceInformation](docs/AssetDeviceInformation.md)
- - [AssetDeviceInformationAllOf](docs/AssetDeviceInformationAllOf.md)
- - [AssetDeviceRegistration](docs/AssetDeviceRegistration.md)
- - [AssetDeviceRegistrationAllOf](docs/AssetDeviceRegistrationAllOf.md)
- - [AssetDeviceRegistrationList](docs/AssetDeviceRegistrationList.md)
- - [AssetDeviceRegistrationListAllOf](docs/AssetDeviceRegistrationListAllOf.md)
- - [AssetDeviceRegistrationRelationship](docs/AssetDeviceRegistrationRelationship.md)
- - [AssetDeviceRegistrationResponse](docs/AssetDeviceRegistrationResponse.md)
- - [AssetDeviceStatistics](docs/AssetDeviceStatistics.md)
- - [AssetDeviceStatisticsAllOf](docs/AssetDeviceStatisticsAllOf.md)
- - [AssetDeviceTransaction](docs/AssetDeviceTransaction.md)
- - [AssetDeviceTransactionAllOf](docs/AssetDeviceTransactionAllOf.md)
- - [AssetGlobalUltimate](docs/AssetGlobalUltimate.md)
- - [AssetGlobalUltimateAllOf](docs/AssetGlobalUltimateAllOf.md)
- - [AssetHttpConnection](docs/AssetHttpConnection.md)
- - [AssetHttpConnectionAllOf](docs/AssetHttpConnectionAllOf.md)
- - [AssetIntersightDeviceConnectorConnection](docs/AssetIntersightDeviceConnectorConnection.md)
- - [AssetMeteringType](docs/AssetMeteringType.md)
- - [AssetMeteringTypeAllOf](docs/AssetMeteringTypeAllOf.md)
- - [AssetNoAuthenticationCredential](docs/AssetNoAuthenticationCredential.md)
- - [AssetOauthBearerTokenCredential](docs/AssetOauthBearerTokenCredential.md)
- - [AssetOauthBearerTokenCredentialAllOf](docs/AssetOauthBearerTokenCredentialAllOf.md)
- - [AssetOauthClientIdSecretCredential](docs/AssetOauthClientIdSecretCredential.md)
- - [AssetOauthClientIdSecretCredentialAllOf](docs/AssetOauthClientIdSecretCredentialAllOf.md)
- - [AssetOrchestrationHitachiVirtualStoragePlatformOptions](docs/AssetOrchestrationHitachiVirtualStoragePlatformOptions.md)
- - [AssetOrchestrationHitachiVirtualStoragePlatformOptionsAllOf](docs/AssetOrchestrationHitachiVirtualStoragePlatformOptionsAllOf.md)
- - [AssetOrchestrationService](docs/AssetOrchestrationService.md)
- - [AssetParentConnectionSignature](docs/AssetParentConnectionSignature.md)
- - [AssetParentConnectionSignatureAllOf](docs/AssetParentConnectionSignatureAllOf.md)
- - [AssetProductInformation](docs/AssetProductInformation.md)
- - [AssetProductInformationAllOf](docs/AssetProductInformationAllOf.md)
- - [AssetService](docs/AssetService.md)
- - [AssetServiceAllOf](docs/AssetServiceAllOf.md)
- - [AssetServiceOptions](docs/AssetServiceOptions.md)
- - [AssetSubscription](docs/AssetSubscription.md)
- - [AssetSubscriptionAccount](docs/AssetSubscriptionAccount.md)
- - [AssetSubscriptionAccountAllOf](docs/AssetSubscriptionAccountAllOf.md)
- - [AssetSubscriptionAccountList](docs/AssetSubscriptionAccountList.md)
- - [AssetSubscriptionAccountListAllOf](docs/AssetSubscriptionAccountListAllOf.md)
- - [AssetSubscriptionAccountRelationship](docs/AssetSubscriptionAccountRelationship.md)
- - [AssetSubscriptionAccountResponse](docs/AssetSubscriptionAccountResponse.md)
- - [AssetSubscriptionAllOf](docs/AssetSubscriptionAllOf.md)
- - [AssetSubscriptionDeviceContractInformation](docs/AssetSubscriptionDeviceContractInformation.md)
- - [AssetSubscriptionDeviceContractInformationAllOf](docs/AssetSubscriptionDeviceContractInformationAllOf.md)
- - [AssetSubscriptionDeviceContractInformationList](docs/AssetSubscriptionDeviceContractInformationList.md)
- - [AssetSubscriptionDeviceContractInformationListAllOf](docs/AssetSubscriptionDeviceContractInformationListAllOf.md)
- - [AssetSubscriptionDeviceContractInformationResponse](docs/AssetSubscriptionDeviceContractInformationResponse.md)
- - [AssetSubscriptionList](docs/AssetSubscriptionList.md)
- - [AssetSubscriptionListAllOf](docs/AssetSubscriptionListAllOf.md)
- - [AssetSubscriptionRelationship](docs/AssetSubscriptionRelationship.md)
- - [AssetSubscriptionResponse](docs/AssetSubscriptionResponse.md)
- - [AssetSudiInfo](docs/AssetSudiInfo.md)
- - [AssetSudiInfoAllOf](docs/AssetSudiInfoAllOf.md)
- - [AssetTarget](docs/AssetTarget.md)
- - [AssetTargetAllOf](docs/AssetTargetAllOf.md)
- - [AssetTargetKey](docs/AssetTargetKey.md)
- - [AssetTargetKeyAllOf](docs/AssetTargetKeyAllOf.md)
- - [AssetTargetList](docs/AssetTargetList.md)
- - [AssetTargetListAllOf](docs/AssetTargetListAllOf.md)
- - [AssetTargetRelationship](docs/AssetTargetRelationship.md)
- - [AssetTargetResponse](docs/AssetTargetResponse.md)
- - [AssetTargetSignature](docs/AssetTargetSignature.md)
- - [AssetTargetSignatureAllOf](docs/AssetTargetSignatureAllOf.md)
- - [AssetTargetStatusDetails](docs/AssetTargetStatusDetails.md)
- - [AssetTerraformIntegrationService](docs/AssetTerraformIntegrationService.md)
- - [AssetTerraformIntegrationTerraformAgentOptions](docs/AssetTerraformIntegrationTerraformAgentOptions.md)
- - [AssetTerraformIntegrationTerraformAgentOptionsAllOf](docs/AssetTerraformIntegrationTerraformAgentOptionsAllOf.md)
- - [AssetTerraformIntegrationTerraformCloudOptions](docs/AssetTerraformIntegrationTerraformCloudOptions.md)
- - [AssetTerraformIntegrationTerraformCloudOptionsAllOf](docs/AssetTerraformIntegrationTerraformCloudOptionsAllOf.md)
- - [AssetUsernamePasswordCredential](docs/AssetUsernamePasswordCredential.md)
- - [AssetUsernamePasswordCredentialAllOf](docs/AssetUsernamePasswordCredentialAllOf.md)
- - [AssetVirtualizationAmazonWebServiceOptions](docs/AssetVirtualizationAmazonWebServiceOptions.md)
- - [AssetVirtualizationCloudOptions](docs/AssetVirtualizationCloudOptions.md)
- - [AssetVirtualizationCloudOptionsAllOf](docs/AssetVirtualizationCloudOptionsAllOf.md)
- - [AssetVirtualizationService](docs/AssetVirtualizationService.md)
- - [AssetVmHost](docs/AssetVmHost.md)
- - [AssetVmHostAllOf](docs/AssetVmHostAllOf.md)
- - [AssetWorkloadOptimizerAmazonWebServicesBillingOptions](docs/AssetWorkloadOptimizerAmazonWebServicesBillingOptions.md)
- - [AssetWorkloadOptimizerAmazonWebServicesBillingOptionsAllOf](docs/AssetWorkloadOptimizerAmazonWebServicesBillingOptionsAllOf.md)
- - [AssetWorkloadOptimizerHypervOptions](docs/AssetWorkloadOptimizerHypervOptions.md)
- - [AssetWorkloadOptimizerHypervOptionsAllOf](docs/AssetWorkloadOptimizerHypervOptionsAllOf.md)
- - [AssetWorkloadOptimizerMicrosoftAzureApplicationInsightsOptions](docs/AssetWorkloadOptimizerMicrosoftAzureApplicationInsightsOptions.md)
- - [AssetWorkloadOptimizerMicrosoftAzureApplicationInsightsOptionsAllOf](docs/AssetWorkloadOptimizerMicrosoftAzureApplicationInsightsOptionsAllOf.md)
- - [AssetWorkloadOptimizerMicrosoftAzureEnterpriseAgreementOptions](docs/AssetWorkloadOptimizerMicrosoftAzureEnterpriseAgreementOptions.md)
- - [AssetWorkloadOptimizerMicrosoftAzureEnterpriseAgreementOptionsAllOf](docs/AssetWorkloadOptimizerMicrosoftAzureEnterpriseAgreementOptionsAllOf.md)
- - [AssetWorkloadOptimizerMicrosoftAzureServicePrincipalOptions](docs/AssetWorkloadOptimizerMicrosoftAzureServicePrincipalOptions.md)
- - [AssetWorkloadOptimizerMicrosoftAzureServicePrincipalOptionsAllOf](docs/AssetWorkloadOptimizerMicrosoftAzureServicePrincipalOptionsAllOf.md)
- - [AssetWorkloadOptimizerOpenStackOptions](docs/AssetWorkloadOptimizerOpenStackOptions.md)
- - [AssetWorkloadOptimizerOpenStackOptionsAllOf](docs/AssetWorkloadOptimizerOpenStackOptionsAllOf.md)
- - [AssetWorkloadOptimizerRedHatOpenStackOptions](docs/AssetWorkloadOptimizerRedHatOpenStackOptions.md)
- - [AssetWorkloadOptimizerRedHatOpenStackOptionsAllOf](docs/AssetWorkloadOptimizerRedHatOpenStackOptionsAllOf.md)
- - [AssetWorkloadOptimizerService](docs/AssetWorkloadOptimizerService.md)
- - [AssetWorkloadOptimizerVmwareVcenterOptions](docs/AssetWorkloadOptimizerVmwareVcenterOptions.md)
- - [AssetWorkloadOptimizerVmwareVcenterOptionsAllOf](docs/AssetWorkloadOptimizerVmwareVcenterOptionsAllOf.md)
- - [BiosBootDevice](docs/BiosBootDevice.md)
- - [BiosBootDeviceAllOf](docs/BiosBootDeviceAllOf.md)
- - [BiosBootDeviceList](docs/BiosBootDeviceList.md)
- - [BiosBootDeviceListAllOf](docs/BiosBootDeviceListAllOf.md)
- - [BiosBootDeviceRelationship](docs/BiosBootDeviceRelationship.md)
- - [BiosBootDeviceResponse](docs/BiosBootDeviceResponse.md)
- - [BiosBootMode](docs/BiosBootMode.md)
- - [BiosBootModeAllOf](docs/BiosBootModeAllOf.md)
- - [BiosBootModeList](docs/BiosBootModeList.md)
- - [BiosBootModeListAllOf](docs/BiosBootModeListAllOf.md)
- - [BiosBootModeRelationship](docs/BiosBootModeRelationship.md)
- - [BiosBootModeResponse](docs/BiosBootModeResponse.md)
- - [BiosPolicy](docs/BiosPolicy.md)
- - [BiosPolicyAllOf](docs/BiosPolicyAllOf.md)
- - [BiosPolicyList](docs/BiosPolicyList.md)
- - [BiosPolicyListAllOf](docs/BiosPolicyListAllOf.md)
- - [BiosPolicyResponse](docs/BiosPolicyResponse.md)
- - [BiosSystemBootOrder](docs/BiosSystemBootOrder.md)
- - [BiosSystemBootOrderAllOf](docs/BiosSystemBootOrderAllOf.md)
- - [BiosSystemBootOrderList](docs/BiosSystemBootOrderList.md)
- - [BiosSystemBootOrderListAllOf](docs/BiosSystemBootOrderListAllOf.md)
- - [BiosSystemBootOrderRelationship](docs/BiosSystemBootOrderRelationship.md)
- - [BiosSystemBootOrderResponse](docs/BiosSystemBootOrderResponse.md)
- - [BiosTokenSettings](docs/BiosTokenSettings.md)
- - [BiosTokenSettingsAllOf](docs/BiosTokenSettingsAllOf.md)
- - [BiosTokenSettingsList](docs/BiosTokenSettingsList.md)
- - [BiosTokenSettingsListAllOf](docs/BiosTokenSettingsListAllOf.md)
- - [BiosTokenSettingsRelationship](docs/BiosTokenSettingsRelationship.md)
- - [BiosTokenSettingsResponse](docs/BiosTokenSettingsResponse.md)
- - [BiosUnit](docs/BiosUnit.md)
- - [BiosUnitAllOf](docs/BiosUnitAllOf.md)
- - [BiosUnitList](docs/BiosUnitList.md)
- - [BiosUnitListAllOf](docs/BiosUnitListAllOf.md)
- - [BiosUnitRelationship](docs/BiosUnitRelationship.md)
- - [BiosUnitResponse](docs/BiosUnitResponse.md)
- - [BiosVfSelectMemoryRasConfiguration](docs/BiosVfSelectMemoryRasConfiguration.md)
- - [BiosVfSelectMemoryRasConfigurationAllOf](docs/BiosVfSelectMemoryRasConfigurationAllOf.md)
- - [BiosVfSelectMemoryRasConfigurationList](docs/BiosVfSelectMemoryRasConfigurationList.md)
- - [BiosVfSelectMemoryRasConfigurationListAllOf](docs/BiosVfSelectMemoryRasConfigurationListAllOf.md)
- - [BiosVfSelectMemoryRasConfigurationRelationship](docs/BiosVfSelectMemoryRasConfigurationRelationship.md)
- - [BiosVfSelectMemoryRasConfigurationResponse](docs/BiosVfSelectMemoryRasConfigurationResponse.md)
- - [BootBootloader](docs/BootBootloader.md)
- - [BootBootloaderAllOf](docs/BootBootloaderAllOf.md)
- - [BootCddDevice](docs/BootCddDevice.md)
- - [BootCddDeviceAllOf](docs/BootCddDeviceAllOf.md)
- - [BootCddDeviceList](docs/BootCddDeviceList.md)
- - [BootCddDeviceListAllOf](docs/BootCddDeviceListAllOf.md)
- - [BootCddDeviceRelationship](docs/BootCddDeviceRelationship.md)
- - [BootCddDeviceResponse](docs/BootCddDeviceResponse.md)
- - [BootConfiguredDevice](docs/BootConfiguredDevice.md)
- - [BootConfiguredDeviceAllOf](docs/BootConfiguredDeviceAllOf.md)
- - [BootDeviceBase](docs/BootDeviceBase.md)
- - [BootDeviceBaseAllOf](docs/BootDeviceBaseAllOf.md)
- - [BootDeviceBootMode](docs/BootDeviceBootMode.md)
- - [BootDeviceBootModeAllOf](docs/BootDeviceBootModeAllOf.md)
- - [BootDeviceBootModeList](docs/BootDeviceBootModeList.md)
- - [BootDeviceBootModeListAllOf](docs/BootDeviceBootModeListAllOf.md)
- - [BootDeviceBootModeRelationship](docs/BootDeviceBootModeRelationship.md)
- - [BootDeviceBootModeResponse](docs/BootDeviceBootModeResponse.md)
- - [BootDeviceBootSecurity](docs/BootDeviceBootSecurity.md)
- - [BootDeviceBootSecurityAllOf](docs/BootDeviceBootSecurityAllOf.md)
- - [BootDeviceBootSecurityList](docs/BootDeviceBootSecurityList.md)
- - [BootDeviceBootSecurityListAllOf](docs/BootDeviceBootSecurityListAllOf.md)
- - [BootDeviceBootSecurityRelationship](docs/BootDeviceBootSecurityRelationship.md)
- - [BootDeviceBootSecurityResponse](docs/BootDeviceBootSecurityResponse.md)
- - [BootHddDevice](docs/BootHddDevice.md)
- - [BootHddDeviceAllOf](docs/BootHddDeviceAllOf.md)
- - [BootHddDeviceList](docs/BootHddDeviceList.md)
- - [BootHddDeviceListAllOf](docs/BootHddDeviceListAllOf.md)
- - [BootHddDeviceRelationship](docs/BootHddDeviceRelationship.md)
- - [BootHddDeviceResponse](docs/BootHddDeviceResponse.md)
- - [BootIscsi](docs/BootIscsi.md)
- - [BootIscsiAllOf](docs/BootIscsiAllOf.md)
- - [BootIscsiDevice](docs/BootIscsiDevice.md)
- - [BootIscsiDeviceAllOf](docs/BootIscsiDeviceAllOf.md)
- - [BootIscsiDeviceList](docs/BootIscsiDeviceList.md)
- - [BootIscsiDeviceListAllOf](docs/BootIscsiDeviceListAllOf.md)
- - [BootIscsiDeviceRelationship](docs/BootIscsiDeviceRelationship.md)
- - [BootIscsiDeviceResponse](docs/BootIscsiDeviceResponse.md)
- - [BootLocalCdd](docs/BootLocalCdd.md)
- - [BootLocalDisk](docs/BootLocalDisk.md)
- - [BootLocalDiskAllOf](docs/BootLocalDiskAllOf.md)
- - [BootNvme](docs/BootNvme.md)
- - [BootNvmeAllOf](docs/BootNvmeAllOf.md)
- - [BootNvmeDevice](docs/BootNvmeDevice.md)
- - [BootNvmeDeviceAllOf](docs/BootNvmeDeviceAllOf.md)
- - [BootNvmeDeviceList](docs/BootNvmeDeviceList.md)
- - [BootNvmeDeviceListAllOf](docs/BootNvmeDeviceListAllOf.md)
- - [BootNvmeDeviceRelationship](docs/BootNvmeDeviceRelationship.md)
- - [BootNvmeDeviceResponse](docs/BootNvmeDeviceResponse.md)
- - [BootPchStorage](docs/BootPchStorage.md)
- - [BootPchStorageAllOf](docs/BootPchStorageAllOf.md)
- - [BootPchStorageDevice](docs/BootPchStorageDevice.md)
- - [BootPchStorageDeviceAllOf](docs/BootPchStorageDeviceAllOf.md)
- - [BootPchStorageDeviceList](docs/BootPchStorageDeviceList.md)
- - [BootPchStorageDeviceListAllOf](docs/BootPchStorageDeviceListAllOf.md)
- - [BootPchStorageDeviceRelationship](docs/BootPchStorageDeviceRelationship.md)
- - [BootPchStorageDeviceResponse](docs/BootPchStorageDeviceResponse.md)
- - [BootPrecisionPolicy](docs/BootPrecisionPolicy.md)
- - [BootPrecisionPolicyAllOf](docs/BootPrecisionPolicyAllOf.md)
- - [BootPrecisionPolicyList](docs/BootPrecisionPolicyList.md)
- - [BootPrecisionPolicyListAllOf](docs/BootPrecisionPolicyListAllOf.md)
- - [BootPrecisionPolicyResponse](docs/BootPrecisionPolicyResponse.md)
- - [BootPxe](docs/BootPxe.md)
- - [BootPxeAllOf](docs/BootPxeAllOf.md)
- - [BootPxeDevice](docs/BootPxeDevice.md)
- - [BootPxeDeviceAllOf](docs/BootPxeDeviceAllOf.md)
- - [BootPxeDeviceList](docs/BootPxeDeviceList.md)
- - [BootPxeDeviceListAllOf](docs/BootPxeDeviceListAllOf.md)
- - [BootPxeDeviceRelationship](docs/BootPxeDeviceRelationship.md)
- - [BootPxeDeviceResponse](docs/BootPxeDeviceResponse.md)
- - [BootSan](docs/BootSan.md)
- - [BootSanAllOf](docs/BootSanAllOf.md)
- - [BootSanDevice](docs/BootSanDevice.md)
- - [BootSanDeviceAllOf](docs/BootSanDeviceAllOf.md)
- - [BootSanDeviceList](docs/BootSanDeviceList.md)
- - [BootSanDeviceListAllOf](docs/BootSanDeviceListAllOf.md)
- - [BootSanDeviceRelationship](docs/BootSanDeviceRelationship.md)
- - [BootSanDeviceResponse](docs/BootSanDeviceResponse.md)
- - [BootSdCard](docs/BootSdCard.md)
- - [BootSdCardAllOf](docs/BootSdCardAllOf.md)
- - [BootSdDevice](docs/BootSdDevice.md)
- - [BootSdDeviceAllOf](docs/BootSdDeviceAllOf.md)
- - [BootSdDeviceList](docs/BootSdDeviceList.md)
- - [BootSdDeviceListAllOf](docs/BootSdDeviceListAllOf.md)
- - [BootSdDeviceRelationship](docs/BootSdDeviceRelationship.md)
- - [BootSdDeviceResponse](docs/BootSdDeviceResponse.md)
- - [BootUefiShell](docs/BootUefiShell.md)
- - [BootUefiShellDevice](docs/BootUefiShellDevice.md)
- - [BootUefiShellDeviceAllOf](docs/BootUefiShellDeviceAllOf.md)
- - [BootUefiShellDeviceList](docs/BootUefiShellDeviceList.md)
- - [BootUefiShellDeviceListAllOf](docs/BootUefiShellDeviceListAllOf.md)
- - [BootUefiShellDeviceRelationship](docs/BootUefiShellDeviceRelationship.md)
- - [BootUefiShellDeviceResponse](docs/BootUefiShellDeviceResponse.md)
- - [BootUsb](docs/BootUsb.md)
- - [BootUsbAllOf](docs/BootUsbAllOf.md)
- - [BootUsbDevice](docs/BootUsbDevice.md)
- - [BootUsbDeviceAllOf](docs/BootUsbDeviceAllOf.md)
- - [BootUsbDeviceList](docs/BootUsbDeviceList.md)
- - [BootUsbDeviceListAllOf](docs/BootUsbDeviceListAllOf.md)
- - [BootUsbDeviceRelationship](docs/BootUsbDeviceRelationship.md)
- - [BootUsbDeviceResponse](docs/BootUsbDeviceResponse.md)
- - [BootVirtualMedia](docs/BootVirtualMedia.md)
- - [BootVirtualMediaAllOf](docs/BootVirtualMediaAllOf.md)
- - [BootVmediaDevice](docs/BootVmediaDevice.md)
- - [BootVmediaDeviceAllOf](docs/BootVmediaDeviceAllOf.md)
- - [BootVmediaDeviceList](docs/BootVmediaDeviceList.md)
- - [BootVmediaDeviceListAllOf](docs/BootVmediaDeviceListAllOf.md)
- - [BootVmediaDeviceRelationship](docs/BootVmediaDeviceRelationship.md)
- - [BootVmediaDeviceResponse](docs/BootVmediaDeviceResponse.md)
- - [BulkApiResult](docs/BulkApiResult.md)
- - [BulkApiResultAllOf](docs/BulkApiResultAllOf.md)
- - [BulkMoCloner](docs/BulkMoCloner.md)
- - [BulkMoClonerAllOf](docs/BulkMoClonerAllOf.md)
- - [BulkMoMerger](docs/BulkMoMerger.md)
- - [BulkMoMergerAllOf](docs/BulkMoMergerAllOf.md)
- - [BulkRequest](docs/BulkRequest.md)
- - [BulkRequestAllOf](docs/BulkRequestAllOf.md)
- - [BulkRestResult](docs/BulkRestResult.md)
- - [BulkRestResultAllOf](docs/BulkRestResultAllOf.md)
- - [BulkRestSubRequest](docs/BulkRestSubRequest.md)
- - [BulkRestSubRequestAllOf](docs/BulkRestSubRequestAllOf.md)
- - [BulkSubRequest](docs/BulkSubRequest.md)
- - [CapabilityAdapterUnitDescriptor](docs/CapabilityAdapterUnitDescriptor.md)
- - [CapabilityAdapterUnitDescriptorAllOf](docs/CapabilityAdapterUnitDescriptorAllOf.md)
- - [CapabilityAdapterUnitDescriptorList](docs/CapabilityAdapterUnitDescriptorList.md)
- - [CapabilityAdapterUnitDescriptorListAllOf](docs/CapabilityAdapterUnitDescriptorListAllOf.md)
- - [CapabilityAdapterUnitDescriptorResponse](docs/CapabilityAdapterUnitDescriptorResponse.md)
- - [CapabilityCapability](docs/CapabilityCapability.md)
- - [CapabilityCapabilityAllOf](docs/CapabilityCapabilityAllOf.md)
- - [CapabilityCapabilityRelationship](docs/CapabilityCapabilityRelationship.md)
- - [CapabilityCatalog](docs/CapabilityCatalog.md)
- - [CapabilityCatalogAllOf](docs/CapabilityCatalogAllOf.md)
- - [CapabilityCatalogList](docs/CapabilityCatalogList.md)
- - [CapabilityCatalogListAllOf](docs/CapabilityCatalogListAllOf.md)
- - [CapabilityCatalogResponse](docs/CapabilityCatalogResponse.md)
- - [CapabilityChassisDescriptor](docs/CapabilityChassisDescriptor.md)
- - [CapabilityChassisDescriptorAllOf](docs/CapabilityChassisDescriptorAllOf.md)
- - [CapabilityChassisDescriptorList](docs/CapabilityChassisDescriptorList.md)
- - [CapabilityChassisDescriptorListAllOf](docs/CapabilityChassisDescriptorListAllOf.md)
- - [CapabilityChassisDescriptorResponse](docs/CapabilityChassisDescriptorResponse.md)
- - [CapabilityChassisManufacturingDef](docs/CapabilityChassisManufacturingDef.md)
- - [CapabilityChassisManufacturingDefAllOf](docs/CapabilityChassisManufacturingDefAllOf.md)
- - [CapabilityChassisManufacturingDefList](docs/CapabilityChassisManufacturingDefList.md)
- - [CapabilityChassisManufacturingDefListAllOf](docs/CapabilityChassisManufacturingDefListAllOf.md)
- - [CapabilityChassisManufacturingDefResponse](docs/CapabilityChassisManufacturingDefResponse.md)
- - [CapabilityCimcFirmwareDescriptor](docs/CapabilityCimcFirmwareDescriptor.md)
- - [CapabilityCimcFirmwareDescriptorAllOf](docs/CapabilityCimcFirmwareDescriptorAllOf.md)
- - [CapabilityCimcFirmwareDescriptorList](docs/CapabilityCimcFirmwareDescriptorList.md)
- - [CapabilityCimcFirmwareDescriptorListAllOf](docs/CapabilityCimcFirmwareDescriptorListAllOf.md)
- - [CapabilityCimcFirmwareDescriptorResponse](docs/CapabilityCimcFirmwareDescriptorResponse.md)
- - [CapabilityEndpointDescriptor](docs/CapabilityEndpointDescriptor.md)
- - [CapabilityEndpointDescriptorAllOf](docs/CapabilityEndpointDescriptorAllOf.md)
- - [CapabilityEquipmentPhysicalDef](docs/CapabilityEquipmentPhysicalDef.md)
- - [CapabilityEquipmentPhysicalDefAllOf](docs/CapabilityEquipmentPhysicalDefAllOf.md)
- - [CapabilityEquipmentPhysicalDefList](docs/CapabilityEquipmentPhysicalDefList.md)
- - [CapabilityEquipmentPhysicalDefListAllOf](docs/CapabilityEquipmentPhysicalDefListAllOf.md)
- - [CapabilityEquipmentPhysicalDefResponse](docs/CapabilityEquipmentPhysicalDefResponse.md)
- - [CapabilityEquipmentSlotArray](docs/CapabilityEquipmentSlotArray.md)
- - [CapabilityEquipmentSlotArrayAllOf](docs/CapabilityEquipmentSlotArrayAllOf.md)
- - [CapabilityEquipmentSlotArrayList](docs/CapabilityEquipmentSlotArrayList.md)
- - [CapabilityEquipmentSlotArrayListAllOf](docs/CapabilityEquipmentSlotArrayListAllOf.md)
- - [CapabilityEquipmentSlotArrayResponse](docs/CapabilityEquipmentSlotArrayResponse.md)
- - [CapabilityFanModuleDescriptor](docs/CapabilityFanModuleDescriptor.md)
- - [CapabilityFanModuleDescriptorAllOf](docs/CapabilityFanModuleDescriptorAllOf.md)
- - [CapabilityFanModuleDescriptorList](docs/CapabilityFanModuleDescriptorList.md)
- - [CapabilityFanModuleDescriptorListAllOf](docs/CapabilityFanModuleDescriptorListAllOf.md)
- - [CapabilityFanModuleDescriptorResponse](docs/CapabilityFanModuleDescriptorResponse.md)
- - [CapabilityFanModuleManufacturingDef](docs/CapabilityFanModuleManufacturingDef.md)
- - [CapabilityFanModuleManufacturingDefAllOf](docs/CapabilityFanModuleManufacturingDefAllOf.md)
- - [CapabilityFanModuleManufacturingDefList](docs/CapabilityFanModuleManufacturingDefList.md)
- - [CapabilityFanModuleManufacturingDefListAllOf](docs/CapabilityFanModuleManufacturingDefListAllOf.md)
- - [CapabilityFanModuleManufacturingDefResponse](docs/CapabilityFanModuleManufacturingDefResponse.md)
- - [CapabilityHardwareDescriptor](docs/CapabilityHardwareDescriptor.md)
- - [CapabilityIoCardCapabilityDef](docs/CapabilityIoCardCapabilityDef.md)
- - [CapabilityIoCardCapabilityDefAllOf](docs/CapabilityIoCardCapabilityDefAllOf.md)
- - [CapabilityIoCardCapabilityDefList](docs/CapabilityIoCardCapabilityDefList.md)
- - [CapabilityIoCardCapabilityDefListAllOf](docs/CapabilityIoCardCapabilityDefListAllOf.md)
- - [CapabilityIoCardCapabilityDefResponse](docs/CapabilityIoCardCapabilityDefResponse.md)
- - [CapabilityIoCardDescriptor](docs/CapabilityIoCardDescriptor.md)
- - [CapabilityIoCardDescriptorAllOf](docs/CapabilityIoCardDescriptorAllOf.md)
- - [CapabilityIoCardDescriptorList](docs/CapabilityIoCardDescriptorList.md)
- - [CapabilityIoCardDescriptorListAllOf](docs/CapabilityIoCardDescriptorListAllOf.md)
- - [CapabilityIoCardDescriptorResponse](docs/CapabilityIoCardDescriptorResponse.md)
- - [CapabilityIoCardManufacturingDef](docs/CapabilityIoCardManufacturingDef.md)
- - [CapabilityIoCardManufacturingDefAllOf](docs/CapabilityIoCardManufacturingDefAllOf.md)
- - [CapabilityIoCardManufacturingDefList](docs/CapabilityIoCardManufacturingDefList.md)
- - [CapabilityIoCardManufacturingDefListAllOf](docs/CapabilityIoCardManufacturingDefListAllOf.md)
- - [CapabilityIoCardManufacturingDefResponse](docs/CapabilityIoCardManufacturingDefResponse.md)
- - [CapabilityPortGroupAggregationDef](docs/CapabilityPortGroupAggregationDef.md)
- - [CapabilityPortGroupAggregationDefAllOf](docs/CapabilityPortGroupAggregationDefAllOf.md)
- - [CapabilityPortGroupAggregationDefList](docs/CapabilityPortGroupAggregationDefList.md)
- - [CapabilityPortGroupAggregationDefListAllOf](docs/CapabilityPortGroupAggregationDefListAllOf.md)
- - [CapabilityPortGroupAggregationDefResponse](docs/CapabilityPortGroupAggregationDefResponse.md)
- - [CapabilityPortRange](docs/CapabilityPortRange.md)
- - [CapabilityPortRangeAllOf](docs/CapabilityPortRangeAllOf.md)
- - [CapabilityPsuDescriptor](docs/CapabilityPsuDescriptor.md)
- - [CapabilityPsuDescriptorAllOf](docs/CapabilityPsuDescriptorAllOf.md)
- - [CapabilityPsuDescriptorList](docs/CapabilityPsuDescriptorList.md)
- - [CapabilityPsuDescriptorListAllOf](docs/CapabilityPsuDescriptorListAllOf.md)
- - [CapabilityPsuDescriptorResponse](docs/CapabilityPsuDescriptorResponse.md)
- - [CapabilityPsuManufacturingDef](docs/CapabilityPsuManufacturingDef.md)
- - [CapabilityPsuManufacturingDefAllOf](docs/CapabilityPsuManufacturingDefAllOf.md)
- - [CapabilityPsuManufacturingDefList](docs/CapabilityPsuManufacturingDefList.md)
- - [CapabilityPsuManufacturingDefListAllOf](docs/CapabilityPsuManufacturingDefListAllOf.md)
- - [CapabilityPsuManufacturingDefResponse](docs/CapabilityPsuManufacturingDefResponse.md)
- - [CapabilityServerSchemaDescriptor](docs/CapabilityServerSchemaDescriptor.md)
- - [CapabilityServerSchemaDescriptorAllOf](docs/CapabilityServerSchemaDescriptorAllOf.md)
- - [CapabilityServerSchemaDescriptorList](docs/CapabilityServerSchemaDescriptorList.md)
- - [CapabilityServerSchemaDescriptorListAllOf](docs/CapabilityServerSchemaDescriptorListAllOf.md)
- - [CapabilityServerSchemaDescriptorResponse](docs/CapabilityServerSchemaDescriptorResponse.md)
- - [CapabilitySiocModuleCapabilityDef](docs/CapabilitySiocModuleCapabilityDef.md)
- - [CapabilitySiocModuleCapabilityDefAllOf](docs/CapabilitySiocModuleCapabilityDefAllOf.md)
- - [CapabilitySiocModuleCapabilityDefList](docs/CapabilitySiocModuleCapabilityDefList.md)
- - [CapabilitySiocModuleCapabilityDefListAllOf](docs/CapabilitySiocModuleCapabilityDefListAllOf.md)
- - [CapabilitySiocModuleCapabilityDefResponse](docs/CapabilitySiocModuleCapabilityDefResponse.md)
- - [CapabilitySiocModuleDescriptor](docs/CapabilitySiocModuleDescriptor.md)
- - [CapabilitySiocModuleDescriptorAllOf](docs/CapabilitySiocModuleDescriptorAllOf.md)
- - [CapabilitySiocModuleDescriptorList](docs/CapabilitySiocModuleDescriptorList.md)
- - [CapabilitySiocModuleDescriptorListAllOf](docs/CapabilitySiocModuleDescriptorListAllOf.md)
- - [CapabilitySiocModuleDescriptorResponse](docs/CapabilitySiocModuleDescriptorResponse.md)
- - [CapabilitySiocModuleManufacturingDef](docs/CapabilitySiocModuleManufacturingDef.md)
- - [CapabilitySiocModuleManufacturingDefAllOf](docs/CapabilitySiocModuleManufacturingDefAllOf.md)
- - [CapabilitySiocModuleManufacturingDefList](docs/CapabilitySiocModuleManufacturingDefList.md)
- - [CapabilitySiocModuleManufacturingDefListAllOf](docs/CapabilitySiocModuleManufacturingDefListAllOf.md)
- - [CapabilitySiocModuleManufacturingDefResponse](docs/CapabilitySiocModuleManufacturingDefResponse.md)
- - [CapabilitySwitchCapability](docs/CapabilitySwitchCapability.md)
- - [CapabilitySwitchCapabilityAllOf](docs/CapabilitySwitchCapabilityAllOf.md)
- - [CapabilitySwitchCapabilityDef](docs/CapabilitySwitchCapabilityDef.md)
- - [CapabilitySwitchCapabilityDefAllOf](docs/CapabilitySwitchCapabilityDefAllOf.md)
- - [CapabilitySwitchCapabilityList](docs/CapabilitySwitchCapabilityList.md)
- - [CapabilitySwitchCapabilityListAllOf](docs/CapabilitySwitchCapabilityListAllOf.md)
- - [CapabilitySwitchCapabilityResponse](docs/CapabilitySwitchCapabilityResponse.md)
- - [CapabilitySwitchDescriptor](docs/CapabilitySwitchDescriptor.md)
- - [CapabilitySwitchDescriptorAllOf](docs/CapabilitySwitchDescriptorAllOf.md)
- - [CapabilitySwitchDescriptorList](docs/CapabilitySwitchDescriptorList.md)
- - [CapabilitySwitchDescriptorListAllOf](docs/CapabilitySwitchDescriptorListAllOf.md)
- - [CapabilitySwitchDescriptorResponse](docs/CapabilitySwitchDescriptorResponse.md)
- - [CapabilitySwitchManufacturingDef](docs/CapabilitySwitchManufacturingDef.md)
- - [CapabilitySwitchManufacturingDefAllOf](docs/CapabilitySwitchManufacturingDefAllOf.md)
- - [CapabilitySwitchManufacturingDefList](docs/CapabilitySwitchManufacturingDefList.md)
- - [CapabilitySwitchManufacturingDefListAllOf](docs/CapabilitySwitchManufacturingDefListAllOf.md)
- - [CapabilitySwitchManufacturingDefResponse](docs/CapabilitySwitchManufacturingDefResponse.md)
- - [CapabilitySwitchNetworkLimits](docs/CapabilitySwitchNetworkLimits.md)
- - [CapabilitySwitchNetworkLimitsAllOf](docs/CapabilitySwitchNetworkLimitsAllOf.md)
- - [CapabilitySwitchStorageLimits](docs/CapabilitySwitchStorageLimits.md)
- - [CapabilitySwitchStorageLimitsAllOf](docs/CapabilitySwitchStorageLimitsAllOf.md)
- - [CapabilitySwitchSystemLimits](docs/CapabilitySwitchSystemLimits.md)
- - [CapabilitySwitchSystemLimitsAllOf](docs/CapabilitySwitchSystemLimitsAllOf.md)
- - [CapabilitySwitchingModeCapability](docs/CapabilitySwitchingModeCapability.md)
- - [CapabilitySwitchingModeCapabilityAllOf](docs/CapabilitySwitchingModeCapabilityAllOf.md)
- - [CertificatemanagementCertificateBase](docs/CertificatemanagementCertificateBase.md)
- - [CertificatemanagementCertificateBaseAllOf](docs/CertificatemanagementCertificateBaseAllOf.md)
- - [CertificatemanagementImc](docs/CertificatemanagementImc.md)
- - [CertificatemanagementPolicy](docs/CertificatemanagementPolicy.md)
- - [CertificatemanagementPolicyAllOf](docs/CertificatemanagementPolicyAllOf.md)
- - [CertificatemanagementPolicyList](docs/CertificatemanagementPolicyList.md)
- - [CertificatemanagementPolicyListAllOf](docs/CertificatemanagementPolicyListAllOf.md)
- - [CertificatemanagementPolicyResponse](docs/CertificatemanagementPolicyResponse.md)
- - [ChassisConfigChangeDetail](docs/ChassisConfigChangeDetail.md)
- - [ChassisConfigChangeDetailAllOf](docs/ChassisConfigChangeDetailAllOf.md)
- - [ChassisConfigChangeDetailList](docs/ChassisConfigChangeDetailList.md)
- - [ChassisConfigChangeDetailListAllOf](docs/ChassisConfigChangeDetailListAllOf.md)
- - [ChassisConfigChangeDetailRelationship](docs/ChassisConfigChangeDetailRelationship.md)
- - [ChassisConfigChangeDetailResponse](docs/ChassisConfigChangeDetailResponse.md)
- - [ChassisConfigImport](docs/ChassisConfigImport.md)
- - [ChassisConfigImportAllOf](docs/ChassisConfigImportAllOf.md)
- - [ChassisConfigImportList](docs/ChassisConfigImportList.md)
- - [ChassisConfigImportListAllOf](docs/ChassisConfigImportListAllOf.md)
- - [ChassisConfigImportResponse](docs/ChassisConfigImportResponse.md)
- - [ChassisConfigResult](docs/ChassisConfigResult.md)
- - [ChassisConfigResultAllOf](docs/ChassisConfigResultAllOf.md)
- - [ChassisConfigResultEntry](docs/ChassisConfigResultEntry.md)
- - [ChassisConfigResultEntryAllOf](docs/ChassisConfigResultEntryAllOf.md)
- - [ChassisConfigResultEntryList](docs/ChassisConfigResultEntryList.md)
- - [ChassisConfigResultEntryListAllOf](docs/ChassisConfigResultEntryListAllOf.md)
- - [ChassisConfigResultEntryRelationship](docs/ChassisConfigResultEntryRelationship.md)
- - [ChassisConfigResultEntryResponse](docs/ChassisConfigResultEntryResponse.md)
- - [ChassisConfigResultList](docs/ChassisConfigResultList.md)
- - [ChassisConfigResultListAllOf](docs/ChassisConfigResultListAllOf.md)
- - [ChassisConfigResultRelationship](docs/ChassisConfigResultRelationship.md)
- - [ChassisConfigResultResponse](docs/ChassisConfigResultResponse.md)
- - [ChassisIomProfile](docs/ChassisIomProfile.md)
- - [ChassisIomProfileAllOf](docs/ChassisIomProfileAllOf.md)
- - [ChassisIomProfileList](docs/ChassisIomProfileList.md)
- - [ChassisIomProfileListAllOf](docs/ChassisIomProfileListAllOf.md)
- - [ChassisIomProfileRelationship](docs/ChassisIomProfileRelationship.md)
- - [ChassisIomProfileResponse](docs/ChassisIomProfileResponse.md)
- - [ChassisProfile](docs/ChassisProfile.md)
- - [ChassisProfileAllOf](docs/ChassisProfileAllOf.md)
- - [ChassisProfileList](docs/ChassisProfileList.md)
- - [ChassisProfileListAllOf](docs/ChassisProfileListAllOf.md)
- - [ChassisProfileRelationship](docs/ChassisProfileRelationship.md)
- - [ChassisProfileResponse](docs/ChassisProfileResponse.md)
- - [CloudAvailabilityZone](docs/CloudAvailabilityZone.md)
- - [CloudAvailabilityZoneAllOf](docs/CloudAvailabilityZoneAllOf.md)
- - [CloudAwsBillingUnit](docs/CloudAwsBillingUnit.md)
- - [CloudAwsBillingUnitAllOf](docs/CloudAwsBillingUnitAllOf.md)
- - [CloudAwsBillingUnitList](docs/CloudAwsBillingUnitList.md)
- - [CloudAwsBillingUnitListAllOf](docs/CloudAwsBillingUnitListAllOf.md)
- - [CloudAwsBillingUnitRelationship](docs/CloudAwsBillingUnitRelationship.md)
- - [CloudAwsBillingUnitResponse](docs/CloudAwsBillingUnitResponse.md)
- - [CloudAwsKeyPair](docs/CloudAwsKeyPair.md)
- - [CloudAwsKeyPairAllOf](docs/CloudAwsKeyPairAllOf.md)
- - [CloudAwsKeyPairList](docs/CloudAwsKeyPairList.md)
- - [CloudAwsKeyPairListAllOf](docs/CloudAwsKeyPairListAllOf.md)
- - [CloudAwsKeyPairRelationship](docs/CloudAwsKeyPairRelationship.md)
- - [CloudAwsKeyPairResponse](docs/CloudAwsKeyPairResponse.md)
- - [CloudAwsNetworkInterface](docs/CloudAwsNetworkInterface.md)
- - [CloudAwsNetworkInterfaceAllOf](docs/CloudAwsNetworkInterfaceAllOf.md)
- - [CloudAwsNetworkInterfaceList](docs/CloudAwsNetworkInterfaceList.md)
- - [CloudAwsNetworkInterfaceListAllOf](docs/CloudAwsNetworkInterfaceListAllOf.md)
- - [CloudAwsNetworkInterfaceResponse](docs/CloudAwsNetworkInterfaceResponse.md)
- - [CloudAwsOrganizationalUnit](docs/CloudAwsOrganizationalUnit.md)
- - [CloudAwsOrganizationalUnitAllOf](docs/CloudAwsOrganizationalUnitAllOf.md)
- - [CloudAwsOrganizationalUnitList](docs/CloudAwsOrganizationalUnitList.md)
- - [CloudAwsOrganizationalUnitListAllOf](docs/CloudAwsOrganizationalUnitListAllOf.md)
- - [CloudAwsOrganizationalUnitRelationship](docs/CloudAwsOrganizationalUnitRelationship.md)
- - [CloudAwsOrganizationalUnitResponse](docs/CloudAwsOrganizationalUnitResponse.md)
- - [CloudAwsSecurityGroup](docs/CloudAwsSecurityGroup.md)
- - [CloudAwsSecurityGroupAllOf](docs/CloudAwsSecurityGroupAllOf.md)
- - [CloudAwsSecurityGroupList](docs/CloudAwsSecurityGroupList.md)
- - [CloudAwsSecurityGroupListAllOf](docs/CloudAwsSecurityGroupListAllOf.md)
- - [CloudAwsSecurityGroupRelationship](docs/CloudAwsSecurityGroupRelationship.md)
- - [CloudAwsSecurityGroupResponse](docs/CloudAwsSecurityGroupResponse.md)
- - [CloudAwsSubnet](docs/CloudAwsSubnet.md)
- - [CloudAwsSubnetAllOf](docs/CloudAwsSubnetAllOf.md)
- - [CloudAwsSubnetList](docs/CloudAwsSubnetList.md)
- - [CloudAwsSubnetListAllOf](docs/CloudAwsSubnetListAllOf.md)
- - [CloudAwsSubnetRelationship](docs/CloudAwsSubnetRelationship.md)
- - [CloudAwsSubnetResponse](docs/CloudAwsSubnetResponse.md)
- - [CloudAwsVirtualMachine](docs/CloudAwsVirtualMachine.md)
- - [CloudAwsVirtualMachineAllOf](docs/CloudAwsVirtualMachineAllOf.md)
- - [CloudAwsVirtualMachineList](docs/CloudAwsVirtualMachineList.md)
- - [CloudAwsVirtualMachineListAllOf](docs/CloudAwsVirtualMachineListAllOf.md)
- - [CloudAwsVirtualMachineResponse](docs/CloudAwsVirtualMachineResponse.md)
- - [CloudAwsVolume](docs/CloudAwsVolume.md)
- - [CloudAwsVolumeAllOf](docs/CloudAwsVolumeAllOf.md)
- - [CloudAwsVolumeList](docs/CloudAwsVolumeList.md)
- - [CloudAwsVolumeListAllOf](docs/CloudAwsVolumeListAllOf.md)
- - [CloudAwsVolumeResponse](docs/CloudAwsVolumeResponse.md)
- - [CloudAwsVpc](docs/CloudAwsVpc.md)
- - [CloudAwsVpcAllOf](docs/CloudAwsVpcAllOf.md)
- - [CloudAwsVpcList](docs/CloudAwsVpcList.md)
- - [CloudAwsVpcListAllOf](docs/CloudAwsVpcListAllOf.md)
- - [CloudAwsVpcRelationship](docs/CloudAwsVpcRelationship.md)
- - [CloudAwsVpcResponse](docs/CloudAwsVpcResponse.md)
- - [CloudBaseBillingUnit](docs/CloudBaseBillingUnit.md)
- - [CloudBaseBillingUnitAllOf](docs/CloudBaseBillingUnitAllOf.md)
- - [CloudBaseEntity](docs/CloudBaseEntity.md)
- - [CloudBaseEntityAllOf](docs/CloudBaseEntityAllOf.md)
- - [CloudBaseNetwork](docs/CloudBaseNetwork.md)
- - [CloudBaseNetworkAllOf](docs/CloudBaseNetworkAllOf.md)
- - [CloudBaseNetworkInterface](docs/CloudBaseNetworkInterface.md)
- - [CloudBaseNetworkInterfaceAllOf](docs/CloudBaseNetworkInterfaceAllOf.md)
- - [CloudBasePlacement](docs/CloudBasePlacement.md)
- - [CloudBasePlacementAllOf](docs/CloudBasePlacementAllOf.md)
- - [CloudBaseSku](docs/CloudBaseSku.md)
- - [CloudBaseSkuAllOf](docs/CloudBaseSkuAllOf.md)
- - [CloudBaseVirtualMachine](docs/CloudBaseVirtualMachine.md)
- - [CloudBaseVirtualMachineAllOf](docs/CloudBaseVirtualMachineAllOf.md)
- - [CloudBaseVolume](docs/CloudBaseVolume.md)
- - [CloudBaseVolumeAllOf](docs/CloudBaseVolumeAllOf.md)
- - [CloudBillingUnit](docs/CloudBillingUnit.md)
- - [CloudBillingUnitAllOf](docs/CloudBillingUnitAllOf.md)
- - [CloudCloudRegion](docs/CloudCloudRegion.md)
- - [CloudCloudRegionAllOf](docs/CloudCloudRegionAllOf.md)
- - [CloudCloudTag](docs/CloudCloudTag.md)
- - [CloudCloudTagAllOf](docs/CloudCloudTagAllOf.md)
- - [CloudCollectInventory](docs/CloudCollectInventory.md)
- - [CloudCollectInventoryAllOf](docs/CloudCollectInventoryAllOf.md)
- - [CloudCustomAttributes](docs/CloudCustomAttributes.md)
- - [CloudCustomAttributesAllOf](docs/CloudCustomAttributesAllOf.md)
- - [CloudImageReference](docs/CloudImageReference.md)
- - [CloudImageReferenceAllOf](docs/CloudImageReferenceAllOf.md)
- - [CloudInstanceType](docs/CloudInstanceType.md)
- - [CloudInstanceTypeAllOf](docs/CloudInstanceTypeAllOf.md)
- - [CloudNetworkAccessConfig](docs/CloudNetworkAccessConfig.md)
- - [CloudNetworkAccessConfigAllOf](docs/CloudNetworkAccessConfigAllOf.md)
- - [CloudNetworkAddress](docs/CloudNetworkAddress.md)
- - [CloudNetworkAddressAllOf](docs/CloudNetworkAddressAllOf.md)
- - [CloudNetworkInstanceAttachment](docs/CloudNetworkInstanceAttachment.md)
- - [CloudNetworkInstanceAttachmentAllOf](docs/CloudNetworkInstanceAttachmentAllOf.md)
- - [CloudNetworkInterfaceAttachment](docs/CloudNetworkInterfaceAttachment.md)
- - [CloudNetworkInterfaceAttachmentAllOf](docs/CloudNetworkInterfaceAttachmentAllOf.md)
- - [CloudRegions](docs/CloudRegions.md)
- - [CloudRegionsAllOf](docs/CloudRegionsAllOf.md)
- - [CloudRegionsList](docs/CloudRegionsList.md)
- - [CloudRegionsListAllOf](docs/CloudRegionsListAllOf.md)
- - [CloudRegionsResponse](docs/CloudRegionsResponse.md)
- - [CloudSecurityGroupRule](docs/CloudSecurityGroupRule.md)
- - [CloudSecurityGroupRuleAllOf](docs/CloudSecurityGroupRuleAllOf.md)
- - [CloudSkuContainerType](docs/CloudSkuContainerType.md)
- - [CloudSkuContainerTypeAllOf](docs/CloudSkuContainerTypeAllOf.md)
- - [CloudSkuContainerTypeList](docs/CloudSkuContainerTypeList.md)
- - [CloudSkuContainerTypeListAllOf](docs/CloudSkuContainerTypeListAllOf.md)
- - [CloudSkuContainerTypeResponse](docs/CloudSkuContainerTypeResponse.md)
- - [CloudSkuDatabaseType](docs/CloudSkuDatabaseType.md)
- - [CloudSkuDatabaseTypeAllOf](docs/CloudSkuDatabaseTypeAllOf.md)
- - [CloudSkuDatabaseTypeList](docs/CloudSkuDatabaseTypeList.md)
- - [CloudSkuDatabaseTypeListAllOf](docs/CloudSkuDatabaseTypeListAllOf.md)
- - [CloudSkuDatabaseTypeResponse](docs/CloudSkuDatabaseTypeResponse.md)
- - [CloudSkuInstanceType](docs/CloudSkuInstanceType.md)
- - [CloudSkuInstanceTypeAllOf](docs/CloudSkuInstanceTypeAllOf.md)
- - [CloudSkuInstanceTypeList](docs/CloudSkuInstanceTypeList.md)
- - [CloudSkuInstanceTypeListAllOf](docs/CloudSkuInstanceTypeListAllOf.md)
- - [CloudSkuInstanceTypeResponse](docs/CloudSkuInstanceTypeResponse.md)
- - [CloudSkuNetworkType](docs/CloudSkuNetworkType.md)
- - [CloudSkuNetworkTypeList](docs/CloudSkuNetworkTypeList.md)
- - [CloudSkuNetworkTypeListAllOf](docs/CloudSkuNetworkTypeListAllOf.md)
- - [CloudSkuNetworkTypeResponse](docs/CloudSkuNetworkTypeResponse.md)
- - [CloudSkuVolumeType](docs/CloudSkuVolumeType.md)
- - [CloudSkuVolumeTypeAllOf](docs/CloudSkuVolumeTypeAllOf.md)
- - [CloudSkuVolumeTypeList](docs/CloudSkuVolumeTypeList.md)
- - [CloudSkuVolumeTypeListAllOf](docs/CloudSkuVolumeTypeListAllOf.md)
- - [CloudSkuVolumeTypeResponse](docs/CloudSkuVolumeTypeResponse.md)
- - [CloudTfcAgentpool](docs/CloudTfcAgentpool.md)
- - [CloudTfcAgentpoolAllOf](docs/CloudTfcAgentpoolAllOf.md)
- - [CloudTfcAgentpoolList](docs/CloudTfcAgentpoolList.md)
- - [CloudTfcAgentpoolListAllOf](docs/CloudTfcAgentpoolListAllOf.md)
- - [CloudTfcAgentpoolResponse](docs/CloudTfcAgentpoolResponse.md)
- - [CloudTfcOrganization](docs/CloudTfcOrganization.md)
- - [CloudTfcOrganizationAllOf](docs/CloudTfcOrganizationAllOf.md)
- - [CloudTfcOrganizationList](docs/CloudTfcOrganizationList.md)
- - [CloudTfcOrganizationListAllOf](docs/CloudTfcOrganizationListAllOf.md)
- - [CloudTfcOrganizationRelationship](docs/CloudTfcOrganizationRelationship.md)
- - [CloudTfcOrganizationResponse](docs/CloudTfcOrganizationResponse.md)
- - [CloudTfcWorkspace](docs/CloudTfcWorkspace.md)
- - [CloudTfcWorkspaceAllOf](docs/CloudTfcWorkspaceAllOf.md)
- - [CloudTfcWorkspaceList](docs/CloudTfcWorkspaceList.md)
- - [CloudTfcWorkspaceListAllOf](docs/CloudTfcWorkspaceListAllOf.md)
- - [CloudTfcWorkspaceResponse](docs/CloudTfcWorkspaceResponse.md)
- - [CloudTfcWorkspaceVariables](docs/CloudTfcWorkspaceVariables.md)
- - [CloudTfcWorkspaceVariablesAllOf](docs/CloudTfcWorkspaceVariablesAllOf.md)
- - [CloudVolumeAttachment](docs/CloudVolumeAttachment.md)
- - [CloudVolumeAttachmentAllOf](docs/CloudVolumeAttachmentAllOf.md)
- - [CloudVolumeInstanceAttachment](docs/CloudVolumeInstanceAttachment.md)
- - [CloudVolumeInstanceAttachmentAllOf](docs/CloudVolumeInstanceAttachmentAllOf.md)
- - [CloudVolumeIopsInfo](docs/CloudVolumeIopsInfo.md)
- - [CloudVolumeIopsInfoAllOf](docs/CloudVolumeIopsInfoAllOf.md)
- - [CloudVolumeType](docs/CloudVolumeType.md)
- - [CloudVolumeTypeAllOf](docs/CloudVolumeTypeAllOf.md)
- - [CmrfCmRf](docs/CmrfCmRf.md)
- - [CmrfCmRfAllOf](docs/CmrfCmRfAllOf.md)
- - [CommAbstractHttpProxyPolicy](docs/CommAbstractHttpProxyPolicy.md)
- - [CommAbstractHttpProxyPolicyAllOf](docs/CommAbstractHttpProxyPolicyAllOf.md)
- - [CommHttpProxyPolicy](docs/CommHttpProxyPolicy.md)
- - [CommHttpProxyPolicyAllOf](docs/CommHttpProxyPolicyAllOf.md)
- - [CommHttpProxyPolicyList](docs/CommHttpProxyPolicyList.md)
- - [CommHttpProxyPolicyListAllOf](docs/CommHttpProxyPolicyListAllOf.md)
- - [CommHttpProxyPolicyRelationship](docs/CommHttpProxyPolicyRelationship.md)
- - [CommHttpProxyPolicyResponse](docs/CommHttpProxyPolicyResponse.md)
- - [CommIpV4AddressBlock](docs/CommIpV4AddressBlock.md)
- - [CommIpV4AddressBlockAllOf](docs/CommIpV4AddressBlockAllOf.md)
- - [CommIpV4Interface](docs/CommIpV4Interface.md)
- - [CommIpV4InterfaceAllOf](docs/CommIpV4InterfaceAllOf.md)
- - [CommIpV6Interface](docs/CommIpV6Interface.md)
- - [CommIpV6InterfaceAllOf](docs/CommIpV6InterfaceAllOf.md)
- - [ComputeAlarmSummary](docs/ComputeAlarmSummary.md)
- - [ComputeAlarmSummaryAllOf](docs/ComputeAlarmSummaryAllOf.md)
- - [ComputeBlade](docs/ComputeBlade.md)
- - [ComputeBladeAllOf](docs/ComputeBladeAllOf.md)
- - [ComputeBladeIdentity](docs/ComputeBladeIdentity.md)
- - [ComputeBladeIdentityAllOf](docs/ComputeBladeIdentityAllOf.md)
- - [ComputeBladeIdentityList](docs/ComputeBladeIdentityList.md)
- - [ComputeBladeIdentityListAllOf](docs/ComputeBladeIdentityListAllOf.md)
- - [ComputeBladeIdentityResponse](docs/ComputeBladeIdentityResponse.md)
- - [ComputeBladeList](docs/ComputeBladeList.md)
- - [ComputeBladeListAllOf](docs/ComputeBladeListAllOf.md)
- - [ComputeBladeRelationship](docs/ComputeBladeRelationship.md)
- - [ComputeBladeResponse](docs/ComputeBladeResponse.md)
- - [ComputeBoard](docs/ComputeBoard.md)
- - [ComputeBoardAllOf](docs/ComputeBoardAllOf.md)
- - [ComputeBoardList](docs/ComputeBoardList.md)
- - [ComputeBoardListAllOf](docs/ComputeBoardListAllOf.md)
- - [ComputeBoardRelationship](docs/ComputeBoardRelationship.md)
- - [ComputeBoardResponse](docs/ComputeBoardResponse.md)
- - [ComputeIpAddress](docs/ComputeIpAddress.md)
- - [ComputeIpAddressAllOf](docs/ComputeIpAddressAllOf.md)
- - [ComputeMapping](docs/ComputeMapping.md)
- - [ComputeMappingAllOf](docs/ComputeMappingAllOf.md)
- - [ComputeMappingList](docs/ComputeMappingList.md)
- - [ComputeMappingListAllOf](docs/ComputeMappingListAllOf.md)
- - [ComputeMappingRelationship](docs/ComputeMappingRelationship.md)
- - [ComputeMappingResponse](docs/ComputeMappingResponse.md)
- - [ComputePersistentMemoryModule](docs/ComputePersistentMemoryModule.md)
- - [ComputePersistentMemoryModuleAllOf](docs/ComputePersistentMemoryModuleAllOf.md)
- - [ComputePersistentMemoryOperation](docs/ComputePersistentMemoryOperation.md)
- - [ComputePersistentMemoryOperationAllOf](docs/ComputePersistentMemoryOperationAllOf.md)
- - [ComputePhysical](docs/ComputePhysical.md)
- - [ComputePhysicalAllOf](docs/ComputePhysicalAllOf.md)
- - [ComputePhysicalRelationship](docs/ComputePhysicalRelationship.md)
- - [ComputePhysicalSummary](docs/ComputePhysicalSummary.md)
- - [ComputePhysicalSummaryAllOf](docs/ComputePhysicalSummaryAllOf.md)
- - [ComputePhysicalSummaryList](docs/ComputePhysicalSummaryList.md)
- - [ComputePhysicalSummaryListAllOf](docs/ComputePhysicalSummaryListAllOf.md)
- - [ComputePhysicalSummaryRelationship](docs/ComputePhysicalSummaryRelationship.md)
- - [ComputePhysicalSummaryResponse](docs/ComputePhysicalSummaryResponse.md)
- - [ComputeRackUnit](docs/ComputeRackUnit.md)
- - [ComputeRackUnitAllOf](docs/ComputeRackUnitAllOf.md)
- - [ComputeRackUnitIdentity](docs/ComputeRackUnitIdentity.md)
- - [ComputeRackUnitIdentityAllOf](docs/ComputeRackUnitIdentityAllOf.md)
- - [ComputeRackUnitIdentityList](docs/ComputeRackUnitIdentityList.md)
- - [ComputeRackUnitIdentityListAllOf](docs/ComputeRackUnitIdentityListAllOf.md)
- - [ComputeRackUnitIdentityResponse](docs/ComputeRackUnitIdentityResponse.md)
- - [ComputeRackUnitList](docs/ComputeRackUnitList.md)
- - [ComputeRackUnitListAllOf](docs/ComputeRackUnitListAllOf.md)
- - [ComputeRackUnitRelationship](docs/ComputeRackUnitRelationship.md)
- - [ComputeRackUnitResponse](docs/ComputeRackUnitResponse.md)
- - [ComputeServerConfig](docs/ComputeServerConfig.md)
- - [ComputeServerConfigAllOf](docs/ComputeServerConfigAllOf.md)
- - [ComputeServerSetting](docs/ComputeServerSetting.md)
- - [ComputeServerSettingAllOf](docs/ComputeServerSettingAllOf.md)
- - [ComputeServerSettingList](docs/ComputeServerSettingList.md)
- - [ComputeServerSettingListAllOf](docs/ComputeServerSettingListAllOf.md)
- - [ComputeServerSettingResponse](docs/ComputeServerSettingResponse.md)
- - [ComputeStorageControllerOperation](docs/ComputeStorageControllerOperation.md)
- - [ComputeStorageControllerOperationAllOf](docs/ComputeStorageControllerOperationAllOf.md)
- - [ComputeStoragePhysicalDrive](docs/ComputeStoragePhysicalDrive.md)
- - [ComputeStoragePhysicalDriveAllOf](docs/ComputeStoragePhysicalDriveAllOf.md)
- - [ComputeStoragePhysicalDriveOperation](docs/ComputeStoragePhysicalDriveOperation.md)
- - [ComputeStoragePhysicalDriveOperationAllOf](docs/ComputeStoragePhysicalDriveOperationAllOf.md)
- - [ComputeStorageVirtualDrive](docs/ComputeStorageVirtualDrive.md)
- - [ComputeStorageVirtualDriveAllOf](docs/ComputeStorageVirtualDriveAllOf.md)
- - [ComputeStorageVirtualDriveOperation](docs/ComputeStorageVirtualDriveOperation.md)
- - [ComputeStorageVirtualDriveOperationAllOf](docs/ComputeStorageVirtualDriveOperationAllOf.md)
- - [ComputeVmedia](docs/ComputeVmedia.md)
- - [ComputeVmediaAllOf](docs/ComputeVmediaAllOf.md)
- - [ComputeVmediaList](docs/ComputeVmediaList.md)
- - [ComputeVmediaListAllOf](docs/ComputeVmediaListAllOf.md)
- - [ComputeVmediaRelationship](docs/ComputeVmediaRelationship.md)
- - [ComputeVmediaResponse](docs/ComputeVmediaResponse.md)
- - [CondAlarm](docs/CondAlarm.md)
- - [CondAlarmAggregation](docs/CondAlarmAggregation.md)
- - [CondAlarmAggregationAllOf](docs/CondAlarmAggregationAllOf.md)
- - [CondAlarmAggregationList](docs/CondAlarmAggregationList.md)
- - [CondAlarmAggregationListAllOf](docs/CondAlarmAggregationListAllOf.md)
- - [CondAlarmAggregationResponse](docs/CondAlarmAggregationResponse.md)
- - [CondAlarmAllOf](docs/CondAlarmAllOf.md)
- - [CondAlarmList](docs/CondAlarmList.md)
- - [CondAlarmListAllOf](docs/CondAlarmListAllOf.md)
- - [CondAlarmResponse](docs/CondAlarmResponse.md)
- - [CondAlarmSummary](docs/CondAlarmSummary.md)
- - [CondAlarmSummaryAllOf](docs/CondAlarmSummaryAllOf.md)
- - [CondHclStatus](docs/CondHclStatus.md)
- - [CondHclStatusAllOf](docs/CondHclStatusAllOf.md)
- - [CondHclStatusDetail](docs/CondHclStatusDetail.md)
- - [CondHclStatusDetailAllOf](docs/CondHclStatusDetailAllOf.md)
- - [CondHclStatusDetailList](docs/CondHclStatusDetailList.md)
- - [CondHclStatusDetailListAllOf](docs/CondHclStatusDetailListAllOf.md)
- - [CondHclStatusDetailRelationship](docs/CondHclStatusDetailRelationship.md)
- - [CondHclStatusDetailResponse](docs/CondHclStatusDetailResponse.md)
- - [CondHclStatusJob](docs/CondHclStatusJob.md)
- - [CondHclStatusJobAllOf](docs/CondHclStatusJobAllOf.md)
- - [CondHclStatusJobList](docs/CondHclStatusJobList.md)
- - [CondHclStatusJobListAllOf](docs/CondHclStatusJobListAllOf.md)
- - [CondHclStatusJobResponse](docs/CondHclStatusJobResponse.md)
- - [CondHclStatusList](docs/CondHclStatusList.md)
- - [CondHclStatusListAllOf](docs/CondHclStatusListAllOf.md)
- - [CondHclStatusRelationship](docs/CondHclStatusRelationship.md)
- - [CondHclStatusResponse](docs/CondHclStatusResponse.md)
- - [ConfigExportedItem](docs/ConfigExportedItem.md)
- - [ConfigExportedItemAllOf](docs/ConfigExportedItemAllOf.md)
- - [ConfigExportedItemList](docs/ConfigExportedItemList.md)
- - [ConfigExportedItemListAllOf](docs/ConfigExportedItemListAllOf.md)
- - [ConfigExportedItemRelationship](docs/ConfigExportedItemRelationship.md)
- - [ConfigExportedItemResponse](docs/ConfigExportedItemResponse.md)
- - [ConfigExporter](docs/ConfigExporter.md)
- - [ConfigExporterAllOf](docs/ConfigExporterAllOf.md)
- - [ConfigExporterList](docs/ConfigExporterList.md)
- - [ConfigExporterListAllOf](docs/ConfigExporterListAllOf.md)
- - [ConfigExporterRelationship](docs/ConfigExporterRelationship.md)
- - [ConfigExporterResponse](docs/ConfigExporterResponse.md)
- - [ConfigImportedItem](docs/ConfigImportedItem.md)
- - [ConfigImportedItemAllOf](docs/ConfigImportedItemAllOf.md)
- - [ConfigImportedItemList](docs/ConfigImportedItemList.md)
- - [ConfigImportedItemListAllOf](docs/ConfigImportedItemListAllOf.md)
- - [ConfigImportedItemRelationship](docs/ConfigImportedItemRelationship.md)
- - [ConfigImportedItemResponse](docs/ConfigImportedItemResponse.md)
- - [ConfigImporter](docs/ConfigImporter.md)
- - [ConfigImporterAllOf](docs/ConfigImporterAllOf.md)
- - [ConfigImporterList](docs/ConfigImporterList.md)
- - [ConfigImporterListAllOf](docs/ConfigImporterListAllOf.md)
- - [ConfigImporterRelationship](docs/ConfigImporterRelationship.md)
- - [ConfigImporterResponse](docs/ConfigImporterResponse.md)
- - [ConfigMoRef](docs/ConfigMoRef.md)
- - [ConfigMoRefAllOf](docs/ConfigMoRefAllOf.md)
- - [ConnectorAuthMessage](docs/ConnectorAuthMessage.md)
- - [ConnectorAuthMessageAllOf](docs/ConnectorAuthMessageAllOf.md)
- - [ConnectorBaseMessage](docs/ConnectorBaseMessage.md)
- - [ConnectorBaseMessageAllOf](docs/ConnectorBaseMessageAllOf.md)
- - [ConnectorCloseStreamMessage](docs/ConnectorCloseStreamMessage.md)
- - [ConnectorCommandControlMessage](docs/ConnectorCommandControlMessage.md)
- - [ConnectorCommandControlMessageAllOf](docs/ConnectorCommandControlMessageAllOf.md)
- - [ConnectorCommandTerminalStream](docs/ConnectorCommandTerminalStream.md)
- - [ConnectorCommandTerminalStreamAllOf](docs/ConnectorCommandTerminalStreamAllOf.md)
- - [ConnectorDownloadStatus](docs/ConnectorDownloadStatus.md)
- - [ConnectorDownloadStatusAllOf](docs/ConnectorDownloadStatusAllOf.md)
- - [ConnectorExpectPrompt](docs/ConnectorExpectPrompt.md)
- - [ConnectorExpectPromptAllOf](docs/ConnectorExpectPromptAllOf.md)
- - [ConnectorFetchStreamMessage](docs/ConnectorFetchStreamMessage.md)
- - [ConnectorFetchStreamMessageAllOf](docs/ConnectorFetchStreamMessageAllOf.md)
- - [ConnectorFileChecksum](docs/ConnectorFileChecksum.md)
- - [ConnectorFileChecksumAllOf](docs/ConnectorFileChecksumAllOf.md)
- - [ConnectorFileMessage](docs/ConnectorFileMessage.md)
- - [ConnectorFileMessageAllOf](docs/ConnectorFileMessageAllOf.md)
- - [ConnectorHttpRequest](docs/ConnectorHttpRequest.md)
- - [ConnectorHttpRequestAllOf](docs/ConnectorHttpRequestAllOf.md)
- - [ConnectorPlatformParamBase](docs/ConnectorPlatformParamBase.md)
- - [ConnectorScopedInventory](docs/ConnectorScopedInventory.md)
- - [ConnectorScopedInventoryAllOf](docs/ConnectorScopedInventoryAllOf.md)
- - [ConnectorSshConfig](docs/ConnectorSshConfig.md)
- - [ConnectorSshConfigAllOf](docs/ConnectorSshConfigAllOf.md)
- - [ConnectorSshMessage](docs/ConnectorSshMessage.md)
- - [ConnectorSshMessageAllOf](docs/ConnectorSshMessageAllOf.md)
- - [ConnectorStartStream](docs/ConnectorStartStream.md)
- - [ConnectorStartStreamAllOf](docs/ConnectorStartStreamAllOf.md)
- - [ConnectorStartStreamFromDevice](docs/ConnectorStartStreamFromDevice.md)
- - [ConnectorStartStreamFromDeviceAllOf](docs/ConnectorStartStreamFromDeviceAllOf.md)
- - [ConnectorStreamAcknowledge](docs/ConnectorStreamAcknowledge.md)
- - [ConnectorStreamAcknowledgeAllOf](docs/ConnectorStreamAcknowledgeAllOf.md)
- - [ConnectorStreamInput](docs/ConnectorStreamInput.md)
- - [ConnectorStreamInputAllOf](docs/ConnectorStreamInputAllOf.md)
- - [ConnectorStreamKeepalive](docs/ConnectorStreamKeepalive.md)
- - [ConnectorStreamMessage](docs/ConnectorStreamMessage.md)
- - [ConnectorStreamMessageAllOf](docs/ConnectorStreamMessageAllOf.md)
- - [ConnectorUrl](docs/ConnectorUrl.md)
- - [ConnectorUrlAllOf](docs/ConnectorUrlAllOf.md)
- - [ConnectorXmlApiMessage](docs/ConnectorXmlApiMessage.md)
- - [ConnectorXmlApiMessageAllOf](docs/ConnectorXmlApiMessageAllOf.md)
- - [ConnectorpackConnectorPackUpdate](docs/ConnectorpackConnectorPackUpdate.md)
- - [ConnectorpackConnectorPackUpdateAllOf](docs/ConnectorpackConnectorPackUpdateAllOf.md)
- - [ConnectorpackConnectorPackUpgrade](docs/ConnectorpackConnectorPackUpgrade.md)
- - [ConnectorpackConnectorPackUpgradeAllOf](docs/ConnectorpackConnectorPackUpgradeAllOf.md)
- - [ConnectorpackConnectorPackUpgradeList](docs/ConnectorpackConnectorPackUpgradeList.md)
- - [ConnectorpackConnectorPackUpgradeListAllOf](docs/ConnectorpackConnectorPackUpgradeListAllOf.md)
- - [ConnectorpackConnectorPackUpgradeResponse](docs/ConnectorpackConnectorPackUpgradeResponse.md)
- - [ConnectorpackUpgradeImpact](docs/ConnectorpackUpgradeImpact.md)
- - [ConnectorpackUpgradeImpactAllOf](docs/ConnectorpackUpgradeImpactAllOf.md)
- - [ConnectorpackUpgradeImpactList](docs/ConnectorpackUpgradeImpactList.md)
- - [ConnectorpackUpgradeImpactListAllOf](docs/ConnectorpackUpgradeImpactListAllOf.md)
- - [ConnectorpackUpgradeImpactResponse](docs/ConnectorpackUpgradeImpactResponse.md)
- - [ContentBaseParameter](docs/ContentBaseParameter.md)
- - [ContentBaseParameterAllOf](docs/ContentBaseParameterAllOf.md)
- - [ContentComplexType](docs/ContentComplexType.md)
- - [ContentComplexTypeAllOf](docs/ContentComplexTypeAllOf.md)
- - [ContentParameter](docs/ContentParameter.md)
- - [ContentTextParameter](docs/ContentTextParameter.md)
- - [ContentTextParameterAllOf](docs/ContentTextParameterAllOf.md)
- - [CrdCustomResource](docs/CrdCustomResource.md)
- - [CrdCustomResourceAllOf](docs/CrdCustomResourceAllOf.md)
- - [CrdCustomResourceConfigProperty](docs/CrdCustomResourceConfigProperty.md)
- - [CrdCustomResourceConfigPropertyAllOf](docs/CrdCustomResourceConfigPropertyAllOf.md)
- - [CrdCustomResourceList](docs/CrdCustomResourceList.md)
- - [CrdCustomResourceListAllOf](docs/CrdCustomResourceListAllOf.md)
- - [CrdCustomResourceResponse](docs/CrdCustomResourceResponse.md)
- - [DeviceconnectorPolicy](docs/DeviceconnectorPolicy.md)
- - [DeviceconnectorPolicyAllOf](docs/DeviceconnectorPolicyAllOf.md)
- - [DeviceconnectorPolicyList](docs/DeviceconnectorPolicyList.md)
- - [DeviceconnectorPolicyListAllOf](docs/DeviceconnectorPolicyListAllOf.md)
- - [DeviceconnectorPolicyResponse](docs/DeviceconnectorPolicyResponse.md)
- - [DisplayNames](docs/DisplayNames.md)
- - [EquipmentAbstractDevice](docs/EquipmentAbstractDevice.md)
- - [EquipmentAbstractDeviceAllOf](docs/EquipmentAbstractDeviceAllOf.md)
- - [EquipmentBase](docs/EquipmentBase.md)
- - [EquipmentBaseAllOf](docs/EquipmentBaseAllOf.md)
- - [EquipmentBaseRelationship](docs/EquipmentBaseRelationship.md)
- - [EquipmentChassis](docs/EquipmentChassis.md)
- - [EquipmentChassisAllOf](docs/EquipmentChassisAllOf.md)
- - [EquipmentChassisIdentity](docs/EquipmentChassisIdentity.md)
- - [EquipmentChassisIdentityAllOf](docs/EquipmentChassisIdentityAllOf.md)
- - [EquipmentChassisIdentityList](docs/EquipmentChassisIdentityList.md)
- - [EquipmentChassisIdentityListAllOf](docs/EquipmentChassisIdentityListAllOf.md)
- - [EquipmentChassisIdentityResponse](docs/EquipmentChassisIdentityResponse.md)
- - [EquipmentChassisList](docs/EquipmentChassisList.md)
- - [EquipmentChassisListAllOf](docs/EquipmentChassisListAllOf.md)
- - [EquipmentChassisOperation](docs/EquipmentChassisOperation.md)
- - [EquipmentChassisOperationAllOf](docs/EquipmentChassisOperationAllOf.md)
- - [EquipmentChassisOperationList](docs/EquipmentChassisOperationList.md)
- - [EquipmentChassisOperationListAllOf](docs/EquipmentChassisOperationListAllOf.md)
- - [EquipmentChassisOperationResponse](docs/EquipmentChassisOperationResponse.md)
- - [EquipmentChassisRelationship](docs/EquipmentChassisRelationship.md)
- - [EquipmentChassisResponse](docs/EquipmentChassisResponse.md)
- - [EquipmentDeviceSummary](docs/EquipmentDeviceSummary.md)
- - [EquipmentDeviceSummaryAllOf](docs/EquipmentDeviceSummaryAllOf.md)
- - [EquipmentDeviceSummaryList](docs/EquipmentDeviceSummaryList.md)
- - [EquipmentDeviceSummaryListAllOf](docs/EquipmentDeviceSummaryListAllOf.md)
- - [EquipmentDeviceSummaryResponse](docs/EquipmentDeviceSummaryResponse.md)
- - [EquipmentFan](docs/EquipmentFan.md)
- - [EquipmentFanAllOf](docs/EquipmentFanAllOf.md)
- - [EquipmentFanControl](docs/EquipmentFanControl.md)
- - [EquipmentFanControlAllOf](docs/EquipmentFanControlAllOf.md)
- - [EquipmentFanControlList](docs/EquipmentFanControlList.md)
- - [EquipmentFanControlListAllOf](docs/EquipmentFanControlListAllOf.md)
- - [EquipmentFanControlRelationship](docs/EquipmentFanControlRelationship.md)
- - [EquipmentFanControlResponse](docs/EquipmentFanControlResponse.md)
- - [EquipmentFanList](docs/EquipmentFanList.md)
- - [EquipmentFanListAllOf](docs/EquipmentFanListAllOf.md)
- - [EquipmentFanModule](docs/EquipmentFanModule.md)
- - [EquipmentFanModuleAllOf](docs/EquipmentFanModuleAllOf.md)
- - [EquipmentFanModuleList](docs/EquipmentFanModuleList.md)
- - [EquipmentFanModuleListAllOf](docs/EquipmentFanModuleListAllOf.md)
- - [EquipmentFanModuleRelationship](docs/EquipmentFanModuleRelationship.md)
- - [EquipmentFanModuleResponse](docs/EquipmentFanModuleResponse.md)
- - [EquipmentFanRelationship](docs/EquipmentFanRelationship.md)
- - [EquipmentFanResponse](docs/EquipmentFanResponse.md)
- - [EquipmentFex](docs/EquipmentFex.md)
- - [EquipmentFexAllOf](docs/EquipmentFexAllOf.md)
- - [EquipmentFexIdentity](docs/EquipmentFexIdentity.md)
- - [EquipmentFexIdentityAllOf](docs/EquipmentFexIdentityAllOf.md)
- - [EquipmentFexIdentityList](docs/EquipmentFexIdentityList.md)
- - [EquipmentFexIdentityListAllOf](docs/EquipmentFexIdentityListAllOf.md)
- - [EquipmentFexIdentityResponse](docs/EquipmentFexIdentityResponse.md)
- - [EquipmentFexList](docs/EquipmentFexList.md)
- - [EquipmentFexListAllOf](docs/EquipmentFexListAllOf.md)
- - [EquipmentFexOperation](docs/EquipmentFexOperation.md)
- - [EquipmentFexOperationAllOf](docs/EquipmentFexOperationAllOf.md)
- - [EquipmentFexOperationList](docs/EquipmentFexOperationList.md)
- - [EquipmentFexOperationListAllOf](docs/EquipmentFexOperationListAllOf.md)
- - [EquipmentFexOperationResponse](docs/EquipmentFexOperationResponse.md)
- - [EquipmentFexRelationship](docs/EquipmentFexRelationship.md)
- - [EquipmentFexResponse](docs/EquipmentFexResponse.md)
- - [EquipmentFru](docs/EquipmentFru.md)
- - [EquipmentFruAllOf](docs/EquipmentFruAllOf.md)
- - [EquipmentFruList](docs/EquipmentFruList.md)
- - [EquipmentFruListAllOf](docs/EquipmentFruListAllOf.md)
- - [EquipmentFruRelationship](docs/EquipmentFruRelationship.md)
- - [EquipmentFruResponse](docs/EquipmentFruResponse.md)
- - [EquipmentIdentity](docs/EquipmentIdentity.md)
- - [EquipmentIdentityAllOf](docs/EquipmentIdentityAllOf.md)
- - [EquipmentIdentitySummary](docs/EquipmentIdentitySummary.md)
- - [EquipmentIdentitySummaryAllOf](docs/EquipmentIdentitySummaryAllOf.md)
- - [EquipmentIdentitySummaryList](docs/EquipmentIdentitySummaryList.md)
- - [EquipmentIdentitySummaryListAllOf](docs/EquipmentIdentitySummaryListAllOf.md)
- - [EquipmentIdentitySummaryResponse](docs/EquipmentIdentitySummaryResponse.md)
- - [EquipmentIoCard](docs/EquipmentIoCard.md)
- - [EquipmentIoCardAllOf](docs/EquipmentIoCardAllOf.md)
- - [EquipmentIoCardBase](docs/EquipmentIoCardBase.md)
- - [EquipmentIoCardBaseAllOf](docs/EquipmentIoCardBaseAllOf.md)
- - [EquipmentIoCardBaseRelationship](docs/EquipmentIoCardBaseRelationship.md)
- - [EquipmentIoCardIdentity](docs/EquipmentIoCardIdentity.md)
- - [EquipmentIoCardIdentityAllOf](docs/EquipmentIoCardIdentityAllOf.md)
- - [EquipmentIoCardList](docs/EquipmentIoCardList.md)
- - [EquipmentIoCardListAllOf](docs/EquipmentIoCardListAllOf.md)
- - [EquipmentIoCardOperation](docs/EquipmentIoCardOperation.md)
- - [EquipmentIoCardOperationAllOf](docs/EquipmentIoCardOperationAllOf.md)
- - [EquipmentIoCardOperationList](docs/EquipmentIoCardOperationList.md)
- - [EquipmentIoCardOperationListAllOf](docs/EquipmentIoCardOperationListAllOf.md)
- - [EquipmentIoCardOperationResponse](docs/EquipmentIoCardOperationResponse.md)
- - [EquipmentIoCardRelationship](docs/EquipmentIoCardRelationship.md)
- - [EquipmentIoCardResponse](docs/EquipmentIoCardResponse.md)
- - [EquipmentIoExpander](docs/EquipmentIoExpander.md)
- - [EquipmentIoExpanderAllOf](docs/EquipmentIoExpanderAllOf.md)
- - [EquipmentIoExpanderList](docs/EquipmentIoExpanderList.md)
- - [EquipmentIoExpanderListAllOf](docs/EquipmentIoExpanderListAllOf.md)
- - [EquipmentIoExpanderRelationship](docs/EquipmentIoExpanderRelationship.md)
- - [EquipmentIoExpanderResponse](docs/EquipmentIoExpanderResponse.md)
- - [EquipmentLocatorLed](docs/EquipmentLocatorLed.md)
- - [EquipmentLocatorLedAllOf](docs/EquipmentLocatorLedAllOf.md)
- - [EquipmentLocatorLedList](docs/EquipmentLocatorLedList.md)
- - [EquipmentLocatorLedListAllOf](docs/EquipmentLocatorLedListAllOf.md)
- - [EquipmentLocatorLedRelationship](docs/EquipmentLocatorLedRelationship.md)
- - [EquipmentLocatorLedResponse](docs/EquipmentLocatorLedResponse.md)
- - [EquipmentPhysicalIdentity](docs/EquipmentPhysicalIdentity.md)
- - [EquipmentPhysicalIdentityAllOf](docs/EquipmentPhysicalIdentityAllOf.md)
- - [EquipmentPhysicalIdentityRelationship](docs/EquipmentPhysicalIdentityRelationship.md)
- - [EquipmentPsu](docs/EquipmentPsu.md)
- - [EquipmentPsuAllOf](docs/EquipmentPsuAllOf.md)
- - [EquipmentPsuControl](docs/EquipmentPsuControl.md)
- - [EquipmentPsuControlAllOf](docs/EquipmentPsuControlAllOf.md)
- - [EquipmentPsuControlList](docs/EquipmentPsuControlList.md)
- - [EquipmentPsuControlListAllOf](docs/EquipmentPsuControlListAllOf.md)
- - [EquipmentPsuControlRelationship](docs/EquipmentPsuControlRelationship.md)
- - [EquipmentPsuControlResponse](docs/EquipmentPsuControlResponse.md)
- - [EquipmentPsuList](docs/EquipmentPsuList.md)
- - [EquipmentPsuListAllOf](docs/EquipmentPsuListAllOf.md)
- - [EquipmentPsuRelationship](docs/EquipmentPsuRelationship.md)
- - [EquipmentPsuResponse](docs/EquipmentPsuResponse.md)
- - [EquipmentRackEnclosure](docs/EquipmentRackEnclosure.md)
- - [EquipmentRackEnclosureAllOf](docs/EquipmentRackEnclosureAllOf.md)
- - [EquipmentRackEnclosureList](docs/EquipmentRackEnclosureList.md)
- - [EquipmentRackEnclosureListAllOf](docs/EquipmentRackEnclosureListAllOf.md)
- - [EquipmentRackEnclosureRelationship](docs/EquipmentRackEnclosureRelationship.md)
- - [EquipmentRackEnclosureResponse](docs/EquipmentRackEnclosureResponse.md)
- - [EquipmentRackEnclosureSlot](docs/EquipmentRackEnclosureSlot.md)
- - [EquipmentRackEnclosureSlotAllOf](docs/EquipmentRackEnclosureSlotAllOf.md)
- - [EquipmentRackEnclosureSlotList](docs/EquipmentRackEnclosureSlotList.md)
- - [EquipmentRackEnclosureSlotListAllOf](docs/EquipmentRackEnclosureSlotListAllOf.md)
- - [EquipmentRackEnclosureSlotRelationship](docs/EquipmentRackEnclosureSlotRelationship.md)
- - [EquipmentRackEnclosureSlotResponse](docs/EquipmentRackEnclosureSlotResponse.md)
- - [EquipmentSharedIoModule](docs/EquipmentSharedIoModule.md)
- - [EquipmentSharedIoModuleAllOf](docs/EquipmentSharedIoModuleAllOf.md)
- - [EquipmentSharedIoModuleList](docs/EquipmentSharedIoModuleList.md)
- - [EquipmentSharedIoModuleListAllOf](docs/EquipmentSharedIoModuleListAllOf.md)
- - [EquipmentSharedIoModuleRelationship](docs/EquipmentSharedIoModuleRelationship.md)
- - [EquipmentSharedIoModuleResponse](docs/EquipmentSharedIoModuleResponse.md)
- - [EquipmentSlot](docs/EquipmentSlot.md)
- - [EquipmentSlotAllOf](docs/EquipmentSlotAllOf.md)
- - [EquipmentSwitchCard](docs/EquipmentSwitchCard.md)
- - [EquipmentSwitchCardAllOf](docs/EquipmentSwitchCardAllOf.md)
- - [EquipmentSwitchCardList](docs/EquipmentSwitchCardList.md)
- - [EquipmentSwitchCardListAllOf](docs/EquipmentSwitchCardListAllOf.md)
- - [EquipmentSwitchCardRelationship](docs/EquipmentSwitchCardRelationship.md)
- - [EquipmentSwitchCardResponse](docs/EquipmentSwitchCardResponse.md)
- - [EquipmentSystemIoController](docs/EquipmentSystemIoController.md)
- - [EquipmentSystemIoControllerAllOf](docs/EquipmentSystemIoControllerAllOf.md)
- - [EquipmentSystemIoControllerList](docs/EquipmentSystemIoControllerList.md)
- - [EquipmentSystemIoControllerListAllOf](docs/EquipmentSystemIoControllerListAllOf.md)
- - [EquipmentSystemIoControllerRelationship](docs/EquipmentSystemIoControllerRelationship.md)
- - [EquipmentSystemIoControllerResponse](docs/EquipmentSystemIoControllerResponse.md)
- - [EquipmentTpm](docs/EquipmentTpm.md)
- - [EquipmentTpmAllOf](docs/EquipmentTpmAllOf.md)
- - [EquipmentTpmList](docs/EquipmentTpmList.md)
- - [EquipmentTpmListAllOf](docs/EquipmentTpmListAllOf.md)
- - [EquipmentTpmRelationship](docs/EquipmentTpmRelationship.md)
- - [EquipmentTpmResponse](docs/EquipmentTpmResponse.md)
- - [EquipmentTransceiver](docs/EquipmentTransceiver.md)
- - [EquipmentTransceiverAllOf](docs/EquipmentTransceiverAllOf.md)
- - [EquipmentTransceiverList](docs/EquipmentTransceiverList.md)
- - [EquipmentTransceiverListAllOf](docs/EquipmentTransceiverListAllOf.md)
- - [EquipmentTransceiverResponse](docs/EquipmentTransceiverResponse.md)
- - [Error](docs/Error.md)
- - [EtherHostPort](docs/EtherHostPort.md)
- - [EtherHostPortAllOf](docs/EtherHostPortAllOf.md)
- - [EtherHostPortList](docs/EtherHostPortList.md)
- - [EtherHostPortListAllOf](docs/EtherHostPortListAllOf.md)
- - [EtherHostPortRelationship](docs/EtherHostPortRelationship.md)
- - [EtherHostPortResponse](docs/EtherHostPortResponse.md)
- - [EtherNetworkPort](docs/EtherNetworkPort.md)
- - [EtherNetworkPortAllOf](docs/EtherNetworkPortAllOf.md)
- - [EtherNetworkPortList](docs/EtherNetworkPortList.md)
- - [EtherNetworkPortListAllOf](docs/EtherNetworkPortListAllOf.md)
- - [EtherNetworkPortRelationship](docs/EtherNetworkPortRelationship.md)
- - [EtherNetworkPortResponse](docs/EtherNetworkPortResponse.md)
- - [EtherPhysicalPort](docs/EtherPhysicalPort.md)
- - [EtherPhysicalPortAllOf](docs/EtherPhysicalPortAllOf.md)
- - [EtherPhysicalPortBase](docs/EtherPhysicalPortBase.md)
- - [EtherPhysicalPortBaseAllOf](docs/EtherPhysicalPortBaseAllOf.md)
- - [EtherPhysicalPortBaseRelationship](docs/EtherPhysicalPortBaseRelationship.md)
- - [EtherPhysicalPortList](docs/EtherPhysicalPortList.md)
- - [EtherPhysicalPortListAllOf](docs/EtherPhysicalPortListAllOf.md)
- - [EtherPhysicalPortRelationship](docs/EtherPhysicalPortRelationship.md)
- - [EtherPhysicalPortResponse](docs/EtherPhysicalPortResponse.md)
- - [EtherPortChannel](docs/EtherPortChannel.md)
- - [EtherPortChannelAllOf](docs/EtherPortChannelAllOf.md)
- - [EtherPortChannelList](docs/EtherPortChannelList.md)
- - [EtherPortChannelListAllOf](docs/EtherPortChannelListAllOf.md)
- - [EtherPortChannelRelationship](docs/EtherPortChannelRelationship.md)
- - [EtherPortChannelResponse](docs/EtherPortChannelResponse.md)
- - [ExternalsiteAuthorization](docs/ExternalsiteAuthorization.md)
- - [ExternalsiteAuthorizationAllOf](docs/ExternalsiteAuthorizationAllOf.md)
- - [ExternalsiteAuthorizationList](docs/ExternalsiteAuthorizationList.md)
- - [ExternalsiteAuthorizationListAllOf](docs/ExternalsiteAuthorizationListAllOf.md)
- - [ExternalsiteAuthorizationResponse](docs/ExternalsiteAuthorizationResponse.md)
- - [FabricAppliancePcRole](docs/FabricAppliancePcRole.md)
- - [FabricAppliancePcRoleAllOf](docs/FabricAppliancePcRoleAllOf.md)
- - [FabricAppliancePcRoleList](docs/FabricAppliancePcRoleList.md)
- - [FabricAppliancePcRoleListAllOf](docs/FabricAppliancePcRoleListAllOf.md)
- - [FabricAppliancePcRoleResponse](docs/FabricAppliancePcRoleResponse.md)
- - [FabricApplianceRole](docs/FabricApplianceRole.md)
- - [FabricApplianceRoleAllOf](docs/FabricApplianceRoleAllOf.md)
- - [FabricApplianceRoleList](docs/FabricApplianceRoleList.md)
- - [FabricApplianceRoleListAllOf](docs/FabricApplianceRoleListAllOf.md)
- - [FabricApplianceRoleResponse](docs/FabricApplianceRoleResponse.md)
- - [FabricConfigChangeDetail](docs/FabricConfigChangeDetail.md)
- - [FabricConfigChangeDetailAllOf](docs/FabricConfigChangeDetailAllOf.md)
- - [FabricConfigChangeDetailList](docs/FabricConfigChangeDetailList.md)
- - [FabricConfigChangeDetailListAllOf](docs/FabricConfigChangeDetailListAllOf.md)
- - [FabricConfigChangeDetailRelationship](docs/FabricConfigChangeDetailRelationship.md)
- - [FabricConfigChangeDetailResponse](docs/FabricConfigChangeDetailResponse.md)
- - [FabricConfigResult](docs/FabricConfigResult.md)
- - [FabricConfigResultAllOf](docs/FabricConfigResultAllOf.md)
- - [FabricConfigResultEntry](docs/FabricConfigResultEntry.md)
- - [FabricConfigResultEntryAllOf](docs/FabricConfigResultEntryAllOf.md)
- - [FabricConfigResultEntryList](docs/FabricConfigResultEntryList.md)
- - [FabricConfigResultEntryListAllOf](docs/FabricConfigResultEntryListAllOf.md)
- - [FabricConfigResultEntryRelationship](docs/FabricConfigResultEntryRelationship.md)
- - [FabricConfigResultEntryResponse](docs/FabricConfigResultEntryResponse.md)
- - [FabricConfigResultList](docs/FabricConfigResultList.md)
- - [FabricConfigResultListAllOf](docs/FabricConfigResultListAllOf.md)
- - [FabricConfigResultRelationship](docs/FabricConfigResultRelationship.md)
- - [FabricConfigResultResponse](docs/FabricConfigResultResponse.md)
- - [FabricElementIdentity](docs/FabricElementIdentity.md)
- - [FabricElementIdentityAllOf](docs/FabricElementIdentityAllOf.md)
- - [FabricElementIdentityList](docs/FabricElementIdentityList.md)
- - [FabricElementIdentityListAllOf](docs/FabricElementIdentityListAllOf.md)
- - [FabricElementIdentityResponse](docs/FabricElementIdentityResponse.md)
- - [FabricEstimateImpact](docs/FabricEstimateImpact.md)
- - [FabricEstimateImpactAllOf](docs/FabricEstimateImpactAllOf.md)
- - [FabricEthNetworkControlPolicy](docs/FabricEthNetworkControlPolicy.md)
- - [FabricEthNetworkControlPolicyAllOf](docs/FabricEthNetworkControlPolicyAllOf.md)
- - [FabricEthNetworkControlPolicyList](docs/FabricEthNetworkControlPolicyList.md)
- - [FabricEthNetworkControlPolicyListAllOf](docs/FabricEthNetworkControlPolicyListAllOf.md)
- - [FabricEthNetworkControlPolicyRelationship](docs/FabricEthNetworkControlPolicyRelationship.md)
- - [FabricEthNetworkControlPolicyResponse](docs/FabricEthNetworkControlPolicyResponse.md)
- - [FabricEthNetworkGroupPolicy](docs/FabricEthNetworkGroupPolicy.md)
- - [FabricEthNetworkGroupPolicyAllOf](docs/FabricEthNetworkGroupPolicyAllOf.md)
- - [FabricEthNetworkGroupPolicyList](docs/FabricEthNetworkGroupPolicyList.md)
- - [FabricEthNetworkGroupPolicyListAllOf](docs/FabricEthNetworkGroupPolicyListAllOf.md)
- - [FabricEthNetworkGroupPolicyRelationship](docs/FabricEthNetworkGroupPolicyRelationship.md)
- - [FabricEthNetworkGroupPolicyResponse](docs/FabricEthNetworkGroupPolicyResponse.md)
- - [FabricEthNetworkPolicy](docs/FabricEthNetworkPolicy.md)
- - [FabricEthNetworkPolicyAllOf](docs/FabricEthNetworkPolicyAllOf.md)
- - [FabricEthNetworkPolicyList](docs/FabricEthNetworkPolicyList.md)
- - [FabricEthNetworkPolicyListAllOf](docs/FabricEthNetworkPolicyListAllOf.md)
- - [FabricEthNetworkPolicyRelationship](docs/FabricEthNetworkPolicyRelationship.md)
- - [FabricEthNetworkPolicyResponse](docs/FabricEthNetworkPolicyResponse.md)
- - [FabricFcNetworkPolicy](docs/FabricFcNetworkPolicy.md)
- - [FabricFcNetworkPolicyAllOf](docs/FabricFcNetworkPolicyAllOf.md)
- - [FabricFcNetworkPolicyList](docs/FabricFcNetworkPolicyList.md)
- - [FabricFcNetworkPolicyListAllOf](docs/FabricFcNetworkPolicyListAllOf.md)
- - [FabricFcNetworkPolicyRelationship](docs/FabricFcNetworkPolicyRelationship.md)
- - [FabricFcNetworkPolicyResponse](docs/FabricFcNetworkPolicyResponse.md)
- - [FabricFcUplinkPcRole](docs/FabricFcUplinkPcRole.md)
- - [FabricFcUplinkPcRoleAllOf](docs/FabricFcUplinkPcRoleAllOf.md)
- - [FabricFcUplinkPcRoleList](docs/FabricFcUplinkPcRoleList.md)
- - [FabricFcUplinkPcRoleListAllOf](docs/FabricFcUplinkPcRoleListAllOf.md)
- - [FabricFcUplinkPcRoleResponse](docs/FabricFcUplinkPcRoleResponse.md)
- - [FabricFcUplinkRole](docs/FabricFcUplinkRole.md)
- - [FabricFcUplinkRoleAllOf](docs/FabricFcUplinkRoleAllOf.md)
- - [FabricFcUplinkRoleList](docs/FabricFcUplinkRoleList.md)
- - [FabricFcUplinkRoleListAllOf](docs/FabricFcUplinkRoleListAllOf.md)
- - [FabricFcUplinkRoleResponse](docs/FabricFcUplinkRoleResponse.md)
- - [FabricFcoeUplinkPcRole](docs/FabricFcoeUplinkPcRole.md)
- - [FabricFcoeUplinkPcRoleAllOf](docs/FabricFcoeUplinkPcRoleAllOf.md)
- - [FabricFcoeUplinkPcRoleList](docs/FabricFcoeUplinkPcRoleList.md)
- - [FabricFcoeUplinkPcRoleListAllOf](docs/FabricFcoeUplinkPcRoleListAllOf.md)
- - [FabricFcoeUplinkPcRoleResponse](docs/FabricFcoeUplinkPcRoleResponse.md)
- - [FabricFcoeUplinkRole](docs/FabricFcoeUplinkRole.md)
- - [FabricFcoeUplinkRoleAllOf](docs/FabricFcoeUplinkRoleAllOf.md)
- - [FabricFcoeUplinkRoleList](docs/FabricFcoeUplinkRoleList.md)
- - [FabricFcoeUplinkRoleListAllOf](docs/FabricFcoeUplinkRoleListAllOf.md)
- - [FabricFcoeUplinkRoleResponse](docs/FabricFcoeUplinkRoleResponse.md)
- - [FabricFlowControlPolicy](docs/FabricFlowControlPolicy.md)
- - [FabricFlowControlPolicyAllOf](docs/FabricFlowControlPolicyAllOf.md)
- - [FabricFlowControlPolicyList](docs/FabricFlowControlPolicyList.md)
- - [FabricFlowControlPolicyListAllOf](docs/FabricFlowControlPolicyListAllOf.md)
- - [FabricFlowControlPolicyRelationship](docs/FabricFlowControlPolicyRelationship.md)
- - [FabricFlowControlPolicyResponse](docs/FabricFlowControlPolicyResponse.md)
- - [FabricLinkAggregationPolicy](docs/FabricLinkAggregationPolicy.md)
- - [FabricLinkAggregationPolicyAllOf](docs/FabricLinkAggregationPolicyAllOf.md)
- - [FabricLinkAggregationPolicyList](docs/FabricLinkAggregationPolicyList.md)
- - [FabricLinkAggregationPolicyListAllOf](docs/FabricLinkAggregationPolicyListAllOf.md)
- - [FabricLinkAggregationPolicyRelationship](docs/FabricLinkAggregationPolicyRelationship.md)
- - [FabricLinkAggregationPolicyResponse](docs/FabricLinkAggregationPolicyResponse.md)
- - [FabricLinkControlPolicy](docs/FabricLinkControlPolicy.md)
- - [FabricLinkControlPolicyAllOf](docs/FabricLinkControlPolicyAllOf.md)
- - [FabricLinkControlPolicyList](docs/FabricLinkControlPolicyList.md)
- - [FabricLinkControlPolicyListAllOf](docs/FabricLinkControlPolicyListAllOf.md)
- - [FabricLinkControlPolicyRelationship](docs/FabricLinkControlPolicyRelationship.md)
- - [FabricLinkControlPolicyResponse](docs/FabricLinkControlPolicyResponse.md)
- - [FabricLldpSettings](docs/FabricLldpSettings.md)
- - [FabricLldpSettingsAllOf](docs/FabricLldpSettingsAllOf.md)
- - [FabricMacAgingSettings](docs/FabricMacAgingSettings.md)
- - [FabricMacAgingSettingsAllOf](docs/FabricMacAgingSettingsAllOf.md)
- - [FabricMulticastPolicy](docs/FabricMulticastPolicy.md)
- - [FabricMulticastPolicyAllOf](docs/FabricMulticastPolicyAllOf.md)
- - [FabricMulticastPolicyList](docs/FabricMulticastPolicyList.md)
- - [FabricMulticastPolicyListAllOf](docs/FabricMulticastPolicyListAllOf.md)
- - [FabricMulticastPolicyRelationship](docs/FabricMulticastPolicyRelationship.md)
- - [FabricMulticastPolicyResponse](docs/FabricMulticastPolicyResponse.md)
- - [FabricPcMember](docs/FabricPcMember.md)
- - [FabricPcMemberAllOf](docs/FabricPcMemberAllOf.md)
- - [FabricPcMemberList](docs/FabricPcMemberList.md)
- - [FabricPcMemberListAllOf](docs/FabricPcMemberListAllOf.md)
- - [FabricPcMemberResponse](docs/FabricPcMemberResponse.md)
- - [FabricPcOperation](docs/FabricPcOperation.md)
- - [FabricPcOperationAllOf](docs/FabricPcOperationAllOf.md)
- - [FabricPcOperationList](docs/FabricPcOperationList.md)
- - [FabricPcOperationListAllOf](docs/FabricPcOperationListAllOf.md)
- - [FabricPcOperationResponse](docs/FabricPcOperationResponse.md)
- - [FabricPortBase](docs/FabricPortBase.md)
- - [FabricPortBaseAllOf](docs/FabricPortBaseAllOf.md)
- - [FabricPortChannelRole](docs/FabricPortChannelRole.md)
- - [FabricPortChannelRoleAllOf](docs/FabricPortChannelRoleAllOf.md)
- - [FabricPortIdentifier](docs/FabricPortIdentifier.md)
- - [FabricPortIdentifierAllOf](docs/FabricPortIdentifierAllOf.md)
- - [FabricPortMode](docs/FabricPortMode.md)
- - [FabricPortModeAllOf](docs/FabricPortModeAllOf.md)
- - [FabricPortModeList](docs/FabricPortModeList.md)
- - [FabricPortModeListAllOf](docs/FabricPortModeListAllOf.md)
- - [FabricPortModeResponse](docs/FabricPortModeResponse.md)
- - [FabricPortOperation](docs/FabricPortOperation.md)
- - [FabricPortOperationAllOf](docs/FabricPortOperationAllOf.md)
- - [FabricPortOperationList](docs/FabricPortOperationList.md)
- - [FabricPortOperationListAllOf](docs/FabricPortOperationListAllOf.md)
- - [FabricPortOperationResponse](docs/FabricPortOperationResponse.md)
- - [FabricPortPolicy](docs/FabricPortPolicy.md)
- - [FabricPortPolicyAllOf](docs/FabricPortPolicyAllOf.md)
- - [FabricPortPolicyList](docs/FabricPortPolicyList.md)
- - [FabricPortPolicyListAllOf](docs/FabricPortPolicyListAllOf.md)
- - [FabricPortPolicyRelationship](docs/FabricPortPolicyRelationship.md)
- - [FabricPortPolicyResponse](docs/FabricPortPolicyResponse.md)
- - [FabricPortRole](docs/FabricPortRole.md)
- - [FabricPortRoleAllOf](docs/FabricPortRoleAllOf.md)
- - [FabricQosClass](docs/FabricQosClass.md)
- - [FabricQosClassAllOf](docs/FabricQosClassAllOf.md)
- - [FabricServerRole](docs/FabricServerRole.md)
- - [FabricServerRoleList](docs/FabricServerRoleList.md)
- - [FabricServerRoleListAllOf](docs/FabricServerRoleListAllOf.md)
- - [FabricServerRoleResponse](docs/FabricServerRoleResponse.md)
- - [FabricSwitchClusterProfile](docs/FabricSwitchClusterProfile.md)
- - [FabricSwitchClusterProfileAllOf](docs/FabricSwitchClusterProfileAllOf.md)
- - [FabricSwitchClusterProfileList](docs/FabricSwitchClusterProfileList.md)
- - [FabricSwitchClusterProfileListAllOf](docs/FabricSwitchClusterProfileListAllOf.md)
- - [FabricSwitchClusterProfileRelationship](docs/FabricSwitchClusterProfileRelationship.md)
- - [FabricSwitchClusterProfileResponse](docs/FabricSwitchClusterProfileResponse.md)
- - [FabricSwitchControlPolicy](docs/FabricSwitchControlPolicy.md)
- - [FabricSwitchControlPolicyAllOf](docs/FabricSwitchControlPolicyAllOf.md)
- - [FabricSwitchControlPolicyList](docs/FabricSwitchControlPolicyList.md)
- - [FabricSwitchControlPolicyListAllOf](docs/FabricSwitchControlPolicyListAllOf.md)
- - [FabricSwitchControlPolicyResponse](docs/FabricSwitchControlPolicyResponse.md)
- - [FabricSwitchProfile](docs/FabricSwitchProfile.md)
- - [FabricSwitchProfileAllOf](docs/FabricSwitchProfileAllOf.md)
- - [FabricSwitchProfileList](docs/FabricSwitchProfileList.md)
- - [FabricSwitchProfileListAllOf](docs/FabricSwitchProfileListAllOf.md)
- - [FabricSwitchProfileRelationship](docs/FabricSwitchProfileRelationship.md)
- - [FabricSwitchProfileResponse](docs/FabricSwitchProfileResponse.md)
- - [FabricSystemQosPolicy](docs/FabricSystemQosPolicy.md)
- - [FabricSystemQosPolicyAllOf](docs/FabricSystemQosPolicyAllOf.md)
- - [FabricSystemQosPolicyList](docs/FabricSystemQosPolicyList.md)
- - [FabricSystemQosPolicyListAllOf](docs/FabricSystemQosPolicyListAllOf.md)
- - [FabricSystemQosPolicyResponse](docs/FabricSystemQosPolicyResponse.md)
- - [FabricTransceiverRole](docs/FabricTransceiverRole.md)
- - [FabricTransceiverRoleAllOf](docs/FabricTransceiverRoleAllOf.md)
- - [FabricUdldGlobalSettings](docs/FabricUdldGlobalSettings.md)
- - [FabricUdldGlobalSettingsAllOf](docs/FabricUdldGlobalSettingsAllOf.md)
- - [FabricUdldSettings](docs/FabricUdldSettings.md)
- - [FabricUdldSettingsAllOf](docs/FabricUdldSettingsAllOf.md)
- - [FabricUplinkPcRole](docs/FabricUplinkPcRole.md)
- - [FabricUplinkPcRoleAllOf](docs/FabricUplinkPcRoleAllOf.md)
- - [FabricUplinkPcRoleList](docs/FabricUplinkPcRoleList.md)
- - [FabricUplinkPcRoleListAllOf](docs/FabricUplinkPcRoleListAllOf.md)
- - [FabricUplinkPcRoleResponse](docs/FabricUplinkPcRoleResponse.md)
- - [FabricUplinkRole](docs/FabricUplinkRole.md)
- - [FabricUplinkRoleAllOf](docs/FabricUplinkRoleAllOf.md)
- - [FabricUplinkRoleList](docs/FabricUplinkRoleList.md)
- - [FabricUplinkRoleListAllOf](docs/FabricUplinkRoleListAllOf.md)
- - [FabricUplinkRoleResponse](docs/FabricUplinkRoleResponse.md)
- - [FabricVlan](docs/FabricVlan.md)
- - [FabricVlanAllOf](docs/FabricVlanAllOf.md)
- - [FabricVlanList](docs/FabricVlanList.md)
- - [FabricVlanListAllOf](docs/FabricVlanListAllOf.md)
- - [FabricVlanResponse](docs/FabricVlanResponse.md)
- - [FabricVlanSettings](docs/FabricVlanSettings.md)
- - [FabricVlanSettingsAllOf](docs/FabricVlanSettingsAllOf.md)
- - [FabricVsan](docs/FabricVsan.md)
- - [FabricVsanAllOf](docs/FabricVsanAllOf.md)
- - [FabricVsanList](docs/FabricVsanList.md)
- - [FabricVsanListAllOf](docs/FabricVsanListAllOf.md)
- - [FabricVsanResponse](docs/FabricVsanResponse.md)
- - [FaultInstance](docs/FaultInstance.md)
- - [FaultInstanceAllOf](docs/FaultInstanceAllOf.md)
- - [FaultInstanceList](docs/FaultInstanceList.md)
- - [FaultInstanceListAllOf](docs/FaultInstanceListAllOf.md)
- - [FaultInstanceResponse](docs/FaultInstanceResponse.md)
- - [FcPhysicalPort](docs/FcPhysicalPort.md)
- - [FcPhysicalPortAllOf](docs/FcPhysicalPortAllOf.md)
- - [FcPhysicalPortList](docs/FcPhysicalPortList.md)
- - [FcPhysicalPortListAllOf](docs/FcPhysicalPortListAllOf.md)
- - [FcPhysicalPortRelationship](docs/FcPhysicalPortRelationship.md)
- - [FcPhysicalPortResponse](docs/FcPhysicalPortResponse.md)
- - [FcPortChannel](docs/FcPortChannel.md)
- - [FcPortChannelAllOf](docs/FcPortChannelAllOf.md)
- - [FcPortChannelList](docs/FcPortChannelList.md)
- - [FcPortChannelListAllOf](docs/FcPortChannelListAllOf.md)
- - [FcPortChannelRelationship](docs/FcPortChannelRelationship.md)
- - [FcPortChannelResponse](docs/FcPortChannelResponse.md)
- - [FcpoolBlock](docs/FcpoolBlock.md)
- - [FcpoolBlockAllOf](docs/FcpoolBlockAllOf.md)
- - [FcpoolFcBlock](docs/FcpoolFcBlock.md)
- - [FcpoolFcBlockAllOf](docs/FcpoolFcBlockAllOf.md)
- - [FcpoolFcBlockList](docs/FcpoolFcBlockList.md)
- - [FcpoolFcBlockListAllOf](docs/FcpoolFcBlockListAllOf.md)
- - [FcpoolFcBlockRelationship](docs/FcpoolFcBlockRelationship.md)
- - [FcpoolFcBlockResponse](docs/FcpoolFcBlockResponse.md)
- - [FcpoolLease](docs/FcpoolLease.md)
- - [FcpoolLeaseAllOf](docs/FcpoolLeaseAllOf.md)
- - [FcpoolLeaseList](docs/FcpoolLeaseList.md)
- - [FcpoolLeaseListAllOf](docs/FcpoolLeaseListAllOf.md)
- - [FcpoolLeaseRelationship](docs/FcpoolLeaseRelationship.md)
- - [FcpoolLeaseResponse](docs/FcpoolLeaseResponse.md)
- - [FcpoolPool](docs/FcpoolPool.md)
- - [FcpoolPoolAllOf](docs/FcpoolPoolAllOf.md)
- - [FcpoolPoolList](docs/FcpoolPoolList.md)
- - [FcpoolPoolListAllOf](docs/FcpoolPoolListAllOf.md)
- - [FcpoolPoolMember](docs/FcpoolPoolMember.md)
- - [FcpoolPoolMemberAllOf](docs/FcpoolPoolMemberAllOf.md)
- - [FcpoolPoolMemberList](docs/FcpoolPoolMemberList.md)
- - [FcpoolPoolMemberListAllOf](docs/FcpoolPoolMemberListAllOf.md)
- - [FcpoolPoolMemberRelationship](docs/FcpoolPoolMemberRelationship.md)
- - [FcpoolPoolMemberResponse](docs/FcpoolPoolMemberResponse.md)
- - [FcpoolPoolRelationship](docs/FcpoolPoolRelationship.md)
- - [FcpoolPoolResponse](docs/FcpoolPoolResponse.md)
- - [FcpoolUniverse](docs/FcpoolUniverse.md)
- - [FcpoolUniverseAllOf](docs/FcpoolUniverseAllOf.md)
- - [FcpoolUniverseList](docs/FcpoolUniverseList.md)
- - [FcpoolUniverseListAllOf](docs/FcpoolUniverseListAllOf.md)
- - [FcpoolUniverseRelationship](docs/FcpoolUniverseRelationship.md)
- - [FcpoolUniverseResponse](docs/FcpoolUniverseResponse.md)
- - [FeedbackFeedbackData](docs/FeedbackFeedbackData.md)
- - [FeedbackFeedbackDataAllOf](docs/FeedbackFeedbackDataAllOf.md)
- - [FeedbackFeedbackPost](docs/FeedbackFeedbackPost.md)
- - [FeedbackFeedbackPostAllOf](docs/FeedbackFeedbackPostAllOf.md)
- - [FirmwareBaseDistributable](docs/FirmwareBaseDistributable.md)
- - [FirmwareBaseDistributableAllOf](docs/FirmwareBaseDistributableAllOf.md)
- - [FirmwareBaseDistributableRelationship](docs/FirmwareBaseDistributableRelationship.md)
- - [FirmwareBaseImpact](docs/FirmwareBaseImpact.md)
- - [FirmwareBaseImpactAllOf](docs/FirmwareBaseImpactAllOf.md)
- - [FirmwareBiosDescriptor](docs/FirmwareBiosDescriptor.md)
- - [FirmwareBiosDescriptorList](docs/FirmwareBiosDescriptorList.md)
- - [FirmwareBiosDescriptorListAllOf](docs/FirmwareBiosDescriptorListAllOf.md)
- - [FirmwareBiosDescriptorResponse](docs/FirmwareBiosDescriptorResponse.md)
- - [FirmwareBoardControllerDescriptor](docs/FirmwareBoardControllerDescriptor.md)
- - [FirmwareBoardControllerDescriptorList](docs/FirmwareBoardControllerDescriptorList.md)
- - [FirmwareBoardControllerDescriptorListAllOf](docs/FirmwareBoardControllerDescriptorListAllOf.md)
- - [FirmwareBoardControllerDescriptorResponse](docs/FirmwareBoardControllerDescriptorResponse.md)
- - [FirmwareChassisUpgrade](docs/FirmwareChassisUpgrade.md)
- - [FirmwareChassisUpgradeAllOf](docs/FirmwareChassisUpgradeAllOf.md)
- - [FirmwareChassisUpgradeImpact](docs/FirmwareChassisUpgradeImpact.md)
- - [FirmwareChassisUpgradeImpactAllOf](docs/FirmwareChassisUpgradeImpactAllOf.md)
- - [FirmwareChassisUpgradeList](docs/FirmwareChassisUpgradeList.md)
- - [FirmwareChassisUpgradeListAllOf](docs/FirmwareChassisUpgradeListAllOf.md)
- - [FirmwareChassisUpgradeResponse](docs/FirmwareChassisUpgradeResponse.md)
- - [FirmwareCifsServer](docs/FirmwareCifsServer.md)
- - [FirmwareCifsServerAllOf](docs/FirmwareCifsServerAllOf.md)
- - [FirmwareCimcDescriptor](docs/FirmwareCimcDescriptor.md)
- - [FirmwareCimcDescriptorList](docs/FirmwareCimcDescriptorList.md)
- - [FirmwareCimcDescriptorListAllOf](docs/FirmwareCimcDescriptorListAllOf.md)
- - [FirmwareCimcDescriptorResponse](docs/FirmwareCimcDescriptorResponse.md)
- - [FirmwareComponentDescriptor](docs/FirmwareComponentDescriptor.md)
- - [FirmwareComponentDescriptorAllOf](docs/FirmwareComponentDescriptorAllOf.md)
- - [FirmwareComponentImpact](docs/FirmwareComponentImpact.md)
- - [FirmwareComponentImpactAllOf](docs/FirmwareComponentImpactAllOf.md)
- - [FirmwareComponentMeta](docs/FirmwareComponentMeta.md)
- - [FirmwareComponentMetaAllOf](docs/FirmwareComponentMetaAllOf.md)
- - [FirmwareDimmDescriptor](docs/FirmwareDimmDescriptor.md)
- - [FirmwareDimmDescriptorList](docs/FirmwareDimmDescriptorList.md)
- - [FirmwareDimmDescriptorListAllOf](docs/FirmwareDimmDescriptorListAllOf.md)
- - [FirmwareDimmDescriptorResponse](docs/FirmwareDimmDescriptorResponse.md)
- - [FirmwareDirectDownload](docs/FirmwareDirectDownload.md)
- - [FirmwareDirectDownloadAllOf](docs/FirmwareDirectDownloadAllOf.md)
- - [FirmwareDistributable](docs/FirmwareDistributable.md)
- - [FirmwareDistributableAllOf](docs/FirmwareDistributableAllOf.md)
- - [FirmwareDistributableList](docs/FirmwareDistributableList.md)
- - [FirmwareDistributableListAllOf](docs/FirmwareDistributableListAllOf.md)
- - [FirmwareDistributableMeta](docs/FirmwareDistributableMeta.md)
- - [FirmwareDistributableMetaAllOf](docs/FirmwareDistributableMetaAllOf.md)
- - [FirmwareDistributableMetaList](docs/FirmwareDistributableMetaList.md)
- - [FirmwareDistributableMetaListAllOf](docs/FirmwareDistributableMetaListAllOf.md)
- - [FirmwareDistributableMetaRelationship](docs/FirmwareDistributableMetaRelationship.md)
- - [FirmwareDistributableMetaResponse](docs/FirmwareDistributableMetaResponse.md)
- - [FirmwareDistributableRelationship](docs/FirmwareDistributableRelationship.md)
- - [FirmwareDistributableResponse](docs/FirmwareDistributableResponse.md)
- - [FirmwareDriveDescriptor](docs/FirmwareDriveDescriptor.md)
- - [FirmwareDriveDescriptorList](docs/FirmwareDriveDescriptorList.md)
- - [FirmwareDriveDescriptorListAllOf](docs/FirmwareDriveDescriptorListAllOf.md)
- - [FirmwareDriveDescriptorResponse](docs/FirmwareDriveDescriptorResponse.md)
- - [FirmwareDriverDistributable](docs/FirmwareDriverDistributable.md)
- - [FirmwareDriverDistributableAllOf](docs/FirmwareDriverDistributableAllOf.md)
- - [FirmwareDriverDistributableList](docs/FirmwareDriverDistributableList.md)
- - [FirmwareDriverDistributableListAllOf](docs/FirmwareDriverDistributableListAllOf.md)
- - [FirmwareDriverDistributableResponse](docs/FirmwareDriverDistributableResponse.md)
- - [FirmwareEula](docs/FirmwareEula.md)
- - [FirmwareEulaAllOf](docs/FirmwareEulaAllOf.md)
- - [FirmwareEulaList](docs/FirmwareEulaList.md)
- - [FirmwareEulaListAllOf](docs/FirmwareEulaListAllOf.md)
- - [FirmwareEulaResponse](docs/FirmwareEulaResponse.md)
- - [FirmwareFabricUpgradeImpact](docs/FirmwareFabricUpgradeImpact.md)
- - [FirmwareFabricUpgradeImpactAllOf](docs/FirmwareFabricUpgradeImpactAllOf.md)
- - [FirmwareFirmwareInventory](docs/FirmwareFirmwareInventory.md)
- - [FirmwareFirmwareInventoryAllOf](docs/FirmwareFirmwareInventoryAllOf.md)
- - [FirmwareFirmwareSummary](docs/FirmwareFirmwareSummary.md)
- - [FirmwareFirmwareSummaryAllOf](docs/FirmwareFirmwareSummaryAllOf.md)
- - [FirmwareFirmwareSummaryList](docs/FirmwareFirmwareSummaryList.md)
- - [FirmwareFirmwareSummaryListAllOf](docs/FirmwareFirmwareSummaryListAllOf.md)
- - [FirmwareFirmwareSummaryResponse](docs/FirmwareFirmwareSummaryResponse.md)
- - [FirmwareGpuDescriptor](docs/FirmwareGpuDescriptor.md)
- - [FirmwareGpuDescriptorList](docs/FirmwareGpuDescriptorList.md)
- - [FirmwareGpuDescriptorListAllOf](docs/FirmwareGpuDescriptorListAllOf.md)
- - [FirmwareGpuDescriptorResponse](docs/FirmwareGpuDescriptorResponse.md)
- - [FirmwareHbaDescriptor](docs/FirmwareHbaDescriptor.md)
- - [FirmwareHbaDescriptorList](docs/FirmwareHbaDescriptorList.md)
- - [FirmwareHbaDescriptorListAllOf](docs/FirmwareHbaDescriptorListAllOf.md)
- - [FirmwareHbaDescriptorResponse](docs/FirmwareHbaDescriptorResponse.md)
- - [FirmwareHttpServer](docs/FirmwareHttpServer.md)
- - [FirmwareHttpServerAllOf](docs/FirmwareHttpServerAllOf.md)
- - [FirmwareIomDescriptor](docs/FirmwareIomDescriptor.md)
- - [FirmwareIomDescriptorList](docs/FirmwareIomDescriptorList.md)
- - [FirmwareIomDescriptorListAllOf](docs/FirmwareIomDescriptorListAllOf.md)
- - [FirmwareIomDescriptorResponse](docs/FirmwareIomDescriptorResponse.md)
- - [FirmwareMswitchDescriptor](docs/FirmwareMswitchDescriptor.md)
- - [FirmwareMswitchDescriptorList](docs/FirmwareMswitchDescriptorList.md)
- - [FirmwareMswitchDescriptorListAllOf](docs/FirmwareMswitchDescriptorListAllOf.md)
- - [FirmwareMswitchDescriptorResponse](docs/FirmwareMswitchDescriptorResponse.md)
- - [FirmwareNetworkShare](docs/FirmwareNetworkShare.md)
- - [FirmwareNetworkShareAllOf](docs/FirmwareNetworkShareAllOf.md)
- - [FirmwareNfsServer](docs/FirmwareNfsServer.md)
- - [FirmwareNfsServerAllOf](docs/FirmwareNfsServerAllOf.md)
- - [FirmwareNxosDescriptor](docs/FirmwareNxosDescriptor.md)
- - [FirmwareNxosDescriptorList](docs/FirmwareNxosDescriptorList.md)
- - [FirmwareNxosDescriptorListAllOf](docs/FirmwareNxosDescriptorListAllOf.md)
- - [FirmwareNxosDescriptorResponse](docs/FirmwareNxosDescriptorResponse.md)
- - [FirmwarePcieDescriptor](docs/FirmwarePcieDescriptor.md)
- - [FirmwarePcieDescriptorList](docs/FirmwarePcieDescriptorList.md)
- - [FirmwarePcieDescriptorListAllOf](docs/FirmwarePcieDescriptorListAllOf.md)
- - [FirmwarePcieDescriptorResponse](docs/FirmwarePcieDescriptorResponse.md)
- - [FirmwarePsuDescriptor](docs/FirmwarePsuDescriptor.md)
- - [FirmwarePsuDescriptorList](docs/FirmwarePsuDescriptorList.md)
- - [FirmwarePsuDescriptorListAllOf](docs/FirmwarePsuDescriptorListAllOf.md)
- - [FirmwarePsuDescriptorResponse](docs/FirmwarePsuDescriptorResponse.md)
- - [FirmwareRunningFirmware](docs/FirmwareRunningFirmware.md)
- - [FirmwareRunningFirmwareAllOf](docs/FirmwareRunningFirmwareAllOf.md)
- - [FirmwareRunningFirmwareList](docs/FirmwareRunningFirmwareList.md)
- - [FirmwareRunningFirmwareListAllOf](docs/FirmwareRunningFirmwareListAllOf.md)
- - [FirmwareRunningFirmwareRelationship](docs/FirmwareRunningFirmwareRelationship.md)
- - [FirmwareRunningFirmwareResponse](docs/FirmwareRunningFirmwareResponse.md)
- - [FirmwareSasExpanderDescriptor](docs/FirmwareSasExpanderDescriptor.md)
- - [FirmwareSasExpanderDescriptorList](docs/FirmwareSasExpanderDescriptorList.md)
- - [FirmwareSasExpanderDescriptorListAllOf](docs/FirmwareSasExpanderDescriptorListAllOf.md)
- - [FirmwareSasExpanderDescriptorResponse](docs/FirmwareSasExpanderDescriptorResponse.md)
- - [FirmwareServerConfigurationUtilityDistributable](docs/FirmwareServerConfigurationUtilityDistributable.md)
- - [FirmwareServerConfigurationUtilityDistributableAllOf](docs/FirmwareServerConfigurationUtilityDistributableAllOf.md)
- - [FirmwareServerConfigurationUtilityDistributableList](docs/FirmwareServerConfigurationUtilityDistributableList.md)
- - [FirmwareServerConfigurationUtilityDistributableListAllOf](docs/FirmwareServerConfigurationUtilityDistributableListAllOf.md)
- - [FirmwareServerConfigurationUtilityDistributableRelationship](docs/FirmwareServerConfigurationUtilityDistributableRelationship.md)
- - [FirmwareServerConfigurationUtilityDistributableResponse](docs/FirmwareServerConfigurationUtilityDistributableResponse.md)
- - [FirmwareServerUpgradeImpact](docs/FirmwareServerUpgradeImpact.md)
- - [FirmwareServerUpgradeImpactAllOf](docs/FirmwareServerUpgradeImpactAllOf.md)
- - [FirmwareStorageControllerDescriptor](docs/FirmwareStorageControllerDescriptor.md)
- - [FirmwareStorageControllerDescriptorList](docs/FirmwareStorageControllerDescriptorList.md)
- - [FirmwareStorageControllerDescriptorListAllOf](docs/FirmwareStorageControllerDescriptorListAllOf.md)
- - [FirmwareStorageControllerDescriptorResponse](docs/FirmwareStorageControllerDescriptorResponse.md)
- - [FirmwareSwitchUpgrade](docs/FirmwareSwitchUpgrade.md)
- - [FirmwareSwitchUpgradeAllOf](docs/FirmwareSwitchUpgradeAllOf.md)
- - [FirmwareSwitchUpgradeList](docs/FirmwareSwitchUpgradeList.md)
- - [FirmwareSwitchUpgradeListAllOf](docs/FirmwareSwitchUpgradeListAllOf.md)
- - [FirmwareSwitchUpgradeResponse](docs/FirmwareSwitchUpgradeResponse.md)
- - [FirmwareUnsupportedVersionUpgrade](docs/FirmwareUnsupportedVersionUpgrade.md)
- - [FirmwareUnsupportedVersionUpgradeAllOf](docs/FirmwareUnsupportedVersionUpgradeAllOf.md)
- - [FirmwareUnsupportedVersionUpgradeList](docs/FirmwareUnsupportedVersionUpgradeList.md)
- - [FirmwareUnsupportedVersionUpgradeListAllOf](docs/FirmwareUnsupportedVersionUpgradeListAllOf.md)
- - [FirmwareUnsupportedVersionUpgradeResponse](docs/FirmwareUnsupportedVersionUpgradeResponse.md)
- - [FirmwareUpgrade](docs/FirmwareUpgrade.md)
- - [FirmwareUpgradeAllOf](docs/FirmwareUpgradeAllOf.md)
- - [FirmwareUpgradeBase](docs/FirmwareUpgradeBase.md)
- - [FirmwareUpgradeBaseAllOf](docs/FirmwareUpgradeBaseAllOf.md)
- - [FirmwareUpgradeBaseRelationship](docs/FirmwareUpgradeBaseRelationship.md)
- - [FirmwareUpgradeImpact](docs/FirmwareUpgradeImpact.md)
- - [FirmwareUpgradeImpactAllOf](docs/FirmwareUpgradeImpactAllOf.md)
- - [FirmwareUpgradeImpactBase](docs/FirmwareUpgradeImpactBase.md)
- - [FirmwareUpgradeImpactBaseAllOf](docs/FirmwareUpgradeImpactBaseAllOf.md)
- - [FirmwareUpgradeImpactStatus](docs/FirmwareUpgradeImpactStatus.md)
- - [FirmwareUpgradeImpactStatusAllOf](docs/FirmwareUpgradeImpactStatusAllOf.md)
- - [FirmwareUpgradeImpactStatusList](docs/FirmwareUpgradeImpactStatusList.md)
- - [FirmwareUpgradeImpactStatusListAllOf](docs/FirmwareUpgradeImpactStatusListAllOf.md)
- - [FirmwareUpgradeImpactStatusRelationship](docs/FirmwareUpgradeImpactStatusRelationship.md)
- - [FirmwareUpgradeImpactStatusResponse](docs/FirmwareUpgradeImpactStatusResponse.md)
- - [FirmwareUpgradeList](docs/FirmwareUpgradeList.md)
- - [FirmwareUpgradeListAllOf](docs/FirmwareUpgradeListAllOf.md)
- - [FirmwareUpgradeResponse](docs/FirmwareUpgradeResponse.md)
- - [FirmwareUpgradeStatus](docs/FirmwareUpgradeStatus.md)
- - [FirmwareUpgradeStatusAllOf](docs/FirmwareUpgradeStatusAllOf.md)
- - [FirmwareUpgradeStatusList](docs/FirmwareUpgradeStatusList.md)
- - [FirmwareUpgradeStatusListAllOf](docs/FirmwareUpgradeStatusListAllOf.md)
- - [FirmwareUpgradeStatusRelationship](docs/FirmwareUpgradeStatusRelationship.md)
- - [FirmwareUpgradeStatusResponse](docs/FirmwareUpgradeStatusResponse.md)
- - [ForecastCatalog](docs/ForecastCatalog.md)
- - [ForecastCatalogAllOf](docs/ForecastCatalogAllOf.md)
- - [ForecastCatalogList](docs/ForecastCatalogList.md)
- - [ForecastCatalogListAllOf](docs/ForecastCatalogListAllOf.md)
- - [ForecastCatalogRelationship](docs/ForecastCatalogRelationship.md)
- - [ForecastCatalogResponse](docs/ForecastCatalogResponse.md)
- - [ForecastDefinition](docs/ForecastDefinition.md)
- - [ForecastDefinitionAllOf](docs/ForecastDefinitionAllOf.md)
- - [ForecastDefinitionList](docs/ForecastDefinitionList.md)
- - [ForecastDefinitionListAllOf](docs/ForecastDefinitionListAllOf.md)
- - [ForecastDefinitionRelationship](docs/ForecastDefinitionRelationship.md)
- - [ForecastDefinitionResponse](docs/ForecastDefinitionResponse.md)
- - [ForecastInstance](docs/ForecastInstance.md)
- - [ForecastInstanceAllOf](docs/ForecastInstanceAllOf.md)
- - [ForecastInstanceList](docs/ForecastInstanceList.md)
- - [ForecastInstanceListAllOf](docs/ForecastInstanceListAllOf.md)
- - [ForecastInstanceRelationship](docs/ForecastInstanceRelationship.md)
- - [ForecastInstanceResponse](docs/ForecastInstanceResponse.md)
- - [ForecastModel](docs/ForecastModel.md)
- - [ForecastModelAllOf](docs/ForecastModelAllOf.md)
- - [GraphicsCard](docs/GraphicsCard.md)
- - [GraphicsCardAllOf](docs/GraphicsCardAllOf.md)
- - [GraphicsCardList](docs/GraphicsCardList.md)
- - [GraphicsCardListAllOf](docs/GraphicsCardListAllOf.md)
- - [GraphicsCardRelationship](docs/GraphicsCardRelationship.md)
- - [GraphicsCardResponse](docs/GraphicsCardResponse.md)
- - [GraphicsController](docs/GraphicsController.md)
- - [GraphicsControllerAllOf](docs/GraphicsControllerAllOf.md)
- - [GraphicsControllerList](docs/GraphicsControllerList.md)
- - [GraphicsControllerListAllOf](docs/GraphicsControllerListAllOf.md)
- - [GraphicsControllerRelationship](docs/GraphicsControllerRelationship.md)
- - [GraphicsControllerResponse](docs/GraphicsControllerResponse.md)
- - [HclCompatibilityStatus](docs/HclCompatibilityStatus.md)
- - [HclCompatibilityStatusAllOf](docs/HclCompatibilityStatusAllOf.md)
- - [HclConstraint](docs/HclConstraint.md)
- - [HclConstraintAllOf](docs/HclConstraintAllOf.md)
- - [HclDriverImage](docs/HclDriverImage.md)
- - [HclDriverImageAllOf](docs/HclDriverImageAllOf.md)
- - [HclDriverImageList](docs/HclDriverImageList.md)
- - [HclDriverImageListAllOf](docs/HclDriverImageListAllOf.md)
- - [HclDriverImageResponse](docs/HclDriverImageResponse.md)
- - [HclExemptedCatalog](docs/HclExemptedCatalog.md)
- - [HclExemptedCatalogAllOf](docs/HclExemptedCatalogAllOf.md)
- - [HclExemptedCatalogList](docs/HclExemptedCatalogList.md)
- - [HclExemptedCatalogListAllOf](docs/HclExemptedCatalogListAllOf.md)
- - [HclExemptedCatalogResponse](docs/HclExemptedCatalogResponse.md)
- - [HclFirmware](docs/HclFirmware.md)
- - [HclFirmwareAllOf](docs/HclFirmwareAllOf.md)
- - [HclHardwareCompatibilityProfile](docs/HclHardwareCompatibilityProfile.md)
- - [HclHardwareCompatibilityProfileAllOf](docs/HclHardwareCompatibilityProfileAllOf.md)
- - [HclHyperflexSoftwareCompatibilityInfo](docs/HclHyperflexSoftwareCompatibilityInfo.md)
- - [HclHyperflexSoftwareCompatibilityInfoAllOf](docs/HclHyperflexSoftwareCompatibilityInfoAllOf.md)
- - [HclHyperflexSoftwareCompatibilityInfoList](docs/HclHyperflexSoftwareCompatibilityInfoList.md)
- - [HclHyperflexSoftwareCompatibilityInfoListAllOf](docs/HclHyperflexSoftwareCompatibilityInfoListAllOf.md)
- - [HclHyperflexSoftwareCompatibilityInfoRelationship](docs/HclHyperflexSoftwareCompatibilityInfoRelationship.md)
- - [HclHyperflexSoftwareCompatibilityInfoResponse](docs/HclHyperflexSoftwareCompatibilityInfoResponse.md)
- - [HclOperatingSystem](docs/HclOperatingSystem.md)
- - [HclOperatingSystemAllOf](docs/HclOperatingSystemAllOf.md)
- - [HclOperatingSystemList](docs/HclOperatingSystemList.md)
- - [HclOperatingSystemListAllOf](docs/HclOperatingSystemListAllOf.md)
- - [HclOperatingSystemRelationship](docs/HclOperatingSystemRelationship.md)
- - [HclOperatingSystemResponse](docs/HclOperatingSystemResponse.md)
- - [HclOperatingSystemVendor](docs/HclOperatingSystemVendor.md)
- - [HclOperatingSystemVendorAllOf](docs/HclOperatingSystemVendorAllOf.md)
- - [HclOperatingSystemVendorList](docs/HclOperatingSystemVendorList.md)
- - [HclOperatingSystemVendorListAllOf](docs/HclOperatingSystemVendorListAllOf.md)
- - [HclOperatingSystemVendorRelationship](docs/HclOperatingSystemVendorRelationship.md)
- - [HclOperatingSystemVendorResponse](docs/HclOperatingSystemVendorResponse.md)
- - [HclProduct](docs/HclProduct.md)
- - [HclProductAllOf](docs/HclProductAllOf.md)
- - [HclSupportedDriverName](docs/HclSupportedDriverName.md)
- - [HclSupportedDriverNameAllOf](docs/HclSupportedDriverNameAllOf.md)
- - [HyperflexAbstractAppSetting](docs/HyperflexAbstractAppSetting.md)
- - [HyperflexAbstractAppSettingAllOf](docs/HyperflexAbstractAppSettingAllOf.md)
- - [HyperflexAlarm](docs/HyperflexAlarm.md)
- - [HyperflexAlarmAllOf](docs/HyperflexAlarmAllOf.md)
- - [HyperflexAlarmList](docs/HyperflexAlarmList.md)
- - [HyperflexAlarmListAllOf](docs/HyperflexAlarmListAllOf.md)
- - [HyperflexAlarmRelationship](docs/HyperflexAlarmRelationship.md)
- - [HyperflexAlarmResponse](docs/HyperflexAlarmResponse.md)
- - [HyperflexAlarmSummary](docs/HyperflexAlarmSummary.md)
- - [HyperflexAlarmSummaryAllOf](docs/HyperflexAlarmSummaryAllOf.md)
- - [HyperflexAppCatalog](docs/HyperflexAppCatalog.md)
- - [HyperflexAppCatalogAllOf](docs/HyperflexAppCatalogAllOf.md)
- - [HyperflexAppCatalogList](docs/HyperflexAppCatalogList.md)
- - [HyperflexAppCatalogListAllOf](docs/HyperflexAppCatalogListAllOf.md)
- - [HyperflexAppCatalogRelationship](docs/HyperflexAppCatalogRelationship.md)
- - [HyperflexAppCatalogResponse](docs/HyperflexAppCatalogResponse.md)
- - [HyperflexAppSettingConstraint](docs/HyperflexAppSettingConstraint.md)
- - [HyperflexAppSettingConstraintAllOf](docs/HyperflexAppSettingConstraintAllOf.md)
- - [HyperflexAutoSupportPolicy](docs/HyperflexAutoSupportPolicy.md)
- - [HyperflexAutoSupportPolicyAllOf](docs/HyperflexAutoSupportPolicyAllOf.md)
- - [HyperflexAutoSupportPolicyList](docs/HyperflexAutoSupportPolicyList.md)
- - [HyperflexAutoSupportPolicyListAllOf](docs/HyperflexAutoSupportPolicyListAllOf.md)
- - [HyperflexAutoSupportPolicyRelationship](docs/HyperflexAutoSupportPolicyRelationship.md)
- - [HyperflexAutoSupportPolicyResponse](docs/HyperflexAutoSupportPolicyResponse.md)
- - [HyperflexBackupCluster](docs/HyperflexBackupCluster.md)
- - [HyperflexBackupClusterAllOf](docs/HyperflexBackupClusterAllOf.md)
- - [HyperflexBackupClusterList](docs/HyperflexBackupClusterList.md)
- - [HyperflexBackupClusterListAllOf](docs/HyperflexBackupClusterListAllOf.md)
- - [HyperflexBackupClusterRelationship](docs/HyperflexBackupClusterRelationship.md)
- - [HyperflexBackupClusterResponse](docs/HyperflexBackupClusterResponse.md)
- - [HyperflexBaseCluster](docs/HyperflexBaseCluster.md)
- - [HyperflexBaseClusterAllOf](docs/HyperflexBaseClusterAllOf.md)
- - [HyperflexBaseClusterRelationship](docs/HyperflexBaseClusterRelationship.md)
- - [HyperflexBondState](docs/HyperflexBondState.md)
- - [HyperflexBondStateAllOf](docs/HyperflexBondStateAllOf.md)
- - [HyperflexCapabilityInfo](docs/HyperflexCapabilityInfo.md)
- - [HyperflexCapabilityInfoAllOf](docs/HyperflexCapabilityInfoAllOf.md)
- - [HyperflexCapabilityInfoList](docs/HyperflexCapabilityInfoList.md)
- - [HyperflexCapabilityInfoListAllOf](docs/HyperflexCapabilityInfoListAllOf.md)
- - [HyperflexCapabilityInfoRelationship](docs/HyperflexCapabilityInfoRelationship.md)
- - [HyperflexCapabilityInfoResponse](docs/HyperflexCapabilityInfoResponse.md)
- - [HyperflexCiscoHypervisorManager](docs/HyperflexCiscoHypervisorManager.md)
- - [HyperflexCiscoHypervisorManagerAllOf](docs/HyperflexCiscoHypervisorManagerAllOf.md)
- - [HyperflexCiscoHypervisorManagerList](docs/HyperflexCiscoHypervisorManagerList.md)
- - [HyperflexCiscoHypervisorManagerListAllOf](docs/HyperflexCiscoHypervisorManagerListAllOf.md)
- - [HyperflexCiscoHypervisorManagerRelationship](docs/HyperflexCiscoHypervisorManagerRelationship.md)
- - [HyperflexCiscoHypervisorManagerResponse](docs/HyperflexCiscoHypervisorManagerResponse.md)
- - [HyperflexCluster](docs/HyperflexCluster.md)
- - [HyperflexClusterAllOf](docs/HyperflexClusterAllOf.md)
- - [HyperflexClusterBackupPolicy](docs/HyperflexClusterBackupPolicy.md)
- - [HyperflexClusterBackupPolicyAllOf](docs/HyperflexClusterBackupPolicyAllOf.md)
- - [HyperflexClusterBackupPolicyDeployment](docs/HyperflexClusterBackupPolicyDeployment.md)
- - [HyperflexClusterBackupPolicyDeploymentAllOf](docs/HyperflexClusterBackupPolicyDeploymentAllOf.md)
- - [HyperflexClusterBackupPolicyDeploymentList](docs/HyperflexClusterBackupPolicyDeploymentList.md)
- - [HyperflexClusterBackupPolicyDeploymentListAllOf](docs/HyperflexClusterBackupPolicyDeploymentListAllOf.md)
- - [HyperflexClusterBackupPolicyDeploymentResponse](docs/HyperflexClusterBackupPolicyDeploymentResponse.md)
- - [HyperflexClusterBackupPolicyList](docs/HyperflexClusterBackupPolicyList.md)
- - [HyperflexClusterBackupPolicyListAllOf](docs/HyperflexClusterBackupPolicyListAllOf.md)
- - [HyperflexClusterBackupPolicyResponse](docs/HyperflexClusterBackupPolicyResponse.md)
- - [HyperflexClusterHealthCheckExecutionSnapshot](docs/HyperflexClusterHealthCheckExecutionSnapshot.md)
- - [HyperflexClusterHealthCheckExecutionSnapshotAllOf](docs/HyperflexClusterHealthCheckExecutionSnapshotAllOf.md)
- - [HyperflexClusterHealthCheckExecutionSnapshotList](docs/HyperflexClusterHealthCheckExecutionSnapshotList.md)
- - [HyperflexClusterHealthCheckExecutionSnapshotListAllOf](docs/HyperflexClusterHealthCheckExecutionSnapshotListAllOf.md)
- - [HyperflexClusterHealthCheckExecutionSnapshotResponse](docs/HyperflexClusterHealthCheckExecutionSnapshotResponse.md)
- - [HyperflexClusterList](docs/HyperflexClusterList.md)
- - [HyperflexClusterListAllOf](docs/HyperflexClusterListAllOf.md)
- - [HyperflexClusterNetworkPolicy](docs/HyperflexClusterNetworkPolicy.md)
- - [HyperflexClusterNetworkPolicyAllOf](docs/HyperflexClusterNetworkPolicyAllOf.md)
- - [HyperflexClusterNetworkPolicyList](docs/HyperflexClusterNetworkPolicyList.md)
- - [HyperflexClusterNetworkPolicyListAllOf](docs/HyperflexClusterNetworkPolicyListAllOf.md)
- - [HyperflexClusterNetworkPolicyRelationship](docs/HyperflexClusterNetworkPolicyRelationship.md)
- - [HyperflexClusterNetworkPolicyResponse](docs/HyperflexClusterNetworkPolicyResponse.md)
- - [HyperflexClusterProfile](docs/HyperflexClusterProfile.md)
- - [HyperflexClusterProfileAllOf](docs/HyperflexClusterProfileAllOf.md)
- - [HyperflexClusterProfileList](docs/HyperflexClusterProfileList.md)
- - [HyperflexClusterProfileListAllOf](docs/HyperflexClusterProfileListAllOf.md)
- - [HyperflexClusterProfileRelationship](docs/HyperflexClusterProfileRelationship.md)
- - [HyperflexClusterProfileResponse](docs/HyperflexClusterProfileResponse.md)
- - [HyperflexClusterRelationship](docs/HyperflexClusterRelationship.md)
- - [HyperflexClusterReplicationNetworkPolicy](docs/HyperflexClusterReplicationNetworkPolicy.md)
- - [HyperflexClusterReplicationNetworkPolicyAllOf](docs/HyperflexClusterReplicationNetworkPolicyAllOf.md)
- - [HyperflexClusterReplicationNetworkPolicyDeployment](docs/HyperflexClusterReplicationNetworkPolicyDeployment.md)
- - [HyperflexClusterReplicationNetworkPolicyDeploymentAllOf](docs/HyperflexClusterReplicationNetworkPolicyDeploymentAllOf.md)
- - [HyperflexClusterReplicationNetworkPolicyDeploymentList](docs/HyperflexClusterReplicationNetworkPolicyDeploymentList.md)
- - [HyperflexClusterReplicationNetworkPolicyDeploymentListAllOf](docs/HyperflexClusterReplicationNetworkPolicyDeploymentListAllOf.md)
- - [HyperflexClusterReplicationNetworkPolicyDeploymentResponse](docs/HyperflexClusterReplicationNetworkPolicyDeploymentResponse.md)
- - [HyperflexClusterReplicationNetworkPolicyList](docs/HyperflexClusterReplicationNetworkPolicyList.md)
- - [HyperflexClusterReplicationNetworkPolicyListAllOf](docs/HyperflexClusterReplicationNetworkPolicyListAllOf.md)
- - [HyperflexClusterReplicationNetworkPolicyResponse](docs/HyperflexClusterReplicationNetworkPolicyResponse.md)
- - [HyperflexClusterResponse](docs/HyperflexClusterResponse.md)
- - [HyperflexClusterStoragePolicy](docs/HyperflexClusterStoragePolicy.md)
- - [HyperflexClusterStoragePolicyAllOf](docs/HyperflexClusterStoragePolicyAllOf.md)
- - [HyperflexClusterStoragePolicyList](docs/HyperflexClusterStoragePolicyList.md)
- - [HyperflexClusterStoragePolicyListAllOf](docs/HyperflexClusterStoragePolicyListAllOf.md)
- - [HyperflexClusterStoragePolicyRelationship](docs/HyperflexClusterStoragePolicyRelationship.md)
- - [HyperflexClusterStoragePolicyResponse](docs/HyperflexClusterStoragePolicyResponse.md)
- - [HyperflexConfigResult](docs/HyperflexConfigResult.md)
- - [HyperflexConfigResultAllOf](docs/HyperflexConfigResultAllOf.md)
- - [HyperflexConfigResultEntry](docs/HyperflexConfigResultEntry.md)
- - [HyperflexConfigResultEntryAllOf](docs/HyperflexConfigResultEntryAllOf.md)
- - [HyperflexConfigResultEntryList](docs/HyperflexConfigResultEntryList.md)
- - [HyperflexConfigResultEntryListAllOf](docs/HyperflexConfigResultEntryListAllOf.md)
- - [HyperflexConfigResultEntryRelationship](docs/HyperflexConfigResultEntryRelationship.md)
- - [HyperflexConfigResultEntryResponse](docs/HyperflexConfigResultEntryResponse.md)
- - [HyperflexConfigResultList](docs/HyperflexConfigResultList.md)
- - [HyperflexConfigResultListAllOf](docs/HyperflexConfigResultListAllOf.md)
- - [HyperflexConfigResultRelationship](docs/HyperflexConfigResultRelationship.md)
- - [HyperflexConfigResultResponse](docs/HyperflexConfigResultResponse.md)
- - [HyperflexDataProtectionPeer](docs/HyperflexDataProtectionPeer.md)
- - [HyperflexDataProtectionPeerAllOf](docs/HyperflexDataProtectionPeerAllOf.md)
- - [HyperflexDataProtectionPeerList](docs/HyperflexDataProtectionPeerList.md)
- - [HyperflexDataProtectionPeerListAllOf](docs/HyperflexDataProtectionPeerListAllOf.md)
- - [HyperflexDataProtectionPeerRelationship](docs/HyperflexDataProtectionPeerRelationship.md)
- - [HyperflexDataProtectionPeerResponse](docs/HyperflexDataProtectionPeerResponse.md)
- - [HyperflexDatastoreInfo](docs/HyperflexDatastoreInfo.md)
- - [HyperflexDatastoreInfoAllOf](docs/HyperflexDatastoreInfoAllOf.md)
- - [HyperflexDatastoreStatistic](docs/HyperflexDatastoreStatistic.md)
- - [HyperflexDatastoreStatisticAllOf](docs/HyperflexDatastoreStatisticAllOf.md)
- - [HyperflexDatastoreStatisticList](docs/HyperflexDatastoreStatisticList.md)
- - [HyperflexDatastoreStatisticListAllOf](docs/HyperflexDatastoreStatisticListAllOf.md)
- - [HyperflexDatastoreStatisticResponse](docs/HyperflexDatastoreStatisticResponse.md)
- - [HyperflexDevicePackageDownloadState](docs/HyperflexDevicePackageDownloadState.md)
- - [HyperflexDevicePackageDownloadStateAllOf](docs/HyperflexDevicePackageDownloadStateAllOf.md)
- - [HyperflexDevicePackageDownloadStateList](docs/HyperflexDevicePackageDownloadStateList.md)
- - [HyperflexDevicePackageDownloadStateListAllOf](docs/HyperflexDevicePackageDownloadStateListAllOf.md)
- - [HyperflexDevicePackageDownloadStateResponse](docs/HyperflexDevicePackageDownloadStateResponse.md)
- - [HyperflexDiskStatus](docs/HyperflexDiskStatus.md)
- - [HyperflexDiskStatusAllOf](docs/HyperflexDiskStatusAllOf.md)
- - [HyperflexDrive](docs/HyperflexDrive.md)
- - [HyperflexDriveAllOf](docs/HyperflexDriveAllOf.md)
- - [HyperflexDriveList](docs/HyperflexDriveList.md)
- - [HyperflexDriveListAllOf](docs/HyperflexDriveListAllOf.md)
- - [HyperflexDriveRelationship](docs/HyperflexDriveRelationship.md)
- - [HyperflexDriveResponse](docs/HyperflexDriveResponse.md)
- - [HyperflexEntityReference](docs/HyperflexEntityReference.md)
- - [HyperflexEntityReferenceAllOf](docs/HyperflexEntityReferenceAllOf.md)
- - [HyperflexErrorStack](docs/HyperflexErrorStack.md)
- - [HyperflexErrorStackAllOf](docs/HyperflexErrorStackAllOf.md)
- - [HyperflexExtFcStoragePolicy](docs/HyperflexExtFcStoragePolicy.md)
- - [HyperflexExtFcStoragePolicyAllOf](docs/HyperflexExtFcStoragePolicyAllOf.md)
- - [HyperflexExtFcStoragePolicyList](docs/HyperflexExtFcStoragePolicyList.md)
- - [HyperflexExtFcStoragePolicyListAllOf](docs/HyperflexExtFcStoragePolicyListAllOf.md)
- - [HyperflexExtFcStoragePolicyRelationship](docs/HyperflexExtFcStoragePolicyRelationship.md)
- - [HyperflexExtFcStoragePolicyResponse](docs/HyperflexExtFcStoragePolicyResponse.md)
- - [HyperflexExtIscsiStoragePolicy](docs/HyperflexExtIscsiStoragePolicy.md)
- - [HyperflexExtIscsiStoragePolicyAllOf](docs/HyperflexExtIscsiStoragePolicyAllOf.md)
- - [HyperflexExtIscsiStoragePolicyList](docs/HyperflexExtIscsiStoragePolicyList.md)
- - [HyperflexExtIscsiStoragePolicyListAllOf](docs/HyperflexExtIscsiStoragePolicyListAllOf.md)
- - [HyperflexExtIscsiStoragePolicyRelationship](docs/HyperflexExtIscsiStoragePolicyRelationship.md)
- - [HyperflexExtIscsiStoragePolicyResponse](docs/HyperflexExtIscsiStoragePolicyResponse.md)
- - [HyperflexFeatureLimitEntry](docs/HyperflexFeatureLimitEntry.md)
- - [HyperflexFeatureLimitEntryAllOf](docs/HyperflexFeatureLimitEntryAllOf.md)
- - [HyperflexFeatureLimitExternal](docs/HyperflexFeatureLimitExternal.md)
- - [HyperflexFeatureLimitExternalAllOf](docs/HyperflexFeatureLimitExternalAllOf.md)
- - [HyperflexFeatureLimitExternalList](docs/HyperflexFeatureLimitExternalList.md)
- - [HyperflexFeatureLimitExternalListAllOf](docs/HyperflexFeatureLimitExternalListAllOf.md)
- - [HyperflexFeatureLimitExternalRelationship](docs/HyperflexFeatureLimitExternalRelationship.md)
- - [HyperflexFeatureLimitExternalResponse](docs/HyperflexFeatureLimitExternalResponse.md)
- - [HyperflexFeatureLimitInternal](docs/HyperflexFeatureLimitInternal.md)
- - [HyperflexFeatureLimitInternalAllOf](docs/HyperflexFeatureLimitInternalAllOf.md)
- - [HyperflexFeatureLimitInternalList](docs/HyperflexFeatureLimitInternalList.md)
- - [HyperflexFeatureLimitInternalListAllOf](docs/HyperflexFeatureLimitInternalListAllOf.md)
- - [HyperflexFeatureLimitInternalRelationship](docs/HyperflexFeatureLimitInternalRelationship.md)
- - [HyperflexFeatureLimitInternalResponse](docs/HyperflexFeatureLimitInternalResponse.md)
- - [HyperflexFilePath](docs/HyperflexFilePath.md)
- - [HyperflexFilePathAllOf](docs/HyperflexFilePathAllOf.md)
- - [HyperflexHealth](docs/HyperflexHealth.md)
- - [HyperflexHealthAllOf](docs/HyperflexHealthAllOf.md)
- - [HyperflexHealthCheckDefinition](docs/HyperflexHealthCheckDefinition.md)
- - [HyperflexHealthCheckDefinitionAllOf](docs/HyperflexHealthCheckDefinitionAllOf.md)
- - [HyperflexHealthCheckDefinitionList](docs/HyperflexHealthCheckDefinitionList.md)
- - [HyperflexHealthCheckDefinitionListAllOf](docs/HyperflexHealthCheckDefinitionListAllOf.md)
- - [HyperflexHealthCheckDefinitionRelationship](docs/HyperflexHealthCheckDefinitionRelationship.md)
- - [HyperflexHealthCheckDefinitionResponse](docs/HyperflexHealthCheckDefinitionResponse.md)
- - [HyperflexHealthCheckExecution](docs/HyperflexHealthCheckExecution.md)
- - [HyperflexHealthCheckExecutionAllOf](docs/HyperflexHealthCheckExecutionAllOf.md)
- - [HyperflexHealthCheckExecutionList](docs/HyperflexHealthCheckExecutionList.md)
- - [HyperflexHealthCheckExecutionListAllOf](docs/HyperflexHealthCheckExecutionListAllOf.md)
- - [HyperflexHealthCheckExecutionResponse](docs/HyperflexHealthCheckExecutionResponse.md)
- - [HyperflexHealthCheckExecutionSnapshot](docs/HyperflexHealthCheckExecutionSnapshot.md)
- - [HyperflexHealthCheckExecutionSnapshotAllOf](docs/HyperflexHealthCheckExecutionSnapshotAllOf.md)
- - [HyperflexHealthCheckExecutionSnapshotList](docs/HyperflexHealthCheckExecutionSnapshotList.md)
- - [HyperflexHealthCheckExecutionSnapshotListAllOf](docs/HyperflexHealthCheckExecutionSnapshotListAllOf.md)
- - [HyperflexHealthCheckExecutionSnapshotResponse](docs/HyperflexHealthCheckExecutionSnapshotResponse.md)
- - [HyperflexHealthCheckPackageChecksum](docs/HyperflexHealthCheckPackageChecksum.md)
- - [HyperflexHealthCheckPackageChecksumAllOf](docs/HyperflexHealthCheckPackageChecksumAllOf.md)
- - [HyperflexHealthCheckPackageChecksumList](docs/HyperflexHealthCheckPackageChecksumList.md)
- - [HyperflexHealthCheckPackageChecksumListAllOf](docs/HyperflexHealthCheckPackageChecksumListAllOf.md)
- - [HyperflexHealthCheckPackageChecksumResponse](docs/HyperflexHealthCheckPackageChecksumResponse.md)
- - [HyperflexHealthCheckScriptInfo](docs/HyperflexHealthCheckScriptInfo.md)
- - [HyperflexHealthCheckScriptInfoAllOf](docs/HyperflexHealthCheckScriptInfoAllOf.md)
- - [HyperflexHealthList](docs/HyperflexHealthList.md)
- - [HyperflexHealthListAllOf](docs/HyperflexHealthListAllOf.md)
- - [HyperflexHealthRelationship](docs/HyperflexHealthRelationship.md)
- - [HyperflexHealthResponse](docs/HyperflexHealthResponse.md)
- - [HyperflexHxHostMountStatusDt](docs/HyperflexHxHostMountStatusDt.md)
- - [HyperflexHxHostMountStatusDtAllOf](docs/HyperflexHxHostMountStatusDtAllOf.md)
- - [HyperflexHxLicenseAuthorizationDetailsDt](docs/HyperflexHxLicenseAuthorizationDetailsDt.md)
- - [HyperflexHxLicenseAuthorizationDetailsDtAllOf](docs/HyperflexHxLicenseAuthorizationDetailsDtAllOf.md)
- - [HyperflexHxLinkDt](docs/HyperflexHxLinkDt.md)
- - [HyperflexHxLinkDtAllOf](docs/HyperflexHxLinkDtAllOf.md)
- - [HyperflexHxNetworkAddressDt](docs/HyperflexHxNetworkAddressDt.md)
- - [HyperflexHxNetworkAddressDtAllOf](docs/HyperflexHxNetworkAddressDtAllOf.md)
- - [HyperflexHxPlatformDatastoreConfigDt](docs/HyperflexHxPlatformDatastoreConfigDt.md)
- - [HyperflexHxPlatformDatastoreConfigDtAllOf](docs/HyperflexHxPlatformDatastoreConfigDtAllOf.md)
- - [HyperflexHxRegistrationDetailsDt](docs/HyperflexHxRegistrationDetailsDt.md)
- - [HyperflexHxRegistrationDetailsDtAllOf](docs/HyperflexHxRegistrationDetailsDtAllOf.md)
- - [HyperflexHxResiliencyInfoDt](docs/HyperflexHxResiliencyInfoDt.md)
- - [HyperflexHxResiliencyInfoDtAllOf](docs/HyperflexHxResiliencyInfoDtAllOf.md)
- - [HyperflexHxSiteDt](docs/HyperflexHxSiteDt.md)
- - [HyperflexHxSiteDtAllOf](docs/HyperflexHxSiteDtAllOf.md)
- - [HyperflexHxUuIdDt](docs/HyperflexHxUuIdDt.md)
- - [HyperflexHxUuIdDtAllOf](docs/HyperflexHxUuIdDtAllOf.md)
- - [HyperflexHxZoneInfoDt](docs/HyperflexHxZoneInfoDt.md)
- - [HyperflexHxZoneInfoDtAllOf](docs/HyperflexHxZoneInfoDtAllOf.md)
- - [HyperflexHxZoneResiliencyInfoDt](docs/HyperflexHxZoneResiliencyInfoDt.md)
- - [HyperflexHxZoneResiliencyInfoDtAllOf](docs/HyperflexHxZoneResiliencyInfoDtAllOf.md)
- - [HyperflexHxapCluster](docs/HyperflexHxapCluster.md)
- - [HyperflexHxapClusterAllOf](docs/HyperflexHxapClusterAllOf.md)
- - [HyperflexHxapClusterList](docs/HyperflexHxapClusterList.md)
- - [HyperflexHxapClusterListAllOf](docs/HyperflexHxapClusterListAllOf.md)
- - [HyperflexHxapClusterRelationship](docs/HyperflexHxapClusterRelationship.md)
- - [HyperflexHxapClusterResponse](docs/HyperflexHxapClusterResponse.md)
- - [HyperflexHxapDatacenter](docs/HyperflexHxapDatacenter.md)
- - [HyperflexHxapDatacenterAllOf](docs/HyperflexHxapDatacenterAllOf.md)
- - [HyperflexHxapDatacenterList](docs/HyperflexHxapDatacenterList.md)
- - [HyperflexHxapDatacenterListAllOf](docs/HyperflexHxapDatacenterListAllOf.md)
- - [HyperflexHxapDatacenterResponse](docs/HyperflexHxapDatacenterResponse.md)
- - [HyperflexHxapDvUplink](docs/HyperflexHxapDvUplink.md)
- - [HyperflexHxapDvUplinkAllOf](docs/HyperflexHxapDvUplinkAllOf.md)
- - [HyperflexHxapDvUplinkList](docs/HyperflexHxapDvUplinkList.md)
- - [HyperflexHxapDvUplinkListAllOf](docs/HyperflexHxapDvUplinkListAllOf.md)
- - [HyperflexHxapDvUplinkRelationship](docs/HyperflexHxapDvUplinkRelationship.md)
- - [HyperflexHxapDvUplinkResponse](docs/HyperflexHxapDvUplinkResponse.md)
- - [HyperflexHxapDvswitch](docs/HyperflexHxapDvswitch.md)
- - [HyperflexHxapDvswitchAllOf](docs/HyperflexHxapDvswitchAllOf.md)
- - [HyperflexHxapDvswitchList](docs/HyperflexHxapDvswitchList.md)
- - [HyperflexHxapDvswitchListAllOf](docs/HyperflexHxapDvswitchListAllOf.md)
- - [HyperflexHxapDvswitchRelationship](docs/HyperflexHxapDvswitchRelationship.md)
- - [HyperflexHxapDvswitchResponse](docs/HyperflexHxapDvswitchResponse.md)
- - [HyperflexHxapHost](docs/HyperflexHxapHost.md)
- - [HyperflexHxapHostAllOf](docs/HyperflexHxapHostAllOf.md)
- - [HyperflexHxapHostInterface](docs/HyperflexHxapHostInterface.md)
- - [HyperflexHxapHostInterfaceAllOf](docs/HyperflexHxapHostInterfaceAllOf.md)
- - [HyperflexHxapHostInterfaceList](docs/HyperflexHxapHostInterfaceList.md)
- - [HyperflexHxapHostInterfaceListAllOf](docs/HyperflexHxapHostInterfaceListAllOf.md)
- - [HyperflexHxapHostInterfaceRelationship](docs/HyperflexHxapHostInterfaceRelationship.md)
- - [HyperflexHxapHostInterfaceResponse](docs/HyperflexHxapHostInterfaceResponse.md)
- - [HyperflexHxapHostList](docs/HyperflexHxapHostList.md)
- - [HyperflexHxapHostListAllOf](docs/HyperflexHxapHostListAllOf.md)
- - [HyperflexHxapHostRelationship](docs/HyperflexHxapHostRelationship.md)
- - [HyperflexHxapHostResponse](docs/HyperflexHxapHostResponse.md)
- - [HyperflexHxapHostVswitch](docs/HyperflexHxapHostVswitch.md)
- - [HyperflexHxapHostVswitchAllOf](docs/HyperflexHxapHostVswitchAllOf.md)
- - [HyperflexHxapHostVswitchList](docs/HyperflexHxapHostVswitchList.md)
- - [HyperflexHxapHostVswitchListAllOf](docs/HyperflexHxapHostVswitchListAllOf.md)
- - [HyperflexHxapHostVswitchRelationship](docs/HyperflexHxapHostVswitchRelationship.md)
- - [HyperflexHxapHostVswitchResponse](docs/HyperflexHxapHostVswitchResponse.md)
- - [HyperflexHxapNetwork](docs/HyperflexHxapNetwork.md)
- - [HyperflexHxapNetworkAllOf](docs/HyperflexHxapNetworkAllOf.md)
- - [HyperflexHxapNetworkList](docs/HyperflexHxapNetworkList.md)
- - [HyperflexHxapNetworkListAllOf](docs/HyperflexHxapNetworkListAllOf.md)
- - [HyperflexHxapNetworkRelationship](docs/HyperflexHxapNetworkRelationship.md)
- - [HyperflexHxapNetworkResponse](docs/HyperflexHxapNetworkResponse.md)
- - [HyperflexHxapVirtualDisk](docs/HyperflexHxapVirtualDisk.md)
- - [HyperflexHxapVirtualDiskAllOf](docs/HyperflexHxapVirtualDiskAllOf.md)
- - [HyperflexHxapVirtualDiskList](docs/HyperflexHxapVirtualDiskList.md)
- - [HyperflexHxapVirtualDiskListAllOf](docs/HyperflexHxapVirtualDiskListAllOf.md)
- - [HyperflexHxapVirtualDiskRelationship](docs/HyperflexHxapVirtualDiskRelationship.md)
- - [HyperflexHxapVirtualDiskResponse](docs/HyperflexHxapVirtualDiskResponse.md)
- - [HyperflexHxapVirtualMachine](docs/HyperflexHxapVirtualMachine.md)
- - [HyperflexHxapVirtualMachineAllOf](docs/HyperflexHxapVirtualMachineAllOf.md)
- - [HyperflexHxapVirtualMachineList](docs/HyperflexHxapVirtualMachineList.md)
- - [HyperflexHxapVirtualMachineListAllOf](docs/HyperflexHxapVirtualMachineListAllOf.md)
- - [HyperflexHxapVirtualMachineNetworkInterface](docs/HyperflexHxapVirtualMachineNetworkInterface.md)
- - [HyperflexHxapVirtualMachineNetworkInterfaceAllOf](docs/HyperflexHxapVirtualMachineNetworkInterfaceAllOf.md)
- - [HyperflexHxapVirtualMachineNetworkInterfaceList](docs/HyperflexHxapVirtualMachineNetworkInterfaceList.md)
- - [HyperflexHxapVirtualMachineNetworkInterfaceListAllOf](docs/HyperflexHxapVirtualMachineNetworkInterfaceListAllOf.md)
- - [HyperflexHxapVirtualMachineNetworkInterfaceResponse](docs/HyperflexHxapVirtualMachineNetworkInterfaceResponse.md)
- - [HyperflexHxapVirtualMachineRelationship](docs/HyperflexHxapVirtualMachineRelationship.md)
- - [HyperflexHxapVirtualMachineResponse](docs/HyperflexHxapVirtualMachineResponse.md)
- - [HyperflexHxdpVersion](docs/HyperflexHxdpVersion.md)
- - [HyperflexHxdpVersionAllOf](docs/HyperflexHxdpVersionAllOf.md)
- - [HyperflexHxdpVersionList](docs/HyperflexHxdpVersionList.md)
- - [HyperflexHxdpVersionListAllOf](docs/HyperflexHxdpVersionListAllOf.md)
- - [HyperflexHxdpVersionRelationship](docs/HyperflexHxdpVersionRelationship.md)
- - [HyperflexHxdpVersionResponse](docs/HyperflexHxdpVersionResponse.md)
- - [HyperflexIpAddrRange](docs/HyperflexIpAddrRange.md)
- - [HyperflexIpAddrRangeAllOf](docs/HyperflexIpAddrRangeAllOf.md)
- - [HyperflexLicense](docs/HyperflexLicense.md)
- - [HyperflexLicenseAllOf](docs/HyperflexLicenseAllOf.md)
- - [HyperflexLicenseList](docs/HyperflexLicenseList.md)
- - [HyperflexLicenseListAllOf](docs/HyperflexLicenseListAllOf.md)
- - [HyperflexLicenseRelationship](docs/HyperflexLicenseRelationship.md)
- - [HyperflexLicenseResponse](docs/HyperflexLicenseResponse.md)
- - [HyperflexLocalCredentialPolicy](docs/HyperflexLocalCredentialPolicy.md)
- - [HyperflexLocalCredentialPolicyAllOf](docs/HyperflexLocalCredentialPolicyAllOf.md)
- - [HyperflexLocalCredentialPolicyList](docs/HyperflexLocalCredentialPolicyList.md)
- - [HyperflexLocalCredentialPolicyListAllOf](docs/HyperflexLocalCredentialPolicyListAllOf.md)
- - [HyperflexLocalCredentialPolicyRelationship](docs/HyperflexLocalCredentialPolicyRelationship.md)
- - [HyperflexLocalCredentialPolicyResponse](docs/HyperflexLocalCredentialPolicyResponse.md)
- - [HyperflexLogicalAvailabilityZone](docs/HyperflexLogicalAvailabilityZone.md)
- - [HyperflexLogicalAvailabilityZoneAllOf](docs/HyperflexLogicalAvailabilityZoneAllOf.md)
- - [HyperflexMacAddrPrefixRange](docs/HyperflexMacAddrPrefixRange.md)
- - [HyperflexMacAddrPrefixRangeAllOf](docs/HyperflexMacAddrPrefixRangeAllOf.md)
- - [HyperflexMapClusterIdToProtectionInfo](docs/HyperflexMapClusterIdToProtectionInfo.md)
- - [HyperflexMapClusterIdToProtectionInfoAllOf](docs/HyperflexMapClusterIdToProtectionInfoAllOf.md)
- - [HyperflexMapClusterIdToStSnapshotPoint](docs/HyperflexMapClusterIdToStSnapshotPoint.md)
- - [HyperflexMapClusterIdToStSnapshotPointAllOf](docs/HyperflexMapClusterIdToStSnapshotPointAllOf.md)
- - [HyperflexMapUuidToTrackedDisk](docs/HyperflexMapUuidToTrackedDisk.md)
- - [HyperflexMapUuidToTrackedDiskAllOf](docs/HyperflexMapUuidToTrackedDiskAllOf.md)
- - [HyperflexNamedVlan](docs/HyperflexNamedVlan.md)
- - [HyperflexNamedVlanAllOf](docs/HyperflexNamedVlanAllOf.md)
- - [HyperflexNamedVsan](docs/HyperflexNamedVsan.md)
- - [HyperflexNamedVsanAllOf](docs/HyperflexNamedVsanAllOf.md)
- - [HyperflexNetworkPort](docs/HyperflexNetworkPort.md)
- - [HyperflexNetworkPortAllOf](docs/HyperflexNetworkPortAllOf.md)
- - [HyperflexNode](docs/HyperflexNode.md)
- - [HyperflexNodeAllOf](docs/HyperflexNodeAllOf.md)
- - [HyperflexNodeConfigPolicy](docs/HyperflexNodeConfigPolicy.md)
- - [HyperflexNodeConfigPolicyAllOf](docs/HyperflexNodeConfigPolicyAllOf.md)
- - [HyperflexNodeConfigPolicyList](docs/HyperflexNodeConfigPolicyList.md)
- - [HyperflexNodeConfigPolicyListAllOf](docs/HyperflexNodeConfigPolicyListAllOf.md)
- - [HyperflexNodeConfigPolicyRelationship](docs/HyperflexNodeConfigPolicyRelationship.md)
- - [HyperflexNodeConfigPolicyResponse](docs/HyperflexNodeConfigPolicyResponse.md)
- - [HyperflexNodeList](docs/HyperflexNodeList.md)
- - [HyperflexNodeListAllOf](docs/HyperflexNodeListAllOf.md)
- - [HyperflexNodeProfile](docs/HyperflexNodeProfile.md)
- - [HyperflexNodeProfileAllOf](docs/HyperflexNodeProfileAllOf.md)
- - [HyperflexNodeProfileList](docs/HyperflexNodeProfileList.md)
- - [HyperflexNodeProfileListAllOf](docs/HyperflexNodeProfileListAllOf.md)
- - [HyperflexNodeProfileRelationship](docs/HyperflexNodeProfileRelationship.md)
- - [HyperflexNodeProfileResponse](docs/HyperflexNodeProfileResponse.md)
- - [HyperflexNodeRelationship](docs/HyperflexNodeRelationship.md)
- - [HyperflexNodeResponse](docs/HyperflexNodeResponse.md)
- - [HyperflexPortTypeToPortNumberMap](docs/HyperflexPortTypeToPortNumberMap.md)
- - [HyperflexPortTypeToPortNumberMapAllOf](docs/HyperflexPortTypeToPortNumberMapAllOf.md)
- - [HyperflexProtectionInfo](docs/HyperflexProtectionInfo.md)
- - [HyperflexProtectionInfoAllOf](docs/HyperflexProtectionInfoAllOf.md)
- - [HyperflexProxySettingPolicy](docs/HyperflexProxySettingPolicy.md)
- - [HyperflexProxySettingPolicyAllOf](docs/HyperflexProxySettingPolicyAllOf.md)
- - [HyperflexProxySettingPolicyList](docs/HyperflexProxySettingPolicyList.md)
- - [HyperflexProxySettingPolicyListAllOf](docs/HyperflexProxySettingPolicyListAllOf.md)
- - [HyperflexProxySettingPolicyRelationship](docs/HyperflexProxySettingPolicyRelationship.md)
- - [HyperflexProxySettingPolicyResponse](docs/HyperflexProxySettingPolicyResponse.md)
- - [HyperflexReplicationClusterReferenceToSchedule](docs/HyperflexReplicationClusterReferenceToSchedule.md)
- - [HyperflexReplicationClusterReferenceToScheduleAllOf](docs/HyperflexReplicationClusterReferenceToScheduleAllOf.md)
- - [HyperflexReplicationPeerInfo](docs/HyperflexReplicationPeerInfo.md)
- - [HyperflexReplicationPeerInfoAllOf](docs/HyperflexReplicationPeerInfoAllOf.md)
- - [HyperflexReplicationPlatDatastore](docs/HyperflexReplicationPlatDatastore.md)
- - [HyperflexReplicationPlatDatastoreAllOf](docs/HyperflexReplicationPlatDatastoreAllOf.md)
- - [HyperflexReplicationPlatDatastorePair](docs/HyperflexReplicationPlatDatastorePair.md)
- - [HyperflexReplicationPlatDatastorePairAllOf](docs/HyperflexReplicationPlatDatastorePairAllOf.md)
- - [HyperflexReplicationSchedule](docs/HyperflexReplicationSchedule.md)
- - [HyperflexReplicationScheduleAllOf](docs/HyperflexReplicationScheduleAllOf.md)
- - [HyperflexReplicationStatus](docs/HyperflexReplicationStatus.md)
- - [HyperflexReplicationStatusAllOf](docs/HyperflexReplicationStatusAllOf.md)
- - [HyperflexRpoStatus](docs/HyperflexRpoStatus.md)
- - [HyperflexRpoStatusAllOf](docs/HyperflexRpoStatusAllOf.md)
- - [HyperflexServerFirmwareVersion](docs/HyperflexServerFirmwareVersion.md)
- - [HyperflexServerFirmwareVersionAllOf](docs/HyperflexServerFirmwareVersionAllOf.md)
- - [HyperflexServerFirmwareVersionEntry](docs/HyperflexServerFirmwareVersionEntry.md)
- - [HyperflexServerFirmwareVersionEntryAllOf](docs/HyperflexServerFirmwareVersionEntryAllOf.md)
- - [HyperflexServerFirmwareVersionEntryList](docs/HyperflexServerFirmwareVersionEntryList.md)
- - [HyperflexServerFirmwareVersionEntryListAllOf](docs/HyperflexServerFirmwareVersionEntryListAllOf.md)
- - [HyperflexServerFirmwareVersionEntryRelationship](docs/HyperflexServerFirmwareVersionEntryRelationship.md)
- - [HyperflexServerFirmwareVersionEntryResponse](docs/HyperflexServerFirmwareVersionEntryResponse.md)
- - [HyperflexServerFirmwareVersionInfo](docs/HyperflexServerFirmwareVersionInfo.md)
- - [HyperflexServerFirmwareVersionInfoAllOf](docs/HyperflexServerFirmwareVersionInfoAllOf.md)
- - [HyperflexServerFirmwareVersionList](docs/HyperflexServerFirmwareVersionList.md)
- - [HyperflexServerFirmwareVersionListAllOf](docs/HyperflexServerFirmwareVersionListAllOf.md)
- - [HyperflexServerFirmwareVersionRelationship](docs/HyperflexServerFirmwareVersionRelationship.md)
- - [HyperflexServerFirmwareVersionResponse](docs/HyperflexServerFirmwareVersionResponse.md)
- - [HyperflexServerModel](docs/HyperflexServerModel.md)
- - [HyperflexServerModelAllOf](docs/HyperflexServerModelAllOf.md)
- - [HyperflexServerModelEntry](docs/HyperflexServerModelEntry.md)
- - [HyperflexServerModelEntryAllOf](docs/HyperflexServerModelEntryAllOf.md)
- - [HyperflexServerModelList](docs/HyperflexServerModelList.md)
- - [HyperflexServerModelListAllOf](docs/HyperflexServerModelListAllOf.md)
- - [HyperflexServerModelRelationship](docs/HyperflexServerModelRelationship.md)
- - [HyperflexServerModelResponse](docs/HyperflexServerModelResponse.md)
- - [HyperflexSnapshotFiles](docs/HyperflexSnapshotFiles.md)
- - [HyperflexSnapshotFilesAllOf](docs/HyperflexSnapshotFilesAllOf.md)
- - [HyperflexSnapshotInfoBrief](docs/HyperflexSnapshotInfoBrief.md)
- - [HyperflexSnapshotInfoBriefAllOf](docs/HyperflexSnapshotInfoBriefAllOf.md)
- - [HyperflexSnapshotPoint](docs/HyperflexSnapshotPoint.md)
- - [HyperflexSnapshotPointAllOf](docs/HyperflexSnapshotPointAllOf.md)
- - [HyperflexSnapshotStatus](docs/HyperflexSnapshotStatus.md)
- - [HyperflexSnapshotStatusAllOf](docs/HyperflexSnapshotStatusAllOf.md)
- - [HyperflexSoftwareDistributionComponent](docs/HyperflexSoftwareDistributionComponent.md)
- - [HyperflexSoftwareDistributionComponentAllOf](docs/HyperflexSoftwareDistributionComponentAllOf.md)
- - [HyperflexSoftwareDistributionComponentList](docs/HyperflexSoftwareDistributionComponentList.md)
- - [HyperflexSoftwareDistributionComponentListAllOf](docs/HyperflexSoftwareDistributionComponentListAllOf.md)
- - [HyperflexSoftwareDistributionComponentRelationship](docs/HyperflexSoftwareDistributionComponentRelationship.md)
- - [HyperflexSoftwareDistributionComponentResponse](docs/HyperflexSoftwareDistributionComponentResponse.md)
- - [HyperflexSoftwareDistributionEntry](docs/HyperflexSoftwareDistributionEntry.md)
- - [HyperflexSoftwareDistributionEntryAllOf](docs/HyperflexSoftwareDistributionEntryAllOf.md)
- - [HyperflexSoftwareDistributionEntryList](docs/HyperflexSoftwareDistributionEntryList.md)
- - [HyperflexSoftwareDistributionEntryListAllOf](docs/HyperflexSoftwareDistributionEntryListAllOf.md)
- - [HyperflexSoftwareDistributionEntryRelationship](docs/HyperflexSoftwareDistributionEntryRelationship.md)
- - [HyperflexSoftwareDistributionEntryResponse](docs/HyperflexSoftwareDistributionEntryResponse.md)
- - [HyperflexSoftwareDistributionVersion](docs/HyperflexSoftwareDistributionVersion.md)
- - [HyperflexSoftwareDistributionVersionAllOf](docs/HyperflexSoftwareDistributionVersionAllOf.md)
- - [HyperflexSoftwareDistributionVersionList](docs/HyperflexSoftwareDistributionVersionList.md)
- - [HyperflexSoftwareDistributionVersionListAllOf](docs/HyperflexSoftwareDistributionVersionListAllOf.md)
- - [HyperflexSoftwareDistributionVersionRelationship](docs/HyperflexSoftwareDistributionVersionRelationship.md)
- - [HyperflexSoftwareDistributionVersionResponse](docs/HyperflexSoftwareDistributionVersionResponse.md)
- - [HyperflexSoftwareVersionPolicy](docs/HyperflexSoftwareVersionPolicy.md)
- - [HyperflexSoftwareVersionPolicyAllOf](docs/HyperflexSoftwareVersionPolicyAllOf.md)
- - [HyperflexSoftwareVersionPolicyList](docs/HyperflexSoftwareVersionPolicyList.md)
- - [HyperflexSoftwareVersionPolicyListAllOf](docs/HyperflexSoftwareVersionPolicyListAllOf.md)
- - [HyperflexSoftwareVersionPolicyRelationship](docs/HyperflexSoftwareVersionPolicyRelationship.md)
- - [HyperflexSoftwareVersionPolicyResponse](docs/HyperflexSoftwareVersionPolicyResponse.md)
- - [HyperflexStPlatformClusterHealingInfo](docs/HyperflexStPlatformClusterHealingInfo.md)
- - [HyperflexStPlatformClusterHealingInfoAllOf](docs/HyperflexStPlatformClusterHealingInfoAllOf.md)
- - [HyperflexStPlatformClusterResiliencyInfo](docs/HyperflexStPlatformClusterResiliencyInfo.md)
- - [HyperflexStPlatformClusterResiliencyInfoAllOf](docs/HyperflexStPlatformClusterResiliencyInfoAllOf.md)
- - [HyperflexStorageContainer](docs/HyperflexStorageContainer.md)
- - [HyperflexStorageContainerAllOf](docs/HyperflexStorageContainerAllOf.md)
- - [HyperflexStorageContainerList](docs/HyperflexStorageContainerList.md)
- - [HyperflexStorageContainerListAllOf](docs/HyperflexStorageContainerListAllOf.md)
- - [HyperflexStorageContainerRelationship](docs/HyperflexStorageContainerRelationship.md)
- - [HyperflexStorageContainerResponse](docs/HyperflexStorageContainerResponse.md)
- - [HyperflexSummary](docs/HyperflexSummary.md)
- - [HyperflexSummaryAllOf](docs/HyperflexSummaryAllOf.md)
- - [HyperflexSysConfigPolicy](docs/HyperflexSysConfigPolicy.md)
- - [HyperflexSysConfigPolicyAllOf](docs/HyperflexSysConfigPolicyAllOf.md)
- - [HyperflexSysConfigPolicyList](docs/HyperflexSysConfigPolicyList.md)
- - [HyperflexSysConfigPolicyListAllOf](docs/HyperflexSysConfigPolicyListAllOf.md)
- - [HyperflexSysConfigPolicyRelationship](docs/HyperflexSysConfigPolicyRelationship.md)
- - [HyperflexSysConfigPolicyResponse](docs/HyperflexSysConfigPolicyResponse.md)
- - [HyperflexTrackedDisk](docs/HyperflexTrackedDisk.md)
- - [HyperflexTrackedDiskAllOf](docs/HyperflexTrackedDiskAllOf.md)
- - [HyperflexTrackedFile](docs/HyperflexTrackedFile.md)
- - [HyperflexTrackedFileAllOf](docs/HyperflexTrackedFileAllOf.md)
- - [HyperflexUcsmConfigPolicy](docs/HyperflexUcsmConfigPolicy.md)
- - [HyperflexUcsmConfigPolicyAllOf](docs/HyperflexUcsmConfigPolicyAllOf.md)
- - [HyperflexUcsmConfigPolicyList](docs/HyperflexUcsmConfigPolicyList.md)
- - [HyperflexUcsmConfigPolicyListAllOf](docs/HyperflexUcsmConfigPolicyListAllOf.md)
- - [HyperflexUcsmConfigPolicyRelationship](docs/HyperflexUcsmConfigPolicyRelationship.md)
- - [HyperflexUcsmConfigPolicyResponse](docs/HyperflexUcsmConfigPolicyResponse.md)
- - [HyperflexVcenterConfigPolicy](docs/HyperflexVcenterConfigPolicy.md)
- - [HyperflexVcenterConfigPolicyAllOf](docs/HyperflexVcenterConfigPolicyAllOf.md)
- - [HyperflexVcenterConfigPolicyList](docs/HyperflexVcenterConfigPolicyList.md)
- - [HyperflexVcenterConfigPolicyListAllOf](docs/HyperflexVcenterConfigPolicyListAllOf.md)
- - [HyperflexVcenterConfigPolicyRelationship](docs/HyperflexVcenterConfigPolicyRelationship.md)
- - [HyperflexVcenterConfigPolicyResponse](docs/HyperflexVcenterConfigPolicyResponse.md)
- - [HyperflexVdiskConfig](docs/HyperflexVdiskConfig.md)
- - [HyperflexVdiskConfigAllOf](docs/HyperflexVdiskConfigAllOf.md)
- - [HyperflexVirtualMachine](docs/HyperflexVirtualMachine.md)
- - [HyperflexVirtualMachineAllOf](docs/HyperflexVirtualMachineAllOf.md)
- - [HyperflexVirtualMachineRuntimeInfo](docs/HyperflexVirtualMachineRuntimeInfo.md)
- - [HyperflexVirtualMachineRuntimeInfoAllOf](docs/HyperflexVirtualMachineRuntimeInfoAllOf.md)
- - [HyperflexVmBackupInfo](docs/HyperflexVmBackupInfo.md)
- - [HyperflexVmBackupInfoAllOf](docs/HyperflexVmBackupInfoAllOf.md)
- - [HyperflexVmBackupInfoList](docs/HyperflexVmBackupInfoList.md)
- - [HyperflexVmBackupInfoListAllOf](docs/HyperflexVmBackupInfoListAllOf.md)
- - [HyperflexVmBackupInfoRelationship](docs/HyperflexVmBackupInfoRelationship.md)
- - [HyperflexVmBackupInfoResponse](docs/HyperflexVmBackupInfoResponse.md)
- - [HyperflexVmDisk](docs/HyperflexVmDisk.md)
- - [HyperflexVmDiskAllOf](docs/HyperflexVmDiskAllOf.md)
- - [HyperflexVmImportOperation](docs/HyperflexVmImportOperation.md)
- - [HyperflexVmImportOperationAllOf](docs/HyperflexVmImportOperationAllOf.md)
- - [HyperflexVmImportOperationList](docs/HyperflexVmImportOperationList.md)
- - [HyperflexVmImportOperationListAllOf](docs/HyperflexVmImportOperationListAllOf.md)
- - [HyperflexVmImportOperationResponse](docs/HyperflexVmImportOperationResponse.md)
- - [HyperflexVmInterface](docs/HyperflexVmInterface.md)
- - [HyperflexVmInterfaceAllOf](docs/HyperflexVmInterfaceAllOf.md)
- - [HyperflexVmProtectionSpaceUsage](docs/HyperflexVmProtectionSpaceUsage.md)
- - [HyperflexVmProtectionSpaceUsageAllOf](docs/HyperflexVmProtectionSpaceUsageAllOf.md)
- - [HyperflexVmRestoreOperation](docs/HyperflexVmRestoreOperation.md)
- - [HyperflexVmRestoreOperationAllOf](docs/HyperflexVmRestoreOperationAllOf.md)
- - [HyperflexVmRestoreOperationList](docs/HyperflexVmRestoreOperationList.md)
- - [HyperflexVmRestoreOperationListAllOf](docs/HyperflexVmRestoreOperationListAllOf.md)
- - [HyperflexVmRestoreOperationResponse](docs/HyperflexVmRestoreOperationResponse.md)
- - [HyperflexVmSnapshotInfo](docs/HyperflexVmSnapshotInfo.md)
- - [HyperflexVmSnapshotInfoAllOf](docs/HyperflexVmSnapshotInfoAllOf.md)
- - [HyperflexVmSnapshotInfoList](docs/HyperflexVmSnapshotInfoList.md)
- - [HyperflexVmSnapshotInfoListAllOf](docs/HyperflexVmSnapshotInfoListAllOf.md)
- - [HyperflexVmSnapshotInfoRelationship](docs/HyperflexVmSnapshotInfoRelationship.md)
- - [HyperflexVmSnapshotInfoResponse](docs/HyperflexVmSnapshotInfoResponse.md)
- - [HyperflexVolume](docs/HyperflexVolume.md)
- - [HyperflexVolumeAllOf](docs/HyperflexVolumeAllOf.md)
- - [HyperflexVolumeList](docs/HyperflexVolumeList.md)
- - [HyperflexVolumeListAllOf](docs/HyperflexVolumeListAllOf.md)
- - [HyperflexVolumeRelationship](docs/HyperflexVolumeRelationship.md)
- - [HyperflexVolumeResponse](docs/HyperflexVolumeResponse.md)
- - [HyperflexWitnessConfiguration](docs/HyperflexWitnessConfiguration.md)
- - [HyperflexWitnessConfigurationAllOf](docs/HyperflexWitnessConfigurationAllOf.md)
- - [HyperflexWitnessConfigurationList](docs/HyperflexWitnessConfigurationList.md)
- - [HyperflexWitnessConfigurationListAllOf](docs/HyperflexWitnessConfigurationListAllOf.md)
- - [HyperflexWitnessConfigurationResponse](docs/HyperflexWitnessConfigurationResponse.md)
- - [HyperflexWwxnPrefixRange](docs/HyperflexWwxnPrefixRange.md)
- - [HyperflexWwxnPrefixRangeAllOf](docs/HyperflexWwxnPrefixRangeAllOf.md)
- - [I18nMessage](docs/I18nMessage.md)
- - [I18nMessageAllOf](docs/I18nMessageAllOf.md)
- - [I18nMessageParam](docs/I18nMessageParam.md)
- - [I18nMessageParamAllOf](docs/I18nMessageParamAllOf.md)
- - [IaasConnectorPack](docs/IaasConnectorPack.md)
- - [IaasConnectorPackAllOf](docs/IaasConnectorPackAllOf.md)
- - [IaasConnectorPackList](docs/IaasConnectorPackList.md)
- - [IaasConnectorPackListAllOf](docs/IaasConnectorPackListAllOf.md)
- - [IaasConnectorPackRelationship](docs/IaasConnectorPackRelationship.md)
- - [IaasConnectorPackResponse](docs/IaasConnectorPackResponse.md)
- - [IaasDeviceStatus](docs/IaasDeviceStatus.md)
- - [IaasDeviceStatusAllOf](docs/IaasDeviceStatusAllOf.md)
- - [IaasDeviceStatusList](docs/IaasDeviceStatusList.md)
- - [IaasDeviceStatusListAllOf](docs/IaasDeviceStatusListAllOf.md)
- - [IaasDeviceStatusRelationship](docs/IaasDeviceStatusRelationship.md)
- - [IaasDeviceStatusResponse](docs/IaasDeviceStatusResponse.md)
- - [IaasDiagnosticMessages](docs/IaasDiagnosticMessages.md)
- - [IaasDiagnosticMessagesAllOf](docs/IaasDiagnosticMessagesAllOf.md)
- - [IaasDiagnosticMessagesList](docs/IaasDiagnosticMessagesList.md)
- - [IaasDiagnosticMessagesListAllOf](docs/IaasDiagnosticMessagesListAllOf.md)
- - [IaasDiagnosticMessagesResponse](docs/IaasDiagnosticMessagesResponse.md)
- - [IaasLicenseInfo](docs/IaasLicenseInfo.md)
- - [IaasLicenseInfoAllOf](docs/IaasLicenseInfoAllOf.md)
- - [IaasLicenseInfoList](docs/IaasLicenseInfoList.md)
- - [IaasLicenseInfoListAllOf](docs/IaasLicenseInfoListAllOf.md)
- - [IaasLicenseInfoRelationship](docs/IaasLicenseInfoRelationship.md)
- - [IaasLicenseInfoResponse](docs/IaasLicenseInfoResponse.md)
- - [IaasLicenseKeysInfo](docs/IaasLicenseKeysInfo.md)
- - [IaasLicenseKeysInfoAllOf](docs/IaasLicenseKeysInfoAllOf.md)
- - [IaasLicenseUtilizationInfo](docs/IaasLicenseUtilizationInfo.md)
- - [IaasLicenseUtilizationInfoAllOf](docs/IaasLicenseUtilizationInfoAllOf.md)
- - [IaasMostRunTasks](docs/IaasMostRunTasks.md)
- - [IaasMostRunTasksAllOf](docs/IaasMostRunTasksAllOf.md)
- - [IaasMostRunTasksList](docs/IaasMostRunTasksList.md)
- - [IaasMostRunTasksListAllOf](docs/IaasMostRunTasksListAllOf.md)
- - [IaasMostRunTasksRelationship](docs/IaasMostRunTasksRelationship.md)
- - [IaasMostRunTasksResponse](docs/IaasMostRunTasksResponse.md)
- - [IaasServiceRequest](docs/IaasServiceRequest.md)
- - [IaasServiceRequestAllOf](docs/IaasServiceRequestAllOf.md)
- - [IaasServiceRequestList](docs/IaasServiceRequestList.md)
- - [IaasServiceRequestListAllOf](docs/IaasServiceRequestListAllOf.md)
- - [IaasServiceRequestResponse](docs/IaasServiceRequestResponse.md)
- - [IaasUcsdInfo](docs/IaasUcsdInfo.md)
- - [IaasUcsdInfoAllOf](docs/IaasUcsdInfoAllOf.md)
- - [IaasUcsdInfoList](docs/IaasUcsdInfoList.md)
- - [IaasUcsdInfoListAllOf](docs/IaasUcsdInfoListAllOf.md)
- - [IaasUcsdInfoRelationship](docs/IaasUcsdInfoRelationship.md)
- - [IaasUcsdInfoResponse](docs/IaasUcsdInfoResponse.md)
- - [IaasUcsdManagedInfra](docs/IaasUcsdManagedInfra.md)
- - [IaasUcsdManagedInfraAllOf](docs/IaasUcsdManagedInfraAllOf.md)
- - [IaasUcsdManagedInfraList](docs/IaasUcsdManagedInfraList.md)
- - [IaasUcsdManagedInfraListAllOf](docs/IaasUcsdManagedInfraListAllOf.md)
- - [IaasUcsdManagedInfraRelationship](docs/IaasUcsdManagedInfraRelationship.md)
- - [IaasUcsdManagedInfraResponse](docs/IaasUcsdManagedInfraResponse.md)
- - [IaasUcsdMessages](docs/IaasUcsdMessages.md)
- - [IaasUcsdMessagesAllOf](docs/IaasUcsdMessagesAllOf.md)
- - [IaasUcsdMessagesList](docs/IaasUcsdMessagesList.md)
- - [IaasUcsdMessagesListAllOf](docs/IaasUcsdMessagesListAllOf.md)
- - [IaasUcsdMessagesResponse](docs/IaasUcsdMessagesResponse.md)
- - [IaasWorkflowSteps](docs/IaasWorkflowSteps.md)
- - [IaasWorkflowStepsAllOf](docs/IaasWorkflowStepsAllOf.md)
- - [IamAccount](docs/IamAccount.md)
- - [IamAccountAllOf](docs/IamAccountAllOf.md)
- - [IamAccountExperience](docs/IamAccountExperience.md)
- - [IamAccountExperienceAllOf](docs/IamAccountExperienceAllOf.md)
- - [IamAccountExperienceList](docs/IamAccountExperienceList.md)
- - [IamAccountExperienceListAllOf](docs/IamAccountExperienceListAllOf.md)
- - [IamAccountExperienceResponse](docs/IamAccountExperienceResponse.md)
- - [IamAccountList](docs/IamAccountList.md)
- - [IamAccountListAllOf](docs/IamAccountListAllOf.md)
- - [IamAccountPermissions](docs/IamAccountPermissions.md)
- - [IamAccountPermissionsAllOf](docs/IamAccountPermissionsAllOf.md)
- - [IamAccountRelationship](docs/IamAccountRelationship.md)
- - [IamAccountResponse](docs/IamAccountResponse.md)
- - [IamApiKey](docs/IamApiKey.md)
- - [IamApiKeyAllOf](docs/IamApiKeyAllOf.md)
- - [IamApiKeyList](docs/IamApiKeyList.md)
- - [IamApiKeyListAllOf](docs/IamApiKeyListAllOf.md)
- - [IamApiKeyRelationship](docs/IamApiKeyRelationship.md)
- - [IamApiKeyResponse](docs/IamApiKeyResponse.md)
- - [IamAppRegistration](docs/IamAppRegistration.md)
- - [IamAppRegistrationAllOf](docs/IamAppRegistrationAllOf.md)
- - [IamAppRegistrationList](docs/IamAppRegistrationList.md)
- - [IamAppRegistrationListAllOf](docs/IamAppRegistrationListAllOf.md)
- - [IamAppRegistrationRelationship](docs/IamAppRegistrationRelationship.md)
- - [IamAppRegistrationResponse](docs/IamAppRegistrationResponse.md)
- - [IamBannerMessage](docs/IamBannerMessage.md)
- - [IamBannerMessageAllOf](docs/IamBannerMessageAllOf.md)
- - [IamBannerMessageList](docs/IamBannerMessageList.md)
- - [IamBannerMessageListAllOf](docs/IamBannerMessageListAllOf.md)
- - [IamBannerMessageResponse](docs/IamBannerMessageResponse.md)
- - [IamCertificate](docs/IamCertificate.md)
- - [IamCertificateAllOf](docs/IamCertificateAllOf.md)
- - [IamCertificateList](docs/IamCertificateList.md)
- - [IamCertificateListAllOf](docs/IamCertificateListAllOf.md)
- - [IamCertificateRelationship](docs/IamCertificateRelationship.md)
- - [IamCertificateRequest](docs/IamCertificateRequest.md)
- - [IamCertificateRequestAllOf](docs/IamCertificateRequestAllOf.md)
- - [IamCertificateRequestList](docs/IamCertificateRequestList.md)
- - [IamCertificateRequestListAllOf](docs/IamCertificateRequestListAllOf.md)
- - [IamCertificateRequestRelationship](docs/IamCertificateRequestRelationship.md)
- - [IamCertificateRequestResponse](docs/IamCertificateRequestResponse.md)
- - [IamCertificateResponse](docs/IamCertificateResponse.md)
- - [IamClientMeta](docs/IamClientMeta.md)
- - [IamClientMetaAllOf](docs/IamClientMetaAllOf.md)
- - [IamDomainGroup](docs/IamDomainGroup.md)
- - [IamDomainGroupAllOf](docs/IamDomainGroupAllOf.md)
- - [IamDomainGroupList](docs/IamDomainGroupList.md)
- - [IamDomainGroupListAllOf](docs/IamDomainGroupListAllOf.md)
- - [IamDomainGroupRelationship](docs/IamDomainGroupRelationship.md)
- - [IamDomainGroupResponse](docs/IamDomainGroupResponse.md)
- - [IamEndPointPasswordProperties](docs/IamEndPointPasswordProperties.md)
- - [IamEndPointPasswordPropertiesAllOf](docs/IamEndPointPasswordPropertiesAllOf.md)
- - [IamEndPointPrivilege](docs/IamEndPointPrivilege.md)
- - [IamEndPointPrivilegeAllOf](docs/IamEndPointPrivilegeAllOf.md)
- - [IamEndPointPrivilegeList](docs/IamEndPointPrivilegeList.md)
- - [IamEndPointPrivilegeListAllOf](docs/IamEndPointPrivilegeListAllOf.md)
- - [IamEndPointPrivilegeRelationship](docs/IamEndPointPrivilegeRelationship.md)
- - [IamEndPointPrivilegeResponse](docs/IamEndPointPrivilegeResponse.md)
- - [IamEndPointRole](docs/IamEndPointRole.md)
- - [IamEndPointRoleAllOf](docs/IamEndPointRoleAllOf.md)
- - [IamEndPointRoleList](docs/IamEndPointRoleList.md)
- - [IamEndPointRoleListAllOf](docs/IamEndPointRoleListAllOf.md)
- - [IamEndPointRoleRelationship](docs/IamEndPointRoleRelationship.md)
- - [IamEndPointRoleResponse](docs/IamEndPointRoleResponse.md)
- - [IamEndPointUser](docs/IamEndPointUser.md)
- - [IamEndPointUserAllOf](docs/IamEndPointUserAllOf.md)
- - [IamEndPointUserList](docs/IamEndPointUserList.md)
- - [IamEndPointUserListAllOf](docs/IamEndPointUserListAllOf.md)
- - [IamEndPointUserPolicy](docs/IamEndPointUserPolicy.md)
- - [IamEndPointUserPolicyAllOf](docs/IamEndPointUserPolicyAllOf.md)
- - [IamEndPointUserPolicyList](docs/IamEndPointUserPolicyList.md)
- - [IamEndPointUserPolicyListAllOf](docs/IamEndPointUserPolicyListAllOf.md)
- - [IamEndPointUserPolicyRelationship](docs/IamEndPointUserPolicyRelationship.md)
- - [IamEndPointUserPolicyResponse](docs/IamEndPointUserPolicyResponse.md)
- - [IamEndPointUserRelationship](docs/IamEndPointUserRelationship.md)
- - [IamEndPointUserResponse](docs/IamEndPointUserResponse.md)
- - [IamEndPointUserRole](docs/IamEndPointUserRole.md)
- - [IamEndPointUserRoleAllOf](docs/IamEndPointUserRoleAllOf.md)
- - [IamEndPointUserRoleList](docs/IamEndPointUserRoleList.md)
- - [IamEndPointUserRoleListAllOf](docs/IamEndPointUserRoleListAllOf.md)
- - [IamEndPointUserRoleRelationship](docs/IamEndPointUserRoleRelationship.md)
- - [IamEndPointUserRoleResponse](docs/IamEndPointUserRoleResponse.md)
- - [IamFeatureDefinition](docs/IamFeatureDefinition.md)
- - [IamFeatureDefinitionAllOf](docs/IamFeatureDefinitionAllOf.md)
- - [IamGroupPermissionToRoles](docs/IamGroupPermissionToRoles.md)
- - [IamGroupPermissionToRolesAllOf](docs/IamGroupPermissionToRolesAllOf.md)
- - [IamIdp](docs/IamIdp.md)
- - [IamIdpAllOf](docs/IamIdpAllOf.md)
- - [IamIdpList](docs/IamIdpList.md)
- - [IamIdpListAllOf](docs/IamIdpListAllOf.md)
- - [IamIdpReference](docs/IamIdpReference.md)
- - [IamIdpReferenceAllOf](docs/IamIdpReferenceAllOf.md)
- - [IamIdpReferenceList](docs/IamIdpReferenceList.md)
- - [IamIdpReferenceListAllOf](docs/IamIdpReferenceListAllOf.md)
- - [IamIdpReferenceRelationship](docs/IamIdpReferenceRelationship.md)
- - [IamIdpReferenceResponse](docs/IamIdpReferenceResponse.md)
- - [IamIdpRelationship](docs/IamIdpRelationship.md)
- - [IamIdpResponse](docs/IamIdpResponse.md)
- - [IamIpAccessManagement](docs/IamIpAccessManagement.md)
- - [IamIpAccessManagementAllOf](docs/IamIpAccessManagementAllOf.md)
- - [IamIpAccessManagementList](docs/IamIpAccessManagementList.md)
- - [IamIpAccessManagementListAllOf](docs/IamIpAccessManagementListAllOf.md)
- - [IamIpAccessManagementRelationship](docs/IamIpAccessManagementRelationship.md)
- - [IamIpAccessManagementResponse](docs/IamIpAccessManagementResponse.md)
- - [IamIpAddress](docs/IamIpAddress.md)
- - [IamIpAddressAllOf](docs/IamIpAddressAllOf.md)
- - [IamIpAddressList](docs/IamIpAddressList.md)
- - [IamIpAddressListAllOf](docs/IamIpAddressListAllOf.md)
- - [IamIpAddressRelationship](docs/IamIpAddressRelationship.md)
- - [IamIpAddressResponse](docs/IamIpAddressResponse.md)
- - [IamLdapBaseProperties](docs/IamLdapBaseProperties.md)
- - [IamLdapBasePropertiesAllOf](docs/IamLdapBasePropertiesAllOf.md)
- - [IamLdapDnsParameters](docs/IamLdapDnsParameters.md)
- - [IamLdapDnsParametersAllOf](docs/IamLdapDnsParametersAllOf.md)
- - [IamLdapGroup](docs/IamLdapGroup.md)
- - [IamLdapGroupAllOf](docs/IamLdapGroupAllOf.md)
- - [IamLdapGroupList](docs/IamLdapGroupList.md)
- - [IamLdapGroupListAllOf](docs/IamLdapGroupListAllOf.md)
- - [IamLdapGroupRelationship](docs/IamLdapGroupRelationship.md)
- - [IamLdapGroupResponse](docs/IamLdapGroupResponse.md)
- - [IamLdapPolicy](docs/IamLdapPolicy.md)
- - [IamLdapPolicyAllOf](docs/IamLdapPolicyAllOf.md)
- - [IamLdapPolicyList](docs/IamLdapPolicyList.md)
- - [IamLdapPolicyListAllOf](docs/IamLdapPolicyListAllOf.md)
- - [IamLdapPolicyRelationship](docs/IamLdapPolicyRelationship.md)
- - [IamLdapPolicyResponse](docs/IamLdapPolicyResponse.md)
- - [IamLdapProvider](docs/IamLdapProvider.md)
- - [IamLdapProviderAllOf](docs/IamLdapProviderAllOf.md)
- - [IamLdapProviderList](docs/IamLdapProviderList.md)
- - [IamLdapProviderListAllOf](docs/IamLdapProviderListAllOf.md)
- - [IamLdapProviderRelationship](docs/IamLdapProviderRelationship.md)
- - [IamLdapProviderResponse](docs/IamLdapProviderResponse.md)
- - [IamLocalUserPassword](docs/IamLocalUserPassword.md)
- - [IamLocalUserPasswordAllOf](docs/IamLocalUserPasswordAllOf.md)
- - [IamLocalUserPasswordPolicy](docs/IamLocalUserPasswordPolicy.md)
- - [IamLocalUserPasswordPolicyAllOf](docs/IamLocalUserPasswordPolicyAllOf.md)
- - [IamLocalUserPasswordPolicyList](docs/IamLocalUserPasswordPolicyList.md)
- - [IamLocalUserPasswordPolicyListAllOf](docs/IamLocalUserPasswordPolicyListAllOf.md)
- - [IamLocalUserPasswordPolicyResponse](docs/IamLocalUserPasswordPolicyResponse.md)
- - [IamLocalUserPasswordRelationship](docs/IamLocalUserPasswordRelationship.md)
- - [IamOAuthToken](docs/IamOAuthToken.md)
- - [IamOAuthTokenAllOf](docs/IamOAuthTokenAllOf.md)
- - [IamOAuthTokenList](docs/IamOAuthTokenList.md)
- - [IamOAuthTokenListAllOf](docs/IamOAuthTokenListAllOf.md)
- - [IamOAuthTokenRelationship](docs/IamOAuthTokenRelationship.md)
- - [IamOAuthTokenResponse](docs/IamOAuthTokenResponse.md)
- - [IamPermission](docs/IamPermission.md)
- - [IamPermissionAllOf](docs/IamPermissionAllOf.md)
- - [IamPermissionList](docs/IamPermissionList.md)
- - [IamPermissionListAllOf](docs/IamPermissionListAllOf.md)
- - [IamPermissionReference](docs/IamPermissionReference.md)
- - [IamPermissionReferenceAllOf](docs/IamPermissionReferenceAllOf.md)
- - [IamPermissionRelationship](docs/IamPermissionRelationship.md)
- - [IamPermissionResponse](docs/IamPermissionResponse.md)
- - [IamPermissionToRoles](docs/IamPermissionToRoles.md)
- - [IamPermissionToRolesAllOf](docs/IamPermissionToRolesAllOf.md)
- - [IamPrivateKeySpec](docs/IamPrivateKeySpec.md)
- - [IamPrivateKeySpecAllOf](docs/IamPrivateKeySpecAllOf.md)
- - [IamPrivateKeySpecList](docs/IamPrivateKeySpecList.md)
- - [IamPrivateKeySpecListAllOf](docs/IamPrivateKeySpecListAllOf.md)
- - [IamPrivateKeySpecRelationship](docs/IamPrivateKeySpecRelationship.md)
- - [IamPrivateKeySpecResponse](docs/IamPrivateKeySpecResponse.md)
- - [IamPrivilege](docs/IamPrivilege.md)
- - [IamPrivilegeAllOf](docs/IamPrivilegeAllOf.md)
- - [IamPrivilegeList](docs/IamPrivilegeList.md)
- - [IamPrivilegeListAllOf](docs/IamPrivilegeListAllOf.md)
- - [IamPrivilegeRelationship](docs/IamPrivilegeRelationship.md)
- - [IamPrivilegeResponse](docs/IamPrivilegeResponse.md)
- - [IamPrivilegeSet](docs/IamPrivilegeSet.md)
- - [IamPrivilegeSetAllOf](docs/IamPrivilegeSetAllOf.md)
- - [IamPrivilegeSetList](docs/IamPrivilegeSetList.md)
- - [IamPrivilegeSetListAllOf](docs/IamPrivilegeSetListAllOf.md)
- - [IamPrivilegeSetRelationship](docs/IamPrivilegeSetRelationship.md)
- - [IamPrivilegeSetResponse](docs/IamPrivilegeSetResponse.md)
- - [IamQualifier](docs/IamQualifier.md)
- - [IamQualifierAllOf](docs/IamQualifierAllOf.md)
- - [IamQualifierList](docs/IamQualifierList.md)
- - [IamQualifierListAllOf](docs/IamQualifierListAllOf.md)
- - [IamQualifierRelationship](docs/IamQualifierRelationship.md)
- - [IamQualifierResponse](docs/IamQualifierResponse.md)
- - [IamResourceLimits](docs/IamResourceLimits.md)
- - [IamResourceLimitsAllOf](docs/IamResourceLimitsAllOf.md)
- - [IamResourceLimitsList](docs/IamResourceLimitsList.md)
- - [IamResourceLimitsListAllOf](docs/IamResourceLimitsListAllOf.md)
- - [IamResourceLimitsRelationship](docs/IamResourceLimitsRelationship.md)
- - [IamResourceLimitsResponse](docs/IamResourceLimitsResponse.md)
- - [IamResourcePermission](docs/IamResourcePermission.md)
- - [IamResourcePermissionAllOf](docs/IamResourcePermissionAllOf.md)
- - [IamResourcePermissionList](docs/IamResourcePermissionList.md)
- - [IamResourcePermissionListAllOf](docs/IamResourcePermissionListAllOf.md)
- - [IamResourcePermissionRelationship](docs/IamResourcePermissionRelationship.md)
- - [IamResourcePermissionResponse](docs/IamResourcePermissionResponse.md)
- - [IamResourceRoles](docs/IamResourceRoles.md)
- - [IamResourceRolesAllOf](docs/IamResourceRolesAllOf.md)
- - [IamResourceRolesList](docs/IamResourceRolesList.md)
- - [IamResourceRolesListAllOf](docs/IamResourceRolesListAllOf.md)
- - [IamResourceRolesRelationship](docs/IamResourceRolesRelationship.md)
- - [IamResourceRolesResponse](docs/IamResourceRolesResponse.md)
- - [IamRole](docs/IamRole.md)
- - [IamRoleAllOf](docs/IamRoleAllOf.md)
- - [IamRoleList](docs/IamRoleList.md)
- - [IamRoleListAllOf](docs/IamRoleListAllOf.md)
- - [IamRoleRelationship](docs/IamRoleRelationship.md)
- - [IamRoleResponse](docs/IamRoleResponse.md)
- - [IamRule](docs/IamRule.md)
- - [IamRuleAllOf](docs/IamRuleAllOf.md)
- - [IamSamlSpConnection](docs/IamSamlSpConnection.md)
- - [IamSamlSpConnectionAllOf](docs/IamSamlSpConnectionAllOf.md)
- - [IamSecurityHolder](docs/IamSecurityHolder.md)
- - [IamSecurityHolderAllOf](docs/IamSecurityHolderAllOf.md)
- - [IamSecurityHolderList](docs/IamSecurityHolderList.md)
- - [IamSecurityHolderListAllOf](docs/IamSecurityHolderListAllOf.md)
- - [IamSecurityHolderRelationship](docs/IamSecurityHolderRelationship.md)
- - [IamSecurityHolderResponse](docs/IamSecurityHolderResponse.md)
- - [IamServiceProvider](docs/IamServiceProvider.md)
- - [IamServiceProviderAllOf](docs/IamServiceProviderAllOf.md)
- - [IamServiceProviderList](docs/IamServiceProviderList.md)
- - [IamServiceProviderListAllOf](docs/IamServiceProviderListAllOf.md)
- - [IamServiceProviderRelationship](docs/IamServiceProviderRelationship.md)
- - [IamServiceProviderResponse](docs/IamServiceProviderResponse.md)
- - [IamSession](docs/IamSession.md)
- - [IamSessionAllOf](docs/IamSessionAllOf.md)
- - [IamSessionLimits](docs/IamSessionLimits.md)
- - [IamSessionLimitsAllOf](docs/IamSessionLimitsAllOf.md)
- - [IamSessionLimitsList](docs/IamSessionLimitsList.md)
- - [IamSessionLimitsListAllOf](docs/IamSessionLimitsListAllOf.md)
- - [IamSessionLimitsRelationship](docs/IamSessionLimitsRelationship.md)
- - [IamSessionLimitsResponse](docs/IamSessionLimitsResponse.md)
- - [IamSessionList](docs/IamSessionList.md)
- - [IamSessionListAllOf](docs/IamSessionListAllOf.md)
- - [IamSessionRelationship](docs/IamSessionRelationship.md)
- - [IamSessionResponse](docs/IamSessionResponse.md)
- - [IamSsoSessionAttributes](docs/IamSsoSessionAttributes.md)
- - [IamSsoSessionAttributesAllOf](docs/IamSsoSessionAttributesAllOf.md)
- - [IamSystem](docs/IamSystem.md)
- - [IamSystemAllOf](docs/IamSystemAllOf.md)
- - [IamSystemList](docs/IamSystemList.md)
- - [IamSystemListAllOf](docs/IamSystemListAllOf.md)
- - [IamSystemRelationship](docs/IamSystemRelationship.md)
- - [IamSystemResponse](docs/IamSystemResponse.md)
- - [IamTrustPoint](docs/IamTrustPoint.md)
- - [IamTrustPointAllOf](docs/IamTrustPointAllOf.md)
- - [IamTrustPointList](docs/IamTrustPointList.md)
- - [IamTrustPointListAllOf](docs/IamTrustPointListAllOf.md)
- - [IamTrustPointResponse](docs/IamTrustPointResponse.md)
- - [IamUser](docs/IamUser.md)
- - [IamUserAllOf](docs/IamUserAllOf.md)
- - [IamUserGroup](docs/IamUserGroup.md)
- - [IamUserGroupAllOf](docs/IamUserGroupAllOf.md)
- - [IamUserGroupList](docs/IamUserGroupList.md)
- - [IamUserGroupListAllOf](docs/IamUserGroupListAllOf.md)
- - [IamUserGroupRelationship](docs/IamUserGroupRelationship.md)
- - [IamUserGroupResponse](docs/IamUserGroupResponse.md)
- - [IamUserList](docs/IamUserList.md)
- - [IamUserListAllOf](docs/IamUserListAllOf.md)
- - [IamUserPreference](docs/IamUserPreference.md)
- - [IamUserPreferenceAllOf](docs/IamUserPreferenceAllOf.md)
- - [IamUserPreferenceList](docs/IamUserPreferenceList.md)
- - [IamUserPreferenceListAllOf](docs/IamUserPreferenceListAllOf.md)
- - [IamUserPreferenceRelationship](docs/IamUserPreferenceRelationship.md)
- - [IamUserPreferenceResponse](docs/IamUserPreferenceResponse.md)
- - [IamUserRelationship](docs/IamUserRelationship.md)
- - [IamUserResponse](docs/IamUserResponse.md)
- - [ImcconnectorWebUiMessage](docs/ImcconnectorWebUiMessage.md)
- - [ImcconnectorWebUiMessageAllOf](docs/ImcconnectorWebUiMessageAllOf.md)
- - [InfraHardwareInfo](docs/InfraHardwareInfo.md)
- - [InfraHardwareInfoAllOf](docs/InfraHardwareInfoAllOf.md)
- - [InfraMetaData](docs/InfraMetaData.md)
- - [InfraMetaDataAllOf](docs/InfraMetaDataAllOf.md)
- - [InventoryBase](docs/InventoryBase.md)
- - [InventoryBaseAllOf](docs/InventoryBaseAllOf.md)
- - [InventoryBaseRelationship](docs/InventoryBaseRelationship.md)
- - [InventoryDeviceInfo](docs/InventoryDeviceInfo.md)
- - [InventoryDeviceInfoList](docs/InventoryDeviceInfoList.md)
- - [InventoryDeviceInfoListAllOf](docs/InventoryDeviceInfoListAllOf.md)
- - [InventoryDeviceInfoRelationship](docs/InventoryDeviceInfoRelationship.md)
- - [InventoryDeviceInfoResponse](docs/InventoryDeviceInfoResponse.md)
- - [InventoryDnMoBinding](docs/InventoryDnMoBinding.md)
- - [InventoryDnMoBindingAllOf](docs/InventoryDnMoBindingAllOf.md)
- - [InventoryDnMoBindingList](docs/InventoryDnMoBindingList.md)
- - [InventoryDnMoBindingListAllOf](docs/InventoryDnMoBindingListAllOf.md)
- - [InventoryDnMoBindingResponse](docs/InventoryDnMoBindingResponse.md)
- - [InventoryGenericInventory](docs/InventoryGenericInventory.md)
- - [InventoryGenericInventoryAllOf](docs/InventoryGenericInventoryAllOf.md)
- - [InventoryGenericInventoryHolder](docs/InventoryGenericInventoryHolder.md)
- - [InventoryGenericInventoryHolderAllOf](docs/InventoryGenericInventoryHolderAllOf.md)
- - [InventoryGenericInventoryHolderList](docs/InventoryGenericInventoryHolderList.md)
- - [InventoryGenericInventoryHolderListAllOf](docs/InventoryGenericInventoryHolderListAllOf.md)
- - [InventoryGenericInventoryHolderRelationship](docs/InventoryGenericInventoryHolderRelationship.md)
- - [InventoryGenericInventoryHolderResponse](docs/InventoryGenericInventoryHolderResponse.md)
- - [InventoryGenericInventoryList](docs/InventoryGenericInventoryList.md)
- - [InventoryGenericInventoryListAllOf](docs/InventoryGenericInventoryListAllOf.md)
- - [InventoryGenericInventoryRelationship](docs/InventoryGenericInventoryRelationship.md)
- - [InventoryGenericInventoryResponse](docs/InventoryGenericInventoryResponse.md)
- - [InventoryInventoryMo](docs/InventoryInventoryMo.md)
- - [InventoryInventoryMoAllOf](docs/InventoryInventoryMoAllOf.md)
- - [InventoryRequest](docs/InventoryRequest.md)
- - [InventoryRequestAllOf](docs/InventoryRequestAllOf.md)
- - [InventoryUemInfo](docs/InventoryUemInfo.md)
- - [InventoryUemInfoAllOf](docs/InventoryUemInfoAllOf.md)
- - [IpmioverlanPolicy](docs/IpmioverlanPolicy.md)
- - [IpmioverlanPolicyAllOf](docs/IpmioverlanPolicyAllOf.md)
- - [IpmioverlanPolicyList](docs/IpmioverlanPolicyList.md)
- - [IpmioverlanPolicyListAllOf](docs/IpmioverlanPolicyListAllOf.md)
- - [IpmioverlanPolicyResponse](docs/IpmioverlanPolicyResponse.md)
- - [IppoolBlockLease](docs/IppoolBlockLease.md)
- - [IppoolBlockLeaseAllOf](docs/IppoolBlockLeaseAllOf.md)
- - [IppoolBlockLeaseList](docs/IppoolBlockLeaseList.md)
- - [IppoolBlockLeaseListAllOf](docs/IppoolBlockLeaseListAllOf.md)
- - [IppoolBlockLeaseRelationship](docs/IppoolBlockLeaseRelationship.md)
- - [IppoolBlockLeaseResponse](docs/IppoolBlockLeaseResponse.md)
- - [IppoolIpLease](docs/IppoolIpLease.md)
- - [IppoolIpLeaseAllOf](docs/IppoolIpLeaseAllOf.md)
- - [IppoolIpLeaseList](docs/IppoolIpLeaseList.md)
- - [IppoolIpLeaseListAllOf](docs/IppoolIpLeaseListAllOf.md)
- - [IppoolIpLeaseRelationship](docs/IppoolIpLeaseRelationship.md)
- - [IppoolIpLeaseResponse](docs/IppoolIpLeaseResponse.md)
- - [IppoolIpV4Block](docs/IppoolIpV4Block.md)
- - [IppoolIpV4BlockAllOf](docs/IppoolIpV4BlockAllOf.md)
- - [IppoolIpV4Config](docs/IppoolIpV4Config.md)
- - [IppoolIpV4ConfigAllOf](docs/IppoolIpV4ConfigAllOf.md)
- - [IppoolIpV6Block](docs/IppoolIpV6Block.md)
- - [IppoolIpV6BlockAllOf](docs/IppoolIpV6BlockAllOf.md)
- - [IppoolIpV6Config](docs/IppoolIpV6Config.md)
- - [IppoolIpV6ConfigAllOf](docs/IppoolIpV6ConfigAllOf.md)
- - [IppoolPool](docs/IppoolPool.md)
- - [IppoolPoolAllOf](docs/IppoolPoolAllOf.md)
- - [IppoolPoolList](docs/IppoolPoolList.md)
- - [IppoolPoolListAllOf](docs/IppoolPoolListAllOf.md)
- - [IppoolPoolMember](docs/IppoolPoolMember.md)
- - [IppoolPoolMemberAllOf](docs/IppoolPoolMemberAllOf.md)
- - [IppoolPoolMemberList](docs/IppoolPoolMemberList.md)
- - [IppoolPoolMemberListAllOf](docs/IppoolPoolMemberListAllOf.md)
- - [IppoolPoolMemberRelationship](docs/IppoolPoolMemberRelationship.md)
- - [IppoolPoolMemberResponse](docs/IppoolPoolMemberResponse.md)
- - [IppoolPoolRelationship](docs/IppoolPoolRelationship.md)
- - [IppoolPoolResponse](docs/IppoolPoolResponse.md)
- - [IppoolShadowBlock](docs/IppoolShadowBlock.md)
- - [IppoolShadowBlockAllOf](docs/IppoolShadowBlockAllOf.md)
- - [IppoolShadowBlockList](docs/IppoolShadowBlockList.md)
- - [IppoolShadowBlockListAllOf](docs/IppoolShadowBlockListAllOf.md)
- - [IppoolShadowBlockRelationship](docs/IppoolShadowBlockRelationship.md)
- - [IppoolShadowBlockResponse](docs/IppoolShadowBlockResponse.md)
- - [IppoolShadowPool](docs/IppoolShadowPool.md)
- - [IppoolShadowPoolAllOf](docs/IppoolShadowPoolAllOf.md)
- - [IppoolShadowPoolList](docs/IppoolShadowPoolList.md)
- - [IppoolShadowPoolListAllOf](docs/IppoolShadowPoolListAllOf.md)
- - [IppoolShadowPoolRelationship](docs/IppoolShadowPoolRelationship.md)
- - [IppoolShadowPoolResponse](docs/IppoolShadowPoolResponse.md)
- - [IppoolUniverse](docs/IppoolUniverse.md)
- - [IppoolUniverseAllOf](docs/IppoolUniverseAllOf.md)
- - [IppoolUniverseList](docs/IppoolUniverseList.md)
- - [IppoolUniverseListAllOf](docs/IppoolUniverseListAllOf.md)
- - [IppoolUniverseRelationship](docs/IppoolUniverseRelationship.md)
- - [IppoolUniverseResponse](docs/IppoolUniverseResponse.md)
- - [IqnpoolBlock](docs/IqnpoolBlock.md)
- - [IqnpoolBlockAllOf](docs/IqnpoolBlockAllOf.md)
- - [IqnpoolBlockList](docs/IqnpoolBlockList.md)
- - [IqnpoolBlockListAllOf](docs/IqnpoolBlockListAllOf.md)
- - [IqnpoolBlockRelationship](docs/IqnpoolBlockRelationship.md)
- - [IqnpoolBlockResponse](docs/IqnpoolBlockResponse.md)
- - [IqnpoolIqnSuffixBlock](docs/IqnpoolIqnSuffixBlock.md)
- - [IqnpoolIqnSuffixBlockAllOf](docs/IqnpoolIqnSuffixBlockAllOf.md)
- - [IqnpoolLease](docs/IqnpoolLease.md)
- - [IqnpoolLeaseAllOf](docs/IqnpoolLeaseAllOf.md)
- - [IqnpoolLeaseList](docs/IqnpoolLeaseList.md)
- - [IqnpoolLeaseListAllOf](docs/IqnpoolLeaseListAllOf.md)
- - [IqnpoolLeaseRelationship](docs/IqnpoolLeaseRelationship.md)
- - [IqnpoolLeaseResponse](docs/IqnpoolLeaseResponse.md)
- - [IqnpoolPool](docs/IqnpoolPool.md)
- - [IqnpoolPoolAllOf](docs/IqnpoolPoolAllOf.md)
- - [IqnpoolPoolList](docs/IqnpoolPoolList.md)
- - [IqnpoolPoolListAllOf](docs/IqnpoolPoolListAllOf.md)
- - [IqnpoolPoolMember](docs/IqnpoolPoolMember.md)
- - [IqnpoolPoolMemberAllOf](docs/IqnpoolPoolMemberAllOf.md)
- - [IqnpoolPoolMemberList](docs/IqnpoolPoolMemberList.md)
- - [IqnpoolPoolMemberListAllOf](docs/IqnpoolPoolMemberListAllOf.md)
- - [IqnpoolPoolMemberRelationship](docs/IqnpoolPoolMemberRelationship.md)
- - [IqnpoolPoolMemberResponse](docs/IqnpoolPoolMemberResponse.md)
- - [IqnpoolPoolRelationship](docs/IqnpoolPoolRelationship.md)
- - [IqnpoolPoolResponse](docs/IqnpoolPoolResponse.md)
- - [IqnpoolUniverse](docs/IqnpoolUniverse.md)
- - [IqnpoolUniverseAllOf](docs/IqnpoolUniverseAllOf.md)
- - [IqnpoolUniverseList](docs/IqnpoolUniverseList.md)
- - [IqnpoolUniverseListAllOf](docs/IqnpoolUniverseListAllOf.md)
- - [IqnpoolUniverseRelationship](docs/IqnpoolUniverseRelationship.md)
- - [IqnpoolUniverseResponse](docs/IqnpoolUniverseResponse.md)
- - [IwotenantTenantStatus](docs/IwotenantTenantStatus.md)
- - [IwotenantTenantStatusAllOf](docs/IwotenantTenantStatusAllOf.md)
- - [IwotenantTenantStatusList](docs/IwotenantTenantStatusList.md)
- - [IwotenantTenantStatusListAllOf](docs/IwotenantTenantStatusListAllOf.md)
- - [IwotenantTenantStatusResponse](docs/IwotenantTenantStatusResponse.md)
- - [KubernetesAbstractDaemonSet](docs/KubernetesAbstractDaemonSet.md)
- - [KubernetesAbstractDeployment](docs/KubernetesAbstractDeployment.md)
- - [KubernetesAbstractIngress](docs/KubernetesAbstractIngress.md)
- - [KubernetesAbstractNode](docs/KubernetesAbstractNode.md)
- - [KubernetesAbstractNodeAllOf](docs/KubernetesAbstractNodeAllOf.md)
- - [KubernetesAbstractPod](docs/KubernetesAbstractPod.md)
- - [KubernetesAbstractService](docs/KubernetesAbstractService.md)
- - [KubernetesAbstractStatefulSet](docs/KubernetesAbstractStatefulSet.md)
- - [KubernetesAciCniApic](docs/KubernetesAciCniApic.md)
- - [KubernetesAciCniApicAllOf](docs/KubernetesAciCniApicAllOf.md)
- - [KubernetesAciCniApicList](docs/KubernetesAciCniApicList.md)
- - [KubernetesAciCniApicListAllOf](docs/KubernetesAciCniApicListAllOf.md)
- - [KubernetesAciCniApicResponse](docs/KubernetesAciCniApicResponse.md)
- - [KubernetesAciCniProfile](docs/KubernetesAciCniProfile.md)
- - [KubernetesAciCniProfileAllOf](docs/KubernetesAciCniProfileAllOf.md)
- - [KubernetesAciCniProfileList](docs/KubernetesAciCniProfileList.md)
- - [KubernetesAciCniProfileListAllOf](docs/KubernetesAciCniProfileListAllOf.md)
- - [KubernetesAciCniProfileRelationship](docs/KubernetesAciCniProfileRelationship.md)
- - [KubernetesAciCniProfileResponse](docs/KubernetesAciCniProfileResponse.md)
- - [KubernetesAciCniTenantClusterAllocation](docs/KubernetesAciCniTenantClusterAllocation.md)
- - [KubernetesAciCniTenantClusterAllocationAllOf](docs/KubernetesAciCniTenantClusterAllocationAllOf.md)
- - [KubernetesAciCniTenantClusterAllocationList](docs/KubernetesAciCniTenantClusterAllocationList.md)
- - [KubernetesAciCniTenantClusterAllocationListAllOf](docs/KubernetesAciCniTenantClusterAllocationListAllOf.md)
- - [KubernetesAciCniTenantClusterAllocationRelationship](docs/KubernetesAciCniTenantClusterAllocationRelationship.md)
- - [KubernetesAciCniTenantClusterAllocationResponse](docs/KubernetesAciCniTenantClusterAllocationResponse.md)
- - [KubernetesActionInfo](docs/KubernetesActionInfo.md)
- - [KubernetesActionInfoAllOf](docs/KubernetesActionInfoAllOf.md)
- - [KubernetesAddon](docs/KubernetesAddon.md)
- - [KubernetesAddonAllOf](docs/KubernetesAddonAllOf.md)
- - [KubernetesAddonConfiguration](docs/KubernetesAddonConfiguration.md)
- - [KubernetesAddonConfigurationAllOf](docs/KubernetesAddonConfigurationAllOf.md)
- - [KubernetesAddonDefinition](docs/KubernetesAddonDefinition.md)
- - [KubernetesAddonDefinitionAllOf](docs/KubernetesAddonDefinitionAllOf.md)
- - [KubernetesAddonDefinitionList](docs/KubernetesAddonDefinitionList.md)
- - [KubernetesAddonDefinitionListAllOf](docs/KubernetesAddonDefinitionListAllOf.md)
- - [KubernetesAddonDefinitionRelationship](docs/KubernetesAddonDefinitionRelationship.md)
- - [KubernetesAddonDefinitionResponse](docs/KubernetesAddonDefinitionResponse.md)
- - [KubernetesAddonPolicy](docs/KubernetesAddonPolicy.md)
- - [KubernetesAddonPolicyAllOf](docs/KubernetesAddonPolicyAllOf.md)
- - [KubernetesAddonPolicyList](docs/KubernetesAddonPolicyList.md)
- - [KubernetesAddonPolicyListAllOf](docs/KubernetesAddonPolicyListAllOf.md)
- - [KubernetesAddonPolicyResponse](docs/KubernetesAddonPolicyResponse.md)
- - [KubernetesAddonRepository](docs/KubernetesAddonRepository.md)
- - [KubernetesAddonRepositoryAllOf](docs/KubernetesAddonRepositoryAllOf.md)
- - [KubernetesAddonRepositoryList](docs/KubernetesAddonRepositoryList.md)
- - [KubernetesAddonRepositoryListAllOf](docs/KubernetesAddonRepositoryListAllOf.md)
- - [KubernetesAddonRepositoryResponse](docs/KubernetesAddonRepositoryResponse.md)
- - [KubernetesBaseInfrastructureProvider](docs/KubernetesBaseInfrastructureProvider.md)
- - [KubernetesBaseInfrastructureProviderAllOf](docs/KubernetesBaseInfrastructureProviderAllOf.md)
- - [KubernetesBaseInfrastructureProviderRelationship](docs/KubernetesBaseInfrastructureProviderRelationship.md)
- - [KubernetesBaseVirtualMachineInfraConfig](docs/KubernetesBaseVirtualMachineInfraConfig.md)
- - [KubernetesBaseVirtualMachineInfraConfigAllOf](docs/KubernetesBaseVirtualMachineInfraConfigAllOf.md)
- - [KubernetesCalicoConfig](docs/KubernetesCalicoConfig.md)
- - [KubernetesCalicoConfigAllOf](docs/KubernetesCalicoConfigAllOf.md)
- - [KubernetesCatalog](docs/KubernetesCatalog.md)
- - [KubernetesCatalogAllOf](docs/KubernetesCatalogAllOf.md)
- - [KubernetesCatalogList](docs/KubernetesCatalogList.md)
- - [KubernetesCatalogListAllOf](docs/KubernetesCatalogListAllOf.md)
- - [KubernetesCatalogRelationship](docs/KubernetesCatalogRelationship.md)
- - [KubernetesCatalogResponse](docs/KubernetesCatalogResponse.md)
- - [KubernetesCluster](docs/KubernetesCluster.md)
- - [KubernetesClusterAddonProfile](docs/KubernetesClusterAddonProfile.md)
- - [KubernetesClusterAddonProfileAllOf](docs/KubernetesClusterAddonProfileAllOf.md)
- - [KubernetesClusterAddonProfileList](docs/KubernetesClusterAddonProfileList.md)
- - [KubernetesClusterAddonProfileListAllOf](docs/KubernetesClusterAddonProfileListAllOf.md)
- - [KubernetesClusterAddonProfileRelationship](docs/KubernetesClusterAddonProfileRelationship.md)
- - [KubernetesClusterAddonProfileResponse](docs/KubernetesClusterAddonProfileResponse.md)
- - [KubernetesClusterAllOf](docs/KubernetesClusterAllOf.md)
- - [KubernetesClusterCertificateConfiguration](docs/KubernetesClusterCertificateConfiguration.md)
- - [KubernetesClusterCertificateConfigurationAllOf](docs/KubernetesClusterCertificateConfigurationAllOf.md)
- - [KubernetesClusterList](docs/KubernetesClusterList.md)
- - [KubernetesClusterListAllOf](docs/KubernetesClusterListAllOf.md)
- - [KubernetesClusterManagementConfig](docs/KubernetesClusterManagementConfig.md)
- - [KubernetesClusterManagementConfigAllOf](docs/KubernetesClusterManagementConfigAllOf.md)
- - [KubernetesClusterProfile](docs/KubernetesClusterProfile.md)
- - [KubernetesClusterProfileAllOf](docs/KubernetesClusterProfileAllOf.md)
- - [KubernetesClusterProfileList](docs/KubernetesClusterProfileList.md)
- - [KubernetesClusterProfileListAllOf](docs/KubernetesClusterProfileListAllOf.md)
- - [KubernetesClusterProfileRelationship](docs/KubernetesClusterProfileRelationship.md)
- - [KubernetesClusterProfileResponse](docs/KubernetesClusterProfileResponse.md)
- - [KubernetesClusterRelationship](docs/KubernetesClusterRelationship.md)
- - [KubernetesClusterResponse](docs/KubernetesClusterResponse.md)
- - [KubernetesCniConfig](docs/KubernetesCniConfig.md)
- - [KubernetesCniConfigAllOf](docs/KubernetesCniConfigAllOf.md)
- - [KubernetesConfigResult](docs/KubernetesConfigResult.md)
- - [KubernetesConfigResultAllOf](docs/KubernetesConfigResultAllOf.md)
- - [KubernetesConfigResultEntry](docs/KubernetesConfigResultEntry.md)
- - [KubernetesConfigResultEntryAllOf](docs/KubernetesConfigResultEntryAllOf.md)
- - [KubernetesConfigResultEntryList](docs/KubernetesConfigResultEntryList.md)
- - [KubernetesConfigResultEntryListAllOf](docs/KubernetesConfigResultEntryListAllOf.md)
- - [KubernetesConfigResultEntryRelationship](docs/KubernetesConfigResultEntryRelationship.md)
- - [KubernetesConfigResultEntryResponse](docs/KubernetesConfigResultEntryResponse.md)
- - [KubernetesConfigResultList](docs/KubernetesConfigResultList.md)
- - [KubernetesConfigResultListAllOf](docs/KubernetesConfigResultListAllOf.md)
- - [KubernetesConfigResultRelationship](docs/KubernetesConfigResultRelationship.md)
- - [KubernetesConfigResultResponse](docs/KubernetesConfigResultResponse.md)
- - [KubernetesConfiguration](docs/KubernetesConfiguration.md)
- - [KubernetesConfigurationAllOf](docs/KubernetesConfigurationAllOf.md)
- - [KubernetesContainerRuntimePolicy](docs/KubernetesContainerRuntimePolicy.md)
- - [KubernetesContainerRuntimePolicyAllOf](docs/KubernetesContainerRuntimePolicyAllOf.md)
- - [KubernetesContainerRuntimePolicyList](docs/KubernetesContainerRuntimePolicyList.md)
- - [KubernetesContainerRuntimePolicyListAllOf](docs/KubernetesContainerRuntimePolicyListAllOf.md)
- - [KubernetesContainerRuntimePolicyRelationship](docs/KubernetesContainerRuntimePolicyRelationship.md)
- - [KubernetesContainerRuntimePolicyResponse](docs/KubernetesContainerRuntimePolicyResponse.md)
- - [KubernetesDaemonSet](docs/KubernetesDaemonSet.md)
- - [KubernetesDaemonSetAllOf](docs/KubernetesDaemonSetAllOf.md)
- - [KubernetesDaemonSetList](docs/KubernetesDaemonSetList.md)
- - [KubernetesDaemonSetListAllOf](docs/KubernetesDaemonSetListAllOf.md)
- - [KubernetesDaemonSetResponse](docs/KubernetesDaemonSetResponse.md)
- - [KubernetesDaemonSetStatus](docs/KubernetesDaemonSetStatus.md)
- - [KubernetesDaemonSetStatusAllOf](docs/KubernetesDaemonSetStatusAllOf.md)
- - [KubernetesDeployment](docs/KubernetesDeployment.md)
- - [KubernetesDeploymentAllOf](docs/KubernetesDeploymentAllOf.md)
- - [KubernetesDeploymentList](docs/KubernetesDeploymentList.md)
- - [KubernetesDeploymentListAllOf](docs/KubernetesDeploymentListAllOf.md)
- - [KubernetesDeploymentResponse](docs/KubernetesDeploymentResponse.md)
- - [KubernetesDeploymentStatus](docs/KubernetesDeploymentStatus.md)
- - [KubernetesDeploymentStatusAllOf](docs/KubernetesDeploymentStatusAllOf.md)
- - [KubernetesEssentialAddon](docs/KubernetesEssentialAddon.md)
- - [KubernetesEssentialAddonAllOf](docs/KubernetesEssentialAddonAllOf.md)
- - [KubernetesEsxiVirtualMachineInfraConfig](docs/KubernetesEsxiVirtualMachineInfraConfig.md)
- - [KubernetesEsxiVirtualMachineInfraConfigAllOf](docs/KubernetesEsxiVirtualMachineInfraConfigAllOf.md)
- - [KubernetesHyperFlexApVirtualMachineInfraConfig](docs/KubernetesHyperFlexApVirtualMachineInfraConfig.md)
- - [KubernetesIngress](docs/KubernetesIngress.md)
- - [KubernetesIngressAllOf](docs/KubernetesIngressAllOf.md)
- - [KubernetesIngressList](docs/KubernetesIngressList.md)
- - [KubernetesIngressListAllOf](docs/KubernetesIngressListAllOf.md)
- - [KubernetesIngressResponse](docs/KubernetesIngressResponse.md)
- - [KubernetesIngressStatus](docs/KubernetesIngressStatus.md)
- - [KubernetesIngressStatusAllOf](docs/KubernetesIngressStatusAllOf.md)
- - [KubernetesKeyValue](docs/KubernetesKeyValue.md)
- - [KubernetesKeyValueAllOf](docs/KubernetesKeyValueAllOf.md)
- - [KubernetesKubernetesResource](docs/KubernetesKubernetesResource.md)
- - [KubernetesKubernetesResourceAllOf](docs/KubernetesKubernetesResourceAllOf.md)
- - [KubernetesLoadBalancer](docs/KubernetesLoadBalancer.md)
- - [KubernetesLoadBalancerAllOf](docs/KubernetesLoadBalancerAllOf.md)
- - [KubernetesNetworkPolicy](docs/KubernetesNetworkPolicy.md)
- - [KubernetesNetworkPolicyAllOf](docs/KubernetesNetworkPolicyAllOf.md)
- - [KubernetesNetworkPolicyList](docs/KubernetesNetworkPolicyList.md)
- - [KubernetesNetworkPolicyListAllOf](docs/KubernetesNetworkPolicyListAllOf.md)
- - [KubernetesNetworkPolicyRelationship](docs/KubernetesNetworkPolicyRelationship.md)
- - [KubernetesNetworkPolicyResponse](docs/KubernetesNetworkPolicyResponse.md)
- - [KubernetesNode](docs/KubernetesNode.md)
- - [KubernetesNodeAddress](docs/KubernetesNodeAddress.md)
- - [KubernetesNodeAddressAllOf](docs/KubernetesNodeAddressAllOf.md)
- - [KubernetesNodeAllOf](docs/KubernetesNodeAllOf.md)
- - [KubernetesNodeGroupLabel](docs/KubernetesNodeGroupLabel.md)
- - [KubernetesNodeGroupLabelAllOf](docs/KubernetesNodeGroupLabelAllOf.md)
- - [KubernetesNodeGroupProfile](docs/KubernetesNodeGroupProfile.md)
- - [KubernetesNodeGroupProfileAllOf](docs/KubernetesNodeGroupProfileAllOf.md)
- - [KubernetesNodeGroupProfileList](docs/KubernetesNodeGroupProfileList.md)
- - [KubernetesNodeGroupProfileListAllOf](docs/KubernetesNodeGroupProfileListAllOf.md)
- - [KubernetesNodeGroupProfileRelationship](docs/KubernetesNodeGroupProfileRelationship.md)
- - [KubernetesNodeGroupProfileResponse](docs/KubernetesNodeGroupProfileResponse.md)
- - [KubernetesNodeGroupTaint](docs/KubernetesNodeGroupTaint.md)
- - [KubernetesNodeGroupTaintAllOf](docs/KubernetesNodeGroupTaintAllOf.md)
- - [KubernetesNodeInfo](docs/KubernetesNodeInfo.md)
- - [KubernetesNodeInfoAllOf](docs/KubernetesNodeInfoAllOf.md)
- - [KubernetesNodeList](docs/KubernetesNodeList.md)
- - [KubernetesNodeListAllOf](docs/KubernetesNodeListAllOf.md)
- - [KubernetesNodeProfile](docs/KubernetesNodeProfile.md)
- - [KubernetesNodeProfileAllOf](docs/KubernetesNodeProfileAllOf.md)
- - [KubernetesNodeProfileRelationship](docs/KubernetesNodeProfileRelationship.md)
- - [KubernetesNodeResponse](docs/KubernetesNodeResponse.md)
- - [KubernetesNodeSpec](docs/KubernetesNodeSpec.md)
- - [KubernetesNodeSpecAllOf](docs/KubernetesNodeSpecAllOf.md)
- - [KubernetesNodeStatus](docs/KubernetesNodeStatus.md)
- - [KubernetesNodeStatusAllOf](docs/KubernetesNodeStatusAllOf.md)
- - [KubernetesObjectMeta](docs/KubernetesObjectMeta.md)
- - [KubernetesObjectMetaAllOf](docs/KubernetesObjectMetaAllOf.md)
- - [KubernetesPod](docs/KubernetesPod.md)
- - [KubernetesPodAllOf](docs/KubernetesPodAllOf.md)
- - [KubernetesPodList](docs/KubernetesPodList.md)
- - [KubernetesPodListAllOf](docs/KubernetesPodListAllOf.md)
- - [KubernetesPodResponse](docs/KubernetesPodResponse.md)
- - [KubernetesPodStatus](docs/KubernetesPodStatus.md)
- - [KubernetesPodStatusAllOf](docs/KubernetesPodStatusAllOf.md)
- - [KubernetesProxyConfig](docs/KubernetesProxyConfig.md)
- - [KubernetesProxyConfigAllOf](docs/KubernetesProxyConfigAllOf.md)
- - [KubernetesService](docs/KubernetesService.md)
- - [KubernetesServiceAllOf](docs/KubernetesServiceAllOf.md)
- - [KubernetesServiceList](docs/KubernetesServiceList.md)
- - [KubernetesServiceListAllOf](docs/KubernetesServiceListAllOf.md)
- - [KubernetesServiceResponse](docs/KubernetesServiceResponse.md)
- - [KubernetesServiceStatus](docs/KubernetesServiceStatus.md)
- - [KubernetesServiceStatusAllOf](docs/KubernetesServiceStatusAllOf.md)
- - [KubernetesStatefulSet](docs/KubernetesStatefulSet.md)
- - [KubernetesStatefulSetAllOf](docs/KubernetesStatefulSetAllOf.md)
- - [KubernetesStatefulSetList](docs/KubernetesStatefulSetList.md)
- - [KubernetesStatefulSetListAllOf](docs/KubernetesStatefulSetListAllOf.md)
- - [KubernetesStatefulSetResponse](docs/KubernetesStatefulSetResponse.md)
- - [KubernetesStatefulSetStatus](docs/KubernetesStatefulSetStatus.md)
- - [KubernetesStatefulSetStatusAllOf](docs/KubernetesStatefulSetStatusAllOf.md)
- - [KubernetesSysConfigPolicy](docs/KubernetesSysConfigPolicy.md)
- - [KubernetesSysConfigPolicyAllOf](docs/KubernetesSysConfigPolicyAllOf.md)
- - [KubernetesSysConfigPolicyList](docs/KubernetesSysConfigPolicyList.md)
- - [KubernetesSysConfigPolicyListAllOf](docs/KubernetesSysConfigPolicyListAllOf.md)
- - [KubernetesSysConfigPolicyRelationship](docs/KubernetesSysConfigPolicyRelationship.md)
- - [KubernetesSysConfigPolicyResponse](docs/KubernetesSysConfigPolicyResponse.md)
- - [KubernetesTaint](docs/KubernetesTaint.md)
- - [KubernetesTaintAllOf](docs/KubernetesTaintAllOf.md)
- - [KubernetesTrustedRegistriesPolicy](docs/KubernetesTrustedRegistriesPolicy.md)
- - [KubernetesTrustedRegistriesPolicyAllOf](docs/KubernetesTrustedRegistriesPolicyAllOf.md)
- - [KubernetesTrustedRegistriesPolicyList](docs/KubernetesTrustedRegistriesPolicyList.md)
- - [KubernetesTrustedRegistriesPolicyListAllOf](docs/KubernetesTrustedRegistriesPolicyListAllOf.md)
- - [KubernetesTrustedRegistriesPolicyRelationship](docs/KubernetesTrustedRegistriesPolicyRelationship.md)
- - [KubernetesTrustedRegistriesPolicyResponse](docs/KubernetesTrustedRegistriesPolicyResponse.md)
- - [KubernetesVersion](docs/KubernetesVersion.md)
- - [KubernetesVersionAllOf](docs/KubernetesVersionAllOf.md)
- - [KubernetesVersionList](docs/KubernetesVersionList.md)
- - [KubernetesVersionListAllOf](docs/KubernetesVersionListAllOf.md)
- - [KubernetesVersionPolicy](docs/KubernetesVersionPolicy.md)
- - [KubernetesVersionPolicyAllOf](docs/KubernetesVersionPolicyAllOf.md)
- - [KubernetesVersionPolicyList](docs/KubernetesVersionPolicyList.md)
- - [KubernetesVersionPolicyListAllOf](docs/KubernetesVersionPolicyListAllOf.md)
- - [KubernetesVersionPolicyRelationship](docs/KubernetesVersionPolicyRelationship.md)
- - [KubernetesVersionPolicyResponse](docs/KubernetesVersionPolicyResponse.md)
- - [KubernetesVersionRelationship](docs/KubernetesVersionRelationship.md)
- - [KubernetesVersionResponse](docs/KubernetesVersionResponse.md)
- - [KubernetesVirtualMachineInfraConfigPolicy](docs/KubernetesVirtualMachineInfraConfigPolicy.md)
- - [KubernetesVirtualMachineInfraConfigPolicyAllOf](docs/KubernetesVirtualMachineInfraConfigPolicyAllOf.md)
- - [KubernetesVirtualMachineInfraConfigPolicyList](docs/KubernetesVirtualMachineInfraConfigPolicyList.md)
- - [KubernetesVirtualMachineInfraConfigPolicyListAllOf](docs/KubernetesVirtualMachineInfraConfigPolicyListAllOf.md)
- - [KubernetesVirtualMachineInfraConfigPolicyRelationship](docs/KubernetesVirtualMachineInfraConfigPolicyRelationship.md)
- - [KubernetesVirtualMachineInfraConfigPolicyResponse](docs/KubernetesVirtualMachineInfraConfigPolicyResponse.md)
- - [KubernetesVirtualMachineInfrastructureProvider](docs/KubernetesVirtualMachineInfrastructureProvider.md)
- - [KubernetesVirtualMachineInfrastructureProviderAllOf](docs/KubernetesVirtualMachineInfrastructureProviderAllOf.md)
- - [KubernetesVirtualMachineInfrastructureProviderList](docs/KubernetesVirtualMachineInfrastructureProviderList.md)
- - [KubernetesVirtualMachineInfrastructureProviderListAllOf](docs/KubernetesVirtualMachineInfrastructureProviderListAllOf.md)
- - [KubernetesVirtualMachineInfrastructureProviderRelationship](docs/KubernetesVirtualMachineInfrastructureProviderRelationship.md)
- - [KubernetesVirtualMachineInfrastructureProviderResponse](docs/KubernetesVirtualMachineInfrastructureProviderResponse.md)
- - [KubernetesVirtualMachineInstanceType](docs/KubernetesVirtualMachineInstanceType.md)
- - [KubernetesVirtualMachineInstanceTypeAllOf](docs/KubernetesVirtualMachineInstanceTypeAllOf.md)
- - [KubernetesVirtualMachineInstanceTypeList](docs/KubernetesVirtualMachineInstanceTypeList.md)
- - [KubernetesVirtualMachineInstanceTypeListAllOf](docs/KubernetesVirtualMachineInstanceTypeListAllOf.md)
- - [KubernetesVirtualMachineInstanceTypeRelationship](docs/KubernetesVirtualMachineInstanceTypeRelationship.md)
- - [KubernetesVirtualMachineInstanceTypeResponse](docs/KubernetesVirtualMachineInstanceTypeResponse.md)
- - [KubernetesVirtualMachineNodeProfile](docs/KubernetesVirtualMachineNodeProfile.md)
- - [KubernetesVirtualMachineNodeProfileAllOf](docs/KubernetesVirtualMachineNodeProfileAllOf.md)
- - [KubernetesVirtualMachineNodeProfileList](docs/KubernetesVirtualMachineNodeProfileList.md)
- - [KubernetesVirtualMachineNodeProfileListAllOf](docs/KubernetesVirtualMachineNodeProfileListAllOf.md)
- - [KubernetesVirtualMachineNodeProfileResponse](docs/KubernetesVirtualMachineNodeProfileResponse.md)
- - [KvmPolicy](docs/KvmPolicy.md)
- - [KvmPolicyAllOf](docs/KvmPolicyAllOf.md)
- - [KvmPolicyList](docs/KvmPolicyList.md)
- - [KvmPolicyListAllOf](docs/KvmPolicyListAllOf.md)
- - [KvmPolicyResponse](docs/KvmPolicyResponse.md)
- - [KvmSession](docs/KvmSession.md)
- - [KvmSessionAllOf](docs/KvmSessionAllOf.md)
- - [KvmSessionList](docs/KvmSessionList.md)
- - [KvmSessionListAllOf](docs/KvmSessionListAllOf.md)
- - [KvmSessionRelationship](docs/KvmSessionRelationship.md)
- - [KvmSessionResponse](docs/KvmSessionResponse.md)
- - [KvmTunnel](docs/KvmTunnel.md)
- - [KvmTunnelAllOf](docs/KvmTunnelAllOf.md)
- - [KvmTunnelList](docs/KvmTunnelList.md)
- - [KvmTunnelListAllOf](docs/KvmTunnelListAllOf.md)
- - [KvmTunnelRelationship](docs/KvmTunnelRelationship.md)
- - [KvmTunnelResponse](docs/KvmTunnelResponse.md)
- - [KvmVmConsole](docs/KvmVmConsole.md)
- - [KvmVmConsoleAllOf](docs/KvmVmConsoleAllOf.md)
- - [KvmVmConsoleList](docs/KvmVmConsoleList.md)
- - [KvmVmConsoleListAllOf](docs/KvmVmConsoleListAllOf.md)
- - [KvmVmConsoleResponse](docs/KvmVmConsoleResponse.md)
- - [LicenseAccountLicenseData](docs/LicenseAccountLicenseData.md)
- - [LicenseAccountLicenseDataAllOf](docs/LicenseAccountLicenseDataAllOf.md)
- - [LicenseAccountLicenseDataList](docs/LicenseAccountLicenseDataList.md)
- - [LicenseAccountLicenseDataListAllOf](docs/LicenseAccountLicenseDataListAllOf.md)
- - [LicenseAccountLicenseDataRelationship](docs/LicenseAccountLicenseDataRelationship.md)
- - [LicenseAccountLicenseDataResponse](docs/LicenseAccountLicenseDataResponse.md)
- - [LicenseCustomerOp](docs/LicenseCustomerOp.md)
- - [LicenseCustomerOpAllOf](docs/LicenseCustomerOpAllOf.md)
- - [LicenseCustomerOpList](docs/LicenseCustomerOpList.md)
- - [LicenseCustomerOpListAllOf](docs/LicenseCustomerOpListAllOf.md)
- - [LicenseCustomerOpRelationship](docs/LicenseCustomerOpRelationship.md)
- - [LicenseCustomerOpResponse](docs/LicenseCustomerOpResponse.md)
- - [LicenseIwoCustomerOp](docs/LicenseIwoCustomerOp.md)
- - [LicenseIwoCustomerOpAllOf](docs/LicenseIwoCustomerOpAllOf.md)
- - [LicenseIwoCustomerOpList](docs/LicenseIwoCustomerOpList.md)
- - [LicenseIwoCustomerOpListAllOf](docs/LicenseIwoCustomerOpListAllOf.md)
- - [LicenseIwoCustomerOpRelationship](docs/LicenseIwoCustomerOpRelationship.md)
- - [LicenseIwoCustomerOpResponse](docs/LicenseIwoCustomerOpResponse.md)
- - [LicenseIwoLicenseCount](docs/LicenseIwoLicenseCount.md)
- - [LicenseIwoLicenseCountAllOf](docs/LicenseIwoLicenseCountAllOf.md)
- - [LicenseIwoLicenseCountList](docs/LicenseIwoLicenseCountList.md)
- - [LicenseIwoLicenseCountListAllOf](docs/LicenseIwoLicenseCountListAllOf.md)
- - [LicenseIwoLicenseCountRelationship](docs/LicenseIwoLicenseCountRelationship.md)
- - [LicenseIwoLicenseCountResponse](docs/LicenseIwoLicenseCountResponse.md)
- - [LicenseLicenseInfo](docs/LicenseLicenseInfo.md)
- - [LicenseLicenseInfoAllOf](docs/LicenseLicenseInfoAllOf.md)
- - [LicenseLicenseInfoList](docs/LicenseLicenseInfoList.md)
- - [LicenseLicenseInfoListAllOf](docs/LicenseLicenseInfoListAllOf.md)
- - [LicenseLicenseInfoRelationship](docs/LicenseLicenseInfoRelationship.md)
- - [LicenseLicenseInfoResponse](docs/LicenseLicenseInfoResponse.md)
- - [LicenseLicenseReservationOp](docs/LicenseLicenseReservationOp.md)
- - [LicenseLicenseReservationOpAllOf](docs/LicenseLicenseReservationOpAllOf.md)
- - [LicenseLicenseReservationOpList](docs/LicenseLicenseReservationOpList.md)
- - [LicenseLicenseReservationOpListAllOf](docs/LicenseLicenseReservationOpListAllOf.md)
- - [LicenseLicenseReservationOpResponse](docs/LicenseLicenseReservationOpResponse.md)
- - [LicenseSmartlicenseToken](docs/LicenseSmartlicenseToken.md)
- - [LicenseSmartlicenseTokenAllOf](docs/LicenseSmartlicenseTokenAllOf.md)
- - [LicenseSmartlicenseTokenList](docs/LicenseSmartlicenseTokenList.md)
- - [LicenseSmartlicenseTokenListAllOf](docs/LicenseSmartlicenseTokenListAllOf.md)
- - [LicenseSmartlicenseTokenRelationship](docs/LicenseSmartlicenseTokenRelationship.md)
- - [LicenseSmartlicenseTokenResponse](docs/LicenseSmartlicenseTokenResponse.md)
- - [LsServiceProfile](docs/LsServiceProfile.md)
- - [LsServiceProfileAllOf](docs/LsServiceProfileAllOf.md)
- - [LsServiceProfileList](docs/LsServiceProfileList.md)
- - [LsServiceProfileListAllOf](docs/LsServiceProfileListAllOf.md)
- - [LsServiceProfileResponse](docs/LsServiceProfileResponse.md)
- - [MacpoolBlock](docs/MacpoolBlock.md)
- - [MacpoolBlockAllOf](docs/MacpoolBlockAllOf.md)
- - [MacpoolIdBlock](docs/MacpoolIdBlock.md)
- - [MacpoolIdBlockAllOf](docs/MacpoolIdBlockAllOf.md)
- - [MacpoolIdBlockList](docs/MacpoolIdBlockList.md)
- - [MacpoolIdBlockListAllOf](docs/MacpoolIdBlockListAllOf.md)
- - [MacpoolIdBlockRelationship](docs/MacpoolIdBlockRelationship.md)
- - [MacpoolIdBlockResponse](docs/MacpoolIdBlockResponse.md)
- - [MacpoolLease](docs/MacpoolLease.md)
- - [MacpoolLeaseAllOf](docs/MacpoolLeaseAllOf.md)
- - [MacpoolLeaseList](docs/MacpoolLeaseList.md)
- - [MacpoolLeaseListAllOf](docs/MacpoolLeaseListAllOf.md)
- - [MacpoolLeaseRelationship](docs/MacpoolLeaseRelationship.md)
- - [MacpoolLeaseResponse](docs/MacpoolLeaseResponse.md)
- - [MacpoolPool](docs/MacpoolPool.md)
- - [MacpoolPoolAllOf](docs/MacpoolPoolAllOf.md)
- - [MacpoolPoolList](docs/MacpoolPoolList.md)
- - [MacpoolPoolListAllOf](docs/MacpoolPoolListAllOf.md)
- - [MacpoolPoolMember](docs/MacpoolPoolMember.md)
- - [MacpoolPoolMemberAllOf](docs/MacpoolPoolMemberAllOf.md)
- - [MacpoolPoolMemberList](docs/MacpoolPoolMemberList.md)
- - [MacpoolPoolMemberListAllOf](docs/MacpoolPoolMemberListAllOf.md)
- - [MacpoolPoolMemberRelationship](docs/MacpoolPoolMemberRelationship.md)
- - [MacpoolPoolMemberResponse](docs/MacpoolPoolMemberResponse.md)
- - [MacpoolPoolRelationship](docs/MacpoolPoolRelationship.md)
- - [MacpoolPoolResponse](docs/MacpoolPoolResponse.md)
- - [MacpoolUniverse](docs/MacpoolUniverse.md)
- - [MacpoolUniverseAllOf](docs/MacpoolUniverseAllOf.md)
- - [MacpoolUniverseList](docs/MacpoolUniverseList.md)
- - [MacpoolUniverseListAllOf](docs/MacpoolUniverseListAllOf.md)
- - [MacpoolUniverseRelationship](docs/MacpoolUniverseRelationship.md)
- - [MacpoolUniverseResponse](docs/MacpoolUniverseResponse.md)
- - [ManagementController](docs/ManagementController.md)
- - [ManagementControllerAllOf](docs/ManagementControllerAllOf.md)
- - [ManagementControllerList](docs/ManagementControllerList.md)
- - [ManagementControllerListAllOf](docs/ManagementControllerListAllOf.md)
- - [ManagementControllerRelationship](docs/ManagementControllerRelationship.md)
- - [ManagementControllerResponse](docs/ManagementControllerResponse.md)
- - [ManagementEntity](docs/ManagementEntity.md)
- - [ManagementEntityAllOf](docs/ManagementEntityAllOf.md)
- - [ManagementEntityList](docs/ManagementEntityList.md)
- - [ManagementEntityListAllOf](docs/ManagementEntityListAllOf.md)
- - [ManagementEntityRelationship](docs/ManagementEntityRelationship.md)
- - [ManagementEntityResponse](docs/ManagementEntityResponse.md)
- - [ManagementInterface](docs/ManagementInterface.md)
- - [ManagementInterfaceAllOf](docs/ManagementInterfaceAllOf.md)
- - [ManagementInterfaceList](docs/ManagementInterfaceList.md)
- - [ManagementInterfaceListAllOf](docs/ManagementInterfaceListAllOf.md)
- - [ManagementInterfaceRelationship](docs/ManagementInterfaceRelationship.md)
- - [ManagementInterfaceResponse](docs/ManagementInterfaceResponse.md)
- - [MemoryAbstractUnit](docs/MemoryAbstractUnit.md)
- - [MemoryAbstractUnitAllOf](docs/MemoryAbstractUnitAllOf.md)
- - [MemoryArray](docs/MemoryArray.md)
- - [MemoryArrayAllOf](docs/MemoryArrayAllOf.md)
- - [MemoryArrayList](docs/MemoryArrayList.md)
- - [MemoryArrayListAllOf](docs/MemoryArrayListAllOf.md)
- - [MemoryArrayRelationship](docs/MemoryArrayRelationship.md)
- - [MemoryArrayResponse](docs/MemoryArrayResponse.md)
- - [MemoryPersistentMemoryConfigResult](docs/MemoryPersistentMemoryConfigResult.md)
- - [MemoryPersistentMemoryConfigResultAllOf](docs/MemoryPersistentMemoryConfigResultAllOf.md)
- - [MemoryPersistentMemoryConfigResultList](docs/MemoryPersistentMemoryConfigResultList.md)
- - [MemoryPersistentMemoryConfigResultListAllOf](docs/MemoryPersistentMemoryConfigResultListAllOf.md)
- - [MemoryPersistentMemoryConfigResultRelationship](docs/MemoryPersistentMemoryConfigResultRelationship.md)
- - [MemoryPersistentMemoryConfigResultResponse](docs/MemoryPersistentMemoryConfigResultResponse.md)
- - [MemoryPersistentMemoryConfiguration](docs/MemoryPersistentMemoryConfiguration.md)
- - [MemoryPersistentMemoryConfigurationAllOf](docs/MemoryPersistentMemoryConfigurationAllOf.md)
- - [MemoryPersistentMemoryConfigurationList](docs/MemoryPersistentMemoryConfigurationList.md)
- - [MemoryPersistentMemoryConfigurationListAllOf](docs/MemoryPersistentMemoryConfigurationListAllOf.md)
- - [MemoryPersistentMemoryConfigurationRelationship](docs/MemoryPersistentMemoryConfigurationRelationship.md)
- - [MemoryPersistentMemoryConfigurationResponse](docs/MemoryPersistentMemoryConfigurationResponse.md)
- - [MemoryPersistentMemoryGoal](docs/MemoryPersistentMemoryGoal.md)
- - [MemoryPersistentMemoryGoalAllOf](docs/MemoryPersistentMemoryGoalAllOf.md)
- - [MemoryPersistentMemoryLocalSecurity](docs/MemoryPersistentMemoryLocalSecurity.md)
- - [MemoryPersistentMemoryLocalSecurityAllOf](docs/MemoryPersistentMemoryLocalSecurityAllOf.md)
- - [MemoryPersistentMemoryLogicalNamespace](docs/MemoryPersistentMemoryLogicalNamespace.md)
- - [MemoryPersistentMemoryLogicalNamespaceAllOf](docs/MemoryPersistentMemoryLogicalNamespaceAllOf.md)
- - [MemoryPersistentMemoryNamespace](docs/MemoryPersistentMemoryNamespace.md)
- - [MemoryPersistentMemoryNamespaceAllOf](docs/MemoryPersistentMemoryNamespaceAllOf.md)
- - [MemoryPersistentMemoryNamespaceConfigResult](docs/MemoryPersistentMemoryNamespaceConfigResult.md)
- - [MemoryPersistentMemoryNamespaceConfigResultAllOf](docs/MemoryPersistentMemoryNamespaceConfigResultAllOf.md)
- - [MemoryPersistentMemoryNamespaceConfigResultList](docs/MemoryPersistentMemoryNamespaceConfigResultList.md)
- - [MemoryPersistentMemoryNamespaceConfigResultListAllOf](docs/MemoryPersistentMemoryNamespaceConfigResultListAllOf.md)
- - [MemoryPersistentMemoryNamespaceConfigResultRelationship](docs/MemoryPersistentMemoryNamespaceConfigResultRelationship.md)
- - [MemoryPersistentMemoryNamespaceConfigResultResponse](docs/MemoryPersistentMemoryNamespaceConfigResultResponse.md)
- - [MemoryPersistentMemoryNamespaceList](docs/MemoryPersistentMemoryNamespaceList.md)
- - [MemoryPersistentMemoryNamespaceListAllOf](docs/MemoryPersistentMemoryNamespaceListAllOf.md)
- - [MemoryPersistentMemoryNamespaceRelationship](docs/MemoryPersistentMemoryNamespaceRelationship.md)
- - [MemoryPersistentMemoryNamespaceResponse](docs/MemoryPersistentMemoryNamespaceResponse.md)
- - [MemoryPersistentMemoryPolicy](docs/MemoryPersistentMemoryPolicy.md)
- - [MemoryPersistentMemoryPolicyAllOf](docs/MemoryPersistentMemoryPolicyAllOf.md)
- - [MemoryPersistentMemoryPolicyList](docs/MemoryPersistentMemoryPolicyList.md)
- - [MemoryPersistentMemoryPolicyListAllOf](docs/MemoryPersistentMemoryPolicyListAllOf.md)
- - [MemoryPersistentMemoryPolicyResponse](docs/MemoryPersistentMemoryPolicyResponse.md)
- - [MemoryPersistentMemoryRegion](docs/MemoryPersistentMemoryRegion.md)
- - [MemoryPersistentMemoryRegionAllOf](docs/MemoryPersistentMemoryRegionAllOf.md)
- - [MemoryPersistentMemoryRegionList](docs/MemoryPersistentMemoryRegionList.md)
- - [MemoryPersistentMemoryRegionListAllOf](docs/MemoryPersistentMemoryRegionListAllOf.md)
- - [MemoryPersistentMemoryRegionRelationship](docs/MemoryPersistentMemoryRegionRelationship.md)
- - [MemoryPersistentMemoryRegionResponse](docs/MemoryPersistentMemoryRegionResponse.md)
- - [MemoryPersistentMemoryUnit](docs/MemoryPersistentMemoryUnit.md)
- - [MemoryPersistentMemoryUnitAllOf](docs/MemoryPersistentMemoryUnitAllOf.md)
- - [MemoryPersistentMemoryUnitList](docs/MemoryPersistentMemoryUnitList.md)
- - [MemoryPersistentMemoryUnitListAllOf](docs/MemoryPersistentMemoryUnitListAllOf.md)
- - [MemoryPersistentMemoryUnitRelationship](docs/MemoryPersistentMemoryUnitRelationship.md)
- - [MemoryPersistentMemoryUnitResponse](docs/MemoryPersistentMemoryUnitResponse.md)
- - [MemoryUnit](docs/MemoryUnit.md)
- - [MemoryUnitAllOf](docs/MemoryUnitAllOf.md)
- - [MemoryUnitList](docs/MemoryUnitList.md)
- - [MemoryUnitListAllOf](docs/MemoryUnitListAllOf.md)
- - [MemoryUnitRelationship](docs/MemoryUnitRelationship.md)
- - [MemoryUnitResponse](docs/MemoryUnitResponse.md)
- - [MetaAccessPrivilege](docs/MetaAccessPrivilege.md)
- - [MetaAccessPrivilegeAllOf](docs/MetaAccessPrivilegeAllOf.md)
- - [MetaDefinition](docs/MetaDefinition.md)
- - [MetaDefinitionAllOf](docs/MetaDefinitionAllOf.md)
- - [MetaDefinitionList](docs/MetaDefinitionList.md)
- - [MetaDefinitionListAllOf](docs/MetaDefinitionListAllOf.md)
- - [MetaDefinitionResponse](docs/MetaDefinitionResponse.md)
- - [MetaDisplayNameDefinition](docs/MetaDisplayNameDefinition.md)
- - [MetaDisplayNameDefinitionAllOf](docs/MetaDisplayNameDefinitionAllOf.md)
- - [MetaPropDefinition](docs/MetaPropDefinition.md)
- - [MetaPropDefinitionAllOf](docs/MetaPropDefinitionAllOf.md)
- - [MetaRelationshipDefinition](docs/MetaRelationshipDefinition.md)
- - [MetaRelationshipDefinitionAllOf](docs/MetaRelationshipDefinitionAllOf.md)
- - [MoAggregateTransform](docs/MoAggregateTransform.md)
- - [MoAggregateTransformAllOf](docs/MoAggregateTransformAllOf.md)
- - [MoBaseComplexType](docs/MoBaseComplexType.md)
- - [MoBaseMo](docs/MoBaseMo.md)
- - [MoBaseMoRelationship](docs/MoBaseMoRelationship.md)
- - [MoBaseResponse](docs/MoBaseResponse.md)
- - [MoDocumentCount](docs/MoDocumentCount.md)
- - [MoDocumentCountAllOf](docs/MoDocumentCountAllOf.md)
- - [MoMoRef](docs/MoMoRef.md)
- - [MoTag](docs/MoTag.md)
- - [MoTagKeySummary](docs/MoTagKeySummary.md)
- - [MoTagSummary](docs/MoTagSummary.md)
- - [MoTagSummaryAllOf](docs/MoTagSummaryAllOf.md)
- - [MoVersionContext](docs/MoVersionContext.md)
- - [MoVersionContextAllOf](docs/MoVersionContextAllOf.md)
- - [NetworkElement](docs/NetworkElement.md)
- - [NetworkElementAllOf](docs/NetworkElementAllOf.md)
- - [NetworkElementList](docs/NetworkElementList.md)
- - [NetworkElementListAllOf](docs/NetworkElementListAllOf.md)
- - [NetworkElementRelationship](docs/NetworkElementRelationship.md)
- - [NetworkElementResponse](docs/NetworkElementResponse.md)
- - [NetworkElementSummary](docs/NetworkElementSummary.md)
- - [NetworkElementSummaryAllOf](docs/NetworkElementSummaryAllOf.md)
- - [NetworkElementSummaryList](docs/NetworkElementSummaryList.md)
- - [NetworkElementSummaryListAllOf](docs/NetworkElementSummaryListAllOf.md)
- - [NetworkElementSummaryResponse](docs/NetworkElementSummaryResponse.md)
- - [NetworkFcZoneInfo](docs/NetworkFcZoneInfo.md)
- - [NetworkFcZoneInfoAllOf](docs/NetworkFcZoneInfoAllOf.md)
- - [NetworkFcZoneInfoList](docs/NetworkFcZoneInfoList.md)
- - [NetworkFcZoneInfoListAllOf](docs/NetworkFcZoneInfoListAllOf.md)
- - [NetworkFcZoneInfoRelationship](docs/NetworkFcZoneInfoRelationship.md)
- - [NetworkFcZoneInfoResponse](docs/NetworkFcZoneInfoResponse.md)
- - [NetworkVlanPortInfo](docs/NetworkVlanPortInfo.md)
- - [NetworkVlanPortInfoAllOf](docs/NetworkVlanPortInfoAllOf.md)
- - [NetworkVlanPortInfoList](docs/NetworkVlanPortInfoList.md)
- - [NetworkVlanPortInfoListAllOf](docs/NetworkVlanPortInfoListAllOf.md)
- - [NetworkVlanPortInfoRelationship](docs/NetworkVlanPortInfoRelationship.md)
- - [NetworkVlanPortInfoResponse](docs/NetworkVlanPortInfoResponse.md)
- - [NetworkconfigPolicy](docs/NetworkconfigPolicy.md)
- - [NetworkconfigPolicyAllOf](docs/NetworkconfigPolicyAllOf.md)
- - [NetworkconfigPolicyList](docs/NetworkconfigPolicyList.md)
- - [NetworkconfigPolicyListAllOf](docs/NetworkconfigPolicyListAllOf.md)
- - [NetworkconfigPolicyResponse](docs/NetworkconfigPolicyResponse.md)
- - [NiaapiApicCcoPost](docs/NiaapiApicCcoPost.md)
- - [NiaapiApicCcoPostList](docs/NiaapiApicCcoPostList.md)
- - [NiaapiApicCcoPostListAllOf](docs/NiaapiApicCcoPostListAllOf.md)
- - [NiaapiApicCcoPostResponse](docs/NiaapiApicCcoPostResponse.md)
- - [NiaapiApicFieldNotice](docs/NiaapiApicFieldNotice.md)
- - [NiaapiApicFieldNoticeList](docs/NiaapiApicFieldNoticeList.md)
- - [NiaapiApicFieldNoticeListAllOf](docs/NiaapiApicFieldNoticeListAllOf.md)
- - [NiaapiApicFieldNoticeResponse](docs/NiaapiApicFieldNoticeResponse.md)
- - [NiaapiApicHweol](docs/NiaapiApicHweol.md)
- - [NiaapiApicHweolList](docs/NiaapiApicHweolList.md)
- - [NiaapiApicHweolListAllOf](docs/NiaapiApicHweolListAllOf.md)
- - [NiaapiApicHweolResponse](docs/NiaapiApicHweolResponse.md)
- - [NiaapiApicLatestMaintainedRelease](docs/NiaapiApicLatestMaintainedRelease.md)
- - [NiaapiApicLatestMaintainedReleaseList](docs/NiaapiApicLatestMaintainedReleaseList.md)
- - [NiaapiApicLatestMaintainedReleaseListAllOf](docs/NiaapiApicLatestMaintainedReleaseListAllOf.md)
- - [NiaapiApicLatestMaintainedReleaseResponse](docs/NiaapiApicLatestMaintainedReleaseResponse.md)
- - [NiaapiApicReleaseRecommend](docs/NiaapiApicReleaseRecommend.md)
- - [NiaapiApicReleaseRecommendList](docs/NiaapiApicReleaseRecommendList.md)
- - [NiaapiApicReleaseRecommendListAllOf](docs/NiaapiApicReleaseRecommendListAllOf.md)
- - [NiaapiApicReleaseRecommendResponse](docs/NiaapiApicReleaseRecommendResponse.md)
- - [NiaapiApicSweol](docs/NiaapiApicSweol.md)
- - [NiaapiApicSweolList](docs/NiaapiApicSweolList.md)
- - [NiaapiApicSweolListAllOf](docs/NiaapiApicSweolListAllOf.md)
- - [NiaapiApicSweolResponse](docs/NiaapiApicSweolResponse.md)
- - [NiaapiDcnmCcoPost](docs/NiaapiDcnmCcoPost.md)
- - [NiaapiDcnmCcoPostList](docs/NiaapiDcnmCcoPostList.md)
- - [NiaapiDcnmCcoPostListAllOf](docs/NiaapiDcnmCcoPostListAllOf.md)
- - [NiaapiDcnmCcoPostResponse](docs/NiaapiDcnmCcoPostResponse.md)
- - [NiaapiDcnmFieldNotice](docs/NiaapiDcnmFieldNotice.md)
- - [NiaapiDcnmFieldNoticeList](docs/NiaapiDcnmFieldNoticeList.md)
- - [NiaapiDcnmFieldNoticeListAllOf](docs/NiaapiDcnmFieldNoticeListAllOf.md)
- - [NiaapiDcnmFieldNoticeResponse](docs/NiaapiDcnmFieldNoticeResponse.md)
- - [NiaapiDcnmHweol](docs/NiaapiDcnmHweol.md)
- - [NiaapiDcnmHweolList](docs/NiaapiDcnmHweolList.md)
- - [NiaapiDcnmHweolListAllOf](docs/NiaapiDcnmHweolListAllOf.md)
- - [NiaapiDcnmHweolResponse](docs/NiaapiDcnmHweolResponse.md)
- - [NiaapiDcnmLatestMaintainedRelease](docs/NiaapiDcnmLatestMaintainedRelease.md)
- - [NiaapiDcnmLatestMaintainedReleaseList](docs/NiaapiDcnmLatestMaintainedReleaseList.md)
- - [NiaapiDcnmLatestMaintainedReleaseListAllOf](docs/NiaapiDcnmLatestMaintainedReleaseListAllOf.md)
- - [NiaapiDcnmLatestMaintainedReleaseResponse](docs/NiaapiDcnmLatestMaintainedReleaseResponse.md)
- - [NiaapiDcnmReleaseRecommend](docs/NiaapiDcnmReleaseRecommend.md)
- - [NiaapiDcnmReleaseRecommendList](docs/NiaapiDcnmReleaseRecommendList.md)
- - [NiaapiDcnmReleaseRecommendListAllOf](docs/NiaapiDcnmReleaseRecommendListAllOf.md)
- - [NiaapiDcnmReleaseRecommendResponse](docs/NiaapiDcnmReleaseRecommendResponse.md)
- - [NiaapiDcnmSweol](docs/NiaapiDcnmSweol.md)
- - [NiaapiDcnmSweolList](docs/NiaapiDcnmSweolList.md)
- - [NiaapiDcnmSweolListAllOf](docs/NiaapiDcnmSweolListAllOf.md)
- - [NiaapiDcnmSweolResponse](docs/NiaapiDcnmSweolResponse.md)
- - [NiaapiDetail](docs/NiaapiDetail.md)
- - [NiaapiDetailAllOf](docs/NiaapiDetailAllOf.md)
- - [NiaapiFieldNotice](docs/NiaapiFieldNotice.md)
- - [NiaapiFieldNoticeAllOf](docs/NiaapiFieldNoticeAllOf.md)
- - [NiaapiFileDownloader](docs/NiaapiFileDownloader.md)
- - [NiaapiFileDownloaderAllOf](docs/NiaapiFileDownloaderAllOf.md)
- - [NiaapiFileDownloaderList](docs/NiaapiFileDownloaderList.md)
- - [NiaapiFileDownloaderListAllOf](docs/NiaapiFileDownloaderListAllOf.md)
- - [NiaapiFileDownloaderResponse](docs/NiaapiFileDownloaderResponse.md)
- - [NiaapiHardwareEol](docs/NiaapiHardwareEol.md)
- - [NiaapiHardwareEolAllOf](docs/NiaapiHardwareEolAllOf.md)
- - [NiaapiMaintainedRelease](docs/NiaapiMaintainedRelease.md)
- - [NiaapiMaintainedReleaseAllOf](docs/NiaapiMaintainedReleaseAllOf.md)
- - [NiaapiNewReleaseDetail](docs/NiaapiNewReleaseDetail.md)
- - [NiaapiNewReleaseDetailAllOf](docs/NiaapiNewReleaseDetailAllOf.md)
- - [NiaapiNewReleasePost](docs/NiaapiNewReleasePost.md)
- - [NiaapiNewReleasePostAllOf](docs/NiaapiNewReleasePostAllOf.md)
- - [NiaapiNiaMetadata](docs/NiaapiNiaMetadata.md)
- - [NiaapiNiaMetadataAllOf](docs/NiaapiNiaMetadataAllOf.md)
- - [NiaapiNiaMetadataList](docs/NiaapiNiaMetadataList.md)
- - [NiaapiNiaMetadataListAllOf](docs/NiaapiNiaMetadataListAllOf.md)
- - [NiaapiNiaMetadataResponse](docs/NiaapiNiaMetadataResponse.md)
- - [NiaapiNibFileDownloader](docs/NiaapiNibFileDownloader.md)
- - [NiaapiNibFileDownloaderAllOf](docs/NiaapiNibFileDownloaderAllOf.md)
- - [NiaapiNibFileDownloaderList](docs/NiaapiNibFileDownloaderList.md)
- - [NiaapiNibFileDownloaderListAllOf](docs/NiaapiNibFileDownloaderListAllOf.md)
- - [NiaapiNibFileDownloaderResponse](docs/NiaapiNibFileDownloaderResponse.md)
- - [NiaapiNibMetadata](docs/NiaapiNibMetadata.md)
- - [NiaapiNibMetadataAllOf](docs/NiaapiNibMetadataAllOf.md)
- - [NiaapiNibMetadataList](docs/NiaapiNibMetadataList.md)
- - [NiaapiNibMetadataListAllOf](docs/NiaapiNibMetadataListAllOf.md)
- - [NiaapiNibMetadataResponse](docs/NiaapiNibMetadataResponse.md)
- - [NiaapiReleaseRecommend](docs/NiaapiReleaseRecommend.md)
- - [NiaapiReleaseRecommendAllOf](docs/NiaapiReleaseRecommendAllOf.md)
- - [NiaapiRevisionInfo](docs/NiaapiRevisionInfo.md)
- - [NiaapiRevisionInfoAllOf](docs/NiaapiRevisionInfoAllOf.md)
- - [NiaapiSoftwareEol](docs/NiaapiSoftwareEol.md)
- - [NiaapiSoftwareEolAllOf](docs/NiaapiSoftwareEolAllOf.md)
- - [NiaapiSoftwareRegex](docs/NiaapiSoftwareRegex.md)
- - [NiaapiSoftwareRegexAllOf](docs/NiaapiSoftwareRegexAllOf.md)
- - [NiaapiVersionRegex](docs/NiaapiVersionRegex.md)
- - [NiaapiVersionRegexAllOf](docs/NiaapiVersionRegexAllOf.md)
- - [NiaapiVersionRegexList](docs/NiaapiVersionRegexList.md)
- - [NiaapiVersionRegexListAllOf](docs/NiaapiVersionRegexListAllOf.md)
- - [NiaapiVersionRegexPlatform](docs/NiaapiVersionRegexPlatform.md)
- - [NiaapiVersionRegexPlatformAllOf](docs/NiaapiVersionRegexPlatformAllOf.md)
- - [NiaapiVersionRegexResponse](docs/NiaapiVersionRegexResponse.md)
- - [NiatelemetryAaaLdapProviderDetails](docs/NiatelemetryAaaLdapProviderDetails.md)
- - [NiatelemetryAaaLdapProviderDetailsAllOf](docs/NiatelemetryAaaLdapProviderDetailsAllOf.md)
- - [NiatelemetryAaaLdapProviderDetailsList](docs/NiatelemetryAaaLdapProviderDetailsList.md)
- - [NiatelemetryAaaLdapProviderDetailsListAllOf](docs/NiatelemetryAaaLdapProviderDetailsListAllOf.md)
- - [NiatelemetryAaaLdapProviderDetailsResponse](docs/NiatelemetryAaaLdapProviderDetailsResponse.md)
- - [NiatelemetryAaaRadiusProviderDetails](docs/NiatelemetryAaaRadiusProviderDetails.md)
- - [NiatelemetryAaaRadiusProviderDetailsAllOf](docs/NiatelemetryAaaRadiusProviderDetailsAllOf.md)
- - [NiatelemetryAaaRadiusProviderDetailsList](docs/NiatelemetryAaaRadiusProviderDetailsList.md)
- - [NiatelemetryAaaRadiusProviderDetailsListAllOf](docs/NiatelemetryAaaRadiusProviderDetailsListAllOf.md)
- - [NiatelemetryAaaRadiusProviderDetailsResponse](docs/NiatelemetryAaaRadiusProviderDetailsResponse.md)
- - [NiatelemetryAaaTacacsProviderDetails](docs/NiatelemetryAaaTacacsProviderDetails.md)
- - [NiatelemetryAaaTacacsProviderDetailsAllOf](docs/NiatelemetryAaaTacacsProviderDetailsAllOf.md)
- - [NiatelemetryAaaTacacsProviderDetailsList](docs/NiatelemetryAaaTacacsProviderDetailsList.md)
- - [NiatelemetryAaaTacacsProviderDetailsListAllOf](docs/NiatelemetryAaaTacacsProviderDetailsListAllOf.md)
- - [NiatelemetryAaaTacacsProviderDetailsResponse](docs/NiatelemetryAaaTacacsProviderDetailsResponse.md)
- - [NiatelemetryApicCoreFileDetails](docs/NiatelemetryApicCoreFileDetails.md)
- - [NiatelemetryApicCoreFileDetailsAllOf](docs/NiatelemetryApicCoreFileDetailsAllOf.md)
- - [NiatelemetryApicCoreFileDetailsList](docs/NiatelemetryApicCoreFileDetailsList.md)
- - [NiatelemetryApicCoreFileDetailsListAllOf](docs/NiatelemetryApicCoreFileDetailsListAllOf.md)
- - [NiatelemetryApicCoreFileDetailsResponse](docs/NiatelemetryApicCoreFileDetailsResponse.md)
- - [NiatelemetryApicDbgexpRsExportDest](docs/NiatelemetryApicDbgexpRsExportDest.md)
- - [NiatelemetryApicDbgexpRsExportDestAllOf](docs/NiatelemetryApicDbgexpRsExportDestAllOf.md)
- - [NiatelemetryApicDbgexpRsExportDestList](docs/NiatelemetryApicDbgexpRsExportDestList.md)
- - [NiatelemetryApicDbgexpRsExportDestListAllOf](docs/NiatelemetryApicDbgexpRsExportDestListAllOf.md)
- - [NiatelemetryApicDbgexpRsExportDestResponse](docs/NiatelemetryApicDbgexpRsExportDestResponse.md)
- - [NiatelemetryApicDbgexpRsTsScheduler](docs/NiatelemetryApicDbgexpRsTsScheduler.md)
- - [NiatelemetryApicDbgexpRsTsSchedulerAllOf](docs/NiatelemetryApicDbgexpRsTsSchedulerAllOf.md)
- - [NiatelemetryApicDbgexpRsTsSchedulerList](docs/NiatelemetryApicDbgexpRsTsSchedulerList.md)
- - [NiatelemetryApicDbgexpRsTsSchedulerListAllOf](docs/NiatelemetryApicDbgexpRsTsSchedulerListAllOf.md)
- - [NiatelemetryApicDbgexpRsTsSchedulerResponse](docs/NiatelemetryApicDbgexpRsTsSchedulerResponse.md)
- - [NiatelemetryApicFanDetails](docs/NiatelemetryApicFanDetails.md)
- - [NiatelemetryApicFanDetailsAllOf](docs/NiatelemetryApicFanDetailsAllOf.md)
- - [NiatelemetryApicFanDetailsList](docs/NiatelemetryApicFanDetailsList.md)
- - [NiatelemetryApicFanDetailsListAllOf](docs/NiatelemetryApicFanDetailsListAllOf.md)
- - [NiatelemetryApicFanDetailsResponse](docs/NiatelemetryApicFanDetailsResponse.md)
- - [NiatelemetryApicFexDetails](docs/NiatelemetryApicFexDetails.md)
- - [NiatelemetryApicFexDetailsAllOf](docs/NiatelemetryApicFexDetailsAllOf.md)
- - [NiatelemetryApicFexDetailsList](docs/NiatelemetryApicFexDetailsList.md)
- - [NiatelemetryApicFexDetailsListAllOf](docs/NiatelemetryApicFexDetailsListAllOf.md)
- - [NiatelemetryApicFexDetailsResponse](docs/NiatelemetryApicFexDetailsResponse.md)
- - [NiatelemetryApicFlashDetails](docs/NiatelemetryApicFlashDetails.md)
- - [NiatelemetryApicFlashDetailsAllOf](docs/NiatelemetryApicFlashDetailsAllOf.md)
- - [NiatelemetryApicFlashDetailsList](docs/NiatelemetryApicFlashDetailsList.md)
- - [NiatelemetryApicFlashDetailsListAllOf](docs/NiatelemetryApicFlashDetailsListAllOf.md)
- - [NiatelemetryApicFlashDetailsResponse](docs/NiatelemetryApicFlashDetailsResponse.md)
- - [NiatelemetryApicNtpAuth](docs/NiatelemetryApicNtpAuth.md)
- - [NiatelemetryApicNtpAuthAllOf](docs/NiatelemetryApicNtpAuthAllOf.md)
- - [NiatelemetryApicNtpAuthList](docs/NiatelemetryApicNtpAuthList.md)
- - [NiatelemetryApicNtpAuthListAllOf](docs/NiatelemetryApicNtpAuthListAllOf.md)
- - [NiatelemetryApicNtpAuthResponse](docs/NiatelemetryApicNtpAuthResponse.md)
- - [NiatelemetryApicPsuDetails](docs/NiatelemetryApicPsuDetails.md)
- - [NiatelemetryApicPsuDetailsAllOf](docs/NiatelemetryApicPsuDetailsAllOf.md)
- - [NiatelemetryApicPsuDetailsList](docs/NiatelemetryApicPsuDetailsList.md)
- - [NiatelemetryApicPsuDetailsListAllOf](docs/NiatelemetryApicPsuDetailsListAllOf.md)
- - [NiatelemetryApicPsuDetailsResponse](docs/NiatelemetryApicPsuDetailsResponse.md)
- - [NiatelemetryApicRealmDetails](docs/NiatelemetryApicRealmDetails.md)
- - [NiatelemetryApicRealmDetailsAllOf](docs/NiatelemetryApicRealmDetailsAllOf.md)
- - [NiatelemetryApicRealmDetailsList](docs/NiatelemetryApicRealmDetailsList.md)
- - [NiatelemetryApicRealmDetailsListAllOf](docs/NiatelemetryApicRealmDetailsListAllOf.md)
- - [NiatelemetryApicRealmDetailsResponse](docs/NiatelemetryApicRealmDetailsResponse.md)
- - [NiatelemetryApicSnmpCommunityAccessDetails](docs/NiatelemetryApicSnmpCommunityAccessDetails.md)
- - [NiatelemetryApicSnmpCommunityAccessDetailsAllOf](docs/NiatelemetryApicSnmpCommunityAccessDetailsAllOf.md)
- - [NiatelemetryApicSnmpCommunityAccessDetailsList](docs/NiatelemetryApicSnmpCommunityAccessDetailsList.md)
- - [NiatelemetryApicSnmpCommunityAccessDetailsListAllOf](docs/NiatelemetryApicSnmpCommunityAccessDetailsListAllOf.md)
- - [NiatelemetryApicSnmpCommunityAccessDetailsResponse](docs/NiatelemetryApicSnmpCommunityAccessDetailsResponse.md)
- - [NiatelemetryApicSnmpCommunityDetails](docs/NiatelemetryApicSnmpCommunityDetails.md)
- - [NiatelemetryApicSnmpCommunityDetailsAllOf](docs/NiatelemetryApicSnmpCommunityDetailsAllOf.md)
- - [NiatelemetryApicSnmpCommunityDetailsList](docs/NiatelemetryApicSnmpCommunityDetailsList.md)
- - [NiatelemetryApicSnmpCommunityDetailsListAllOf](docs/NiatelemetryApicSnmpCommunityDetailsListAllOf.md)
- - [NiatelemetryApicSnmpCommunityDetailsResponse](docs/NiatelemetryApicSnmpCommunityDetailsResponse.md)
- - [NiatelemetryApicSnmpTrapDetails](docs/NiatelemetryApicSnmpTrapDetails.md)
- - [NiatelemetryApicSnmpTrapDetailsAllOf](docs/NiatelemetryApicSnmpTrapDetailsAllOf.md)
- - [NiatelemetryApicSnmpTrapDetailsList](docs/NiatelemetryApicSnmpTrapDetailsList.md)
- - [NiatelemetryApicSnmpTrapDetailsListAllOf](docs/NiatelemetryApicSnmpTrapDetailsListAllOf.md)
- - [NiatelemetryApicSnmpTrapDetailsResponse](docs/NiatelemetryApicSnmpTrapDetailsResponse.md)
- - [NiatelemetryApicSnmpVersionThreeDetails](docs/NiatelemetryApicSnmpVersionThreeDetails.md)
- - [NiatelemetryApicSnmpVersionThreeDetailsAllOf](docs/NiatelemetryApicSnmpVersionThreeDetailsAllOf.md)
- - [NiatelemetryApicSnmpVersionThreeDetailsList](docs/NiatelemetryApicSnmpVersionThreeDetailsList.md)
- - [NiatelemetryApicSnmpVersionThreeDetailsListAllOf](docs/NiatelemetryApicSnmpVersionThreeDetailsListAllOf.md)
- - [NiatelemetryApicSnmpVersionThreeDetailsResponse](docs/NiatelemetryApicSnmpVersionThreeDetailsResponse.md)
- - [NiatelemetryApicSysLogGrp](docs/NiatelemetryApicSysLogGrp.md)
- - [NiatelemetryApicSysLogGrpAllOf](docs/NiatelemetryApicSysLogGrpAllOf.md)
- - [NiatelemetryApicSysLogGrpList](docs/NiatelemetryApicSysLogGrpList.md)
- - [NiatelemetryApicSysLogGrpListAllOf](docs/NiatelemetryApicSysLogGrpListAllOf.md)
- - [NiatelemetryApicSysLogGrpResponse](docs/NiatelemetryApicSysLogGrpResponse.md)
- - [NiatelemetryApicSysLogSrc](docs/NiatelemetryApicSysLogSrc.md)
- - [NiatelemetryApicSysLogSrcAllOf](docs/NiatelemetryApicSysLogSrcAllOf.md)
- - [NiatelemetryApicSysLogSrcList](docs/NiatelemetryApicSysLogSrcList.md)
- - [NiatelemetryApicSysLogSrcListAllOf](docs/NiatelemetryApicSysLogSrcListAllOf.md)
- - [NiatelemetryApicSysLogSrcResponse](docs/NiatelemetryApicSysLogSrcResponse.md)
- - [NiatelemetryApicTransceiverDetails](docs/NiatelemetryApicTransceiverDetails.md)
- - [NiatelemetryApicTransceiverDetailsAllOf](docs/NiatelemetryApicTransceiverDetailsAllOf.md)
- - [NiatelemetryApicTransceiverDetailsList](docs/NiatelemetryApicTransceiverDetailsList.md)
- - [NiatelemetryApicTransceiverDetailsListAllOf](docs/NiatelemetryApicTransceiverDetailsListAllOf.md)
- - [NiatelemetryApicTransceiverDetailsResponse](docs/NiatelemetryApicTransceiverDetailsResponse.md)
- - [NiatelemetryApicUiPageCounts](docs/NiatelemetryApicUiPageCounts.md)
- - [NiatelemetryApicUiPageCountsAllOf](docs/NiatelemetryApicUiPageCountsAllOf.md)
- - [NiatelemetryApicUiPageCountsList](docs/NiatelemetryApicUiPageCountsList.md)
- - [NiatelemetryApicUiPageCountsListAllOf](docs/NiatelemetryApicUiPageCountsListAllOf.md)
- - [NiatelemetryApicUiPageCountsResponse](docs/NiatelemetryApicUiPageCountsResponse.md)
- - [NiatelemetryAppDetails](docs/NiatelemetryAppDetails.md)
- - [NiatelemetryAppDetailsAllOf](docs/NiatelemetryAppDetailsAllOf.md)
- - [NiatelemetryAppDetailsList](docs/NiatelemetryAppDetailsList.md)
- - [NiatelemetryAppDetailsListAllOf](docs/NiatelemetryAppDetailsListAllOf.md)
- - [NiatelemetryAppDetailsResponse](docs/NiatelemetryAppDetailsResponse.md)
- - [NiatelemetryBootflashDetails](docs/NiatelemetryBootflashDetails.md)
- - [NiatelemetryBootflashDetailsAllOf](docs/NiatelemetryBootflashDetailsAllOf.md)
- - [NiatelemetryDcnmFanDetails](docs/NiatelemetryDcnmFanDetails.md)
- - [NiatelemetryDcnmFanDetailsAllOf](docs/NiatelemetryDcnmFanDetailsAllOf.md)
- - [NiatelemetryDcnmFanDetailsList](docs/NiatelemetryDcnmFanDetailsList.md)
- - [NiatelemetryDcnmFanDetailsListAllOf](docs/NiatelemetryDcnmFanDetailsListAllOf.md)
- - [NiatelemetryDcnmFanDetailsResponse](docs/NiatelemetryDcnmFanDetailsResponse.md)
- - [NiatelemetryDcnmFexDetails](docs/NiatelemetryDcnmFexDetails.md)
- - [NiatelemetryDcnmFexDetailsAllOf](docs/NiatelemetryDcnmFexDetailsAllOf.md)
- - [NiatelemetryDcnmFexDetailsList](docs/NiatelemetryDcnmFexDetailsList.md)
- - [NiatelemetryDcnmFexDetailsListAllOf](docs/NiatelemetryDcnmFexDetailsListAllOf.md)
- - [NiatelemetryDcnmFexDetailsResponse](docs/NiatelemetryDcnmFexDetailsResponse.md)
- - [NiatelemetryDcnmModuleDetails](docs/NiatelemetryDcnmModuleDetails.md)
- - [NiatelemetryDcnmModuleDetailsAllOf](docs/NiatelemetryDcnmModuleDetailsAllOf.md)
- - [NiatelemetryDcnmModuleDetailsList](docs/NiatelemetryDcnmModuleDetailsList.md)
- - [NiatelemetryDcnmModuleDetailsListAllOf](docs/NiatelemetryDcnmModuleDetailsListAllOf.md)
- - [NiatelemetryDcnmModuleDetailsResponse](docs/NiatelemetryDcnmModuleDetailsResponse.md)
- - [NiatelemetryDcnmPsuDetails](docs/NiatelemetryDcnmPsuDetails.md)
- - [NiatelemetryDcnmPsuDetailsAllOf](docs/NiatelemetryDcnmPsuDetailsAllOf.md)
- - [NiatelemetryDcnmPsuDetailsList](docs/NiatelemetryDcnmPsuDetailsList.md)
- - [NiatelemetryDcnmPsuDetailsListAllOf](docs/NiatelemetryDcnmPsuDetailsListAllOf.md)
- - [NiatelemetryDcnmPsuDetailsResponse](docs/NiatelemetryDcnmPsuDetailsResponse.md)
- - [NiatelemetryDcnmTransceiverDetails](docs/NiatelemetryDcnmTransceiverDetails.md)
- - [NiatelemetryDcnmTransceiverDetailsAllOf](docs/NiatelemetryDcnmTransceiverDetailsAllOf.md)
- - [NiatelemetryDcnmTransceiverDetailsList](docs/NiatelemetryDcnmTransceiverDetailsList.md)
- - [NiatelemetryDcnmTransceiverDetailsListAllOf](docs/NiatelemetryDcnmTransceiverDetailsListAllOf.md)
- - [NiatelemetryDcnmTransceiverDetailsResponse](docs/NiatelemetryDcnmTransceiverDetailsResponse.md)
- - [NiatelemetryDiskinfo](docs/NiatelemetryDiskinfo.md)
- - [NiatelemetryDiskinfoAllOf](docs/NiatelemetryDiskinfoAllOf.md)
- - [NiatelemetryEpg](docs/NiatelemetryEpg.md)
- - [NiatelemetryEpgAllOf](docs/NiatelemetryEpgAllOf.md)
- - [NiatelemetryEpgList](docs/NiatelemetryEpgList.md)
- - [NiatelemetryEpgListAllOf](docs/NiatelemetryEpgListAllOf.md)
- - [NiatelemetryEpgResponse](docs/NiatelemetryEpgResponse.md)
- - [NiatelemetryFabricModuleDetails](docs/NiatelemetryFabricModuleDetails.md)
- - [NiatelemetryFabricModuleDetailsAllOf](docs/NiatelemetryFabricModuleDetailsAllOf.md)
- - [NiatelemetryFabricModuleDetailsList](docs/NiatelemetryFabricModuleDetailsList.md)
- - [NiatelemetryFabricModuleDetailsListAllOf](docs/NiatelemetryFabricModuleDetailsListAllOf.md)
- - [NiatelemetryFabricModuleDetailsResponse](docs/NiatelemetryFabricModuleDetailsResponse.md)
- - [NiatelemetryFault](docs/NiatelemetryFault.md)
- - [NiatelemetryFaultAllOf](docs/NiatelemetryFaultAllOf.md)
- - [NiatelemetryFaultList](docs/NiatelemetryFaultList.md)
- - [NiatelemetryFaultListAllOf](docs/NiatelemetryFaultListAllOf.md)
- - [NiatelemetryFaultResponse](docs/NiatelemetryFaultResponse.md)
- - [NiatelemetryHttpsAclContractDetails](docs/NiatelemetryHttpsAclContractDetails.md)
- - [NiatelemetryHttpsAclContractDetailsAllOf](docs/NiatelemetryHttpsAclContractDetailsAllOf.md)
- - [NiatelemetryHttpsAclContractDetailsList](docs/NiatelemetryHttpsAclContractDetailsList.md)
- - [NiatelemetryHttpsAclContractDetailsListAllOf](docs/NiatelemetryHttpsAclContractDetailsListAllOf.md)
- - [NiatelemetryHttpsAclContractDetailsResponse](docs/NiatelemetryHttpsAclContractDetailsResponse.md)
- - [NiatelemetryHttpsAclContractFilterMap](docs/NiatelemetryHttpsAclContractFilterMap.md)
- - [NiatelemetryHttpsAclContractFilterMapAllOf](docs/NiatelemetryHttpsAclContractFilterMapAllOf.md)
- - [NiatelemetryHttpsAclContractFilterMapList](docs/NiatelemetryHttpsAclContractFilterMapList.md)
- - [NiatelemetryHttpsAclContractFilterMapListAllOf](docs/NiatelemetryHttpsAclContractFilterMapListAllOf.md)
- - [NiatelemetryHttpsAclContractFilterMapResponse](docs/NiatelemetryHttpsAclContractFilterMapResponse.md)
- - [NiatelemetryHttpsAclEpgContractMap](docs/NiatelemetryHttpsAclEpgContractMap.md)
- - [NiatelemetryHttpsAclEpgContractMapAllOf](docs/NiatelemetryHttpsAclEpgContractMapAllOf.md)
- - [NiatelemetryHttpsAclEpgContractMapList](docs/NiatelemetryHttpsAclEpgContractMapList.md)
- - [NiatelemetryHttpsAclEpgContractMapListAllOf](docs/NiatelemetryHttpsAclEpgContractMapListAllOf.md)
- - [NiatelemetryHttpsAclEpgContractMapResponse](docs/NiatelemetryHttpsAclEpgContractMapResponse.md)
- - [NiatelemetryHttpsAclEpgDetails](docs/NiatelemetryHttpsAclEpgDetails.md)
- - [NiatelemetryHttpsAclEpgDetailsAllOf](docs/NiatelemetryHttpsAclEpgDetailsAllOf.md)
- - [NiatelemetryHttpsAclEpgDetailsList](docs/NiatelemetryHttpsAclEpgDetailsList.md)
- - [NiatelemetryHttpsAclEpgDetailsListAllOf](docs/NiatelemetryHttpsAclEpgDetailsListAllOf.md)
- - [NiatelemetryHttpsAclEpgDetailsResponse](docs/NiatelemetryHttpsAclEpgDetailsResponse.md)
- - [NiatelemetryHttpsAclFilterDetails](docs/NiatelemetryHttpsAclFilterDetails.md)
- - [NiatelemetryHttpsAclFilterDetailsAllOf](docs/NiatelemetryHttpsAclFilterDetailsAllOf.md)
- - [NiatelemetryHttpsAclFilterDetailsList](docs/NiatelemetryHttpsAclFilterDetailsList.md)
- - [NiatelemetryHttpsAclFilterDetailsListAllOf](docs/NiatelemetryHttpsAclFilterDetailsListAllOf.md)
- - [NiatelemetryHttpsAclFilterDetailsResponse](docs/NiatelemetryHttpsAclFilterDetailsResponse.md)
- - [NiatelemetryInterface](docs/NiatelemetryInterface.md)
- - [NiatelemetryInterfaceAllOf](docs/NiatelemetryInterfaceAllOf.md)
- - [NiatelemetryInterfaceElement](docs/NiatelemetryInterfaceElement.md)
- - [NiatelemetryInterfaceElementAllOf](docs/NiatelemetryInterfaceElementAllOf.md)
- - [NiatelemetryLc](docs/NiatelemetryLc.md)
- - [NiatelemetryLcAllOf](docs/NiatelemetryLcAllOf.md)
- - [NiatelemetryLcList](docs/NiatelemetryLcList.md)
- - [NiatelemetryLcListAllOf](docs/NiatelemetryLcListAllOf.md)
- - [NiatelemetryLcResponse](docs/NiatelemetryLcResponse.md)
- - [NiatelemetryLogicalLink](docs/NiatelemetryLogicalLink.md)
- - [NiatelemetryLogicalLinkAllOf](docs/NiatelemetryLogicalLinkAllOf.md)
- - [NiatelemetryMsoContractDetails](docs/NiatelemetryMsoContractDetails.md)
- - [NiatelemetryMsoContractDetailsAllOf](docs/NiatelemetryMsoContractDetailsAllOf.md)
- - [NiatelemetryMsoContractDetailsList](docs/NiatelemetryMsoContractDetailsList.md)
- - [NiatelemetryMsoContractDetailsListAllOf](docs/NiatelemetryMsoContractDetailsListAllOf.md)
- - [NiatelemetryMsoContractDetailsResponse](docs/NiatelemetryMsoContractDetailsResponse.md)
- - [NiatelemetryMsoEpgDetails](docs/NiatelemetryMsoEpgDetails.md)
- - [NiatelemetryMsoEpgDetailsAllOf](docs/NiatelemetryMsoEpgDetailsAllOf.md)
- - [NiatelemetryMsoEpgDetailsList](docs/NiatelemetryMsoEpgDetailsList.md)
- - [NiatelemetryMsoEpgDetailsListAllOf](docs/NiatelemetryMsoEpgDetailsListAllOf.md)
- - [NiatelemetryMsoEpgDetailsResponse](docs/NiatelemetryMsoEpgDetailsResponse.md)
- - [NiatelemetryMsoSchemaDetails](docs/NiatelemetryMsoSchemaDetails.md)
- - [NiatelemetryMsoSchemaDetailsAllOf](docs/NiatelemetryMsoSchemaDetailsAllOf.md)
- - [NiatelemetryMsoSchemaDetailsList](docs/NiatelemetryMsoSchemaDetailsList.md)
- - [NiatelemetryMsoSchemaDetailsListAllOf](docs/NiatelemetryMsoSchemaDetailsListAllOf.md)
- - [NiatelemetryMsoSchemaDetailsResponse](docs/NiatelemetryMsoSchemaDetailsResponse.md)
- - [NiatelemetryMsoSiteDetails](docs/NiatelemetryMsoSiteDetails.md)
- - [NiatelemetryMsoSiteDetailsAllOf](docs/NiatelemetryMsoSiteDetailsAllOf.md)
- - [NiatelemetryMsoSiteDetailsList](docs/NiatelemetryMsoSiteDetailsList.md)
- - [NiatelemetryMsoSiteDetailsListAllOf](docs/NiatelemetryMsoSiteDetailsListAllOf.md)
- - [NiatelemetryMsoSiteDetailsResponse](docs/NiatelemetryMsoSiteDetailsResponse.md)
- - [NiatelemetryMsoTenantDetails](docs/NiatelemetryMsoTenantDetails.md)
- - [NiatelemetryMsoTenantDetailsAllOf](docs/NiatelemetryMsoTenantDetailsAllOf.md)
- - [NiatelemetryMsoTenantDetailsList](docs/NiatelemetryMsoTenantDetailsList.md)
- - [NiatelemetryMsoTenantDetailsListAllOf](docs/NiatelemetryMsoTenantDetailsListAllOf.md)
- - [NiatelemetryMsoTenantDetailsResponse](docs/NiatelemetryMsoTenantDetailsResponse.md)
- - [NiatelemetryNexusDashboardControllerDetails](docs/NiatelemetryNexusDashboardControllerDetails.md)
- - [NiatelemetryNexusDashboardControllerDetailsAllOf](docs/NiatelemetryNexusDashboardControllerDetailsAllOf.md)
- - [NiatelemetryNexusDashboardControllerDetailsList](docs/NiatelemetryNexusDashboardControllerDetailsList.md)
- - [NiatelemetryNexusDashboardControllerDetailsListAllOf](docs/NiatelemetryNexusDashboardControllerDetailsListAllOf.md)
- - [NiatelemetryNexusDashboardControllerDetailsResponse](docs/NiatelemetryNexusDashboardControllerDetailsResponse.md)
- - [NiatelemetryNexusDashboardDetails](docs/NiatelemetryNexusDashboardDetails.md)
- - [NiatelemetryNexusDashboardDetailsAllOf](docs/NiatelemetryNexusDashboardDetailsAllOf.md)
- - [NiatelemetryNexusDashboardDetailsList](docs/NiatelemetryNexusDashboardDetailsList.md)
- - [NiatelemetryNexusDashboardDetailsListAllOf](docs/NiatelemetryNexusDashboardDetailsListAllOf.md)
- - [NiatelemetryNexusDashboardDetailsResponse](docs/NiatelemetryNexusDashboardDetailsResponse.md)
- - [NiatelemetryNexusDashboardMemoryDetails](docs/NiatelemetryNexusDashboardMemoryDetails.md)
- - [NiatelemetryNexusDashboardMemoryDetailsAllOf](docs/NiatelemetryNexusDashboardMemoryDetailsAllOf.md)
- - [NiatelemetryNexusDashboardMemoryDetailsList](docs/NiatelemetryNexusDashboardMemoryDetailsList.md)
- - [NiatelemetryNexusDashboardMemoryDetailsListAllOf](docs/NiatelemetryNexusDashboardMemoryDetailsListAllOf.md)
- - [NiatelemetryNexusDashboardMemoryDetailsResponse](docs/NiatelemetryNexusDashboardMemoryDetailsResponse.md)
- - [NiatelemetryNexusDashboards](docs/NiatelemetryNexusDashboards.md)
- - [NiatelemetryNexusDashboardsAllOf](docs/NiatelemetryNexusDashboardsAllOf.md)
- - [NiatelemetryNexusDashboardsList](docs/NiatelemetryNexusDashboardsList.md)
- - [NiatelemetryNexusDashboardsListAllOf](docs/NiatelemetryNexusDashboardsListAllOf.md)
- - [NiatelemetryNexusDashboardsRelationship](docs/NiatelemetryNexusDashboardsRelationship.md)
- - [NiatelemetryNexusDashboardsResponse](docs/NiatelemetryNexusDashboardsResponse.md)
- - [NiatelemetryNiaFeatureUsage](docs/NiatelemetryNiaFeatureUsage.md)
- - [NiatelemetryNiaFeatureUsageAllOf](docs/NiatelemetryNiaFeatureUsageAllOf.md)
- - [NiatelemetryNiaFeatureUsageList](docs/NiatelemetryNiaFeatureUsageList.md)
- - [NiatelemetryNiaFeatureUsageListAllOf](docs/NiatelemetryNiaFeatureUsageListAllOf.md)
- - [NiatelemetryNiaFeatureUsageResponse](docs/NiatelemetryNiaFeatureUsageResponse.md)
- - [NiatelemetryNiaInventory](docs/NiatelemetryNiaInventory.md)
- - [NiatelemetryNiaInventoryAllOf](docs/NiatelemetryNiaInventoryAllOf.md)
- - [NiatelemetryNiaInventoryDcnm](docs/NiatelemetryNiaInventoryDcnm.md)
- - [NiatelemetryNiaInventoryDcnmAllOf](docs/NiatelemetryNiaInventoryDcnmAllOf.md)
- - [NiatelemetryNiaInventoryDcnmList](docs/NiatelemetryNiaInventoryDcnmList.md)
- - [NiatelemetryNiaInventoryDcnmListAllOf](docs/NiatelemetryNiaInventoryDcnmListAllOf.md)
- - [NiatelemetryNiaInventoryDcnmResponse](docs/NiatelemetryNiaInventoryDcnmResponse.md)
- - [NiatelemetryNiaInventoryFabric](docs/NiatelemetryNiaInventoryFabric.md)
- - [NiatelemetryNiaInventoryFabricAllOf](docs/NiatelemetryNiaInventoryFabricAllOf.md)
- - [NiatelemetryNiaInventoryFabricList](docs/NiatelemetryNiaInventoryFabricList.md)
- - [NiatelemetryNiaInventoryFabricListAllOf](docs/NiatelemetryNiaInventoryFabricListAllOf.md)
- - [NiatelemetryNiaInventoryFabricResponse](docs/NiatelemetryNiaInventoryFabricResponse.md)
- - [NiatelemetryNiaInventoryList](docs/NiatelemetryNiaInventoryList.md)
- - [NiatelemetryNiaInventoryListAllOf](docs/NiatelemetryNiaInventoryListAllOf.md)
- - [NiatelemetryNiaInventoryRelationship](docs/NiatelemetryNiaInventoryRelationship.md)
- - [NiatelemetryNiaInventoryResponse](docs/NiatelemetryNiaInventoryResponse.md)
- - [NiatelemetryNiaLicenseState](docs/NiatelemetryNiaLicenseState.md)
- - [NiatelemetryNiaLicenseStateAllOf](docs/NiatelemetryNiaLicenseStateAllOf.md)
- - [NiatelemetryNiaLicenseStateList](docs/NiatelemetryNiaLicenseStateList.md)
- - [NiatelemetryNiaLicenseStateListAllOf](docs/NiatelemetryNiaLicenseStateListAllOf.md)
- - [NiatelemetryNiaLicenseStateRelationship](docs/NiatelemetryNiaLicenseStateRelationship.md)
- - [NiatelemetryNiaLicenseStateResponse](docs/NiatelemetryNiaLicenseStateResponse.md)
- - [NiatelemetryNvePacketCounters](docs/NiatelemetryNvePacketCounters.md)
- - [NiatelemetryNvePacketCountersAllOf](docs/NiatelemetryNvePacketCountersAllOf.md)
- - [NiatelemetryNveVni](docs/NiatelemetryNveVni.md)
- - [NiatelemetryNveVniAllOf](docs/NiatelemetryNveVniAllOf.md)
- - [NiatelemetryNxosBgpMvpn](docs/NiatelemetryNxosBgpMvpn.md)
- - [NiatelemetryNxosBgpMvpnAllOf](docs/NiatelemetryNxosBgpMvpnAllOf.md)
- - [NiatelemetryNxosVtp](docs/NiatelemetryNxosVtp.md)
- - [NiatelemetryNxosVtpAllOf](docs/NiatelemetryNxosVtpAllOf.md)
- - [NiatelemetryPasswordStrengthCheck](docs/NiatelemetryPasswordStrengthCheck.md)
- - [NiatelemetryPasswordStrengthCheckAllOf](docs/NiatelemetryPasswordStrengthCheckAllOf.md)
- - [NiatelemetryPasswordStrengthCheckList](docs/NiatelemetryPasswordStrengthCheckList.md)
- - [NiatelemetryPasswordStrengthCheckListAllOf](docs/NiatelemetryPasswordStrengthCheckListAllOf.md)
- - [NiatelemetryPasswordStrengthCheckResponse](docs/NiatelemetryPasswordStrengthCheckResponse.md)
- - [NiatelemetrySiteInventory](docs/NiatelemetrySiteInventory.md)
- - [NiatelemetrySiteInventoryAllOf](docs/NiatelemetrySiteInventoryAllOf.md)
- - [NiatelemetrySiteInventoryList](docs/NiatelemetrySiteInventoryList.md)
- - [NiatelemetrySiteInventoryListAllOf](docs/NiatelemetrySiteInventoryListAllOf.md)
- - [NiatelemetrySiteInventoryResponse](docs/NiatelemetrySiteInventoryResponse.md)
- - [NiatelemetrySmartLicense](docs/NiatelemetrySmartLicense.md)
- - [NiatelemetrySmartLicenseAllOf](docs/NiatelemetrySmartLicenseAllOf.md)
- - [NiatelemetrySshVersionTwo](docs/NiatelemetrySshVersionTwo.md)
- - [NiatelemetrySshVersionTwoAllOf](docs/NiatelemetrySshVersionTwoAllOf.md)
- - [NiatelemetrySshVersionTwoList](docs/NiatelemetrySshVersionTwoList.md)
- - [NiatelemetrySshVersionTwoListAllOf](docs/NiatelemetrySshVersionTwoListAllOf.md)
- - [NiatelemetrySshVersionTwoResponse](docs/NiatelemetrySshVersionTwoResponse.md)
- - [NiatelemetrySupervisorModuleDetails](docs/NiatelemetrySupervisorModuleDetails.md)
- - [NiatelemetrySupervisorModuleDetailsAllOf](docs/NiatelemetrySupervisorModuleDetailsAllOf.md)
- - [NiatelemetrySupervisorModuleDetailsList](docs/NiatelemetrySupervisorModuleDetailsList.md)
- - [NiatelemetrySupervisorModuleDetailsListAllOf](docs/NiatelemetrySupervisorModuleDetailsListAllOf.md)
- - [NiatelemetrySupervisorModuleDetailsResponse](docs/NiatelemetrySupervisorModuleDetailsResponse.md)
- - [NiatelemetrySystemControllerDetails](docs/NiatelemetrySystemControllerDetails.md)
- - [NiatelemetrySystemControllerDetailsAllOf](docs/NiatelemetrySystemControllerDetailsAllOf.md)
- - [NiatelemetrySystemControllerDetailsList](docs/NiatelemetrySystemControllerDetailsList.md)
- - [NiatelemetrySystemControllerDetailsListAllOf](docs/NiatelemetrySystemControllerDetailsListAllOf.md)
- - [NiatelemetrySystemControllerDetailsResponse](docs/NiatelemetrySystemControllerDetailsResponse.md)
- - [NiatelemetryTenant](docs/NiatelemetryTenant.md)
- - [NiatelemetryTenantAllOf](docs/NiatelemetryTenantAllOf.md)
- - [NiatelemetryTenantList](docs/NiatelemetryTenantList.md)
- - [NiatelemetryTenantListAllOf](docs/NiatelemetryTenantListAllOf.md)
- - [NiatelemetryTenantResponse](docs/NiatelemetryTenantResponse.md)
- - [NotificationAbstractCondition](docs/NotificationAbstractCondition.md)
- - [NotificationAbstractMoCondition](docs/NotificationAbstractMoCondition.md)
- - [NotificationAbstractMoConditionAllOf](docs/NotificationAbstractMoConditionAllOf.md)
- - [NotificationAccountSubscription](docs/NotificationAccountSubscription.md)
- - [NotificationAccountSubscriptionAllOf](docs/NotificationAccountSubscriptionAllOf.md)
- - [NotificationAccountSubscriptionList](docs/NotificationAccountSubscriptionList.md)
- - [NotificationAccountSubscriptionListAllOf](docs/NotificationAccountSubscriptionListAllOf.md)
- - [NotificationAccountSubscriptionResponse](docs/NotificationAccountSubscriptionResponse.md)
- - [NotificationAction](docs/NotificationAction.md)
- - [NotificationAlarmMoCondition](docs/NotificationAlarmMoCondition.md)
- - [NotificationAlarmMoConditionAllOf](docs/NotificationAlarmMoConditionAllOf.md)
- - [NotificationSendEmail](docs/NotificationSendEmail.md)
- - [NotificationSendEmailAllOf](docs/NotificationSendEmailAllOf.md)
- - [NotificationSubscription](docs/NotificationSubscription.md)
- - [NotificationSubscriptionAllOf](docs/NotificationSubscriptionAllOf.md)
- - [NtpAuthNtpServer](docs/NtpAuthNtpServer.md)
- - [NtpAuthNtpServerAllOf](docs/NtpAuthNtpServerAllOf.md)
- - [NtpPolicy](docs/NtpPolicy.md)
- - [NtpPolicyAllOf](docs/NtpPolicyAllOf.md)
- - [NtpPolicyList](docs/NtpPolicyList.md)
- - [NtpPolicyListAllOf](docs/NtpPolicyListAllOf.md)
- - [NtpPolicyResponse](docs/NtpPolicyResponse.md)
- - [OnpremImagePackage](docs/OnpremImagePackage.md)
- - [OnpremImagePackageAllOf](docs/OnpremImagePackageAllOf.md)
- - [OnpremSchedule](docs/OnpremSchedule.md)
- - [OnpremScheduleAllOf](docs/OnpremScheduleAllOf.md)
- - [OnpremUpgradeNote](docs/OnpremUpgradeNote.md)
- - [OnpremUpgradeNoteAllOf](docs/OnpremUpgradeNoteAllOf.md)
- - [OnpremUpgradePhase](docs/OnpremUpgradePhase.md)
- - [OnpremUpgradePhaseAllOf](docs/OnpremUpgradePhaseAllOf.md)
- - [OprsDeployment](docs/OprsDeployment.md)
- - [OprsDeploymentAllOf](docs/OprsDeploymentAllOf.md)
- - [OprsDeploymentList](docs/OprsDeploymentList.md)
- - [OprsDeploymentListAllOf](docs/OprsDeploymentListAllOf.md)
- - [OprsDeploymentResponse](docs/OprsDeploymentResponse.md)
- - [OprsKvpair](docs/OprsKvpair.md)
- - [OprsKvpairAllOf](docs/OprsKvpairAllOf.md)
- - [OprsSyncTargetListMessage](docs/OprsSyncTargetListMessage.md)
- - [OprsSyncTargetListMessageAllOf](docs/OprsSyncTargetListMessageAllOf.md)
- - [OprsSyncTargetListMessageList](docs/OprsSyncTargetListMessageList.md)
- - [OprsSyncTargetListMessageListAllOf](docs/OprsSyncTargetListMessageListAllOf.md)
- - [OprsSyncTargetListMessageResponse](docs/OprsSyncTargetListMessageResponse.md)
- - [OrganizationOrganization](docs/OrganizationOrganization.md)
- - [OrganizationOrganizationAllOf](docs/OrganizationOrganizationAllOf.md)
- - [OrganizationOrganizationList](docs/OrganizationOrganizationList.md)
- - [OrganizationOrganizationListAllOf](docs/OrganizationOrganizationListAllOf.md)
- - [OrganizationOrganizationRelationship](docs/OrganizationOrganizationRelationship.md)
- - [OrganizationOrganizationResponse](docs/OrganizationOrganizationResponse.md)
- - [OsAnswers](docs/OsAnswers.md)
- - [OsAnswersAllOf](docs/OsAnswersAllOf.md)
- - [OsBaseInstallConfig](docs/OsBaseInstallConfig.md)
- - [OsBaseInstallConfigAllOf](docs/OsBaseInstallConfigAllOf.md)
- - [OsBulkInstallInfo](docs/OsBulkInstallInfo.md)
- - [OsBulkInstallInfoAllOf](docs/OsBulkInstallInfoAllOf.md)
- - [OsBulkInstallInfoList](docs/OsBulkInstallInfoList.md)
- - [OsBulkInstallInfoListAllOf](docs/OsBulkInstallInfoListAllOf.md)
- - [OsBulkInstallInfoResponse](docs/OsBulkInstallInfoResponse.md)
- - [OsCatalog](docs/OsCatalog.md)
- - [OsCatalogAllOf](docs/OsCatalogAllOf.md)
- - [OsCatalogList](docs/OsCatalogList.md)
- - [OsCatalogListAllOf](docs/OsCatalogListAllOf.md)
- - [OsCatalogRelationship](docs/OsCatalogRelationship.md)
- - [OsCatalogResponse](docs/OsCatalogResponse.md)
- - [OsConfigurationFile](docs/OsConfigurationFile.md)
- - [OsConfigurationFileAllOf](docs/OsConfigurationFileAllOf.md)
- - [OsConfigurationFileList](docs/OsConfigurationFileList.md)
- - [OsConfigurationFileListAllOf](docs/OsConfigurationFileListAllOf.md)
- - [OsConfigurationFileRelationship](docs/OsConfigurationFileRelationship.md)
- - [OsConfigurationFileResponse](docs/OsConfigurationFileResponse.md)
- - [OsDistribution](docs/OsDistribution.md)
- - [OsDistributionAllOf](docs/OsDistributionAllOf.md)
- - [OsDistributionList](docs/OsDistributionList.md)
- - [OsDistributionListAllOf](docs/OsDistributionListAllOf.md)
- - [OsDistributionRelationship](docs/OsDistributionRelationship.md)
- - [OsDistributionResponse](docs/OsDistributionResponse.md)
- - [OsGlobalConfig](docs/OsGlobalConfig.md)
- - [OsGlobalConfigAllOf](docs/OsGlobalConfigAllOf.md)
- - [OsInstall](docs/OsInstall.md)
- - [OsInstallAllOf](docs/OsInstallAllOf.md)
- - [OsInstallList](docs/OsInstallList.md)
- - [OsInstallListAllOf](docs/OsInstallListAllOf.md)
- - [OsInstallResponse](docs/OsInstallResponse.md)
- - [OsInstallTarget](docs/OsInstallTarget.md)
- - [OsInstallTargetResponse](docs/OsInstallTargetResponse.md)
- - [OsInstallTargetResponseAllOf](docs/OsInstallTargetResponseAllOf.md)
- - [OsIpConfiguration](docs/OsIpConfiguration.md)
- - [OsIpv4Configuration](docs/OsIpv4Configuration.md)
- - [OsIpv4ConfigurationAllOf](docs/OsIpv4ConfigurationAllOf.md)
- - [OsIpv6Configuration](docs/OsIpv6Configuration.md)
- - [OsIpv6ConfigurationAllOf](docs/OsIpv6ConfigurationAllOf.md)
- - [OsOperatingSystemParameters](docs/OsOperatingSystemParameters.md)
- - [OsOsSupport](docs/OsOsSupport.md)
- - [OsOsSupportAllOf](docs/OsOsSupportAllOf.md)
- - [OsPhysicalDisk](docs/OsPhysicalDisk.md)
- - [OsPhysicalDiskAllOf](docs/OsPhysicalDiskAllOf.md)
- - [OsPhysicalDiskResponse](docs/OsPhysicalDiskResponse.md)
- - [OsPhysicalDiskResponseAllOf](docs/OsPhysicalDiskResponseAllOf.md)
- - [OsPlaceHolder](docs/OsPlaceHolder.md)
- - [OsPlaceHolderAllOf](docs/OsPlaceHolderAllOf.md)
- - [OsServerConfig](docs/OsServerConfig.md)
- - [OsServerConfigAllOf](docs/OsServerConfigAllOf.md)
- - [OsSupportedVersion](docs/OsSupportedVersion.md)
- - [OsSupportedVersionAllOf](docs/OsSupportedVersionAllOf.md)
- - [OsSupportedVersionList](docs/OsSupportedVersionList.md)
- - [OsSupportedVersionListAllOf](docs/OsSupportedVersionListAllOf.md)
- - [OsSupportedVersionResponse](docs/OsSupportedVersionResponse.md)
- - [OsTemplateFile](docs/OsTemplateFile.md)
- - [OsTemplateFileAllOf](docs/OsTemplateFileAllOf.md)
- - [OsValidInstallTarget](docs/OsValidInstallTarget.md)
- - [OsValidInstallTargetAllOf](docs/OsValidInstallTargetAllOf.md)
- - [OsValidationInformation](docs/OsValidationInformation.md)
- - [OsValidationInformationAllOf](docs/OsValidationInformationAllOf.md)
- - [OsVirtualDrive](docs/OsVirtualDrive.md)
- - [OsVirtualDriveAllOf](docs/OsVirtualDriveAllOf.md)
- - [OsVirtualDriveResponse](docs/OsVirtualDriveResponse.md)
- - [OsVirtualDriveResponseAllOf](docs/OsVirtualDriveResponseAllOf.md)
- - [OsWindowsParameters](docs/OsWindowsParameters.md)
- - [OsWindowsParametersAllOf](docs/OsWindowsParametersAllOf.md)
- - [PatchDocument](docs/PatchDocument.md)
- - [PciCoprocessorCard](docs/PciCoprocessorCard.md)
- - [PciCoprocessorCardAllOf](docs/PciCoprocessorCardAllOf.md)
- - [PciCoprocessorCardList](docs/PciCoprocessorCardList.md)
- - [PciCoprocessorCardListAllOf](docs/PciCoprocessorCardListAllOf.md)
- - [PciCoprocessorCardRelationship](docs/PciCoprocessorCardRelationship.md)
- - [PciCoprocessorCardResponse](docs/PciCoprocessorCardResponse.md)
- - [PciDevice](docs/PciDevice.md)
- - [PciDeviceAllOf](docs/PciDeviceAllOf.md)
- - [PciDeviceList](docs/PciDeviceList.md)
- - [PciDeviceListAllOf](docs/PciDeviceListAllOf.md)
- - [PciDeviceRelationship](docs/PciDeviceRelationship.md)
- - [PciDeviceResponse](docs/PciDeviceResponse.md)
- - [PciLink](docs/PciLink.md)
- - [PciLinkAllOf](docs/PciLinkAllOf.md)
- - [PciLinkList](docs/PciLinkList.md)
- - [PciLinkListAllOf](docs/PciLinkListAllOf.md)
- - [PciLinkRelationship](docs/PciLinkRelationship.md)
- - [PciLinkResponse](docs/PciLinkResponse.md)
- - [PciSwitch](docs/PciSwitch.md)
- - [PciSwitchAllOf](docs/PciSwitchAllOf.md)
- - [PciSwitchList](docs/PciSwitchList.md)
- - [PciSwitchListAllOf](docs/PciSwitchListAllOf.md)
- - [PciSwitchRelationship](docs/PciSwitchRelationship.md)
- - [PciSwitchResponse](docs/PciSwitchResponse.md)
- - [PkixDistinguishedName](docs/PkixDistinguishedName.md)
- - [PkixDistinguishedNameAllOf](docs/PkixDistinguishedNameAllOf.md)
- - [PkixEcdsaKeySpec](docs/PkixEcdsaKeySpec.md)
- - [PkixEcdsaKeySpecAllOf](docs/PkixEcdsaKeySpecAllOf.md)
- - [PkixEddsaKeySpec](docs/PkixEddsaKeySpec.md)
- - [PkixEddsaKeySpecAllOf](docs/PkixEddsaKeySpecAllOf.md)
- - [PkixKeyGenerationSpec](docs/PkixKeyGenerationSpec.md)
- - [PkixKeyGenerationSpecAllOf](docs/PkixKeyGenerationSpecAllOf.md)
- - [PkixRsaAlgorithm](docs/PkixRsaAlgorithm.md)
- - [PkixRsaAlgorithmAllOf](docs/PkixRsaAlgorithmAllOf.md)
- - [PkixSubjectAlternateName](docs/PkixSubjectAlternateName.md)
- - [PkixSubjectAlternateNameAllOf](docs/PkixSubjectAlternateNameAllOf.md)
- - [PolicyAbstractConfigChangeDetail](docs/PolicyAbstractConfigChangeDetail.md)
- - [PolicyAbstractConfigChangeDetailAllOf](docs/PolicyAbstractConfigChangeDetailAllOf.md)
- - [PolicyAbstractConfigProfile](docs/PolicyAbstractConfigProfile.md)
- - [PolicyAbstractConfigProfileAllOf](docs/PolicyAbstractConfigProfileAllOf.md)
- - [PolicyAbstractConfigProfileRelationship](docs/PolicyAbstractConfigProfileRelationship.md)
- - [PolicyAbstractConfigResult](docs/PolicyAbstractConfigResult.md)
- - [PolicyAbstractConfigResultAllOf](docs/PolicyAbstractConfigResultAllOf.md)
- - [PolicyAbstractConfigResultEntry](docs/PolicyAbstractConfigResultEntry.md)
- - [PolicyAbstractConfigResultEntryAllOf](docs/PolicyAbstractConfigResultEntryAllOf.md)
- - [PolicyAbstractPolicy](docs/PolicyAbstractPolicy.md)
- - [PolicyAbstractPolicyAllOf](docs/PolicyAbstractPolicyAllOf.md)
- - [PolicyAbstractPolicyRelationship](docs/PolicyAbstractPolicyRelationship.md)
- - [PolicyAbstractProfile](docs/PolicyAbstractProfile.md)
- - [PolicyAbstractProfileAllOf](docs/PolicyAbstractProfileAllOf.md)
- - [PolicyAbstractProfileRelationship](docs/PolicyAbstractProfileRelationship.md)
- - [PolicyActionQualifier](docs/PolicyActionQualifier.md)
- - [PolicyConfigChange](docs/PolicyConfigChange.md)
- - [PolicyConfigChangeAllOf](docs/PolicyConfigChangeAllOf.md)
- - [PolicyConfigChangeContext](docs/PolicyConfigChangeContext.md)
- - [PolicyConfigChangeContextAllOf](docs/PolicyConfigChangeContextAllOf.md)
- - [PolicyConfigContext](docs/PolicyConfigContext.md)
- - [PolicyConfigContextAllOf](docs/PolicyConfigContextAllOf.md)
- - [PolicyConfigResultContext](docs/PolicyConfigResultContext.md)
- - [PolicyConfigResultContextAllOf](docs/PolicyConfigResultContextAllOf.md)
- - [PolicyQualifier](docs/PolicyQualifier.md)
- - [PolicyinventoryAbstractDeviceInfo](docs/PolicyinventoryAbstractDeviceInfo.md)
- - [PolicyinventoryAbstractDeviceInfoAllOf](docs/PolicyinventoryAbstractDeviceInfoAllOf.md)
- - [PolicyinventoryJobInfo](docs/PolicyinventoryJobInfo.md)
- - [PolicyinventoryJobInfoAllOf](docs/PolicyinventoryJobInfoAllOf.md)
- - [PoolAbstractBlock](docs/PoolAbstractBlock.md)
- - [PoolAbstractBlockAllOf](docs/PoolAbstractBlockAllOf.md)
- - [PoolAbstractBlockLease](docs/PoolAbstractBlockLease.md)
- - [PoolAbstractBlockLeaseAllOf](docs/PoolAbstractBlockLeaseAllOf.md)
- - [PoolAbstractBlockType](docs/PoolAbstractBlockType.md)
- - [PoolAbstractBlockTypeAllOf](docs/PoolAbstractBlockTypeAllOf.md)
- - [PoolAbstractLease](docs/PoolAbstractLease.md)
- - [PoolAbstractLeaseAllOf](docs/PoolAbstractLeaseAllOf.md)
- - [PoolAbstractPool](docs/PoolAbstractPool.md)
- - [PoolAbstractPoolAllOf](docs/PoolAbstractPoolAllOf.md)
- - [PoolAbstractPoolMember](docs/PoolAbstractPoolMember.md)
- - [PoolAbstractPoolMemberAllOf](docs/PoolAbstractPoolMemberAllOf.md)
- - [PortGroup](docs/PortGroup.md)
- - [PortGroupAllOf](docs/PortGroupAllOf.md)
- - [PortGroupList](docs/PortGroupList.md)
- - [PortGroupListAllOf](docs/PortGroupListAllOf.md)
- - [PortGroupRelationship](docs/PortGroupRelationship.md)
- - [PortGroupResponse](docs/PortGroupResponse.md)
- - [PortInterfaceBase](docs/PortInterfaceBase.md)
- - [PortInterfaceBaseAllOf](docs/PortInterfaceBaseAllOf.md)
- - [PortInterfaceBaseRelationship](docs/PortInterfaceBaseRelationship.md)
- - [PortMacBinding](docs/PortMacBinding.md)
- - [PortMacBindingAllOf](docs/PortMacBindingAllOf.md)
- - [PortMacBindingList](docs/PortMacBindingList.md)
- - [PortMacBindingListAllOf](docs/PortMacBindingListAllOf.md)
- - [PortMacBindingRelationship](docs/PortMacBindingRelationship.md)
- - [PortMacBindingResponse](docs/PortMacBindingResponse.md)
- - [PortPhysical](docs/PortPhysical.md)
- - [PortPhysicalAllOf](docs/PortPhysicalAllOf.md)
- - [PortSubGroup](docs/PortSubGroup.md)
- - [PortSubGroupAllOf](docs/PortSubGroupAllOf.md)
- - [PortSubGroupList](docs/PortSubGroupList.md)
- - [PortSubGroupListAllOf](docs/PortSubGroupListAllOf.md)
- - [PortSubGroupRelationship](docs/PortSubGroupRelationship.md)
- - [PortSubGroupResponse](docs/PortSubGroupResponse.md)
- - [PowerControlState](docs/PowerControlState.md)
- - [PowerControlStateAllOf](docs/PowerControlStateAllOf.md)
- - [PowerControlStateList](docs/PowerControlStateList.md)
- - [PowerControlStateListAllOf](docs/PowerControlStateListAllOf.md)
- - [PowerControlStateRelationship](docs/PowerControlStateRelationship.md)
- - [PowerControlStateResponse](docs/PowerControlStateResponse.md)
- - [PowerPolicy](docs/PowerPolicy.md)
- - [PowerPolicyAllOf](docs/PowerPolicyAllOf.md)
- - [PowerPolicyList](docs/PowerPolicyList.md)
- - [PowerPolicyListAllOf](docs/PowerPolicyListAllOf.md)
- - [PowerPolicyResponse](docs/PowerPolicyResponse.md)
- - [ProcessorUnit](docs/ProcessorUnit.md)
- - [ProcessorUnitAllOf](docs/ProcessorUnitAllOf.md)
- - [ProcessorUnitList](docs/ProcessorUnitList.md)
- - [ProcessorUnitListAllOf](docs/ProcessorUnitListAllOf.md)
- - [ProcessorUnitRelationship](docs/ProcessorUnitRelationship.md)
- - [ProcessorUnitResponse](docs/ProcessorUnitResponse.md)
- - [RecommendationAbstractItem](docs/RecommendationAbstractItem.md)
- - [RecommendationAbstractItemAllOf](docs/RecommendationAbstractItemAllOf.md)
- - [RecommendationBase](docs/RecommendationBase.md)
- - [RecommendationBaseAllOf](docs/RecommendationBaseAllOf.md)
- - [RecommendationCapacityRunway](docs/RecommendationCapacityRunway.md)
- - [RecommendationCapacityRunwayAllOf](docs/RecommendationCapacityRunwayAllOf.md)
- - [RecommendationCapacityRunwayList](docs/RecommendationCapacityRunwayList.md)
- - [RecommendationCapacityRunwayListAllOf](docs/RecommendationCapacityRunwayListAllOf.md)
- - [RecommendationCapacityRunwayRelationship](docs/RecommendationCapacityRunwayRelationship.md)
- - [RecommendationCapacityRunwayResponse](docs/RecommendationCapacityRunwayResponse.md)
- - [RecommendationPhysicalItem](docs/RecommendationPhysicalItem.md)
- - [RecommendationPhysicalItemAllOf](docs/RecommendationPhysicalItemAllOf.md)
- - [RecommendationPhysicalItemList](docs/RecommendationPhysicalItemList.md)
- - [RecommendationPhysicalItemListAllOf](docs/RecommendationPhysicalItemListAllOf.md)
- - [RecommendationPhysicalItemRelationship](docs/RecommendationPhysicalItemRelationship.md)
- - [RecommendationPhysicalItemResponse](docs/RecommendationPhysicalItemResponse.md)
- - [RecoveryAbstractBackupConfig](docs/RecoveryAbstractBackupConfig.md)
- - [RecoveryAbstractBackupConfigAllOf](docs/RecoveryAbstractBackupConfigAllOf.md)
- - [RecoveryAbstractBackupInfo](docs/RecoveryAbstractBackupInfo.md)
- - [RecoveryAbstractBackupInfoAllOf](docs/RecoveryAbstractBackupInfoAllOf.md)
- - [RecoveryAbstractBackupInfoRelationship](docs/RecoveryAbstractBackupInfoRelationship.md)
- - [RecoveryBackupConfigPolicy](docs/RecoveryBackupConfigPolicy.md)
- - [RecoveryBackupConfigPolicyAllOf](docs/RecoveryBackupConfigPolicyAllOf.md)
- - [RecoveryBackupConfigPolicyList](docs/RecoveryBackupConfigPolicyList.md)
- - [RecoveryBackupConfigPolicyListAllOf](docs/RecoveryBackupConfigPolicyListAllOf.md)
- - [RecoveryBackupConfigPolicyRelationship](docs/RecoveryBackupConfigPolicyRelationship.md)
- - [RecoveryBackupConfigPolicyResponse](docs/RecoveryBackupConfigPolicyResponse.md)
- - [RecoveryBackupProfile](docs/RecoveryBackupProfile.md)
- - [RecoveryBackupProfileAllOf](docs/RecoveryBackupProfileAllOf.md)
- - [RecoveryBackupProfileList](docs/RecoveryBackupProfileList.md)
- - [RecoveryBackupProfileListAllOf](docs/RecoveryBackupProfileListAllOf.md)
- - [RecoveryBackupProfileRelationship](docs/RecoveryBackupProfileRelationship.md)
- - [RecoveryBackupProfileResponse](docs/RecoveryBackupProfileResponse.md)
- - [RecoveryBackupSchedule](docs/RecoveryBackupSchedule.md)
- - [RecoveryBackupScheduleAllOf](docs/RecoveryBackupScheduleAllOf.md)
- - [RecoveryConfigParams](docs/RecoveryConfigParams.md)
- - [RecoveryConfigResult](docs/RecoveryConfigResult.md)
- - [RecoveryConfigResultAllOf](docs/RecoveryConfigResultAllOf.md)
- - [RecoveryConfigResultEntry](docs/RecoveryConfigResultEntry.md)
- - [RecoveryConfigResultEntryAllOf](docs/RecoveryConfigResultEntryAllOf.md)
- - [RecoveryConfigResultEntryList](docs/RecoveryConfigResultEntryList.md)
- - [RecoveryConfigResultEntryListAllOf](docs/RecoveryConfigResultEntryListAllOf.md)
- - [RecoveryConfigResultEntryRelationship](docs/RecoveryConfigResultEntryRelationship.md)
- - [RecoveryConfigResultEntryResponse](docs/RecoveryConfigResultEntryResponse.md)
- - [RecoveryConfigResultList](docs/RecoveryConfigResultList.md)
- - [RecoveryConfigResultListAllOf](docs/RecoveryConfigResultListAllOf.md)
- - [RecoveryConfigResultRelationship](docs/RecoveryConfigResultRelationship.md)
- - [RecoveryConfigResultResponse](docs/RecoveryConfigResultResponse.md)
- - [RecoveryOnDemandBackup](docs/RecoveryOnDemandBackup.md)
- - [RecoveryOnDemandBackupAllOf](docs/RecoveryOnDemandBackupAllOf.md)
- - [RecoveryOnDemandBackupList](docs/RecoveryOnDemandBackupList.md)
- - [RecoveryOnDemandBackupListAllOf](docs/RecoveryOnDemandBackupListAllOf.md)
- - [RecoveryOnDemandBackupResponse](docs/RecoveryOnDemandBackupResponse.md)
- - [RecoveryRestore](docs/RecoveryRestore.md)
- - [RecoveryRestoreAllOf](docs/RecoveryRestoreAllOf.md)
- - [RecoveryRestoreList](docs/RecoveryRestoreList.md)
- - [RecoveryRestoreListAllOf](docs/RecoveryRestoreListAllOf.md)
- - [RecoveryRestoreResponse](docs/RecoveryRestoreResponse.md)
- - [RecoveryScheduleConfigPolicy](docs/RecoveryScheduleConfigPolicy.md)
- - [RecoveryScheduleConfigPolicyAllOf](docs/RecoveryScheduleConfigPolicyAllOf.md)
- - [RecoveryScheduleConfigPolicyList](docs/RecoveryScheduleConfigPolicyList.md)
- - [RecoveryScheduleConfigPolicyListAllOf](docs/RecoveryScheduleConfigPolicyListAllOf.md)
- - [RecoveryScheduleConfigPolicyRelationship](docs/RecoveryScheduleConfigPolicyRelationship.md)
- - [RecoveryScheduleConfigPolicyResponse](docs/RecoveryScheduleConfigPolicyResponse.md)
- - [ResourceGroup](docs/ResourceGroup.md)
- - [ResourceGroupAllOf](docs/ResourceGroupAllOf.md)
- - [ResourceGroupList](docs/ResourceGroupList.md)
- - [ResourceGroupListAllOf](docs/ResourceGroupListAllOf.md)
- - [ResourceGroupMember](docs/ResourceGroupMember.md)
- - [ResourceGroupMemberAllOf](docs/ResourceGroupMemberAllOf.md)
- - [ResourceGroupMemberList](docs/ResourceGroupMemberList.md)
- - [ResourceGroupMemberListAllOf](docs/ResourceGroupMemberListAllOf.md)
- - [ResourceGroupMemberResponse](docs/ResourceGroupMemberResponse.md)
- - [ResourceGroupRelationship](docs/ResourceGroupRelationship.md)
- - [ResourceGroupResponse](docs/ResourceGroupResponse.md)
- - [ResourceLicenseResourceCount](docs/ResourceLicenseResourceCount.md)
- - [ResourceLicenseResourceCountAllOf](docs/ResourceLicenseResourceCountAllOf.md)
- - [ResourceLicenseResourceCountList](docs/ResourceLicenseResourceCountList.md)
- - [ResourceLicenseResourceCountListAllOf](docs/ResourceLicenseResourceCountListAllOf.md)
- - [ResourceLicenseResourceCountResponse](docs/ResourceLicenseResourceCountResponse.md)
- - [ResourceMembership](docs/ResourceMembership.md)
- - [ResourceMembershipAllOf](docs/ResourceMembershipAllOf.md)
- - [ResourceMembershipHolder](docs/ResourceMembershipHolder.md)
- - [ResourceMembershipHolderAllOf](docs/ResourceMembershipHolderAllOf.md)
- - [ResourceMembershipHolderList](docs/ResourceMembershipHolderList.md)
- - [ResourceMembershipHolderListAllOf](docs/ResourceMembershipHolderListAllOf.md)
- - [ResourceMembershipHolderRelationship](docs/ResourceMembershipHolderRelationship.md)
- - [ResourceMembershipHolderResponse](docs/ResourceMembershipHolderResponse.md)
- - [ResourceMembershipList](docs/ResourceMembershipList.md)
- - [ResourceMembershipListAllOf](docs/ResourceMembershipListAllOf.md)
- - [ResourceMembershipResponse](docs/ResourceMembershipResponse.md)
- - [ResourcePerTypeCombinedSelector](docs/ResourcePerTypeCombinedSelector.md)
- - [ResourcePerTypeCombinedSelectorAllOf](docs/ResourcePerTypeCombinedSelectorAllOf.md)
- - [ResourceSelector](docs/ResourceSelector.md)
- - [ResourceSelectorAllOf](docs/ResourceSelectorAllOf.md)
- - [ResourceSourceToPermissionResources](docs/ResourceSourceToPermissionResources.md)
- - [ResourceSourceToPermissionResourcesAllOf](docs/ResourceSourceToPermissionResourcesAllOf.md)
- - [ResourceSourceToPermissionResourcesHolder](docs/ResourceSourceToPermissionResourcesHolder.md)
- - [ResourceSourceToPermissionResourcesHolderAllOf](docs/ResourceSourceToPermissionResourcesHolderAllOf.md)
- - [RproxyReverseProxy](docs/RproxyReverseProxy.md)
- - [RproxyReverseProxyAllOf](docs/RproxyReverseProxyAllOf.md)
- - [SdcardDiagnostics](docs/SdcardDiagnostics.md)
- - [SdcardDrivers](docs/SdcardDrivers.md)
- - [SdcardHostUpgradeUtility](docs/SdcardHostUpgradeUtility.md)
- - [SdcardOperatingSystem](docs/SdcardOperatingSystem.md)
- - [SdcardOperatingSystemAllOf](docs/SdcardOperatingSystemAllOf.md)
- - [SdcardPartition](docs/SdcardPartition.md)
- - [SdcardPartitionAllOf](docs/SdcardPartitionAllOf.md)
- - [SdcardPolicy](docs/SdcardPolicy.md)
- - [SdcardPolicyAllOf](docs/SdcardPolicyAllOf.md)
- - [SdcardPolicyList](docs/SdcardPolicyList.md)
- - [SdcardPolicyListAllOf](docs/SdcardPolicyListAllOf.md)
- - [SdcardPolicyResponse](docs/SdcardPolicyResponse.md)
- - [SdcardServerConfigurationUtility](docs/SdcardServerConfigurationUtility.md)
- - [SdcardUserPartition](docs/SdcardUserPartition.md)
- - [SdcardUserPartitionAllOf](docs/SdcardUserPartitionAllOf.md)
- - [SdcardVirtualDrive](docs/SdcardVirtualDrive.md)
- - [SdcardVirtualDriveAllOf](docs/SdcardVirtualDriveAllOf.md)
- - [SdwanNetworkConfigurationType](docs/SdwanNetworkConfigurationType.md)
- - [SdwanNetworkConfigurationTypeAllOf](docs/SdwanNetworkConfigurationTypeAllOf.md)
- - [SdwanProfile](docs/SdwanProfile.md)
- - [SdwanProfileAllOf](docs/SdwanProfileAllOf.md)
- - [SdwanProfileList](docs/SdwanProfileList.md)
- - [SdwanProfileListAllOf](docs/SdwanProfileListAllOf.md)
- - [SdwanProfileRelationship](docs/SdwanProfileRelationship.md)
- - [SdwanProfileResponse](docs/SdwanProfileResponse.md)
- - [SdwanRouterNode](docs/SdwanRouterNode.md)
- - [SdwanRouterNodeAllOf](docs/SdwanRouterNodeAllOf.md)
- - [SdwanRouterNodeList](docs/SdwanRouterNodeList.md)
- - [SdwanRouterNodeListAllOf](docs/SdwanRouterNodeListAllOf.md)
- - [SdwanRouterNodeRelationship](docs/SdwanRouterNodeRelationship.md)
- - [SdwanRouterNodeResponse](docs/SdwanRouterNodeResponse.md)
- - [SdwanRouterPolicy](docs/SdwanRouterPolicy.md)
- - [SdwanRouterPolicyAllOf](docs/SdwanRouterPolicyAllOf.md)
- - [SdwanRouterPolicyList](docs/SdwanRouterPolicyList.md)
- - [SdwanRouterPolicyListAllOf](docs/SdwanRouterPolicyListAllOf.md)
- - [SdwanRouterPolicyRelationship](docs/SdwanRouterPolicyRelationship.md)
- - [SdwanRouterPolicyResponse](docs/SdwanRouterPolicyResponse.md)
- - [SdwanTemplateInputsType](docs/SdwanTemplateInputsType.md)
- - [SdwanTemplateInputsTypeAllOf](docs/SdwanTemplateInputsTypeAllOf.md)
- - [SdwanVmanageAccountPolicy](docs/SdwanVmanageAccountPolicy.md)
- - [SdwanVmanageAccountPolicyAllOf](docs/SdwanVmanageAccountPolicyAllOf.md)
- - [SdwanVmanageAccountPolicyList](docs/SdwanVmanageAccountPolicyList.md)
- - [SdwanVmanageAccountPolicyListAllOf](docs/SdwanVmanageAccountPolicyListAllOf.md)
- - [SdwanVmanageAccountPolicyRelationship](docs/SdwanVmanageAccountPolicyRelationship.md)
- - [SdwanVmanageAccountPolicyResponse](docs/SdwanVmanageAccountPolicyResponse.md)
- - [SearchSearchItem](docs/SearchSearchItem.md)
- - [SearchSearchItemList](docs/SearchSearchItemList.md)
- - [SearchSearchItemListAllOf](docs/SearchSearchItemListAllOf.md)
- - [SearchSearchItemResponse](docs/SearchSearchItemResponse.md)
- - [SearchSuggestItem](docs/SearchSuggestItem.md)
- - [SearchSuggestItemList](docs/SearchSuggestItemList.md)
- - [SearchSuggestItemListAllOf](docs/SearchSuggestItemListAllOf.md)
- - [SearchSuggestItemResponse](docs/SearchSuggestItemResponse.md)
- - [SearchTagItem](docs/SearchTagItem.md)
- - [SearchTagItemAllOf](docs/SearchTagItemAllOf.md)
- - [SearchTagItemList](docs/SearchTagItemList.md)
- - [SearchTagItemListAllOf](docs/SearchTagItemListAllOf.md)
- - [SearchTagItemResponse](docs/SearchTagItemResponse.md)
- - [SecurityUnit](docs/SecurityUnit.md)
- - [SecurityUnitAllOf](docs/SecurityUnitAllOf.md)
- - [SecurityUnitList](docs/SecurityUnitList.md)
- - [SecurityUnitListAllOf](docs/SecurityUnitListAllOf.md)
- - [SecurityUnitRelationship](docs/SecurityUnitRelationship.md)
- - [SecurityUnitResponse](docs/SecurityUnitResponse.md)
- - [ServerBaseProfile](docs/ServerBaseProfile.md)
- - [ServerBaseProfileAllOf](docs/ServerBaseProfileAllOf.md)
- - [ServerConfigChangeDetail](docs/ServerConfigChangeDetail.md)
- - [ServerConfigChangeDetailAllOf](docs/ServerConfigChangeDetailAllOf.md)
- - [ServerConfigChangeDetailList](docs/ServerConfigChangeDetailList.md)
- - [ServerConfigChangeDetailListAllOf](docs/ServerConfigChangeDetailListAllOf.md)
- - [ServerConfigChangeDetailRelationship](docs/ServerConfigChangeDetailRelationship.md)
- - [ServerConfigChangeDetailResponse](docs/ServerConfigChangeDetailResponse.md)
- - [ServerConfigImport](docs/ServerConfigImport.md)
- - [ServerConfigImportAllOf](docs/ServerConfigImportAllOf.md)
- - [ServerConfigImportList](docs/ServerConfigImportList.md)
- - [ServerConfigImportListAllOf](docs/ServerConfigImportListAllOf.md)
- - [ServerConfigImportResponse](docs/ServerConfigImportResponse.md)
- - [ServerConfigResult](docs/ServerConfigResult.md)
- - [ServerConfigResultAllOf](docs/ServerConfigResultAllOf.md)
- - [ServerConfigResultEntry](docs/ServerConfigResultEntry.md)
- - [ServerConfigResultEntryAllOf](docs/ServerConfigResultEntryAllOf.md)
- - [ServerConfigResultEntryList](docs/ServerConfigResultEntryList.md)
- - [ServerConfigResultEntryListAllOf](docs/ServerConfigResultEntryListAllOf.md)
- - [ServerConfigResultEntryRelationship](docs/ServerConfigResultEntryRelationship.md)
- - [ServerConfigResultEntryResponse](docs/ServerConfigResultEntryResponse.md)
- - [ServerConfigResultList](docs/ServerConfigResultList.md)
- - [ServerConfigResultListAllOf](docs/ServerConfigResultListAllOf.md)
- - [ServerConfigResultRelationship](docs/ServerConfigResultRelationship.md)
- - [ServerConfigResultResponse](docs/ServerConfigResultResponse.md)
- - [ServerProfile](docs/ServerProfile.md)
- - [ServerProfileAllOf](docs/ServerProfileAllOf.md)
- - [ServerProfileList](docs/ServerProfileList.md)
- - [ServerProfileListAllOf](docs/ServerProfileListAllOf.md)
- - [ServerProfileRelationship](docs/ServerProfileRelationship.md)
- - [ServerProfileResponse](docs/ServerProfileResponse.md)
- - [ServerProfileTemplate](docs/ServerProfileTemplate.md)
- - [ServerProfileTemplateAllOf](docs/ServerProfileTemplateAllOf.md)
- - [ServerProfileTemplateList](docs/ServerProfileTemplateList.md)
- - [ServerProfileTemplateListAllOf](docs/ServerProfileTemplateListAllOf.md)
- - [ServerProfileTemplateResponse](docs/ServerProfileTemplateResponse.md)
- - [SessionAbstractSession](docs/SessionAbstractSession.md)
- - [SessionAbstractSessionAllOf](docs/SessionAbstractSessionAllOf.md)
- - [SessionAbstractSessionRelationship](docs/SessionAbstractSessionRelationship.md)
- - [SessionAbstractSubSession](docs/SessionAbstractSubSession.md)
- - [SessionAbstractSubSessionAllOf](docs/SessionAbstractSubSessionAllOf.md)
- - [SmtpPolicy](docs/SmtpPolicy.md)
- - [SmtpPolicyAllOf](docs/SmtpPolicyAllOf.md)
- - [SmtpPolicyList](docs/SmtpPolicyList.md)
- - [SmtpPolicyListAllOf](docs/SmtpPolicyListAllOf.md)
- - [SmtpPolicyResponse](docs/SmtpPolicyResponse.md)
- - [SnmpPolicy](docs/SnmpPolicy.md)
- - [SnmpPolicyAllOf](docs/SnmpPolicyAllOf.md)
- - [SnmpPolicyList](docs/SnmpPolicyList.md)
- - [SnmpPolicyListAllOf](docs/SnmpPolicyListAllOf.md)
- - [SnmpPolicyResponse](docs/SnmpPolicyResponse.md)
- - [SnmpTrap](docs/SnmpTrap.md)
- - [SnmpTrapAllOf](docs/SnmpTrapAllOf.md)
- - [SnmpUser](docs/SnmpUser.md)
- - [SnmpUserAllOf](docs/SnmpUserAllOf.md)
- - [SoftwareApplianceDistributable](docs/SoftwareApplianceDistributable.md)
- - [SoftwareApplianceDistributableAllOf](docs/SoftwareApplianceDistributableAllOf.md)
- - [SoftwareApplianceDistributableList](docs/SoftwareApplianceDistributableList.md)
- - [SoftwareApplianceDistributableListAllOf](docs/SoftwareApplianceDistributableListAllOf.md)
- - [SoftwareApplianceDistributableResponse](docs/SoftwareApplianceDistributableResponse.md)
- - [SoftwareDownloadHistory](docs/SoftwareDownloadHistory.md)
- - [SoftwareDownloadHistoryAllOf](docs/SoftwareDownloadHistoryAllOf.md)
- - [SoftwareDownloadHistoryList](docs/SoftwareDownloadHistoryList.md)
- - [SoftwareDownloadHistoryListAllOf](docs/SoftwareDownloadHistoryListAllOf.md)
- - [SoftwareDownloadHistoryResponse](docs/SoftwareDownloadHistoryResponse.md)
- - [SoftwareHclMeta](docs/SoftwareHclMeta.md)
- - [SoftwareHclMetaAllOf](docs/SoftwareHclMetaAllOf.md)
- - [SoftwareHclMetaList](docs/SoftwareHclMetaList.md)
- - [SoftwareHclMetaListAllOf](docs/SoftwareHclMetaListAllOf.md)
- - [SoftwareHclMetaResponse](docs/SoftwareHclMetaResponse.md)
- - [SoftwareHyperflexBundleDistributable](docs/SoftwareHyperflexBundleDistributable.md)
- - [SoftwareHyperflexBundleDistributableAllOf](docs/SoftwareHyperflexBundleDistributableAllOf.md)
- - [SoftwareHyperflexBundleDistributableList](docs/SoftwareHyperflexBundleDistributableList.md)
- - [SoftwareHyperflexBundleDistributableListAllOf](docs/SoftwareHyperflexBundleDistributableListAllOf.md)
- - [SoftwareHyperflexBundleDistributableResponse](docs/SoftwareHyperflexBundleDistributableResponse.md)
- - [SoftwareHyperflexDistributable](docs/SoftwareHyperflexDistributable.md)
- - [SoftwareHyperflexDistributableAllOf](docs/SoftwareHyperflexDistributableAllOf.md)
- - [SoftwareHyperflexDistributableList](docs/SoftwareHyperflexDistributableList.md)
- - [SoftwareHyperflexDistributableListAllOf](docs/SoftwareHyperflexDistributableListAllOf.md)
- - [SoftwareHyperflexDistributableRelationship](docs/SoftwareHyperflexDistributableRelationship.md)
- - [SoftwareHyperflexDistributableResponse](docs/SoftwareHyperflexDistributableResponse.md)
- - [SoftwareReleaseMeta](docs/SoftwareReleaseMeta.md)
- - [SoftwareReleaseMetaAllOf](docs/SoftwareReleaseMetaAllOf.md)
- - [SoftwareReleaseMetaList](docs/SoftwareReleaseMetaList.md)
- - [SoftwareReleaseMetaListAllOf](docs/SoftwareReleaseMetaListAllOf.md)
- - [SoftwareReleaseMetaResponse](docs/SoftwareReleaseMetaResponse.md)
- - [SoftwareSolutionDistributable](docs/SoftwareSolutionDistributable.md)
- - [SoftwareSolutionDistributableAllOf](docs/SoftwareSolutionDistributableAllOf.md)
- - [SoftwareSolutionDistributableList](docs/SoftwareSolutionDistributableList.md)
- - [SoftwareSolutionDistributableListAllOf](docs/SoftwareSolutionDistributableListAllOf.md)
- - [SoftwareSolutionDistributableRelationship](docs/SoftwareSolutionDistributableRelationship.md)
- - [SoftwareSolutionDistributableResponse](docs/SoftwareSolutionDistributableResponse.md)
- - [SoftwareUcsdBundleDistributable](docs/SoftwareUcsdBundleDistributable.md)
- - [SoftwareUcsdBundleDistributableAllOf](docs/SoftwareUcsdBundleDistributableAllOf.md)
- - [SoftwareUcsdBundleDistributableList](docs/SoftwareUcsdBundleDistributableList.md)
- - [SoftwareUcsdBundleDistributableListAllOf](docs/SoftwareUcsdBundleDistributableListAllOf.md)
- - [SoftwareUcsdBundleDistributableResponse](docs/SoftwareUcsdBundleDistributableResponse.md)
- - [SoftwareUcsdDistributable](docs/SoftwareUcsdDistributable.md)
- - [SoftwareUcsdDistributableAllOf](docs/SoftwareUcsdDistributableAllOf.md)
- - [SoftwareUcsdDistributableList](docs/SoftwareUcsdDistributableList.md)
- - [SoftwareUcsdDistributableListAllOf](docs/SoftwareUcsdDistributableListAllOf.md)
- - [SoftwareUcsdDistributableRelationship](docs/SoftwareUcsdDistributableRelationship.md)
- - [SoftwareUcsdDistributableResponse](docs/SoftwareUcsdDistributableResponse.md)
- - [SoftwarerepositoryApplianceUpload](docs/SoftwarerepositoryApplianceUpload.md)
- - [SoftwarerepositoryAuthorization](docs/SoftwarerepositoryAuthorization.md)
- - [SoftwarerepositoryAuthorizationAllOf](docs/SoftwarerepositoryAuthorizationAllOf.md)
- - [SoftwarerepositoryAuthorizationList](docs/SoftwarerepositoryAuthorizationList.md)
- - [SoftwarerepositoryAuthorizationListAllOf](docs/SoftwarerepositoryAuthorizationListAllOf.md)
- - [SoftwarerepositoryAuthorizationResponse](docs/SoftwarerepositoryAuthorizationResponse.md)
- - [SoftwarerepositoryCachedImage](docs/SoftwarerepositoryCachedImage.md)
- - [SoftwarerepositoryCachedImageAllOf](docs/SoftwarerepositoryCachedImageAllOf.md)
- - [SoftwarerepositoryCachedImageList](docs/SoftwarerepositoryCachedImageList.md)
- - [SoftwarerepositoryCachedImageListAllOf](docs/SoftwarerepositoryCachedImageListAllOf.md)
- - [SoftwarerepositoryCachedImageResponse](docs/SoftwarerepositoryCachedImageResponse.md)
- - [SoftwarerepositoryCatalog](docs/SoftwarerepositoryCatalog.md)
- - [SoftwarerepositoryCatalogAllOf](docs/SoftwarerepositoryCatalogAllOf.md)
- - [SoftwarerepositoryCatalogList](docs/SoftwarerepositoryCatalogList.md)
- - [SoftwarerepositoryCatalogListAllOf](docs/SoftwarerepositoryCatalogListAllOf.md)
- - [SoftwarerepositoryCatalogRelationship](docs/SoftwarerepositoryCatalogRelationship.md)
- - [SoftwarerepositoryCatalogResponse](docs/SoftwarerepositoryCatalogResponse.md)
- - [SoftwarerepositoryCategoryMapper](docs/SoftwarerepositoryCategoryMapper.md)
- - [SoftwarerepositoryCategoryMapperAllOf](docs/SoftwarerepositoryCategoryMapperAllOf.md)
- - [SoftwarerepositoryCategoryMapperList](docs/SoftwarerepositoryCategoryMapperList.md)
- - [SoftwarerepositoryCategoryMapperListAllOf](docs/SoftwarerepositoryCategoryMapperListAllOf.md)
- - [SoftwarerepositoryCategoryMapperModel](docs/SoftwarerepositoryCategoryMapperModel.md)
- - [SoftwarerepositoryCategoryMapperModelAllOf](docs/SoftwarerepositoryCategoryMapperModelAllOf.md)
- - [SoftwarerepositoryCategoryMapperModelList](docs/SoftwarerepositoryCategoryMapperModelList.md)
- - [SoftwarerepositoryCategoryMapperModelListAllOf](docs/SoftwarerepositoryCategoryMapperModelListAllOf.md)
- - [SoftwarerepositoryCategoryMapperModelResponse](docs/SoftwarerepositoryCategoryMapperModelResponse.md)
- - [SoftwarerepositoryCategoryMapperResponse](docs/SoftwarerepositoryCategoryMapperResponse.md)
- - [SoftwarerepositoryCategorySupportConstraint](docs/SoftwarerepositoryCategorySupportConstraint.md)
- - [SoftwarerepositoryCategorySupportConstraintAllOf](docs/SoftwarerepositoryCategorySupportConstraintAllOf.md)
- - [SoftwarerepositoryCategorySupportConstraintList](docs/SoftwarerepositoryCategorySupportConstraintList.md)
- - [SoftwarerepositoryCategorySupportConstraintListAllOf](docs/SoftwarerepositoryCategorySupportConstraintListAllOf.md)
- - [SoftwarerepositoryCategorySupportConstraintResponse](docs/SoftwarerepositoryCategorySupportConstraintResponse.md)
- - [SoftwarerepositoryCifsServer](docs/SoftwarerepositoryCifsServer.md)
- - [SoftwarerepositoryCifsServerAllOf](docs/SoftwarerepositoryCifsServerAllOf.md)
- - [SoftwarerepositoryConstraintModels](docs/SoftwarerepositoryConstraintModels.md)
- - [SoftwarerepositoryConstraintModelsAllOf](docs/SoftwarerepositoryConstraintModelsAllOf.md)
- - [SoftwarerepositoryDownloadSpec](docs/SoftwarerepositoryDownloadSpec.md)
- - [SoftwarerepositoryDownloadSpecAllOf](docs/SoftwarerepositoryDownloadSpecAllOf.md)
- - [SoftwarerepositoryDownloadSpecList](docs/SoftwarerepositoryDownloadSpecList.md)
- - [SoftwarerepositoryDownloadSpecListAllOf](docs/SoftwarerepositoryDownloadSpecListAllOf.md)
- - [SoftwarerepositoryDownloadSpecResponse](docs/SoftwarerepositoryDownloadSpecResponse.md)
- - [SoftwarerepositoryFile](docs/SoftwarerepositoryFile.md)
- - [SoftwarerepositoryFileAllOf](docs/SoftwarerepositoryFileAllOf.md)
- - [SoftwarerepositoryFileRelationship](docs/SoftwarerepositoryFileRelationship.md)
- - [SoftwarerepositoryFileServer](docs/SoftwarerepositoryFileServer.md)
- - [SoftwarerepositoryHttpServer](docs/SoftwarerepositoryHttpServer.md)
- - [SoftwarerepositoryHttpServerAllOf](docs/SoftwarerepositoryHttpServerAllOf.md)
- - [SoftwarerepositoryImportResult](docs/SoftwarerepositoryImportResult.md)
- - [SoftwarerepositoryImportResultAllOf](docs/SoftwarerepositoryImportResultAllOf.md)
- - [SoftwarerepositoryLocalMachine](docs/SoftwarerepositoryLocalMachine.md)
- - [SoftwarerepositoryLocalMachineAllOf](docs/SoftwarerepositoryLocalMachineAllOf.md)
- - [SoftwarerepositoryNfsServer](docs/SoftwarerepositoryNfsServer.md)
- - [SoftwarerepositoryNfsServerAllOf](docs/SoftwarerepositoryNfsServerAllOf.md)
- - [SoftwarerepositoryOperatingSystemFile](docs/SoftwarerepositoryOperatingSystemFile.md)
- - [SoftwarerepositoryOperatingSystemFileAllOf](docs/SoftwarerepositoryOperatingSystemFileAllOf.md)
- - [SoftwarerepositoryOperatingSystemFileList](docs/SoftwarerepositoryOperatingSystemFileList.md)
- - [SoftwarerepositoryOperatingSystemFileListAllOf](docs/SoftwarerepositoryOperatingSystemFileListAllOf.md)
- - [SoftwarerepositoryOperatingSystemFileRelationship](docs/SoftwarerepositoryOperatingSystemFileRelationship.md)
- - [SoftwarerepositoryOperatingSystemFileResponse](docs/SoftwarerepositoryOperatingSystemFileResponse.md)
- - [SoftwarerepositoryRelease](docs/SoftwarerepositoryRelease.md)
- - [SoftwarerepositoryReleaseAllOf](docs/SoftwarerepositoryReleaseAllOf.md)
- - [SoftwarerepositoryReleaseList](docs/SoftwarerepositoryReleaseList.md)
- - [SoftwarerepositoryReleaseListAllOf](docs/SoftwarerepositoryReleaseListAllOf.md)
- - [SoftwarerepositoryReleaseRelationship](docs/SoftwarerepositoryReleaseRelationship.md)
- - [SoftwarerepositoryReleaseResponse](docs/SoftwarerepositoryReleaseResponse.md)
- - [SolPolicy](docs/SolPolicy.md)
- - [SolPolicyAllOf](docs/SolPolicyAllOf.md)
- - [SolPolicyList](docs/SolPolicyList.md)
- - [SolPolicyListAllOf](docs/SolPolicyListAllOf.md)
- - [SolPolicyResponse](docs/SolPolicyResponse.md)
- - [SshPolicy](docs/SshPolicy.md)
- - [SshPolicyAllOf](docs/SshPolicyAllOf.md)
- - [SshPolicyList](docs/SshPolicyList.md)
- - [SshPolicyListAllOf](docs/SshPolicyListAllOf.md)
- - [SshPolicyResponse](docs/SshPolicyResponse.md)
- - [StorageAutomaticDriveGroup](docs/StorageAutomaticDriveGroup.md)
- - [StorageAutomaticDriveGroupAllOf](docs/StorageAutomaticDriveGroupAllOf.md)
- - [StorageBaseArray](docs/StorageBaseArray.md)
- - [StorageBaseArrayAllOf](docs/StorageBaseArrayAllOf.md)
- - [StorageBaseArrayController](docs/StorageBaseArrayController.md)
- - [StorageBaseArrayControllerAllOf](docs/StorageBaseArrayControllerAllOf.md)
- - [StorageBaseArrayDisk](docs/StorageBaseArrayDisk.md)
- - [StorageBaseArrayDiskAllOf](docs/StorageBaseArrayDiskAllOf.md)
- - [StorageBaseCapacity](docs/StorageBaseCapacity.md)
- - [StorageBaseCapacityAllOf](docs/StorageBaseCapacityAllOf.md)
- - [StorageBaseDiskPool](docs/StorageBaseDiskPool.md)
- - [StorageBaseDiskPoolAllOf](docs/StorageBaseDiskPoolAllOf.md)
- - [StorageBaseHost](docs/StorageBaseHost.md)
- - [StorageBaseHostAllOf](docs/StorageBaseHostAllOf.md)
- - [StorageBaseHostGroup](docs/StorageBaseHostGroup.md)
- - [StorageBaseHostGroupAllOf](docs/StorageBaseHostGroupAllOf.md)
- - [StorageBaseHostLun](docs/StorageBaseHostLun.md)
- - [StorageBaseHostLunAllOf](docs/StorageBaseHostLunAllOf.md)
- - [StorageBaseInitiator](docs/StorageBaseInitiator.md)
- - [StorageBaseInitiatorAllOf](docs/StorageBaseInitiatorAllOf.md)
- - [StorageBaseNfsExport](docs/StorageBaseNfsExport.md)
- - [StorageBaseNfsExportAllOf](docs/StorageBaseNfsExportAllOf.md)
- - [StorageBasePhysicalPort](docs/StorageBasePhysicalPort.md)
- - [StorageBasePhysicalPortAllOf](docs/StorageBasePhysicalPortAllOf.md)
- - [StorageBaseProtectionGroup](docs/StorageBaseProtectionGroup.md)
- - [StorageBaseProtectionGroupAllOf](docs/StorageBaseProtectionGroupAllOf.md)
- - [StorageBaseProtectionGroupSnapshot](docs/StorageBaseProtectionGroupSnapshot.md)
- - [StorageBaseProtectionGroupSnapshotAllOf](docs/StorageBaseProtectionGroupSnapshotAllOf.md)
- - [StorageBaseRaidGroup](docs/StorageBaseRaidGroup.md)
- - [StorageBaseRaidGroupAllOf](docs/StorageBaseRaidGroupAllOf.md)
- - [StorageBaseReplicationBlackout](docs/StorageBaseReplicationBlackout.md)
- - [StorageBaseReplicationBlackoutAllOf](docs/StorageBaseReplicationBlackoutAllOf.md)
- - [StorageBaseReplicationSchedule](docs/StorageBaseReplicationSchedule.md)
- - [StorageBaseReplicationScheduleAllOf](docs/StorageBaseReplicationScheduleAllOf.md)
- - [StorageBaseSnapshot](docs/StorageBaseSnapshot.md)
- - [StorageBaseSnapshotAllOf](docs/StorageBaseSnapshotAllOf.md)
- - [StorageBaseSnapshotSchedule](docs/StorageBaseSnapshotSchedule.md)
- - [StorageBaseSnapshotScheduleAllOf](docs/StorageBaseSnapshotScheduleAllOf.md)
- - [StorageBaseStorageContainer](docs/StorageBaseStorageContainer.md)
- - [StorageBaseStorageContainerAllOf](docs/StorageBaseStorageContainerAllOf.md)
- - [StorageBaseTenant](docs/StorageBaseTenant.md)
- - [StorageBaseTenantAllOf](docs/StorageBaseTenantAllOf.md)
- - [StorageBaseVolume](docs/StorageBaseVolume.md)
- - [StorageBaseVolumeAllOf](docs/StorageBaseVolumeAllOf.md)
- - [StorageController](docs/StorageController.md)
- - [StorageControllerAllOf](docs/StorageControllerAllOf.md)
- - [StorageControllerList](docs/StorageControllerList.md)
- - [StorageControllerListAllOf](docs/StorageControllerListAllOf.md)
- - [StorageControllerRelationship](docs/StorageControllerRelationship.md)
- - [StorageControllerResponse](docs/StorageControllerResponse.md)
- - [StorageDiskGroup](docs/StorageDiskGroup.md)
- - [StorageDiskGroupAllOf](docs/StorageDiskGroupAllOf.md)
- - [StorageDiskGroupList](docs/StorageDiskGroupList.md)
- - [StorageDiskGroupListAllOf](docs/StorageDiskGroupListAllOf.md)
- - [StorageDiskGroupRelationship](docs/StorageDiskGroupRelationship.md)
- - [StorageDiskGroupResponse](docs/StorageDiskGroupResponse.md)
- - [StorageDiskSlot](docs/StorageDiskSlot.md)
- - [StorageDiskSlotAllOf](docs/StorageDiskSlotAllOf.md)
- - [StorageDiskSlotList](docs/StorageDiskSlotList.md)
- - [StorageDiskSlotListAllOf](docs/StorageDiskSlotListAllOf.md)
- - [StorageDiskSlotRelationship](docs/StorageDiskSlotRelationship.md)
- - [StorageDiskSlotResponse](docs/StorageDiskSlotResponse.md)
- - [StorageDriveGroup](docs/StorageDriveGroup.md)
- - [StorageDriveGroupAllOf](docs/StorageDriveGroupAllOf.md)
- - [StorageDriveGroupList](docs/StorageDriveGroupList.md)
- - [StorageDriveGroupListAllOf](docs/StorageDriveGroupListAllOf.md)
- - [StorageDriveGroupRelationship](docs/StorageDriveGroupRelationship.md)
- - [StorageDriveGroupResponse](docs/StorageDriveGroupResponse.md)
- - [StorageEnclosure](docs/StorageEnclosure.md)
- - [StorageEnclosureAllOf](docs/StorageEnclosureAllOf.md)
- - [StorageEnclosureDisk](docs/StorageEnclosureDisk.md)
- - [StorageEnclosureDiskAllOf](docs/StorageEnclosureDiskAllOf.md)
- - [StorageEnclosureDiskList](docs/StorageEnclosureDiskList.md)
- - [StorageEnclosureDiskListAllOf](docs/StorageEnclosureDiskListAllOf.md)
- - [StorageEnclosureDiskRelationship](docs/StorageEnclosureDiskRelationship.md)
- - [StorageEnclosureDiskResponse](docs/StorageEnclosureDiskResponse.md)
- - [StorageEnclosureDiskSlotEp](docs/StorageEnclosureDiskSlotEp.md)
- - [StorageEnclosureDiskSlotEpAllOf](docs/StorageEnclosureDiskSlotEpAllOf.md)
- - [StorageEnclosureDiskSlotEpList](docs/StorageEnclosureDiskSlotEpList.md)
- - [StorageEnclosureDiskSlotEpListAllOf](docs/StorageEnclosureDiskSlotEpListAllOf.md)
- - [StorageEnclosureDiskSlotEpRelationship](docs/StorageEnclosureDiskSlotEpRelationship.md)
- - [StorageEnclosureDiskSlotEpResponse](docs/StorageEnclosureDiskSlotEpResponse.md)
- - [StorageEnclosureList](docs/StorageEnclosureList.md)
- - [StorageEnclosureListAllOf](docs/StorageEnclosureListAllOf.md)
- - [StorageEnclosureRelationship](docs/StorageEnclosureRelationship.md)
- - [StorageEnclosureResponse](docs/StorageEnclosureResponse.md)
- - [StorageFlexFlashController](docs/StorageFlexFlashController.md)
- - [StorageFlexFlashControllerAllOf](docs/StorageFlexFlashControllerAllOf.md)
- - [StorageFlexFlashControllerList](docs/StorageFlexFlashControllerList.md)
- - [StorageFlexFlashControllerListAllOf](docs/StorageFlexFlashControllerListAllOf.md)
- - [StorageFlexFlashControllerProps](docs/StorageFlexFlashControllerProps.md)
- - [StorageFlexFlashControllerPropsAllOf](docs/StorageFlexFlashControllerPropsAllOf.md)
- - [StorageFlexFlashControllerPropsList](docs/StorageFlexFlashControllerPropsList.md)
- - [StorageFlexFlashControllerPropsListAllOf](docs/StorageFlexFlashControllerPropsListAllOf.md)
- - [StorageFlexFlashControllerPropsRelationship](docs/StorageFlexFlashControllerPropsRelationship.md)
- - [StorageFlexFlashControllerPropsResponse](docs/StorageFlexFlashControllerPropsResponse.md)
- - [StorageFlexFlashControllerRelationship](docs/StorageFlexFlashControllerRelationship.md)
- - [StorageFlexFlashControllerResponse](docs/StorageFlexFlashControllerResponse.md)
- - [StorageFlexFlashPhysicalDrive](docs/StorageFlexFlashPhysicalDrive.md)
- - [StorageFlexFlashPhysicalDriveAllOf](docs/StorageFlexFlashPhysicalDriveAllOf.md)
- - [StorageFlexFlashPhysicalDriveList](docs/StorageFlexFlashPhysicalDriveList.md)
- - [StorageFlexFlashPhysicalDriveListAllOf](docs/StorageFlexFlashPhysicalDriveListAllOf.md)
- - [StorageFlexFlashPhysicalDriveRelationship](docs/StorageFlexFlashPhysicalDriveRelationship.md)
- - [StorageFlexFlashPhysicalDriveResponse](docs/StorageFlexFlashPhysicalDriveResponse.md)
- - [StorageFlexFlashVirtualDrive](docs/StorageFlexFlashVirtualDrive.md)
- - [StorageFlexFlashVirtualDriveAllOf](docs/StorageFlexFlashVirtualDriveAllOf.md)
- - [StorageFlexFlashVirtualDriveList](docs/StorageFlexFlashVirtualDriveList.md)
- - [StorageFlexFlashVirtualDriveListAllOf](docs/StorageFlexFlashVirtualDriveListAllOf.md)
- - [StorageFlexFlashVirtualDriveRelationship](docs/StorageFlexFlashVirtualDriveRelationship.md)
- - [StorageFlexFlashVirtualDriveResponse](docs/StorageFlexFlashVirtualDriveResponse.md)
- - [StorageFlexUtilController](docs/StorageFlexUtilController.md)
- - [StorageFlexUtilControllerAllOf](docs/StorageFlexUtilControllerAllOf.md)
- - [StorageFlexUtilControllerList](docs/StorageFlexUtilControllerList.md)
- - [StorageFlexUtilControllerListAllOf](docs/StorageFlexUtilControllerListAllOf.md)
- - [StorageFlexUtilControllerRelationship](docs/StorageFlexUtilControllerRelationship.md)
- - [StorageFlexUtilControllerResponse](docs/StorageFlexUtilControllerResponse.md)
- - [StorageFlexUtilPhysicalDrive](docs/StorageFlexUtilPhysicalDrive.md)
- - [StorageFlexUtilPhysicalDriveAllOf](docs/StorageFlexUtilPhysicalDriveAllOf.md)
- - [StorageFlexUtilPhysicalDriveList](docs/StorageFlexUtilPhysicalDriveList.md)
- - [StorageFlexUtilPhysicalDriveListAllOf](docs/StorageFlexUtilPhysicalDriveListAllOf.md)
- - [StorageFlexUtilPhysicalDriveRelationship](docs/StorageFlexUtilPhysicalDriveRelationship.md)
- - [StorageFlexUtilPhysicalDriveResponse](docs/StorageFlexUtilPhysicalDriveResponse.md)
- - [StorageFlexUtilVirtualDrive](docs/StorageFlexUtilVirtualDrive.md)
- - [StorageFlexUtilVirtualDriveAllOf](docs/StorageFlexUtilVirtualDriveAllOf.md)
- - [StorageFlexUtilVirtualDriveList](docs/StorageFlexUtilVirtualDriveList.md)
- - [StorageFlexUtilVirtualDriveListAllOf](docs/StorageFlexUtilVirtualDriveListAllOf.md)
- - [StorageFlexUtilVirtualDriveRelationship](docs/StorageFlexUtilVirtualDriveRelationship.md)
- - [StorageFlexUtilVirtualDriveResponse](docs/StorageFlexUtilVirtualDriveResponse.md)
- - [StorageHitachiArray](docs/StorageHitachiArray.md)
- - [StorageHitachiArrayAllOf](docs/StorageHitachiArrayAllOf.md)
- - [StorageHitachiArrayList](docs/StorageHitachiArrayList.md)
- - [StorageHitachiArrayListAllOf](docs/StorageHitachiArrayListAllOf.md)
- - [StorageHitachiArrayRelationship](docs/StorageHitachiArrayRelationship.md)
- - [StorageHitachiArrayResponse](docs/StorageHitachiArrayResponse.md)
- - [StorageHitachiArrayUtilization](docs/StorageHitachiArrayUtilization.md)
- - [StorageHitachiArrayUtilizationAllOf](docs/StorageHitachiArrayUtilizationAllOf.md)
- - [StorageHitachiCapacity](docs/StorageHitachiCapacity.md)
- - [StorageHitachiController](docs/StorageHitachiController.md)
- - [StorageHitachiControllerAllOf](docs/StorageHitachiControllerAllOf.md)
- - [StorageHitachiControllerList](docs/StorageHitachiControllerList.md)
- - [StorageHitachiControllerListAllOf](docs/StorageHitachiControllerListAllOf.md)
- - [StorageHitachiControllerResponse](docs/StorageHitachiControllerResponse.md)
- - [StorageHitachiDisk](docs/StorageHitachiDisk.md)
- - [StorageHitachiDiskAllOf](docs/StorageHitachiDiskAllOf.md)
- - [StorageHitachiDiskList](docs/StorageHitachiDiskList.md)
- - [StorageHitachiDiskListAllOf](docs/StorageHitachiDiskListAllOf.md)
- - [StorageHitachiDiskResponse](docs/StorageHitachiDiskResponse.md)
- - [StorageHitachiHost](docs/StorageHitachiHost.md)
- - [StorageHitachiHostAllOf](docs/StorageHitachiHostAllOf.md)
- - [StorageHitachiHostList](docs/StorageHitachiHostList.md)
- - [StorageHitachiHostListAllOf](docs/StorageHitachiHostListAllOf.md)
- - [StorageHitachiHostLun](docs/StorageHitachiHostLun.md)
- - [StorageHitachiHostLunAllOf](docs/StorageHitachiHostLunAllOf.md)
- - [StorageHitachiHostLunList](docs/StorageHitachiHostLunList.md)
- - [StorageHitachiHostLunListAllOf](docs/StorageHitachiHostLunListAllOf.md)
- - [StorageHitachiHostLunResponse](docs/StorageHitachiHostLunResponse.md)
- - [StorageHitachiHostRelationship](docs/StorageHitachiHostRelationship.md)
- - [StorageHitachiHostResponse](docs/StorageHitachiHostResponse.md)
- - [StorageHitachiInitiator](docs/StorageHitachiInitiator.md)
- - [StorageHitachiInitiatorAllOf](docs/StorageHitachiInitiatorAllOf.md)
- - [StorageHitachiParityGroup](docs/StorageHitachiParityGroup.md)
- - [StorageHitachiParityGroupAllOf](docs/StorageHitachiParityGroupAllOf.md)
- - [StorageHitachiParityGroupList](docs/StorageHitachiParityGroupList.md)
- - [StorageHitachiParityGroupListAllOf](docs/StorageHitachiParityGroupListAllOf.md)
- - [StorageHitachiParityGroupRelationship](docs/StorageHitachiParityGroupRelationship.md)
- - [StorageHitachiParityGroupResponse](docs/StorageHitachiParityGroupResponse.md)
- - [StorageHitachiPool](docs/StorageHitachiPool.md)
- - [StorageHitachiPoolAllOf](docs/StorageHitachiPoolAllOf.md)
- - [StorageHitachiPoolList](docs/StorageHitachiPoolList.md)
- - [StorageHitachiPoolListAllOf](docs/StorageHitachiPoolListAllOf.md)
- - [StorageHitachiPoolRelationship](docs/StorageHitachiPoolRelationship.md)
- - [StorageHitachiPoolResponse](docs/StorageHitachiPoolResponse.md)
- - [StorageHitachiPort](docs/StorageHitachiPort.md)
- - [StorageHitachiPortAllOf](docs/StorageHitachiPortAllOf.md)
- - [StorageHitachiPortList](docs/StorageHitachiPortList.md)
- - [StorageHitachiPortListAllOf](docs/StorageHitachiPortListAllOf.md)
- - [StorageHitachiPortResponse](docs/StorageHitachiPortResponse.md)
- - [StorageHitachiVolume](docs/StorageHitachiVolume.md)
- - [StorageHitachiVolumeAllOf](docs/StorageHitachiVolumeAllOf.md)
- - [StorageHitachiVolumeList](docs/StorageHitachiVolumeList.md)
- - [StorageHitachiVolumeListAllOf](docs/StorageHitachiVolumeListAllOf.md)
- - [StorageHitachiVolumeRelationship](docs/StorageHitachiVolumeRelationship.md)
- - [StorageHitachiVolumeResponse](docs/StorageHitachiVolumeResponse.md)
- - [StorageHyperFlexStorageContainer](docs/StorageHyperFlexStorageContainer.md)
- - [StorageHyperFlexStorageContainerAllOf](docs/StorageHyperFlexStorageContainerAllOf.md)
- - [StorageHyperFlexStorageContainerList](docs/StorageHyperFlexStorageContainerList.md)
- - [StorageHyperFlexStorageContainerListAllOf](docs/StorageHyperFlexStorageContainerListAllOf.md)
- - [StorageHyperFlexStorageContainerRelationship](docs/StorageHyperFlexStorageContainerRelationship.md)
- - [StorageHyperFlexStorageContainerResponse](docs/StorageHyperFlexStorageContainerResponse.md)
- - [StorageHyperFlexVolume](docs/StorageHyperFlexVolume.md)
- - [StorageHyperFlexVolumeAllOf](docs/StorageHyperFlexVolumeAllOf.md)
- - [StorageHyperFlexVolumeList](docs/StorageHyperFlexVolumeList.md)
- - [StorageHyperFlexVolumeListAllOf](docs/StorageHyperFlexVolumeListAllOf.md)
- - [StorageHyperFlexVolumeRelationship](docs/StorageHyperFlexVolumeRelationship.md)
- - [StorageHyperFlexVolumeResponse](docs/StorageHyperFlexVolumeResponse.md)
- - [StorageInitiator](docs/StorageInitiator.md)
- - [StorageItem](docs/StorageItem.md)
- - [StorageItemAllOf](docs/StorageItemAllOf.md)
- - [StorageItemList](docs/StorageItemList.md)
- - [StorageItemListAllOf](docs/StorageItemListAllOf.md)
- - [StorageItemRelationship](docs/StorageItemRelationship.md)
- - [StorageItemResponse](docs/StorageItemResponse.md)
- - [StorageKeySetting](docs/StorageKeySetting.md)
- - [StorageKeySettingAllOf](docs/StorageKeySettingAllOf.md)
- - [StorageLocalKeySetting](docs/StorageLocalKeySetting.md)
- - [StorageLocalKeySettingAllOf](docs/StorageLocalKeySettingAllOf.md)
- - [StorageM2VirtualDriveConfig](docs/StorageM2VirtualDriveConfig.md)
- - [StorageM2VirtualDriveConfigAllOf](docs/StorageM2VirtualDriveConfigAllOf.md)
- - [StorageManualDriveGroup](docs/StorageManualDriveGroup.md)
- - [StorageManualDriveGroupAllOf](docs/StorageManualDriveGroupAllOf.md)
- - [StorageNetAppAggregate](docs/StorageNetAppAggregate.md)
- - [StorageNetAppAggregateAllOf](docs/StorageNetAppAggregateAllOf.md)
- - [StorageNetAppAggregateList](docs/StorageNetAppAggregateList.md)
- - [StorageNetAppAggregateListAllOf](docs/StorageNetAppAggregateListAllOf.md)
- - [StorageNetAppAggregateRelationship](docs/StorageNetAppAggregateRelationship.md)
- - [StorageNetAppAggregateResponse](docs/StorageNetAppAggregateResponse.md)
- - [StorageNetAppBaseDisk](docs/StorageNetAppBaseDisk.md)
- - [StorageNetAppBaseDiskAllOf](docs/StorageNetAppBaseDiskAllOf.md)
- - [StorageNetAppBaseDiskList](docs/StorageNetAppBaseDiskList.md)
- - [StorageNetAppBaseDiskListAllOf](docs/StorageNetAppBaseDiskListAllOf.md)
- - [StorageNetAppBaseDiskResponse](docs/StorageNetAppBaseDiskResponse.md)
- - [StorageNetAppCluster](docs/StorageNetAppCluster.md)
- - [StorageNetAppClusterAllOf](docs/StorageNetAppClusterAllOf.md)
- - [StorageNetAppClusterList](docs/StorageNetAppClusterList.md)
- - [StorageNetAppClusterListAllOf](docs/StorageNetAppClusterListAllOf.md)
- - [StorageNetAppClusterRelationship](docs/StorageNetAppClusterRelationship.md)
- - [StorageNetAppClusterResponse](docs/StorageNetAppClusterResponse.md)
- - [StorageNetAppEthernetPort](docs/StorageNetAppEthernetPort.md)
- - [StorageNetAppEthernetPortAllOf](docs/StorageNetAppEthernetPortAllOf.md)
- - [StorageNetAppEthernetPortList](docs/StorageNetAppEthernetPortList.md)
- - [StorageNetAppEthernetPortListAllOf](docs/StorageNetAppEthernetPortListAllOf.md)
- - [StorageNetAppEthernetPortRelationship](docs/StorageNetAppEthernetPortRelationship.md)
- - [StorageNetAppEthernetPortResponse](docs/StorageNetAppEthernetPortResponse.md)
- - [StorageNetAppExportPolicy](docs/StorageNetAppExportPolicy.md)
- - [StorageNetAppExportPolicyAllOf](docs/StorageNetAppExportPolicyAllOf.md)
- - [StorageNetAppExportPolicyList](docs/StorageNetAppExportPolicyList.md)
- - [StorageNetAppExportPolicyListAllOf](docs/StorageNetAppExportPolicyListAllOf.md)
- - [StorageNetAppExportPolicyResponse](docs/StorageNetAppExportPolicyResponse.md)
- - [StorageNetAppExportPolicyRule](docs/StorageNetAppExportPolicyRule.md)
- - [StorageNetAppExportPolicyRuleAllOf](docs/StorageNetAppExportPolicyRuleAllOf.md)
- - [StorageNetAppFcInterface](docs/StorageNetAppFcInterface.md)
- - [StorageNetAppFcInterfaceAllOf](docs/StorageNetAppFcInterfaceAllOf.md)
- - [StorageNetAppFcInterfaceList](docs/StorageNetAppFcInterfaceList.md)
- - [StorageNetAppFcInterfaceListAllOf](docs/StorageNetAppFcInterfaceListAllOf.md)
- - [StorageNetAppFcInterfaceResponse](docs/StorageNetAppFcInterfaceResponse.md)
- - [StorageNetAppFcPort](docs/StorageNetAppFcPort.md)
- - [StorageNetAppFcPortAllOf](docs/StorageNetAppFcPortAllOf.md)
- - [StorageNetAppFcPortList](docs/StorageNetAppFcPortList.md)
- - [StorageNetAppFcPortListAllOf](docs/StorageNetAppFcPortListAllOf.md)
- - [StorageNetAppFcPortRelationship](docs/StorageNetAppFcPortRelationship.md)
- - [StorageNetAppFcPortResponse](docs/StorageNetAppFcPortResponse.md)
- - [StorageNetAppInitiatorGroup](docs/StorageNetAppInitiatorGroup.md)
- - [StorageNetAppInitiatorGroupAllOf](docs/StorageNetAppInitiatorGroupAllOf.md)
- - [StorageNetAppInitiatorGroupList](docs/StorageNetAppInitiatorGroupList.md)
- - [StorageNetAppInitiatorGroupListAllOf](docs/StorageNetAppInitiatorGroupListAllOf.md)
- - [StorageNetAppInitiatorGroupRelationship](docs/StorageNetAppInitiatorGroupRelationship.md)
- - [StorageNetAppInitiatorGroupResponse](docs/StorageNetAppInitiatorGroupResponse.md)
- - [StorageNetAppIpInterface](docs/StorageNetAppIpInterface.md)
- - [StorageNetAppIpInterfaceAllOf](docs/StorageNetAppIpInterfaceAllOf.md)
- - [StorageNetAppIpInterfaceList](docs/StorageNetAppIpInterfaceList.md)
- - [StorageNetAppIpInterfaceListAllOf](docs/StorageNetAppIpInterfaceListAllOf.md)
- - [StorageNetAppIpInterfaceResponse](docs/StorageNetAppIpInterfaceResponse.md)
- - [StorageNetAppLicense](docs/StorageNetAppLicense.md)
- - [StorageNetAppLicenseAllOf](docs/StorageNetAppLicenseAllOf.md)
- - [StorageNetAppLicenseList](docs/StorageNetAppLicenseList.md)
- - [StorageNetAppLicenseListAllOf](docs/StorageNetAppLicenseListAllOf.md)
- - [StorageNetAppLicenseResponse](docs/StorageNetAppLicenseResponse.md)
- - [StorageNetAppLun](docs/StorageNetAppLun.md)
- - [StorageNetAppLunAllOf](docs/StorageNetAppLunAllOf.md)
- - [StorageNetAppLunList](docs/StorageNetAppLunList.md)
- - [StorageNetAppLunListAllOf](docs/StorageNetAppLunListAllOf.md)
- - [StorageNetAppLunMap](docs/StorageNetAppLunMap.md)
- - [StorageNetAppLunMapAllOf](docs/StorageNetAppLunMapAllOf.md)
- - [StorageNetAppLunMapList](docs/StorageNetAppLunMapList.md)
- - [StorageNetAppLunMapListAllOf](docs/StorageNetAppLunMapListAllOf.md)
- - [StorageNetAppLunMapResponse](docs/StorageNetAppLunMapResponse.md)
- - [StorageNetAppLunRelationship](docs/StorageNetAppLunRelationship.md)
- - [StorageNetAppLunResponse](docs/StorageNetAppLunResponse.md)
- - [StorageNetAppNode](docs/StorageNetAppNode.md)
- - [StorageNetAppNodeAllOf](docs/StorageNetAppNodeAllOf.md)
- - [StorageNetAppNodeList](docs/StorageNetAppNodeList.md)
- - [StorageNetAppNodeListAllOf](docs/StorageNetAppNodeListAllOf.md)
- - [StorageNetAppNodeRelationship](docs/StorageNetAppNodeRelationship.md)
- - [StorageNetAppNodeResponse](docs/StorageNetAppNodeResponse.md)
- - [StorageNetAppStorageUtilization](docs/StorageNetAppStorageUtilization.md)
- - [StorageNetAppStorageUtilizationAllOf](docs/StorageNetAppStorageUtilizationAllOf.md)
- - [StorageNetAppStorageVm](docs/StorageNetAppStorageVm.md)
- - [StorageNetAppStorageVmAllOf](docs/StorageNetAppStorageVmAllOf.md)
- - [StorageNetAppStorageVmList](docs/StorageNetAppStorageVmList.md)
- - [StorageNetAppStorageVmListAllOf](docs/StorageNetAppStorageVmListAllOf.md)
- - [StorageNetAppStorageVmRelationship](docs/StorageNetAppStorageVmRelationship.md)
- - [StorageNetAppStorageVmResponse](docs/StorageNetAppStorageVmResponse.md)
- - [StorageNetAppVolume](docs/StorageNetAppVolume.md)
- - [StorageNetAppVolumeAllOf](docs/StorageNetAppVolumeAllOf.md)
- - [StorageNetAppVolumeList](docs/StorageNetAppVolumeList.md)
- - [StorageNetAppVolumeListAllOf](docs/StorageNetAppVolumeListAllOf.md)
- - [StorageNetAppVolumeRelationship](docs/StorageNetAppVolumeRelationship.md)
- - [StorageNetAppVolumeResponse](docs/StorageNetAppVolumeResponse.md)
- - [StorageNetAppVolumeSnapshot](docs/StorageNetAppVolumeSnapshot.md)
- - [StorageNetAppVolumeSnapshotAllOf](docs/StorageNetAppVolumeSnapshotAllOf.md)
- - [StorageNetAppVolumeSnapshotList](docs/StorageNetAppVolumeSnapshotList.md)
- - [StorageNetAppVolumeSnapshotListAllOf](docs/StorageNetAppVolumeSnapshotListAllOf.md)
- - [StorageNetAppVolumeSnapshotResponse](docs/StorageNetAppVolumeSnapshotResponse.md)
- - [StoragePhysicalDisk](docs/StoragePhysicalDisk.md)
- - [StoragePhysicalDiskAllOf](docs/StoragePhysicalDiskAllOf.md)
- - [StoragePhysicalDiskExtension](docs/StoragePhysicalDiskExtension.md)
- - [StoragePhysicalDiskExtensionAllOf](docs/StoragePhysicalDiskExtensionAllOf.md)
- - [StoragePhysicalDiskExtensionList](docs/StoragePhysicalDiskExtensionList.md)
- - [StoragePhysicalDiskExtensionListAllOf](docs/StoragePhysicalDiskExtensionListAllOf.md)
- - [StoragePhysicalDiskExtensionRelationship](docs/StoragePhysicalDiskExtensionRelationship.md)
- - [StoragePhysicalDiskExtensionResponse](docs/StoragePhysicalDiskExtensionResponse.md)
- - [StoragePhysicalDiskList](docs/StoragePhysicalDiskList.md)
- - [StoragePhysicalDiskListAllOf](docs/StoragePhysicalDiskListAllOf.md)
- - [StoragePhysicalDiskRelationship](docs/StoragePhysicalDiskRelationship.md)
- - [StoragePhysicalDiskResponse](docs/StoragePhysicalDiskResponse.md)
- - [StoragePhysicalDiskUsage](docs/StoragePhysicalDiskUsage.md)
- - [StoragePhysicalDiskUsageAllOf](docs/StoragePhysicalDiskUsageAllOf.md)
- - [StoragePhysicalDiskUsageList](docs/StoragePhysicalDiskUsageList.md)
- - [StoragePhysicalDiskUsageListAllOf](docs/StoragePhysicalDiskUsageListAllOf.md)
- - [StoragePhysicalDiskUsageRelationship](docs/StoragePhysicalDiskUsageRelationship.md)
- - [StoragePhysicalDiskUsageResponse](docs/StoragePhysicalDiskUsageResponse.md)
- - [StoragePureArray](docs/StoragePureArray.md)
- - [StoragePureArrayAllOf](docs/StoragePureArrayAllOf.md)
- - [StoragePureArrayList](docs/StoragePureArrayList.md)
- - [StoragePureArrayListAllOf](docs/StoragePureArrayListAllOf.md)
- - [StoragePureArrayRelationship](docs/StoragePureArrayRelationship.md)
- - [StoragePureArrayResponse](docs/StoragePureArrayResponse.md)
- - [StoragePureArrayUtilization](docs/StoragePureArrayUtilization.md)
- - [StoragePureArrayUtilizationAllOf](docs/StoragePureArrayUtilizationAllOf.md)
- - [StoragePureController](docs/StoragePureController.md)
- - [StoragePureControllerAllOf](docs/StoragePureControllerAllOf.md)
- - [StoragePureControllerList](docs/StoragePureControllerList.md)
- - [StoragePureControllerListAllOf](docs/StoragePureControllerListAllOf.md)
- - [StoragePureControllerRelationship](docs/StoragePureControllerRelationship.md)
- - [StoragePureControllerResponse](docs/StoragePureControllerResponse.md)
- - [StoragePureDisk](docs/StoragePureDisk.md)
- - [StoragePureDiskAllOf](docs/StoragePureDiskAllOf.md)
- - [StoragePureDiskList](docs/StoragePureDiskList.md)
- - [StoragePureDiskListAllOf](docs/StoragePureDiskListAllOf.md)
- - [StoragePureDiskResponse](docs/StoragePureDiskResponse.md)
- - [StoragePureDiskUtilization](docs/StoragePureDiskUtilization.md)
- - [StoragePureHost](docs/StoragePureHost.md)
- - [StoragePureHostAllOf](docs/StoragePureHostAllOf.md)
- - [StoragePureHostGroup](docs/StoragePureHostGroup.md)
- - [StoragePureHostGroupAllOf](docs/StoragePureHostGroupAllOf.md)
- - [StoragePureHostGroupList](docs/StoragePureHostGroupList.md)
- - [StoragePureHostGroupListAllOf](docs/StoragePureHostGroupListAllOf.md)
- - [StoragePureHostGroupRelationship](docs/StoragePureHostGroupRelationship.md)
- - [StoragePureHostGroupResponse](docs/StoragePureHostGroupResponse.md)
- - [StoragePureHostList](docs/StoragePureHostList.md)
- - [StoragePureHostListAllOf](docs/StoragePureHostListAllOf.md)
- - [StoragePureHostLun](docs/StoragePureHostLun.md)
- - [StoragePureHostLunAllOf](docs/StoragePureHostLunAllOf.md)
- - [StoragePureHostLunList](docs/StoragePureHostLunList.md)
- - [StoragePureHostLunListAllOf](docs/StoragePureHostLunListAllOf.md)
- - [StoragePureHostLunResponse](docs/StoragePureHostLunResponse.md)
- - [StoragePureHostRelationship](docs/StoragePureHostRelationship.md)
- - [StoragePureHostResponse](docs/StoragePureHostResponse.md)
- - [StoragePureHostUtilization](docs/StoragePureHostUtilization.md)
- - [StoragePurePort](docs/StoragePurePort.md)
- - [StoragePurePortAllOf](docs/StoragePurePortAllOf.md)
- - [StoragePurePortList](docs/StoragePurePortList.md)
- - [StoragePurePortListAllOf](docs/StoragePurePortListAllOf.md)
- - [StoragePurePortResponse](docs/StoragePurePortResponse.md)
- - [StoragePureProtectionGroup](docs/StoragePureProtectionGroup.md)
- - [StoragePureProtectionGroupAllOf](docs/StoragePureProtectionGroupAllOf.md)
- - [StoragePureProtectionGroupList](docs/StoragePureProtectionGroupList.md)
- - [StoragePureProtectionGroupListAllOf](docs/StoragePureProtectionGroupListAllOf.md)
- - [StoragePureProtectionGroupRelationship](docs/StoragePureProtectionGroupRelationship.md)
- - [StoragePureProtectionGroupResponse](docs/StoragePureProtectionGroupResponse.md)
- - [StoragePureProtectionGroupSnapshot](docs/StoragePureProtectionGroupSnapshot.md)
- - [StoragePureProtectionGroupSnapshotAllOf](docs/StoragePureProtectionGroupSnapshotAllOf.md)
- - [StoragePureProtectionGroupSnapshotList](docs/StoragePureProtectionGroupSnapshotList.md)
- - [StoragePureProtectionGroupSnapshotListAllOf](docs/StoragePureProtectionGroupSnapshotListAllOf.md)
- - [StoragePureProtectionGroupSnapshotRelationship](docs/StoragePureProtectionGroupSnapshotRelationship.md)
- - [StoragePureProtectionGroupSnapshotResponse](docs/StoragePureProtectionGroupSnapshotResponse.md)
- - [StoragePureReplicationBlackout](docs/StoragePureReplicationBlackout.md)
- - [StoragePureReplicationSchedule](docs/StoragePureReplicationSchedule.md)
- - [StoragePureReplicationScheduleAllOf](docs/StoragePureReplicationScheduleAllOf.md)
- - [StoragePureReplicationScheduleList](docs/StoragePureReplicationScheduleList.md)
- - [StoragePureReplicationScheduleListAllOf](docs/StoragePureReplicationScheduleListAllOf.md)
- - [StoragePureReplicationScheduleResponse](docs/StoragePureReplicationScheduleResponse.md)
- - [StoragePureSnapshotSchedule](docs/StoragePureSnapshotSchedule.md)
- - [StoragePureSnapshotScheduleAllOf](docs/StoragePureSnapshotScheduleAllOf.md)
- - [StoragePureSnapshotScheduleList](docs/StoragePureSnapshotScheduleList.md)
- - [StoragePureSnapshotScheduleListAllOf](docs/StoragePureSnapshotScheduleListAllOf.md)
- - [StoragePureSnapshotScheduleResponse](docs/StoragePureSnapshotScheduleResponse.md)
- - [StoragePureVolume](docs/StoragePureVolume.md)
- - [StoragePureVolumeAllOf](docs/StoragePureVolumeAllOf.md)
- - [StoragePureVolumeList](docs/StoragePureVolumeList.md)
- - [StoragePureVolumeListAllOf](docs/StoragePureVolumeListAllOf.md)
- - [StoragePureVolumeRelationship](docs/StoragePureVolumeRelationship.md)
- - [StoragePureVolumeResponse](docs/StoragePureVolumeResponse.md)
- - [StoragePureVolumeSnapshot](docs/StoragePureVolumeSnapshot.md)
- - [StoragePureVolumeSnapshotAllOf](docs/StoragePureVolumeSnapshotAllOf.md)
- - [StoragePureVolumeSnapshotList](docs/StoragePureVolumeSnapshotList.md)
- - [StoragePureVolumeSnapshotListAllOf](docs/StoragePureVolumeSnapshotListAllOf.md)
- - [StoragePureVolumeSnapshotResponse](docs/StoragePureVolumeSnapshotResponse.md)
- - [StoragePureVolumeUtilization](docs/StoragePureVolumeUtilization.md)
- - [StorageR0Drive](docs/StorageR0Drive.md)
- - [StorageR0DriveAllOf](docs/StorageR0DriveAllOf.md)
- - [StorageRemoteKeySetting](docs/StorageRemoteKeySetting.md)
- - [StorageRemoteKeySettingAllOf](docs/StorageRemoteKeySettingAllOf.md)
- - [StorageSasExpander](docs/StorageSasExpander.md)
- - [StorageSasExpanderAllOf](docs/StorageSasExpanderAllOf.md)
- - [StorageSasExpanderList](docs/StorageSasExpanderList.md)
- - [StorageSasExpanderListAllOf](docs/StorageSasExpanderListAllOf.md)
- - [StorageSasExpanderRelationship](docs/StorageSasExpanderRelationship.md)
- - [StorageSasExpanderResponse](docs/StorageSasExpanderResponse.md)
- - [StorageSasPort](docs/StorageSasPort.md)
- - [StorageSasPortAllOf](docs/StorageSasPortAllOf.md)
- - [StorageSasPortList](docs/StorageSasPortList.md)
- - [StorageSasPortListAllOf](docs/StorageSasPortListAllOf.md)
- - [StorageSasPortRelationship](docs/StorageSasPortRelationship.md)
- - [StorageSasPortResponse](docs/StorageSasPortResponse.md)
- - [StorageSpan](docs/StorageSpan.md)
- - [StorageSpanAllOf](docs/StorageSpanAllOf.md)
- - [StorageSpanDrives](docs/StorageSpanDrives.md)
- - [StorageSpanDrivesAllOf](docs/StorageSpanDrivesAllOf.md)
- - [StorageSpanList](docs/StorageSpanList.md)
- - [StorageSpanListAllOf](docs/StorageSpanListAllOf.md)
- - [StorageSpanRelationship](docs/StorageSpanRelationship.md)
- - [StorageSpanResponse](docs/StorageSpanResponse.md)
- - [StorageStorageContainerUtilization](docs/StorageStorageContainerUtilization.md)
- - [StorageStoragePolicy](docs/StorageStoragePolicy.md)
- - [StorageStoragePolicyAllOf](docs/StorageStoragePolicyAllOf.md)
- - [StorageStoragePolicyList](docs/StorageStoragePolicyList.md)
- - [StorageStoragePolicyListAllOf](docs/StorageStoragePolicyListAllOf.md)
- - [StorageStoragePolicyRelationship](docs/StorageStoragePolicyRelationship.md)
- - [StorageStoragePolicyResponse](docs/StorageStoragePolicyResponse.md)
- - [StorageStorageUtilization](docs/StorageStorageUtilization.md)
- - [StorageStorageUtilizationAllOf](docs/StorageStorageUtilizationAllOf.md)
- - [StorageVdMemberEp](docs/StorageVdMemberEp.md)
- - [StorageVdMemberEpAllOf](docs/StorageVdMemberEpAllOf.md)
- - [StorageVdMemberEpList](docs/StorageVdMemberEpList.md)
- - [StorageVdMemberEpListAllOf](docs/StorageVdMemberEpListAllOf.md)
- - [StorageVdMemberEpRelationship](docs/StorageVdMemberEpRelationship.md)
- - [StorageVdMemberEpResponse](docs/StorageVdMemberEpResponse.md)
- - [StorageVirtualDrive](docs/StorageVirtualDrive.md)
- - [StorageVirtualDriveAllOf](docs/StorageVirtualDriveAllOf.md)
- - [StorageVirtualDriveConfiguration](docs/StorageVirtualDriveConfiguration.md)
- - [StorageVirtualDriveConfigurationAllOf](docs/StorageVirtualDriveConfigurationAllOf.md)
- - [StorageVirtualDriveContainer](docs/StorageVirtualDriveContainer.md)
- - [StorageVirtualDriveContainerAllOf](docs/StorageVirtualDriveContainerAllOf.md)
- - [StorageVirtualDriveContainerList](docs/StorageVirtualDriveContainerList.md)
- - [StorageVirtualDriveContainerListAllOf](docs/StorageVirtualDriveContainerListAllOf.md)
- - [StorageVirtualDriveContainerRelationship](docs/StorageVirtualDriveContainerRelationship.md)
- - [StorageVirtualDriveContainerResponse](docs/StorageVirtualDriveContainerResponse.md)
- - [StorageVirtualDriveExtension](docs/StorageVirtualDriveExtension.md)
- - [StorageVirtualDriveExtensionAllOf](docs/StorageVirtualDriveExtensionAllOf.md)
- - [StorageVirtualDriveExtensionList](docs/StorageVirtualDriveExtensionList.md)
- - [StorageVirtualDriveExtensionListAllOf](docs/StorageVirtualDriveExtensionListAllOf.md)
- - [StorageVirtualDriveExtensionRelationship](docs/StorageVirtualDriveExtensionRelationship.md)
- - [StorageVirtualDriveExtensionResponse](docs/StorageVirtualDriveExtensionResponse.md)
- - [StorageVirtualDriveIdentity](docs/StorageVirtualDriveIdentity.md)
- - [StorageVirtualDriveIdentityAllOf](docs/StorageVirtualDriveIdentityAllOf.md)
- - [StorageVirtualDriveIdentityList](docs/StorageVirtualDriveIdentityList.md)
- - [StorageVirtualDriveIdentityListAllOf](docs/StorageVirtualDriveIdentityListAllOf.md)
- - [StorageVirtualDriveIdentityResponse](docs/StorageVirtualDriveIdentityResponse.md)
- - [StorageVirtualDriveList](docs/StorageVirtualDriveList.md)
- - [StorageVirtualDriveListAllOf](docs/StorageVirtualDriveListAllOf.md)
- - [StorageVirtualDrivePolicy](docs/StorageVirtualDrivePolicy.md)
- - [StorageVirtualDrivePolicyAllOf](docs/StorageVirtualDrivePolicyAllOf.md)
- - [StorageVirtualDriveRelationship](docs/StorageVirtualDriveRelationship.md)
- - [StorageVirtualDriveResponse](docs/StorageVirtualDriveResponse.md)
- - [StorageVolumeUtilization](docs/StorageVolumeUtilization.md)
- - [SyslogLocalClientBase](docs/SyslogLocalClientBase.md)
- - [SyslogLocalClientBaseAllOf](docs/SyslogLocalClientBaseAllOf.md)
- - [SyslogLocalFileLoggingClient](docs/SyslogLocalFileLoggingClient.md)
- - [SyslogPolicy](docs/SyslogPolicy.md)
- - [SyslogPolicyAllOf](docs/SyslogPolicyAllOf.md)
- - [SyslogPolicyList](docs/SyslogPolicyList.md)
- - [SyslogPolicyListAllOf](docs/SyslogPolicyListAllOf.md)
- - [SyslogPolicyResponse](docs/SyslogPolicyResponse.md)
- - [SyslogRemoteClientBase](docs/SyslogRemoteClientBase.md)
- - [SyslogRemoteClientBaseAllOf](docs/SyslogRemoteClientBaseAllOf.md)
- - [SyslogRemoteLoggingClient](docs/SyslogRemoteLoggingClient.md)
- - [TamAction](docs/TamAction.md)
- - [TamActionAllOf](docs/TamActionAllOf.md)
- - [TamAdvisoryCount](docs/TamAdvisoryCount.md)
- - [TamAdvisoryCountAllOf](docs/TamAdvisoryCountAllOf.md)
- - [TamAdvisoryCountList](docs/TamAdvisoryCountList.md)
- - [TamAdvisoryCountListAllOf](docs/TamAdvisoryCountListAllOf.md)
- - [TamAdvisoryCountResponse](docs/TamAdvisoryCountResponse.md)
- - [TamAdvisoryDefinition](docs/TamAdvisoryDefinition.md)
- - [TamAdvisoryDefinitionAllOf](docs/TamAdvisoryDefinitionAllOf.md)
- - [TamAdvisoryDefinitionList](docs/TamAdvisoryDefinitionList.md)
- - [TamAdvisoryDefinitionListAllOf](docs/TamAdvisoryDefinitionListAllOf.md)
- - [TamAdvisoryDefinitionResponse](docs/TamAdvisoryDefinitionResponse.md)
- - [TamAdvisoryInfo](docs/TamAdvisoryInfo.md)
- - [TamAdvisoryInfoAllOf](docs/TamAdvisoryInfoAllOf.md)
- - [TamAdvisoryInfoList](docs/TamAdvisoryInfoList.md)
- - [TamAdvisoryInfoListAllOf](docs/TamAdvisoryInfoListAllOf.md)
- - [TamAdvisoryInfoResponse](docs/TamAdvisoryInfoResponse.md)
- - [TamAdvisoryInstance](docs/TamAdvisoryInstance.md)
- - [TamAdvisoryInstanceAllOf](docs/TamAdvisoryInstanceAllOf.md)
- - [TamAdvisoryInstanceList](docs/TamAdvisoryInstanceList.md)
- - [TamAdvisoryInstanceListAllOf](docs/TamAdvisoryInstanceListAllOf.md)
- - [TamAdvisoryInstanceResponse](docs/TamAdvisoryInstanceResponse.md)
- - [TamApiDataSource](docs/TamApiDataSource.md)
- - [TamApiDataSourceAllOf](docs/TamApiDataSourceAllOf.md)
- - [TamBaseAdvisory](docs/TamBaseAdvisory.md)
- - [TamBaseAdvisoryAllOf](docs/TamBaseAdvisoryAllOf.md)
- - [TamBaseAdvisoryDetails](docs/TamBaseAdvisoryDetails.md)
- - [TamBaseAdvisoryDetailsAllOf](docs/TamBaseAdvisoryDetailsAllOf.md)
- - [TamBaseAdvisoryRelationship](docs/TamBaseAdvisoryRelationship.md)
- - [TamBaseDataSource](docs/TamBaseDataSource.md)
- - [TamBaseDataSourceAllOf](docs/TamBaseDataSourceAllOf.md)
- - [TamIdentifiers](docs/TamIdentifiers.md)
- - [TamIdentifiersAllOf](docs/TamIdentifiersAllOf.md)
- - [TamPsirtSeverity](docs/TamPsirtSeverity.md)
- - [TamPsirtSeverityAllOf](docs/TamPsirtSeverityAllOf.md)
- - [TamQueryEntry](docs/TamQueryEntry.md)
- - [TamQueryEntryAllOf](docs/TamQueryEntryAllOf.md)
- - [TamS3DataSource](docs/TamS3DataSource.md)
- - [TamS3DataSourceAllOf](docs/TamS3DataSourceAllOf.md)
- - [TamSecurityAdvisory](docs/TamSecurityAdvisory.md)
- - [TamSecurityAdvisoryAllOf](docs/TamSecurityAdvisoryAllOf.md)
- - [TamSecurityAdvisoryDetails](docs/TamSecurityAdvisoryDetails.md)
- - [TamSecurityAdvisoryDetailsAllOf](docs/TamSecurityAdvisoryDetailsAllOf.md)
- - [TamSecurityAdvisoryList](docs/TamSecurityAdvisoryList.md)
- - [TamSecurityAdvisoryListAllOf](docs/TamSecurityAdvisoryListAllOf.md)
- - [TamSecurityAdvisoryResponse](docs/TamSecurityAdvisoryResponse.md)
- - [TamSeverity](docs/TamSeverity.md)
- - [TamTextFsmTemplateDataSource](docs/TamTextFsmTemplateDataSource.md)
- - [TamTextFsmTemplateDataSourceAllOf](docs/TamTextFsmTemplateDataSourceAllOf.md)
- - [TaskHitachiScopedInventory](docs/TaskHitachiScopedInventory.md)
- - [TaskHitachiScopedInventoryAllOf](docs/TaskHitachiScopedInventoryAllOf.md)
- - [TaskHxapScopedInventory](docs/TaskHxapScopedInventory.md)
- - [TaskHxapScopedInventoryAllOf](docs/TaskHxapScopedInventoryAllOf.md)
- - [TaskNetAppScopedInventory](docs/TaskNetAppScopedInventory.md)
- - [TaskNetAppScopedInventoryAllOf](docs/TaskNetAppScopedInventoryAllOf.md)
- - [TaskPublicCloudScopedInventory](docs/TaskPublicCloudScopedInventory.md)
- - [TaskPublicCloudScopedInventoryAllOf](docs/TaskPublicCloudScopedInventoryAllOf.md)
- - [TaskPureScopedInventory](docs/TaskPureScopedInventory.md)
- - [TaskPureScopedInventoryAllOf](docs/TaskPureScopedInventoryAllOf.md)
- - [TechsupportmanagementApplianceParam](docs/TechsupportmanagementApplianceParam.md)
- - [TechsupportmanagementApplianceParamAllOf](docs/TechsupportmanagementApplianceParamAllOf.md)
- - [TechsupportmanagementCollectionControlPolicy](docs/TechsupportmanagementCollectionControlPolicy.md)
- - [TechsupportmanagementCollectionControlPolicyAllOf](docs/TechsupportmanagementCollectionControlPolicyAllOf.md)
- - [TechsupportmanagementCollectionControlPolicyList](docs/TechsupportmanagementCollectionControlPolicyList.md)
- - [TechsupportmanagementCollectionControlPolicyListAllOf](docs/TechsupportmanagementCollectionControlPolicyListAllOf.md)
- - [TechsupportmanagementCollectionControlPolicyResponse](docs/TechsupportmanagementCollectionControlPolicyResponse.md)
- - [TechsupportmanagementDownload](docs/TechsupportmanagementDownload.md)
- - [TechsupportmanagementDownloadAllOf](docs/TechsupportmanagementDownloadAllOf.md)
- - [TechsupportmanagementDownloadList](docs/TechsupportmanagementDownloadList.md)
- - [TechsupportmanagementDownloadListAllOf](docs/TechsupportmanagementDownloadListAllOf.md)
- - [TechsupportmanagementDownloadResponse](docs/TechsupportmanagementDownloadResponse.md)
- - [TechsupportmanagementNiaParam](docs/TechsupportmanagementNiaParam.md)
- - [TechsupportmanagementNiaParamAllOf](docs/TechsupportmanagementNiaParamAllOf.md)
- - [TechsupportmanagementPlatformParam](docs/TechsupportmanagementPlatformParam.md)
- - [TechsupportmanagementPlatformParamAllOf](docs/TechsupportmanagementPlatformParamAllOf.md)
- - [TechsupportmanagementTechSupportBundle](docs/TechsupportmanagementTechSupportBundle.md)
- - [TechsupportmanagementTechSupportBundleAllOf](docs/TechsupportmanagementTechSupportBundleAllOf.md)
- - [TechsupportmanagementTechSupportBundleList](docs/TechsupportmanagementTechSupportBundleList.md)
- - [TechsupportmanagementTechSupportBundleListAllOf](docs/TechsupportmanagementTechSupportBundleListAllOf.md)
- - [TechsupportmanagementTechSupportBundleRelationship](docs/TechsupportmanagementTechSupportBundleRelationship.md)
- - [TechsupportmanagementTechSupportBundleResponse](docs/TechsupportmanagementTechSupportBundleResponse.md)
- - [TechsupportmanagementTechSupportStatus](docs/TechsupportmanagementTechSupportStatus.md)
- - [TechsupportmanagementTechSupportStatusAllOf](docs/TechsupportmanagementTechSupportStatusAllOf.md)
- - [TechsupportmanagementTechSupportStatusList](docs/TechsupportmanagementTechSupportStatusList.md)
- - [TechsupportmanagementTechSupportStatusListAllOf](docs/TechsupportmanagementTechSupportStatusListAllOf.md)
- - [TechsupportmanagementTechSupportStatusRelationship](docs/TechsupportmanagementTechSupportStatusRelationship.md)
- - [TechsupportmanagementTechSupportStatusResponse](docs/TechsupportmanagementTechSupportStatusResponse.md)
- - [TelemetryDruidAggregateSearchSpec](docs/TelemetryDruidAggregateSearchSpec.md)
- - [TelemetryDruidAggregator](docs/TelemetryDruidAggregator.md)
- - [TelemetryDruidAndFilter](docs/TelemetryDruidAndFilter.md)
- - [TelemetryDruidAndFilterAllOf](docs/TelemetryDruidAndFilterAllOf.md)
- - [TelemetryDruidAnyAggregator](docs/TelemetryDruidAnyAggregator.md)
- - [TelemetryDruidAnyAggregatorAllOf](docs/TelemetryDruidAnyAggregatorAllOf.md)
- - [TelemetryDruidArithmeticPostAggregator](docs/TelemetryDruidArithmeticPostAggregator.md)
- - [TelemetryDruidArithmeticPostAggregatorAllOf](docs/TelemetryDruidArithmeticPostAggregatorAllOf.md)
- - [TelemetryDruidBaseAggregator](docs/TelemetryDruidBaseAggregator.md)
- - [TelemetryDruidBaseDataSource](docs/TelemetryDruidBaseDataSource.md)
- - [TelemetryDruidBaseDimensionSpec](docs/TelemetryDruidBaseDimensionSpec.md)
- - [TelemetryDruidBaseFilter](docs/TelemetryDruidBaseFilter.md)
- - [TelemetryDruidBaseGranularity](docs/TelemetryDruidBaseGranularity.md)
- - [TelemetryDruidBaseHavingFilter](docs/TelemetryDruidBaseHavingFilter.md)
- - [TelemetryDruidBaseLimitSpec](docs/TelemetryDruidBaseLimitSpec.md)
- - [TelemetryDruidBasePostAggregator](docs/TelemetryDruidBasePostAggregator.md)
- - [TelemetryDruidBaseRequest](docs/TelemetryDruidBaseRequest.md)
- - [TelemetryDruidBaseSearchSpec](docs/TelemetryDruidBaseSearchSpec.md)
- - [TelemetryDruidBaseTopNMetricSpec](docs/TelemetryDruidBaseTopNMetricSpec.md)
- - [TelemetryDruidColumnComparisonFilter](docs/TelemetryDruidColumnComparisonFilter.md)
- - [TelemetryDruidColumnComparisonFilterAllOf](docs/TelemetryDruidColumnComparisonFilterAllOf.md)
- - [TelemetryDruidConstantPostAggregator](docs/TelemetryDruidConstantPostAggregator.md)
- - [TelemetryDruidConstantPostAggregatorAllOf](docs/TelemetryDruidConstantPostAggregatorAllOf.md)
- - [TelemetryDruidContainsSearchSpec](docs/TelemetryDruidContainsSearchSpec.md)
- - [TelemetryDruidContainsSearchSpecAllOf](docs/TelemetryDruidContainsSearchSpecAllOf.md)
- - [TelemetryDruidCountAggregator](docs/TelemetryDruidCountAggregator.md)
- - [TelemetryDruidCountAggregatorAllOf](docs/TelemetryDruidCountAggregatorAllOf.md)
- - [TelemetryDruidDataSource](docs/TelemetryDruidDataSource.md)
- - [TelemetryDruidDataSourceMetadataRequest](docs/TelemetryDruidDataSourceMetadataRequest.md)
- - [TelemetryDruidDataSourceMetadataRequestAllOf](docs/TelemetryDruidDataSourceMetadataRequestAllOf.md)
- - [TelemetryDruidDataSourceMetadataResult](docs/TelemetryDruidDataSourceMetadataResult.md)
- - [TelemetryDruidDefaultDimensionSpec](docs/TelemetryDruidDefaultDimensionSpec.md)
- - [TelemetryDruidDefaultDimensionSpecAllOf](docs/TelemetryDruidDefaultDimensionSpecAllOf.md)
- - [TelemetryDruidDefaultLimitSpec](docs/TelemetryDruidDefaultLimitSpec.md)
- - [TelemetryDruidDefaultLimitSpecAllOf](docs/TelemetryDruidDefaultLimitSpecAllOf.md)
- - [TelemetryDruidDimensionSpec](docs/TelemetryDruidDimensionSpec.md)
- - [TelemetryDruidDimensionTopNMetricSpec](docs/TelemetryDruidDimensionTopNMetricSpec.md)
- - [TelemetryDruidDimensionTopNMetricSpecAllOf](docs/TelemetryDruidDimensionTopNMetricSpecAllOf.md)
- - [TelemetryDruidDurationGranularity](docs/TelemetryDruidDurationGranularity.md)
- - [TelemetryDruidDurationGranularityAllOf](docs/TelemetryDruidDurationGranularityAllOf.md)
- - [TelemetryDruidError](docs/TelemetryDruidError.md)
- - [TelemetryDruidExtractionDimensionSpec](docs/TelemetryDruidExtractionDimensionSpec.md)
- - [TelemetryDruidExtractionDimensionSpecAllOf](docs/TelemetryDruidExtractionDimensionSpecAllOf.md)
- - [TelemetryDruidFieldAccessorPostAggregator](docs/TelemetryDruidFieldAccessorPostAggregator.md)
- - [TelemetryDruidFieldAccessorPostAggregatorAllOf](docs/TelemetryDruidFieldAccessorPostAggregatorAllOf.md)
- - [TelemetryDruidFilter](docs/TelemetryDruidFilter.md)
- - [TelemetryDruidFilteredAggregator](docs/TelemetryDruidFilteredAggregator.md)
- - [TelemetryDruidFilteredAggregatorAllOf](docs/TelemetryDruidFilteredAggregatorAllOf.md)
- - [TelemetryDruidFirstLastAggregator](docs/TelemetryDruidFirstLastAggregator.md)
- - [TelemetryDruidFirstLastAggregatorAllOf](docs/TelemetryDruidFirstLastAggregatorAllOf.md)
- - [TelemetryDruidFragmentSearchSpec](docs/TelemetryDruidFragmentSearchSpec.md)
- - [TelemetryDruidFragmentSearchSpecAllOf](docs/TelemetryDruidFragmentSearchSpecAllOf.md)
- - [TelemetryDruidGranularity](docs/TelemetryDruidGranularity.md)
- - [TelemetryDruidGreatestLeastPostAggregator](docs/TelemetryDruidGreatestLeastPostAggregator.md)
- - [TelemetryDruidGreatestLeastPostAggregatorAllOf](docs/TelemetryDruidGreatestLeastPostAggregatorAllOf.md)
- - [TelemetryDruidGroupByRequest](docs/TelemetryDruidGroupByRequest.md)
- - [TelemetryDruidGroupByRequestAllOf](docs/TelemetryDruidGroupByRequestAllOf.md)
- - [TelemetryDruidGroupByResult](docs/TelemetryDruidGroupByResult.md)
- - [TelemetryDruidHavingDimensionSelectorFilter](docs/TelemetryDruidHavingDimensionSelectorFilter.md)
- - [TelemetryDruidHavingDimensionSelectorFilterAllOf](docs/TelemetryDruidHavingDimensionSelectorFilterAllOf.md)
- - [TelemetryDruidHavingFilter](docs/TelemetryDruidHavingFilter.md)
- - [TelemetryDruidHavingNumericFilter](docs/TelemetryDruidHavingNumericFilter.md)
- - [TelemetryDruidHavingNumericFilterAllOf](docs/TelemetryDruidHavingNumericFilterAllOf.md)
- - [TelemetryDruidHavingQueryFilter](docs/TelemetryDruidHavingQueryFilter.md)
- - [TelemetryDruidHavingQueryFilterAllOf](docs/TelemetryDruidHavingQueryFilterAllOf.md)
- - [TelemetryDruidHyperUniquePostAggregator](docs/TelemetryDruidHyperUniquePostAggregator.md)
- - [TelemetryDruidHyperUniquePostAggregatorAllOf](docs/TelemetryDruidHyperUniquePostAggregatorAllOf.md)
- - [TelemetryDruidInlineDataSource](docs/TelemetryDruidInlineDataSource.md)
- - [TelemetryDruidInlineDataSourceAllOf](docs/TelemetryDruidInlineDataSourceAllOf.md)
- - [TelemetryDruidInsensitiveContainsSearchSpec](docs/TelemetryDruidInsensitiveContainsSearchSpec.md)
- - [TelemetryDruidInsensitiveContainsSearchSpecAllOf](docs/TelemetryDruidInsensitiveContainsSearchSpecAllOf.md)
- - [TelemetryDruidIntervalResult](docs/TelemetryDruidIntervalResult.md)
- - [TelemetryDruidInvertedTopNMetricSpec](docs/TelemetryDruidInvertedTopNMetricSpec.md)
- - [TelemetryDruidInvertedTopNMetricSpecAllOf](docs/TelemetryDruidInvertedTopNMetricSpecAllOf.md)
- - [TelemetryDruidJoinDataSource](docs/TelemetryDruidJoinDataSource.md)
- - [TelemetryDruidJoinDataSourceAllOf](docs/TelemetryDruidJoinDataSourceAllOf.md)
- - [TelemetryDruidLookupDataSource](docs/TelemetryDruidLookupDataSource.md)
- - [TelemetryDruidLookupDataSourceAllOf](docs/TelemetryDruidLookupDataSourceAllOf.md)
- - [TelemetryDruidMinMaxAggregator](docs/TelemetryDruidMinMaxAggregator.md)
- - [TelemetryDruidMinMaxAggregatorAllOf](docs/TelemetryDruidMinMaxAggregatorAllOf.md)
- - [TelemetryDruidNotFilter](docs/TelemetryDruidNotFilter.md)
- - [TelemetryDruidNotFilterAllOf](docs/TelemetryDruidNotFilterAllOf.md)
- - [TelemetryDruidNumericTopNMetricSpec](docs/TelemetryDruidNumericTopNMetricSpec.md)
- - [TelemetryDruidNumericTopNMetricSpecAllOf](docs/TelemetryDruidNumericTopNMetricSpecAllOf.md)
- - [TelemetryDruidOrFilter](docs/TelemetryDruidOrFilter.md)
- - [TelemetryDruidOrderByColumnSpec](docs/TelemetryDruidOrderByColumnSpec.md)
- - [TelemetryDruidPeriodGranularity](docs/TelemetryDruidPeriodGranularity.md)
- - [TelemetryDruidPeriodGranularityAllOf](docs/TelemetryDruidPeriodGranularityAllOf.md)
- - [TelemetryDruidPostAggregator](docs/TelemetryDruidPostAggregator.md)
- - [TelemetryDruidQueryContext](docs/TelemetryDruidQueryContext.md)
- - [TelemetryDruidQueryDataSource](docs/TelemetryDruidQueryDataSource.md)
- - [TelemetryDruidQueryDataSourceAllOf](docs/TelemetryDruidQueryDataSourceAllOf.md)
- - [TelemetryDruidRegexFilter](docs/TelemetryDruidRegexFilter.md)
- - [TelemetryDruidRegexFilterAllOf](docs/TelemetryDruidRegexFilterAllOf.md)
- - [TelemetryDruidRegexSearchSpec](docs/TelemetryDruidRegexSearchSpec.md)
- - [TelemetryDruidRegexSearchSpecAllOf](docs/TelemetryDruidRegexSearchSpecAllOf.md)
- - [TelemetryDruidScanRequest](docs/TelemetryDruidScanRequest.md)
- - [TelemetryDruidScanRequestAllOf](docs/TelemetryDruidScanRequestAllOf.md)
- - [TelemetryDruidScanResult](docs/TelemetryDruidScanResult.md)
- - [TelemetryDruidSearchRequest](docs/TelemetryDruidSearchRequest.md)
- - [TelemetryDruidSearchRequestAllOf](docs/TelemetryDruidSearchRequestAllOf.md)
- - [TelemetryDruidSearchResult](docs/TelemetryDruidSearchResult.md)
- - [TelemetryDruidSegmentMetadataRequest](docs/TelemetryDruidSegmentMetadataRequest.md)
- - [TelemetryDruidSegmentMetadataRequestAllOf](docs/TelemetryDruidSegmentMetadataRequestAllOf.md)
- - [TelemetryDruidSegmentMetadataResult](docs/TelemetryDruidSegmentMetadataResult.md)
- - [TelemetryDruidSelectorFilter](docs/TelemetryDruidSelectorFilter.md)
- - [TelemetryDruidSelectorFilterAllOf](docs/TelemetryDruidSelectorFilterAllOf.md)
- - [TelemetryDruidStringAnyAggregator](docs/TelemetryDruidStringAnyAggregator.md)
- - [TelemetryDruidStringAnyAggregatorAllOf](docs/TelemetryDruidStringAnyAggregatorAllOf.md)
- - [TelemetryDruidStringFirstLastAggregator](docs/TelemetryDruidStringFirstLastAggregator.md)
- - [TelemetryDruidStringFirstLastAggregatorAllOf](docs/TelemetryDruidStringFirstLastAggregatorAllOf.md)
- - [TelemetryDruidSumAggregator](docs/TelemetryDruidSumAggregator.md)
- - [TelemetryDruidSumAggregatorAllOf](docs/TelemetryDruidSumAggregatorAllOf.md)
- - [TelemetryDruidTableDataSource](docs/TelemetryDruidTableDataSource.md)
- - [TelemetryDruidTableDataSourceAllOf](docs/TelemetryDruidTableDataSourceAllOf.md)
- - [TelemetryDruidThetaSketchAggregator](docs/TelemetryDruidThetaSketchAggregator.md)
- - [TelemetryDruidThetaSketchAggregatorAllOf](docs/TelemetryDruidThetaSketchAggregatorAllOf.md)
- - [TelemetryDruidThetaSketchEstimatePostAggregator](docs/TelemetryDruidThetaSketchEstimatePostAggregator.md)
- - [TelemetryDruidThetaSketchEstimatePostAggregatorAllOf](docs/TelemetryDruidThetaSketchEstimatePostAggregatorAllOf.md)
- - [TelemetryDruidThetaSketchOperationsPostAggregator](docs/TelemetryDruidThetaSketchOperationsPostAggregator.md)
- - [TelemetryDruidThetaSketchOperationsPostAggregatorAllOf](docs/TelemetryDruidThetaSketchOperationsPostAggregatorAllOf.md)
- - [TelemetryDruidTimeBoundaryRequest](docs/TelemetryDruidTimeBoundaryRequest.md)
- - [TelemetryDruidTimeBoundaryRequestAllOf](docs/TelemetryDruidTimeBoundaryRequestAllOf.md)
- - [TelemetryDruidTimeBoundaryResult](docs/TelemetryDruidTimeBoundaryResult.md)
- - [TelemetryDruidTimeSeriesRequest](docs/TelemetryDruidTimeSeriesRequest.md)
- - [TelemetryDruidTimeSeriesRequestAllOf](docs/TelemetryDruidTimeSeriesRequestAllOf.md)
- - [TelemetryDruidTopNMetricSpec](docs/TelemetryDruidTopNMetricSpec.md)
- - [TelemetryDruidTopNRequest](docs/TelemetryDruidTopNRequest.md)
- - [TelemetryDruidTopNRequestAllOf](docs/TelemetryDruidTopNRequestAllOf.md)
- - [TelemetryDruidTopNResult](docs/TelemetryDruidTopNResult.md)
- - [TelemetryDruidUnionDataSource](docs/TelemetryDruidUnionDataSource.md)
- - [TelemetryDruidUnionDataSourceAllOf](docs/TelemetryDruidUnionDataSourceAllOf.md)
- - [TemplateTransformationStage](docs/TemplateTransformationStage.md)
- - [TemplateTransformationStageAllOf](docs/TemplateTransformationStageAllOf.md)
- - [TerminalAuditLog](docs/TerminalAuditLog.md)
- - [TerminalAuditLogAllOf](docs/TerminalAuditLogAllOf.md)
- - [TerminalAuditLogList](docs/TerminalAuditLogList.md)
- - [TerminalAuditLogListAllOf](docs/TerminalAuditLogListAllOf.md)
- - [TerminalAuditLogResponse](docs/TerminalAuditLogResponse.md)
- - [ThermalPolicy](docs/ThermalPolicy.md)
- - [ThermalPolicyAllOf](docs/ThermalPolicyAllOf.md)
- - [ThermalPolicyList](docs/ThermalPolicyList.md)
- - [ThermalPolicyListAllOf](docs/ThermalPolicyListAllOf.md)
- - [ThermalPolicyResponse](docs/ThermalPolicyResponse.md)
- - [TopSystem](docs/TopSystem.md)
- - [TopSystemAllOf](docs/TopSystemAllOf.md)
- - [TopSystemList](docs/TopSystemList.md)
- - [TopSystemListAllOf](docs/TopSystemListAllOf.md)
- - [TopSystemRelationship](docs/TopSystemRelationship.md)
- - [TopSystemResponse](docs/TopSystemResponse.md)
- - [TunnelingTunnel](docs/TunnelingTunnel.md)
- - [TunnelingTunnelAllOf](docs/TunnelingTunnelAllOf.md)
- - [UcsdBackupInfo](docs/UcsdBackupInfo.md)
- - [UcsdBackupInfoAllOf](docs/UcsdBackupInfoAllOf.md)
- - [UcsdBackupInfoList](docs/UcsdBackupInfoList.md)
- - [UcsdBackupInfoListAllOf](docs/UcsdBackupInfoListAllOf.md)
- - [UcsdBackupInfoResponse](docs/UcsdBackupInfoResponse.md)
- - [UcsdConnectorPack](docs/UcsdConnectorPack.md)
- - [UcsdConnectorPackAllOf](docs/UcsdConnectorPackAllOf.md)
- - [UcsdUcsdRestoreParameters](docs/UcsdUcsdRestoreParameters.md)
- - [UcsdUcsdRestoreParametersAllOf](docs/UcsdUcsdRestoreParametersAllOf.md)
- - [UcsdconnectorRestClientMessage](docs/UcsdconnectorRestClientMessage.md)
- - [UcsdconnectorRestClientMessageAllOf](docs/UcsdconnectorRestClientMessageAllOf.md)
- - [UuidpoolBlock](docs/UuidpoolBlock.md)
- - [UuidpoolBlockAllOf](docs/UuidpoolBlockAllOf.md)
- - [UuidpoolBlockList](docs/UuidpoolBlockList.md)
- - [UuidpoolBlockListAllOf](docs/UuidpoolBlockListAllOf.md)
- - [UuidpoolBlockRelationship](docs/UuidpoolBlockRelationship.md)
- - [UuidpoolBlockResponse](docs/UuidpoolBlockResponse.md)
- - [UuidpoolPool](docs/UuidpoolPool.md)
- - [UuidpoolPoolAllOf](docs/UuidpoolPoolAllOf.md)
- - [UuidpoolPoolList](docs/UuidpoolPoolList.md)
- - [UuidpoolPoolListAllOf](docs/UuidpoolPoolListAllOf.md)
- - [UuidpoolPoolMember](docs/UuidpoolPoolMember.md)
- - [UuidpoolPoolMemberAllOf](docs/UuidpoolPoolMemberAllOf.md)
- - [UuidpoolPoolMemberList](docs/UuidpoolPoolMemberList.md)
- - [UuidpoolPoolMemberListAllOf](docs/UuidpoolPoolMemberListAllOf.md)
- - [UuidpoolPoolMemberRelationship](docs/UuidpoolPoolMemberRelationship.md)
- - [UuidpoolPoolMemberResponse](docs/UuidpoolPoolMemberResponse.md)
- - [UuidpoolPoolRelationship](docs/UuidpoolPoolRelationship.md)
- - [UuidpoolPoolResponse](docs/UuidpoolPoolResponse.md)
- - [UuidpoolUniverse](docs/UuidpoolUniverse.md)
- - [UuidpoolUniverseAllOf](docs/UuidpoolUniverseAllOf.md)
- - [UuidpoolUniverseList](docs/UuidpoolUniverseList.md)
- - [UuidpoolUniverseListAllOf](docs/UuidpoolUniverseListAllOf.md)
- - [UuidpoolUniverseRelationship](docs/UuidpoolUniverseRelationship.md)
- - [UuidpoolUniverseResponse](docs/UuidpoolUniverseResponse.md)
- - [UuidpoolUuidBlock](docs/UuidpoolUuidBlock.md)
- - [UuidpoolUuidBlockAllOf](docs/UuidpoolUuidBlockAllOf.md)
- - [UuidpoolUuidLease](docs/UuidpoolUuidLease.md)
- - [UuidpoolUuidLeaseAllOf](docs/UuidpoolUuidLeaseAllOf.md)
- - [UuidpoolUuidLeaseList](docs/UuidpoolUuidLeaseList.md)
- - [UuidpoolUuidLeaseListAllOf](docs/UuidpoolUuidLeaseListAllOf.md)
- - [UuidpoolUuidLeaseRelationship](docs/UuidpoolUuidLeaseRelationship.md)
- - [UuidpoolUuidLeaseResponse](docs/UuidpoolUuidLeaseResponse.md)
- - [ViewsView](docs/ViewsView.md)
- - [VirtualizationActionInfo](docs/VirtualizationActionInfo.md)
- - [VirtualizationActionInfoAllOf](docs/VirtualizationActionInfoAllOf.md)
- - [VirtualizationBaseCluster](docs/VirtualizationBaseCluster.md)
- - [VirtualizationBaseClusterAllOf](docs/VirtualizationBaseClusterAllOf.md)
- - [VirtualizationBaseClusterRelationship](docs/VirtualizationBaseClusterRelationship.md)
- - [VirtualizationBaseCustomSpec](docs/VirtualizationBaseCustomSpec.md)
- - [VirtualizationBaseDatacenter](docs/VirtualizationBaseDatacenter.md)
- - [VirtualizationBaseDatacenterAllOf](docs/VirtualizationBaseDatacenterAllOf.md)
- - [VirtualizationBaseDatastore](docs/VirtualizationBaseDatastore.md)
- - [VirtualizationBaseDatastoreAllOf](docs/VirtualizationBaseDatastoreAllOf.md)
- - [VirtualizationBaseDatastoreCluster](docs/VirtualizationBaseDatastoreCluster.md)
- - [VirtualizationBaseDatastoreClusterAllOf](docs/VirtualizationBaseDatastoreClusterAllOf.md)
- - [VirtualizationBaseDistributedNetwork](docs/VirtualizationBaseDistributedNetwork.md)
- - [VirtualizationBaseDistributedSwitch](docs/VirtualizationBaseDistributedSwitch.md)
- - [VirtualizationBaseDvswitch](docs/VirtualizationBaseDvswitch.md)
- - [VirtualizationBaseFolder](docs/VirtualizationBaseFolder.md)
- - [VirtualizationBaseFolderAllOf](docs/VirtualizationBaseFolderAllOf.md)
- - [VirtualizationBaseHost](docs/VirtualizationBaseHost.md)
- - [VirtualizationBaseHostAllOf](docs/VirtualizationBaseHostAllOf.md)
- - [VirtualizationBaseHostRelationship](docs/VirtualizationBaseHostRelationship.md)
- - [VirtualizationBaseHypervisorManager](docs/VirtualizationBaseHypervisorManager.md)
- - [VirtualizationBaseHypervisorManagerAllOf](docs/VirtualizationBaseHypervisorManagerAllOf.md)
- - [VirtualizationBaseKernelNetwork](docs/VirtualizationBaseKernelNetwork.md)
- - [VirtualizationBaseNetwork](docs/VirtualizationBaseNetwork.md)
- - [VirtualizationBaseNetworkAllOf](docs/VirtualizationBaseNetworkAllOf.md)
- - [VirtualizationBaseNetworkPort](docs/VirtualizationBaseNetworkPort.md)
- - [VirtualizationBaseNetworkPortAllOf](docs/VirtualizationBaseNetworkPortAllOf.md)
- - [VirtualizationBaseNetworkRelationship](docs/VirtualizationBaseNetworkRelationship.md)
- - [VirtualizationBasePhysicalNetworkInterface](docs/VirtualizationBasePhysicalNetworkInterface.md)
- - [VirtualizationBasePhysicalNetworkInterfaceAllOf](docs/VirtualizationBasePhysicalNetworkInterfaceAllOf.md)
- - [VirtualizationBasePlacement](docs/VirtualizationBasePlacement.md)
- - [VirtualizationBasePlacementAllOf](docs/VirtualizationBasePlacementAllOf.md)
- - [VirtualizationBaseSourceDevice](docs/VirtualizationBaseSourceDevice.md)
- - [VirtualizationBaseSourceDeviceAllOf](docs/VirtualizationBaseSourceDeviceAllOf.md)
- - [VirtualizationBaseSwitch](docs/VirtualizationBaseSwitch.md)
- - [VirtualizationBaseSwitchAllOf](docs/VirtualizationBaseSwitchAllOf.md)
- - [VirtualizationBaseVirtualDisk](docs/VirtualizationBaseVirtualDisk.md)
- - [VirtualizationBaseVirtualDiskAllOf](docs/VirtualizationBaseVirtualDiskAllOf.md)
- - [VirtualizationBaseVirtualDiskRelationship](docs/VirtualizationBaseVirtualDiskRelationship.md)
- - [VirtualizationBaseVirtualMachine](docs/VirtualizationBaseVirtualMachine.md)
- - [VirtualizationBaseVirtualMachineAllOf](docs/VirtualizationBaseVirtualMachineAllOf.md)
- - [VirtualizationBaseVirtualMachineRelationship](docs/VirtualizationBaseVirtualMachineRelationship.md)
- - [VirtualizationBaseVirtualNetwork](docs/VirtualizationBaseVirtualNetwork.md)
- - [VirtualizationBaseVirtualNetworkInterface](docs/VirtualizationBaseVirtualNetworkInterface.md)
- - [VirtualizationBaseVirtualNetworkInterfaceAllOf](docs/VirtualizationBaseVirtualNetworkInterfaceAllOf.md)
- - [VirtualizationBaseVirtualNetworkInterfaceCard](docs/VirtualizationBaseVirtualNetworkInterfaceCard.md)
- - [VirtualizationBaseVirtualNetworkInterfaceCardAllOf](docs/VirtualizationBaseVirtualNetworkInterfaceCardAllOf.md)
- - [VirtualizationBaseVirtualSwitch](docs/VirtualizationBaseVirtualSwitch.md)
- - [VirtualizationBaseVmConfiguration](docs/VirtualizationBaseVmConfiguration.md)
- - [VirtualizationBaseVswitch](docs/VirtualizationBaseVswitch.md)
- - [VirtualizationCloudInitConfig](docs/VirtualizationCloudInitConfig.md)
- - [VirtualizationCloudInitConfigAllOf](docs/VirtualizationCloudInitConfigAllOf.md)
- - [VirtualizationComputeCapacity](docs/VirtualizationComputeCapacity.md)
- - [VirtualizationComputeCapacityAllOf](docs/VirtualizationComputeCapacityAllOf.md)
- - [VirtualizationCpuAllocation](docs/VirtualizationCpuAllocation.md)
- - [VirtualizationCpuAllocationAllOf](docs/VirtualizationCpuAllocationAllOf.md)
- - [VirtualizationCpuInfo](docs/VirtualizationCpuInfo.md)
- - [VirtualizationCpuInfoAllOf](docs/VirtualizationCpuInfoAllOf.md)
- - [VirtualizationEsxiCloneCustomSpec](docs/VirtualizationEsxiCloneCustomSpec.md)
- - [VirtualizationEsxiCloneCustomSpecAllOf](docs/VirtualizationEsxiCloneCustomSpecAllOf.md)
- - [VirtualizationEsxiOvaCustomSpec](docs/VirtualizationEsxiOvaCustomSpec.md)
- - [VirtualizationEsxiOvaCustomSpecAllOf](docs/VirtualizationEsxiOvaCustomSpecAllOf.md)
- - [VirtualizationEsxiVmComputeConfiguration](docs/VirtualizationEsxiVmComputeConfiguration.md)
- - [VirtualizationEsxiVmComputeConfigurationAllOf](docs/VirtualizationEsxiVmComputeConfigurationAllOf.md)
- - [VirtualizationEsxiVmConfiguration](docs/VirtualizationEsxiVmConfiguration.md)
- - [VirtualizationEsxiVmConfigurationAllOf](docs/VirtualizationEsxiVmConfigurationAllOf.md)
- - [VirtualizationEsxiVmNetworkConfiguration](docs/VirtualizationEsxiVmNetworkConfiguration.md)
- - [VirtualizationEsxiVmNetworkConfigurationAllOf](docs/VirtualizationEsxiVmNetworkConfigurationAllOf.md)
- - [VirtualizationEsxiVmStorageConfiguration](docs/VirtualizationEsxiVmStorageConfiguration.md)
- - [VirtualizationEsxiVmStorageConfigurationAllOf](docs/VirtualizationEsxiVmStorageConfigurationAllOf.md)
- - [VirtualizationGuestInfo](docs/VirtualizationGuestInfo.md)
- - [VirtualizationGuestInfoAllOf](docs/VirtualizationGuestInfoAllOf.md)
- - [VirtualizationHost](docs/VirtualizationHost.md)
- - [VirtualizationHostAllOf](docs/VirtualizationHostAllOf.md)
- - [VirtualizationHostList](docs/VirtualizationHostList.md)
- - [VirtualizationHostListAllOf](docs/VirtualizationHostListAllOf.md)
- - [VirtualizationHostResponse](docs/VirtualizationHostResponse.md)
- - [VirtualizationHxapVmConfiguration](docs/VirtualizationHxapVmConfiguration.md)
- - [VirtualizationMemoryAllocation](docs/VirtualizationMemoryAllocation.md)
- - [VirtualizationMemoryAllocationAllOf](docs/VirtualizationMemoryAllocationAllOf.md)
- - [VirtualizationMemoryCapacity](docs/VirtualizationMemoryCapacity.md)
- - [VirtualizationMemoryCapacityAllOf](docs/VirtualizationMemoryCapacityAllOf.md)
- - [VirtualizationNetworkInterface](docs/VirtualizationNetworkInterface.md)
- - [VirtualizationNetworkInterfaceAllOf](docs/VirtualizationNetworkInterfaceAllOf.md)
- - [VirtualizationProductInfo](docs/VirtualizationProductInfo.md)
- - [VirtualizationProductInfoAllOf](docs/VirtualizationProductInfoAllOf.md)
- - [VirtualizationStorageCapacity](docs/VirtualizationStorageCapacity.md)
- - [VirtualizationStorageCapacityAllOf](docs/VirtualizationStorageCapacityAllOf.md)
- - [VirtualizationVirtualDisk](docs/VirtualizationVirtualDisk.md)
- - [VirtualizationVirtualDiskAllOf](docs/VirtualizationVirtualDiskAllOf.md)
- - [VirtualizationVirtualDiskConfig](docs/VirtualizationVirtualDiskConfig.md)
- - [VirtualizationVirtualDiskConfigAllOf](docs/VirtualizationVirtualDiskConfigAllOf.md)
- - [VirtualizationVirtualDiskList](docs/VirtualizationVirtualDiskList.md)
- - [VirtualizationVirtualDiskListAllOf](docs/VirtualizationVirtualDiskListAllOf.md)
- - [VirtualizationVirtualDiskResponse](docs/VirtualizationVirtualDiskResponse.md)
- - [VirtualizationVirtualMachine](docs/VirtualizationVirtualMachine.md)
- - [VirtualizationVirtualMachineAllOf](docs/VirtualizationVirtualMachineAllOf.md)
- - [VirtualizationVirtualMachineDisk](docs/VirtualizationVirtualMachineDisk.md)
- - [VirtualizationVirtualMachineDiskAllOf](docs/VirtualizationVirtualMachineDiskAllOf.md)
- - [VirtualizationVirtualMachineList](docs/VirtualizationVirtualMachineList.md)
- - [VirtualizationVirtualMachineListAllOf](docs/VirtualizationVirtualMachineListAllOf.md)
- - [VirtualizationVirtualMachineRelationship](docs/VirtualizationVirtualMachineRelationship.md)
- - [VirtualizationVirtualMachineResponse](docs/VirtualizationVirtualMachineResponse.md)
- - [VirtualizationVmEsxiDisk](docs/VirtualizationVmEsxiDisk.md)
- - [VirtualizationVmEsxiDiskAllOf](docs/VirtualizationVmEsxiDiskAllOf.md)
- - [VirtualizationVmwareCluster](docs/VirtualizationVmwareCluster.md)
- - [VirtualizationVmwareClusterAllOf](docs/VirtualizationVmwareClusterAllOf.md)
- - [VirtualizationVmwareClusterList](docs/VirtualizationVmwareClusterList.md)
- - [VirtualizationVmwareClusterListAllOf](docs/VirtualizationVmwareClusterListAllOf.md)
- - [VirtualizationVmwareClusterRelationship](docs/VirtualizationVmwareClusterRelationship.md)
- - [VirtualizationVmwareClusterResponse](docs/VirtualizationVmwareClusterResponse.md)
- - [VirtualizationVmwareDatacenter](docs/VirtualizationVmwareDatacenter.md)
- - [VirtualizationVmwareDatacenterAllOf](docs/VirtualizationVmwareDatacenterAllOf.md)
- - [VirtualizationVmwareDatacenterList](docs/VirtualizationVmwareDatacenterList.md)
- - [VirtualizationVmwareDatacenterListAllOf](docs/VirtualizationVmwareDatacenterListAllOf.md)
- - [VirtualizationVmwareDatacenterRelationship](docs/VirtualizationVmwareDatacenterRelationship.md)
- - [VirtualizationVmwareDatacenterResponse](docs/VirtualizationVmwareDatacenterResponse.md)
- - [VirtualizationVmwareDatastore](docs/VirtualizationVmwareDatastore.md)
- - [VirtualizationVmwareDatastoreAllOf](docs/VirtualizationVmwareDatastoreAllOf.md)
- - [VirtualizationVmwareDatastoreCluster](docs/VirtualizationVmwareDatastoreCluster.md)
- - [VirtualizationVmwareDatastoreClusterAllOf](docs/VirtualizationVmwareDatastoreClusterAllOf.md)
- - [VirtualizationVmwareDatastoreClusterList](docs/VirtualizationVmwareDatastoreClusterList.md)
- - [VirtualizationVmwareDatastoreClusterListAllOf](docs/VirtualizationVmwareDatastoreClusterListAllOf.md)
- - [VirtualizationVmwareDatastoreClusterRelationship](docs/VirtualizationVmwareDatastoreClusterRelationship.md)
- - [VirtualizationVmwareDatastoreClusterResponse](docs/VirtualizationVmwareDatastoreClusterResponse.md)
- - [VirtualizationVmwareDatastoreList](docs/VirtualizationVmwareDatastoreList.md)
- - [VirtualizationVmwareDatastoreListAllOf](docs/VirtualizationVmwareDatastoreListAllOf.md)
- - [VirtualizationVmwareDatastoreRelationship](docs/VirtualizationVmwareDatastoreRelationship.md)
- - [VirtualizationVmwareDatastoreResponse](docs/VirtualizationVmwareDatastoreResponse.md)
- - [VirtualizationVmwareDistributedNetwork](docs/VirtualizationVmwareDistributedNetwork.md)
- - [VirtualizationVmwareDistributedNetworkAllOf](docs/VirtualizationVmwareDistributedNetworkAllOf.md)
- - [VirtualizationVmwareDistributedNetworkList](docs/VirtualizationVmwareDistributedNetworkList.md)
- - [VirtualizationVmwareDistributedNetworkListAllOf](docs/VirtualizationVmwareDistributedNetworkListAllOf.md)
- - [VirtualizationVmwareDistributedNetworkRelationship](docs/VirtualizationVmwareDistributedNetworkRelationship.md)
- - [VirtualizationVmwareDistributedNetworkResponse](docs/VirtualizationVmwareDistributedNetworkResponse.md)
- - [VirtualizationVmwareDistributedSwitch](docs/VirtualizationVmwareDistributedSwitch.md)
- - [VirtualizationVmwareDistributedSwitchAllOf](docs/VirtualizationVmwareDistributedSwitchAllOf.md)
- - [VirtualizationVmwareDistributedSwitchList](docs/VirtualizationVmwareDistributedSwitchList.md)
- - [VirtualizationVmwareDistributedSwitchListAllOf](docs/VirtualizationVmwareDistributedSwitchListAllOf.md)
- - [VirtualizationVmwareDistributedSwitchRelationship](docs/VirtualizationVmwareDistributedSwitchRelationship.md)
- - [VirtualizationVmwareDistributedSwitchResponse](docs/VirtualizationVmwareDistributedSwitchResponse.md)
- - [VirtualizationVmwareFolder](docs/VirtualizationVmwareFolder.md)
- - [VirtualizationVmwareFolderAllOf](docs/VirtualizationVmwareFolderAllOf.md)
- - [VirtualizationVmwareFolderList](docs/VirtualizationVmwareFolderList.md)
- - [VirtualizationVmwareFolderListAllOf](docs/VirtualizationVmwareFolderListAllOf.md)
- - [VirtualizationVmwareFolderRelationship](docs/VirtualizationVmwareFolderRelationship.md)
- - [VirtualizationVmwareFolderResponse](docs/VirtualizationVmwareFolderResponse.md)
- - [VirtualizationVmwareHost](docs/VirtualizationVmwareHost.md)
- - [VirtualizationVmwareHostAllOf](docs/VirtualizationVmwareHostAllOf.md)
- - [VirtualizationVmwareHostList](docs/VirtualizationVmwareHostList.md)
- - [VirtualizationVmwareHostListAllOf](docs/VirtualizationVmwareHostListAllOf.md)
- - [VirtualizationVmwareHostRelationship](docs/VirtualizationVmwareHostRelationship.md)
- - [VirtualizationVmwareHostResponse](docs/VirtualizationVmwareHostResponse.md)
- - [VirtualizationVmwareKernelNetwork](docs/VirtualizationVmwareKernelNetwork.md)
- - [VirtualizationVmwareKernelNetworkAllOf](docs/VirtualizationVmwareKernelNetworkAllOf.md)
- - [VirtualizationVmwareKernelNetworkList](docs/VirtualizationVmwareKernelNetworkList.md)
- - [VirtualizationVmwareKernelNetworkListAllOf](docs/VirtualizationVmwareKernelNetworkListAllOf.md)
- - [VirtualizationVmwareKernelNetworkResponse](docs/VirtualizationVmwareKernelNetworkResponse.md)
- - [VirtualizationVmwareNetwork](docs/VirtualizationVmwareNetwork.md)
- - [VirtualizationVmwareNetworkAllOf](docs/VirtualizationVmwareNetworkAllOf.md)
- - [VirtualizationVmwareNetworkList](docs/VirtualizationVmwareNetworkList.md)
- - [VirtualizationVmwareNetworkListAllOf](docs/VirtualizationVmwareNetworkListAllOf.md)
- - [VirtualizationVmwareNetworkRelationship](docs/VirtualizationVmwareNetworkRelationship.md)
- - [VirtualizationVmwareNetworkResponse](docs/VirtualizationVmwareNetworkResponse.md)
- - [VirtualizationVmwarePhysicalNetworkInterface](docs/VirtualizationVmwarePhysicalNetworkInterface.md)
- - [VirtualizationVmwarePhysicalNetworkInterfaceAllOf](docs/VirtualizationVmwarePhysicalNetworkInterfaceAllOf.md)
- - [VirtualizationVmwarePhysicalNetworkInterfaceList](docs/VirtualizationVmwarePhysicalNetworkInterfaceList.md)
- - [VirtualizationVmwarePhysicalNetworkInterfaceListAllOf](docs/VirtualizationVmwarePhysicalNetworkInterfaceListAllOf.md)
- - [VirtualizationVmwarePhysicalNetworkInterfaceRelationship](docs/VirtualizationVmwarePhysicalNetworkInterfaceRelationship.md)
- - [VirtualizationVmwarePhysicalNetworkInterfaceResponse](docs/VirtualizationVmwarePhysicalNetworkInterfaceResponse.md)
- - [VirtualizationVmwareRemoteDisplayInfo](docs/VirtualizationVmwareRemoteDisplayInfo.md)
- - [VirtualizationVmwareRemoteDisplayInfoAllOf](docs/VirtualizationVmwareRemoteDisplayInfoAllOf.md)
- - [VirtualizationVmwareResourceConsumption](docs/VirtualizationVmwareResourceConsumption.md)
- - [VirtualizationVmwareResourceConsumptionAllOf](docs/VirtualizationVmwareResourceConsumptionAllOf.md)
- - [VirtualizationVmwareSharesInfo](docs/VirtualizationVmwareSharesInfo.md)
- - [VirtualizationVmwareSharesInfoAllOf](docs/VirtualizationVmwareSharesInfoAllOf.md)
- - [VirtualizationVmwareTeamingAndFailover](docs/VirtualizationVmwareTeamingAndFailover.md)
- - [VirtualizationVmwareTeamingAndFailoverAllOf](docs/VirtualizationVmwareTeamingAndFailoverAllOf.md)
- - [VirtualizationVmwareUplinkPort](docs/VirtualizationVmwareUplinkPort.md)
- - [VirtualizationVmwareUplinkPortAllOf](docs/VirtualizationVmwareUplinkPortAllOf.md)
- - [VirtualizationVmwareUplinkPortList](docs/VirtualizationVmwareUplinkPortList.md)
- - [VirtualizationVmwareUplinkPortListAllOf](docs/VirtualizationVmwareUplinkPortListAllOf.md)
- - [VirtualizationVmwareUplinkPortResponse](docs/VirtualizationVmwareUplinkPortResponse.md)
- - [VirtualizationVmwareVcenter](docs/VirtualizationVmwareVcenter.md)
- - [VirtualizationVmwareVcenterList](docs/VirtualizationVmwareVcenterList.md)
- - [VirtualizationVmwareVcenterListAllOf](docs/VirtualizationVmwareVcenterListAllOf.md)
- - [VirtualizationVmwareVcenterRelationship](docs/VirtualizationVmwareVcenterRelationship.md)
- - [VirtualizationVmwareVcenterResponse](docs/VirtualizationVmwareVcenterResponse.md)
- - [VirtualizationVmwareVirtualDisk](docs/VirtualizationVmwareVirtualDisk.md)
- - [VirtualizationVmwareVirtualDiskAllOf](docs/VirtualizationVmwareVirtualDiskAllOf.md)
- - [VirtualizationVmwareVirtualDiskList](docs/VirtualizationVmwareVirtualDiskList.md)
- - [VirtualizationVmwareVirtualDiskListAllOf](docs/VirtualizationVmwareVirtualDiskListAllOf.md)
- - [VirtualizationVmwareVirtualDiskResponse](docs/VirtualizationVmwareVirtualDiskResponse.md)
- - [VirtualizationVmwareVirtualMachine](docs/VirtualizationVmwareVirtualMachine.md)
- - [VirtualizationVmwareVirtualMachineAllOf](docs/VirtualizationVmwareVirtualMachineAllOf.md)
- - [VirtualizationVmwareVirtualMachineList](docs/VirtualizationVmwareVirtualMachineList.md)
- - [VirtualizationVmwareVirtualMachineListAllOf](docs/VirtualizationVmwareVirtualMachineListAllOf.md)
- - [VirtualizationVmwareVirtualMachineRelationship](docs/VirtualizationVmwareVirtualMachineRelationship.md)
- - [VirtualizationVmwareVirtualMachineResponse](docs/VirtualizationVmwareVirtualMachineResponse.md)
- - [VirtualizationVmwareVirtualNetworkInterface](docs/VirtualizationVmwareVirtualNetworkInterface.md)
- - [VirtualizationVmwareVirtualNetworkInterfaceAllOf](docs/VirtualizationVmwareVirtualNetworkInterfaceAllOf.md)
- - [VirtualizationVmwareVirtualNetworkInterfaceList](docs/VirtualizationVmwareVirtualNetworkInterfaceList.md)
- - [VirtualizationVmwareVirtualNetworkInterfaceListAllOf](docs/VirtualizationVmwareVirtualNetworkInterfaceListAllOf.md)
- - [VirtualizationVmwareVirtualNetworkInterfaceResponse](docs/VirtualizationVmwareVirtualNetworkInterfaceResponse.md)
- - [VirtualizationVmwareVirtualSwitch](docs/VirtualizationVmwareVirtualSwitch.md)
- - [VirtualizationVmwareVirtualSwitchAllOf](docs/VirtualizationVmwareVirtualSwitchAllOf.md)
- - [VirtualizationVmwareVirtualSwitchList](docs/VirtualizationVmwareVirtualSwitchList.md)
- - [VirtualizationVmwareVirtualSwitchListAllOf](docs/VirtualizationVmwareVirtualSwitchListAllOf.md)
- - [VirtualizationVmwareVirtualSwitchRelationship](docs/VirtualizationVmwareVirtualSwitchRelationship.md)
- - [VirtualizationVmwareVirtualSwitchResponse](docs/VirtualizationVmwareVirtualSwitchResponse.md)
- - [VirtualizationVmwareVlanRange](docs/VirtualizationVmwareVlanRange.md)
- - [VirtualizationVmwareVlanRangeAllOf](docs/VirtualizationVmwareVlanRangeAllOf.md)
- - [VirtualizationVmwareVmCpuShareInfo](docs/VirtualizationVmwareVmCpuShareInfo.md)
- - [VirtualizationVmwareVmCpuShareInfoAllOf](docs/VirtualizationVmwareVmCpuShareInfoAllOf.md)
- - [VirtualizationVmwareVmCpuSocketInfo](docs/VirtualizationVmwareVmCpuSocketInfo.md)
- - [VirtualizationVmwareVmCpuSocketInfoAllOf](docs/VirtualizationVmwareVmCpuSocketInfoAllOf.md)
- - [VirtualizationVmwareVmDiskCommitInfo](docs/VirtualizationVmwareVmDiskCommitInfo.md)
- - [VirtualizationVmwareVmDiskCommitInfoAllOf](docs/VirtualizationVmwareVmDiskCommitInfoAllOf.md)
- - [VirtualizationVmwareVmMemoryShareInfo](docs/VirtualizationVmwareVmMemoryShareInfo.md)
- - [VirtualizationVmwareVmMemoryShareInfoAllOf](docs/VirtualizationVmwareVmMemoryShareInfoAllOf.md)
- - [VmediaMapping](docs/VmediaMapping.md)
- - [VmediaMappingAllOf](docs/VmediaMappingAllOf.md)
- - [VmediaPolicy](docs/VmediaPolicy.md)
- - [VmediaPolicyAllOf](docs/VmediaPolicyAllOf.md)
- - [VmediaPolicyList](docs/VmediaPolicyList.md)
- - [VmediaPolicyListAllOf](docs/VmediaPolicyListAllOf.md)
- - [VmediaPolicyResponse](docs/VmediaPolicyResponse.md)
- - [VmrcConsole](docs/VmrcConsole.md)
- - [VmrcConsoleAllOf](docs/VmrcConsoleAllOf.md)
- - [VmrcConsoleList](docs/VmrcConsoleList.md)
- - [VmrcConsoleListAllOf](docs/VmrcConsoleListAllOf.md)
- - [VmrcConsoleResponse](docs/VmrcConsoleResponse.md)
- - [VnicArfsSettings](docs/VnicArfsSettings.md)
- - [VnicArfsSettingsAllOf](docs/VnicArfsSettingsAllOf.md)
- - [VnicCdn](docs/VnicCdn.md)
- - [VnicCdnAllOf](docs/VnicCdnAllOf.md)
- - [VnicCompletionQueueSettings](docs/VnicCompletionQueueSettings.md)
- - [VnicCompletionQueueSettingsAllOf](docs/VnicCompletionQueueSettingsAllOf.md)
- - [VnicEthAdapterPolicy](docs/VnicEthAdapterPolicy.md)
- - [VnicEthAdapterPolicyAllOf](docs/VnicEthAdapterPolicyAllOf.md)
- - [VnicEthAdapterPolicyList](docs/VnicEthAdapterPolicyList.md)
- - [VnicEthAdapterPolicyListAllOf](docs/VnicEthAdapterPolicyListAllOf.md)
- - [VnicEthAdapterPolicyRelationship](docs/VnicEthAdapterPolicyRelationship.md)
- - [VnicEthAdapterPolicyResponse](docs/VnicEthAdapterPolicyResponse.md)
- - [VnicEthIf](docs/VnicEthIf.md)
- - [VnicEthIfAllOf](docs/VnicEthIfAllOf.md)
- - [VnicEthIfList](docs/VnicEthIfList.md)
- - [VnicEthIfListAllOf](docs/VnicEthIfListAllOf.md)
- - [VnicEthIfRelationship](docs/VnicEthIfRelationship.md)
- - [VnicEthIfResponse](docs/VnicEthIfResponse.md)
- - [VnicEthInterruptSettings](docs/VnicEthInterruptSettings.md)
- - [VnicEthInterruptSettingsAllOf](docs/VnicEthInterruptSettingsAllOf.md)
- - [VnicEthNetworkPolicy](docs/VnicEthNetworkPolicy.md)
- - [VnicEthNetworkPolicyAllOf](docs/VnicEthNetworkPolicyAllOf.md)
- - [VnicEthNetworkPolicyList](docs/VnicEthNetworkPolicyList.md)
- - [VnicEthNetworkPolicyListAllOf](docs/VnicEthNetworkPolicyListAllOf.md)
- - [VnicEthNetworkPolicyRelationship](docs/VnicEthNetworkPolicyRelationship.md)
- - [VnicEthNetworkPolicyResponse](docs/VnicEthNetworkPolicyResponse.md)
- - [VnicEthQosPolicy](docs/VnicEthQosPolicy.md)
- - [VnicEthQosPolicyAllOf](docs/VnicEthQosPolicyAllOf.md)
- - [VnicEthQosPolicyList](docs/VnicEthQosPolicyList.md)
- - [VnicEthQosPolicyListAllOf](docs/VnicEthQosPolicyListAllOf.md)
- - [VnicEthQosPolicyRelationship](docs/VnicEthQosPolicyRelationship.md)
- - [VnicEthQosPolicyResponse](docs/VnicEthQosPolicyResponse.md)
- - [VnicEthRxQueueSettings](docs/VnicEthRxQueueSettings.md)
- - [VnicEthRxQueueSettingsAllOf](docs/VnicEthRxQueueSettingsAllOf.md)
- - [VnicEthTxQueueSettings](docs/VnicEthTxQueueSettings.md)
- - [VnicEthTxQueueSettingsAllOf](docs/VnicEthTxQueueSettingsAllOf.md)
- - [VnicFcAdapterPolicy](docs/VnicFcAdapterPolicy.md)
- - [VnicFcAdapterPolicyAllOf](docs/VnicFcAdapterPolicyAllOf.md)
- - [VnicFcAdapterPolicyList](docs/VnicFcAdapterPolicyList.md)
- - [VnicFcAdapterPolicyListAllOf](docs/VnicFcAdapterPolicyListAllOf.md)
- - [VnicFcAdapterPolicyRelationship](docs/VnicFcAdapterPolicyRelationship.md)
- - [VnicFcAdapterPolicyResponse](docs/VnicFcAdapterPolicyResponse.md)
- - [VnicFcErrorRecoverySettings](docs/VnicFcErrorRecoverySettings.md)
- - [VnicFcErrorRecoverySettingsAllOf](docs/VnicFcErrorRecoverySettingsAllOf.md)
- - [VnicFcIf](docs/VnicFcIf.md)
- - [VnicFcIfAllOf](docs/VnicFcIfAllOf.md)
- - [VnicFcIfList](docs/VnicFcIfList.md)
- - [VnicFcIfListAllOf](docs/VnicFcIfListAllOf.md)
- - [VnicFcIfRelationship](docs/VnicFcIfRelationship.md)
- - [VnicFcIfResponse](docs/VnicFcIfResponse.md)
- - [VnicFcInterruptSettings](docs/VnicFcInterruptSettings.md)
- - [VnicFcInterruptSettingsAllOf](docs/VnicFcInterruptSettingsAllOf.md)
- - [VnicFcNetworkPolicy](docs/VnicFcNetworkPolicy.md)
- - [VnicFcNetworkPolicyAllOf](docs/VnicFcNetworkPolicyAllOf.md)
- - [VnicFcNetworkPolicyList](docs/VnicFcNetworkPolicyList.md)
- - [VnicFcNetworkPolicyListAllOf](docs/VnicFcNetworkPolicyListAllOf.md)
- - [VnicFcNetworkPolicyRelationship](docs/VnicFcNetworkPolicyRelationship.md)
- - [VnicFcNetworkPolicyResponse](docs/VnicFcNetworkPolicyResponse.md)
- - [VnicFcQosPolicy](docs/VnicFcQosPolicy.md)
- - [VnicFcQosPolicyAllOf](docs/VnicFcQosPolicyAllOf.md)
- - [VnicFcQosPolicyList](docs/VnicFcQosPolicyList.md)
- - [VnicFcQosPolicyListAllOf](docs/VnicFcQosPolicyListAllOf.md)
- - [VnicFcQosPolicyRelationship](docs/VnicFcQosPolicyRelationship.md)
- - [VnicFcQosPolicyResponse](docs/VnicFcQosPolicyResponse.md)
- - [VnicFcQueueSettings](docs/VnicFcQueueSettings.md)
- - [VnicFcQueueSettingsAllOf](docs/VnicFcQueueSettingsAllOf.md)
- - [VnicFlogiSettings](docs/VnicFlogiSettings.md)
- - [VnicFlogiSettingsAllOf](docs/VnicFlogiSettingsAllOf.md)
- - [VnicIscsiAdapterPolicy](docs/VnicIscsiAdapterPolicy.md)
- - [VnicIscsiAdapterPolicyAllOf](docs/VnicIscsiAdapterPolicyAllOf.md)
- - [VnicIscsiAdapterPolicyList](docs/VnicIscsiAdapterPolicyList.md)
- - [VnicIscsiAdapterPolicyListAllOf](docs/VnicIscsiAdapterPolicyListAllOf.md)
- - [VnicIscsiAdapterPolicyRelationship](docs/VnicIscsiAdapterPolicyRelationship.md)
- - [VnicIscsiAdapterPolicyResponse](docs/VnicIscsiAdapterPolicyResponse.md)
- - [VnicIscsiAuthProfile](docs/VnicIscsiAuthProfile.md)
- - [VnicIscsiAuthProfileAllOf](docs/VnicIscsiAuthProfileAllOf.md)
- - [VnicIscsiBootPolicy](docs/VnicIscsiBootPolicy.md)
- - [VnicIscsiBootPolicyAllOf](docs/VnicIscsiBootPolicyAllOf.md)
- - [VnicIscsiBootPolicyList](docs/VnicIscsiBootPolicyList.md)
- - [VnicIscsiBootPolicyListAllOf](docs/VnicIscsiBootPolicyListAllOf.md)
- - [VnicIscsiBootPolicyRelationship](docs/VnicIscsiBootPolicyRelationship.md)
- - [VnicIscsiBootPolicyResponse](docs/VnicIscsiBootPolicyResponse.md)
- - [VnicIscsiStaticTargetPolicy](docs/VnicIscsiStaticTargetPolicy.md)
- - [VnicIscsiStaticTargetPolicyAllOf](docs/VnicIscsiStaticTargetPolicyAllOf.md)
- - [VnicIscsiStaticTargetPolicyList](docs/VnicIscsiStaticTargetPolicyList.md)
- - [VnicIscsiStaticTargetPolicyListAllOf](docs/VnicIscsiStaticTargetPolicyListAllOf.md)
- - [VnicIscsiStaticTargetPolicyRelationship](docs/VnicIscsiStaticTargetPolicyRelationship.md)
- - [VnicIscsiStaticTargetPolicyResponse](docs/VnicIscsiStaticTargetPolicyResponse.md)
- - [VnicLanConnectivityPolicy](docs/VnicLanConnectivityPolicy.md)
- - [VnicLanConnectivityPolicyAllOf](docs/VnicLanConnectivityPolicyAllOf.md)
- - [VnicLanConnectivityPolicyList](docs/VnicLanConnectivityPolicyList.md)
- - [VnicLanConnectivityPolicyListAllOf](docs/VnicLanConnectivityPolicyListAllOf.md)
- - [VnicLanConnectivityPolicyRelationship](docs/VnicLanConnectivityPolicyRelationship.md)
- - [VnicLanConnectivityPolicyResponse](docs/VnicLanConnectivityPolicyResponse.md)
- - [VnicLcpStatus](docs/VnicLcpStatus.md)
- - [VnicLcpStatusAllOf](docs/VnicLcpStatusAllOf.md)
- - [VnicLcpStatusList](docs/VnicLcpStatusList.md)
- - [VnicLcpStatusListAllOf](docs/VnicLcpStatusListAllOf.md)
- - [VnicLcpStatusResponse](docs/VnicLcpStatusResponse.md)
- - [VnicLun](docs/VnicLun.md)
- - [VnicLunAllOf](docs/VnicLunAllOf.md)
- - [VnicNvgreSettings](docs/VnicNvgreSettings.md)
- - [VnicNvgreSettingsAllOf](docs/VnicNvgreSettingsAllOf.md)
- - [VnicPlacementSettings](docs/VnicPlacementSettings.md)
- - [VnicPlacementSettingsAllOf](docs/VnicPlacementSettingsAllOf.md)
- - [VnicPlogiSettings](docs/VnicPlogiSettings.md)
- - [VnicPlogiSettingsAllOf](docs/VnicPlogiSettingsAllOf.md)
- - [VnicRoceSettings](docs/VnicRoceSettings.md)
- - [VnicRoceSettingsAllOf](docs/VnicRoceSettingsAllOf.md)
- - [VnicRssHashSettings](docs/VnicRssHashSettings.md)
- - [VnicRssHashSettingsAllOf](docs/VnicRssHashSettingsAllOf.md)
- - [VnicSanConnectivityPolicy](docs/VnicSanConnectivityPolicy.md)
- - [VnicSanConnectivityPolicyAllOf](docs/VnicSanConnectivityPolicyAllOf.md)
- - [VnicSanConnectivityPolicyList](docs/VnicSanConnectivityPolicyList.md)
- - [VnicSanConnectivityPolicyListAllOf](docs/VnicSanConnectivityPolicyListAllOf.md)
- - [VnicSanConnectivityPolicyRelationship](docs/VnicSanConnectivityPolicyRelationship.md)
- - [VnicSanConnectivityPolicyResponse](docs/VnicSanConnectivityPolicyResponse.md)
- - [VnicScpStatus](docs/VnicScpStatus.md)
- - [VnicScpStatusAllOf](docs/VnicScpStatusAllOf.md)
- - [VnicScpStatusList](docs/VnicScpStatusList.md)
- - [VnicScpStatusListAllOf](docs/VnicScpStatusListAllOf.md)
- - [VnicScpStatusResponse](docs/VnicScpStatusResponse.md)
- - [VnicScsiQueueSettings](docs/VnicScsiQueueSettings.md)
- - [VnicScsiQueueSettingsAllOf](docs/VnicScsiQueueSettingsAllOf.md)
- - [VnicTcpOffloadSettings](docs/VnicTcpOffloadSettings.md)
- - [VnicTcpOffloadSettingsAllOf](docs/VnicTcpOffloadSettingsAllOf.md)
- - [VnicUsnicSettings](docs/VnicUsnicSettings.md)
- - [VnicUsnicSettingsAllOf](docs/VnicUsnicSettingsAllOf.md)
- - [VnicVifStatus](docs/VnicVifStatus.md)
- - [VnicVifStatusAllOf](docs/VnicVifStatusAllOf.md)
- - [VnicVlanSettings](docs/VnicVlanSettings.md)
- - [VnicVlanSettingsAllOf](docs/VnicVlanSettingsAllOf.md)
- - [VnicVmqSettings](docs/VnicVmqSettings.md)
- - [VnicVmqSettingsAllOf](docs/VnicVmqSettingsAllOf.md)
- - [VnicVsanSettings](docs/VnicVsanSettings.md)
- - [VnicVsanSettingsAllOf](docs/VnicVsanSettingsAllOf.md)
- - [VnicVxlanSettings](docs/VnicVxlanSettings.md)
- - [VnicVxlanSettingsAllOf](docs/VnicVxlanSettingsAllOf.md)
- - [VrfVrf](docs/VrfVrf.md)
- - [VrfVrfAllOf](docs/VrfVrfAllOf.md)
- - [VrfVrfList](docs/VrfVrfList.md)
- - [VrfVrfListAllOf](docs/VrfVrfListAllOf.md)
- - [VrfVrfRelationship](docs/VrfVrfRelationship.md)
- - [VrfVrfResponse](docs/VrfVrfResponse.md)
- - [WorkflowAbstractWorkerTask](docs/WorkflowAbstractWorkerTask.md)
- - [WorkflowAbstractWorkerTaskAllOf](docs/WorkflowAbstractWorkerTaskAllOf.md)
- - [WorkflowApi](docs/WorkflowApi.md)
- - [WorkflowApiAllOf](docs/WorkflowApiAllOf.md)
- - [WorkflowArrayDataType](docs/WorkflowArrayDataType.md)
- - [WorkflowArrayDataTypeAllOf](docs/WorkflowArrayDataTypeAllOf.md)
- - [WorkflowArrayItem](docs/WorkflowArrayItem.md)
- - [WorkflowAssociatedRoles](docs/WorkflowAssociatedRoles.md)
- - [WorkflowAssociatedRolesAllOf](docs/WorkflowAssociatedRolesAllOf.md)
- - [WorkflowBaseDataType](docs/WorkflowBaseDataType.md)
- - [WorkflowBaseDataTypeAllOf](docs/WorkflowBaseDataTypeAllOf.md)
- - [WorkflowBatchApiExecutor](docs/WorkflowBatchApiExecutor.md)
- - [WorkflowBatchApiExecutorAllOf](docs/WorkflowBatchApiExecutorAllOf.md)
- - [WorkflowBatchApiExecutorList](docs/WorkflowBatchApiExecutorList.md)
- - [WorkflowBatchApiExecutorListAllOf](docs/WorkflowBatchApiExecutorListAllOf.md)
- - [WorkflowBatchApiExecutorResponse](docs/WorkflowBatchApiExecutorResponse.md)
- - [WorkflowBuildTaskMeta](docs/WorkflowBuildTaskMeta.md)
- - [WorkflowBuildTaskMetaAllOf](docs/WorkflowBuildTaskMetaAllOf.md)
- - [WorkflowBuildTaskMetaList](docs/WorkflowBuildTaskMetaList.md)
- - [WorkflowBuildTaskMetaListAllOf](docs/WorkflowBuildTaskMetaListAllOf.md)
- - [WorkflowBuildTaskMetaOwner](docs/WorkflowBuildTaskMetaOwner.md)
- - [WorkflowBuildTaskMetaOwnerAllOf](docs/WorkflowBuildTaskMetaOwnerAllOf.md)
- - [WorkflowBuildTaskMetaOwnerList](docs/WorkflowBuildTaskMetaOwnerList.md)
- - [WorkflowBuildTaskMetaOwnerListAllOf](docs/WorkflowBuildTaskMetaOwnerListAllOf.md)
- - [WorkflowBuildTaskMetaOwnerResponse](docs/WorkflowBuildTaskMetaOwnerResponse.md)
- - [WorkflowBuildTaskMetaResponse](docs/WorkflowBuildTaskMetaResponse.md)
- - [WorkflowCatalog](docs/WorkflowCatalog.md)
- - [WorkflowCatalogAllOf](docs/WorkflowCatalogAllOf.md)
- - [WorkflowCatalogList](docs/WorkflowCatalogList.md)
- - [WorkflowCatalogListAllOf](docs/WorkflowCatalogListAllOf.md)
- - [WorkflowCatalogRelationship](docs/WorkflowCatalogRelationship.md)
- - [WorkflowCatalogResponse](docs/WorkflowCatalogResponse.md)
- - [WorkflowCliCommand](docs/WorkflowCliCommand.md)
- - [WorkflowCliCommandAllOf](docs/WorkflowCliCommandAllOf.md)
- - [WorkflowComments](docs/WorkflowComments.md)
- - [WorkflowCommentsAllOf](docs/WorkflowCommentsAllOf.md)
- - [WorkflowConstraints](docs/WorkflowConstraints.md)
- - [WorkflowConstraintsAllOf](docs/WorkflowConstraintsAllOf.md)
- - [WorkflowControlTask](docs/WorkflowControlTask.md)
- - [WorkflowCustomArrayItem](docs/WorkflowCustomArrayItem.md)
- - [WorkflowCustomArrayItemAllOf](docs/WorkflowCustomArrayItemAllOf.md)
- - [WorkflowCustomDataProperty](docs/WorkflowCustomDataProperty.md)
- - [WorkflowCustomDataPropertyAllOf](docs/WorkflowCustomDataPropertyAllOf.md)
- - [WorkflowCustomDataType](docs/WorkflowCustomDataType.md)
- - [WorkflowCustomDataTypeAllOf](docs/WorkflowCustomDataTypeAllOf.md)
- - [WorkflowCustomDataTypeDefinition](docs/WorkflowCustomDataTypeDefinition.md)
- - [WorkflowCustomDataTypeDefinitionAllOf](docs/WorkflowCustomDataTypeDefinitionAllOf.md)
- - [WorkflowCustomDataTypeDefinitionList](docs/WorkflowCustomDataTypeDefinitionList.md)
- - [WorkflowCustomDataTypeDefinitionListAllOf](docs/WorkflowCustomDataTypeDefinitionListAllOf.md)
- - [WorkflowCustomDataTypeDefinitionRelationship](docs/WorkflowCustomDataTypeDefinitionRelationship.md)
- - [WorkflowCustomDataTypeDefinitionResponse](docs/WorkflowCustomDataTypeDefinitionResponse.md)
- - [WorkflowCustomDataTypeProperties](docs/WorkflowCustomDataTypeProperties.md)
- - [WorkflowCustomDataTypePropertiesAllOf](docs/WorkflowCustomDataTypePropertiesAllOf.md)
- - [WorkflowDecisionCase](docs/WorkflowDecisionCase.md)
- - [WorkflowDecisionCaseAllOf](docs/WorkflowDecisionCaseAllOf.md)
- - [WorkflowDecisionTask](docs/WorkflowDecisionTask.md)
- - [WorkflowDecisionTaskAllOf](docs/WorkflowDecisionTaskAllOf.md)
- - [WorkflowDefaultValue](docs/WorkflowDefaultValue.md)
- - [WorkflowDefaultValueAllOf](docs/WorkflowDefaultValueAllOf.md)
- - [WorkflowDisplayMeta](docs/WorkflowDisplayMeta.md)
- - [WorkflowDisplayMetaAllOf](docs/WorkflowDisplayMetaAllOf.md)
- - [WorkflowDynamicWorkflowActionTaskList](docs/WorkflowDynamicWorkflowActionTaskList.md)
- - [WorkflowDynamicWorkflowActionTaskListAllOf](docs/WorkflowDynamicWorkflowActionTaskListAllOf.md)
- - [WorkflowEndTask](docs/WorkflowEndTask.md)
- - [WorkflowEnumEntry](docs/WorkflowEnumEntry.md)
- - [WorkflowEnumEntryAllOf](docs/WorkflowEnumEntryAllOf.md)
- - [WorkflowErrorResponseHandler](docs/WorkflowErrorResponseHandler.md)
- - [WorkflowErrorResponseHandlerAllOf](docs/WorkflowErrorResponseHandlerAllOf.md)
- - [WorkflowErrorResponseHandlerList](docs/WorkflowErrorResponseHandlerList.md)
- - [WorkflowErrorResponseHandlerListAllOf](docs/WorkflowErrorResponseHandlerListAllOf.md)
- - [WorkflowErrorResponseHandlerRelationship](docs/WorkflowErrorResponseHandlerRelationship.md)
- - [WorkflowErrorResponseHandlerResponse](docs/WorkflowErrorResponseHandlerResponse.md)
- - [WorkflowExpectPrompt](docs/WorkflowExpectPrompt.md)
- - [WorkflowExpectPromptAllOf](docs/WorkflowExpectPromptAllOf.md)
- - [WorkflowFailureEndTask](docs/WorkflowFailureEndTask.md)
- - [WorkflowFileDownloadOp](docs/WorkflowFileDownloadOp.md)
- - [WorkflowFileDownloadOpAllOf](docs/WorkflowFileDownloadOpAllOf.md)
- - [WorkflowFileOperations](docs/WorkflowFileOperations.md)
- - [WorkflowFileOperationsAllOf](docs/WorkflowFileOperationsAllOf.md)
- - [WorkflowFileTemplateOp](docs/WorkflowFileTemplateOp.md)
- - [WorkflowFileTemplateOpAllOf](docs/WorkflowFileTemplateOpAllOf.md)
- - [WorkflowFileTransfer](docs/WorkflowFileTransfer.md)
- - [WorkflowFileTransferAllOf](docs/WorkflowFileTransferAllOf.md)
- - [WorkflowForkTask](docs/WorkflowForkTask.md)
- - [WorkflowForkTaskAllOf](docs/WorkflowForkTaskAllOf.md)
- - [WorkflowInitiatorContext](docs/WorkflowInitiatorContext.md)
- - [WorkflowInitiatorContextAllOf](docs/WorkflowInitiatorContextAllOf.md)
- - [WorkflowInternalProperties](docs/WorkflowInternalProperties.md)
- - [WorkflowInternalPropertiesAllOf](docs/WorkflowInternalPropertiesAllOf.md)
- - [WorkflowJoinTask](docs/WorkflowJoinTask.md)
- - [WorkflowJoinTaskAllOf](docs/WorkflowJoinTaskAllOf.md)
- - [WorkflowLoopTask](docs/WorkflowLoopTask.md)
- - [WorkflowLoopTaskAllOf](docs/WorkflowLoopTaskAllOf.md)
- - [WorkflowMessage](docs/WorkflowMessage.md)
- - [WorkflowMessageAllOf](docs/WorkflowMessageAllOf.md)
- - [WorkflowMoReferenceArrayItem](docs/WorkflowMoReferenceArrayItem.md)
- - [WorkflowMoReferenceArrayItemAllOf](docs/WorkflowMoReferenceArrayItemAllOf.md)
- - [WorkflowMoReferenceDataType](docs/WorkflowMoReferenceDataType.md)
- - [WorkflowMoReferenceDataTypeAllOf](docs/WorkflowMoReferenceDataTypeAllOf.md)
- - [WorkflowMoReferenceProperty](docs/WorkflowMoReferenceProperty.md)
- - [WorkflowMoReferencePropertyAllOf](docs/WorkflowMoReferencePropertyAllOf.md)
- - [WorkflowParameterSet](docs/WorkflowParameterSet.md)
- - [WorkflowParameterSetAllOf](docs/WorkflowParameterSetAllOf.md)
- - [WorkflowPendingDynamicWorkflowInfo](docs/WorkflowPendingDynamicWorkflowInfo.md)
- - [WorkflowPendingDynamicWorkflowInfoAllOf](docs/WorkflowPendingDynamicWorkflowInfoAllOf.md)
- - [WorkflowPendingDynamicWorkflowInfoList](docs/WorkflowPendingDynamicWorkflowInfoList.md)
- - [WorkflowPendingDynamicWorkflowInfoListAllOf](docs/WorkflowPendingDynamicWorkflowInfoListAllOf.md)
- - [WorkflowPendingDynamicWorkflowInfoRelationship](docs/WorkflowPendingDynamicWorkflowInfoRelationship.md)
- - [WorkflowPendingDynamicWorkflowInfoResponse](docs/WorkflowPendingDynamicWorkflowInfoResponse.md)
- - [WorkflowPrimitiveArrayItem](docs/WorkflowPrimitiveArrayItem.md)
- - [WorkflowPrimitiveArrayItemAllOf](docs/WorkflowPrimitiveArrayItemAllOf.md)
- - [WorkflowPrimitiveDataProperty](docs/WorkflowPrimitiveDataProperty.md)
- - [WorkflowPrimitiveDataPropertyAllOf](docs/WorkflowPrimitiveDataPropertyAllOf.md)
- - [WorkflowPrimitiveDataType](docs/WorkflowPrimitiveDataType.md)
- - [WorkflowPrimitiveDataTypeAllOf](docs/WorkflowPrimitiveDataTypeAllOf.md)
- - [WorkflowProperties](docs/WorkflowProperties.md)
- - [WorkflowPropertiesAllOf](docs/WorkflowPropertiesAllOf.md)
- - [WorkflowResultHandler](docs/WorkflowResultHandler.md)
- - [WorkflowRollbackTask](docs/WorkflowRollbackTask.md)
- - [WorkflowRollbackTaskAllOf](docs/WorkflowRollbackTaskAllOf.md)
- - [WorkflowRollbackWorkflow](docs/WorkflowRollbackWorkflow.md)
- - [WorkflowRollbackWorkflowAllOf](docs/WorkflowRollbackWorkflowAllOf.md)
- - [WorkflowRollbackWorkflowList](docs/WorkflowRollbackWorkflowList.md)
- - [WorkflowRollbackWorkflowListAllOf](docs/WorkflowRollbackWorkflowListAllOf.md)
- - [WorkflowRollbackWorkflowResponse](docs/WorkflowRollbackWorkflowResponse.md)
- - [WorkflowRollbackWorkflowTask](docs/WorkflowRollbackWorkflowTask.md)
- - [WorkflowRollbackWorkflowTaskAllOf](docs/WorkflowRollbackWorkflowTaskAllOf.md)
- - [WorkflowSelectorProperty](docs/WorkflowSelectorProperty.md)
- - [WorkflowSelectorPropertyAllOf](docs/WorkflowSelectorPropertyAllOf.md)
- - [WorkflowSshCmd](docs/WorkflowSshCmd.md)
- - [WorkflowSshCmdAllOf](docs/WorkflowSshCmdAllOf.md)
- - [WorkflowSshConfig](docs/WorkflowSshConfig.md)
- - [WorkflowSshConfigAllOf](docs/WorkflowSshConfigAllOf.md)
- - [WorkflowSshSession](docs/WorkflowSshSession.md)
- - [WorkflowSshSessionAllOf](docs/WorkflowSshSessionAllOf.md)
- - [WorkflowStartTask](docs/WorkflowStartTask.md)
- - [WorkflowStartTaskAllOf](docs/WorkflowStartTaskAllOf.md)
- - [WorkflowSubWorkflowTask](docs/WorkflowSubWorkflowTask.md)
- - [WorkflowSubWorkflowTaskAllOf](docs/WorkflowSubWorkflowTaskAllOf.md)
- - [WorkflowSuccessEndTask](docs/WorkflowSuccessEndTask.md)
- - [WorkflowTargetContext](docs/WorkflowTargetContext.md)
- - [WorkflowTargetContextAllOf](docs/WorkflowTargetContextAllOf.md)
- - [WorkflowTargetDataType](docs/WorkflowTargetDataType.md)
- - [WorkflowTargetDataTypeAllOf](docs/WorkflowTargetDataTypeAllOf.md)
- - [WorkflowTargetProperty](docs/WorkflowTargetProperty.md)
- - [WorkflowTargetPropertyAllOf](docs/WorkflowTargetPropertyAllOf.md)
- - [WorkflowTaskConstraints](docs/WorkflowTaskConstraints.md)
- - [WorkflowTaskConstraintsAllOf](docs/WorkflowTaskConstraintsAllOf.md)
- - [WorkflowTaskDebugLog](docs/WorkflowTaskDebugLog.md)
- - [WorkflowTaskDebugLogAllOf](docs/WorkflowTaskDebugLogAllOf.md)
- - [WorkflowTaskDebugLogList](docs/WorkflowTaskDebugLogList.md)
- - [WorkflowTaskDebugLogListAllOf](docs/WorkflowTaskDebugLogListAllOf.md)
- - [WorkflowTaskDebugLogResponse](docs/WorkflowTaskDebugLogResponse.md)
- - [WorkflowTaskDefinition](docs/WorkflowTaskDefinition.md)
- - [WorkflowTaskDefinitionAllOf](docs/WorkflowTaskDefinitionAllOf.md)
- - [WorkflowTaskDefinitionList](docs/WorkflowTaskDefinitionList.md)
- - [WorkflowTaskDefinitionListAllOf](docs/WorkflowTaskDefinitionListAllOf.md)
- - [WorkflowTaskDefinitionRelationship](docs/WorkflowTaskDefinitionRelationship.md)
- - [WorkflowTaskDefinitionResponse](docs/WorkflowTaskDefinitionResponse.md)
- - [WorkflowTaskInfo](docs/WorkflowTaskInfo.md)
- - [WorkflowTaskInfoAllOf](docs/WorkflowTaskInfoAllOf.md)
- - [WorkflowTaskInfoList](docs/WorkflowTaskInfoList.md)
- - [WorkflowTaskInfoListAllOf](docs/WorkflowTaskInfoListAllOf.md)
- - [WorkflowTaskInfoRelationship](docs/WorkflowTaskInfoRelationship.md)
- - [WorkflowTaskInfoResponse](docs/WorkflowTaskInfoResponse.md)
- - [WorkflowTaskMetadata](docs/WorkflowTaskMetadata.md)
- - [WorkflowTaskMetadataAllOf](docs/WorkflowTaskMetadataAllOf.md)
- - [WorkflowTaskMetadataList](docs/WorkflowTaskMetadataList.md)
- - [WorkflowTaskMetadataListAllOf](docs/WorkflowTaskMetadataListAllOf.md)
- - [WorkflowTaskMetadataRelationship](docs/WorkflowTaskMetadataRelationship.md)
- - [WorkflowTaskMetadataResponse](docs/WorkflowTaskMetadataResponse.md)
- - [WorkflowTaskRetryInfo](docs/WorkflowTaskRetryInfo.md)
- - [WorkflowTaskRetryInfoAllOf](docs/WorkflowTaskRetryInfoAllOf.md)
- - [WorkflowTemplateEvaluation](docs/WorkflowTemplateEvaluation.md)
- - [WorkflowTemplateEvaluationAllOf](docs/WorkflowTemplateEvaluationAllOf.md)
- - [WorkflowTemplateFunctionMeta](docs/WorkflowTemplateFunctionMeta.md)
- - [WorkflowTemplateFunctionMetaAllOf](docs/WorkflowTemplateFunctionMetaAllOf.md)
- - [WorkflowTemplateFunctionMetaList](docs/WorkflowTemplateFunctionMetaList.md)
- - [WorkflowTemplateFunctionMetaListAllOf](docs/WorkflowTemplateFunctionMetaListAllOf.md)
- - [WorkflowTemplateFunctionMetaResponse](docs/WorkflowTemplateFunctionMetaResponse.md)
- - [WorkflowUiInputFilter](docs/WorkflowUiInputFilter.md)
- - [WorkflowUiInputFilterAllOf](docs/WorkflowUiInputFilterAllOf.md)
- - [WorkflowValidationError](docs/WorkflowValidationError.md)
- - [WorkflowValidationErrorAllOf](docs/WorkflowValidationErrorAllOf.md)
- - [WorkflowValidationInformation](docs/WorkflowValidationInformation.md)
- - [WorkflowValidationInformationAllOf](docs/WorkflowValidationInformationAllOf.md)
- - [WorkflowWaitTask](docs/WorkflowWaitTask.md)
- - [WorkflowWaitTaskAllOf](docs/WorkflowWaitTaskAllOf.md)
- - [WorkflowWaitTaskPrompt](docs/WorkflowWaitTaskPrompt.md)
- - [WorkflowWaitTaskPromptAllOf](docs/WorkflowWaitTaskPromptAllOf.md)
- - [WorkflowWebApi](docs/WorkflowWebApi.md)
- - [WorkflowWebApiAllOf](docs/WorkflowWebApiAllOf.md)
- - [WorkflowWorkerTask](docs/WorkflowWorkerTask.md)
- - [WorkflowWorkerTaskAllOf](docs/WorkflowWorkerTaskAllOf.md)
- - [WorkflowWorkflowCtx](docs/WorkflowWorkflowCtx.md)
- - [WorkflowWorkflowCtxAllOf](docs/WorkflowWorkflowCtxAllOf.md)
- - [WorkflowWorkflowDefinition](docs/WorkflowWorkflowDefinition.md)
- - [WorkflowWorkflowDefinitionAllOf](docs/WorkflowWorkflowDefinitionAllOf.md)
- - [WorkflowWorkflowDefinitionList](docs/WorkflowWorkflowDefinitionList.md)
- - [WorkflowWorkflowDefinitionListAllOf](docs/WorkflowWorkflowDefinitionListAllOf.md)
- - [WorkflowWorkflowDefinitionRelationship](docs/WorkflowWorkflowDefinitionRelationship.md)
- - [WorkflowWorkflowDefinitionResponse](docs/WorkflowWorkflowDefinitionResponse.md)
- - [WorkflowWorkflowEngineProperties](docs/WorkflowWorkflowEngineProperties.md)
- - [WorkflowWorkflowInfo](docs/WorkflowWorkflowInfo.md)
- - [WorkflowWorkflowInfoAllOf](docs/WorkflowWorkflowInfoAllOf.md)
- - [WorkflowWorkflowInfoList](docs/WorkflowWorkflowInfoList.md)
- - [WorkflowWorkflowInfoListAllOf](docs/WorkflowWorkflowInfoListAllOf.md)
- - [WorkflowWorkflowInfoProperties](docs/WorkflowWorkflowInfoProperties.md)
- - [WorkflowWorkflowInfoPropertiesAllOf](docs/WorkflowWorkflowInfoPropertiesAllOf.md)
- - [WorkflowWorkflowInfoRelationship](docs/WorkflowWorkflowInfoRelationship.md)
- - [WorkflowWorkflowInfoResponse](docs/WorkflowWorkflowInfoResponse.md)
- - [WorkflowWorkflowMeta](docs/WorkflowWorkflowMeta.md)
- - [WorkflowWorkflowMetaAllOf](docs/WorkflowWorkflowMetaAllOf.md)
- - [WorkflowWorkflowMetaList](docs/WorkflowWorkflowMetaList.md)
- - [WorkflowWorkflowMetaListAllOf](docs/WorkflowWorkflowMetaListAllOf.md)
- - [WorkflowWorkflowMetaResponse](docs/WorkflowWorkflowMetaResponse.md)
- - [WorkflowWorkflowMetadata](docs/WorkflowWorkflowMetadata.md)
- - [WorkflowWorkflowMetadataAllOf](docs/WorkflowWorkflowMetadataAllOf.md)
- - [WorkflowWorkflowMetadataList](docs/WorkflowWorkflowMetadataList.md)
- - [WorkflowWorkflowMetadataListAllOf](docs/WorkflowWorkflowMetadataListAllOf.md)
- - [WorkflowWorkflowMetadataRelationship](docs/WorkflowWorkflowMetadataRelationship.md)
- - [WorkflowWorkflowMetadataResponse](docs/WorkflowWorkflowMetadataResponse.md)
- - [WorkflowWorkflowProperties](docs/WorkflowWorkflowProperties.md)
- - [WorkflowWorkflowPropertiesAllOf](docs/WorkflowWorkflowPropertiesAllOf.md)
- - [WorkflowWorkflowTask](docs/WorkflowWorkflowTask.md)
- - [WorkflowWorkflowTaskAllOf](docs/WorkflowWorkflowTaskAllOf.md)
- - [WorkflowXmlApi](docs/WorkflowXmlApi.md)
- - [X509Certificate](docs/X509Certificate.md)
- - [X509CertificateAllOf](docs/X509CertificateAllOf.md)
-
-
-## Documentation For Authorization
-
-
-## cookieAuth
-
-- **Type**: API key
-- **API key parameter name**: X-Starship-Token
-- **Location**:
-
-
-## http_signature
-
-- **Type**: HTTP signature authentication
-
-
-## oAuth2
-
-- **Type**: OAuth
-- **Flow**: application
-- **Authorization URL**:
-- **Scopes**:
- - **PERMISSION.Account Administrator**: As an Account administrator, you have complete access to all services and resources in Intersight. You can perform all administrative and management tasks, including claim and manage devices, create and deploy Server and HyperFlex Cluster profiles, upgrade firmware, perform server actions, cross launch devices, add and manage users and groups, configure Identity providers and more.
- - **PERMISSION.Audit Log Viewer**: As an Audit Log Viewer, you can view audit logs.
- - **PERMISSION.Device Administrator**: As a Device Administrator, you can claim and unclaim a device in Intersight, view the device details, license status, a list of all the claimed devices, and generate API keys. You cannot perform any other management or administrative task in this role.
- - **PERMISSION.Device Technician**: As a Device Technician you can claim a device, view the device details, license status, a list of the claimed devices, and generate API keys. You cannot perform any other management or administrative task in this role.
- - **PERMISSION.External Syslog Administrator**: As an External Syslog Administrator, you can configure an external syslog server on an on-prem appliance.
- - **PERMISSION.HyperFlex Cluster Administrator**: As a HyperFlex Cluster Administrator, you can create, edit, deploy, and manage HyperFlex Clusters, view all the cluster dashboard widgets, view cluster details, create HyperFlex policies and profiles, and launch HyperFlex Connect.This role does not include the ability to claim a device. You must have a Device Technician, Device Administrator, or an Account Administrator role to claim a device.
- - **PERMISSION.Kubernetes Administrator**: As a Kubernetes Administrator, you can create, edit, deploy, and manage Kubernetes Clusters. You can also view all the cluster dashboard widgets, and view cluster details. In addition, you also have privileges to view and manage storage targets associated with the Kubernetes clusters. The capability to view and execute workflows against the Kubernetes clusters is also granted. It also allows the user to run workflows to manage VMs on hypervisor endpoints, and manage connected storage. The ability to create and view IP pools is also allowed. This role does not include the ability to claim a target. You must have a Device Technician, Device Administrator, or an Account Administrator role to claim a target.
- - **PERMISSION.Kubernetes Operator**: As a Kubernetes Operator, you can view Kubernetes Clusters. You can also view all the cluster dashboard widgets, and view cluster details. In addition, you also have privileges to view storage targets associated with the Kubernetes clusters. The capability to view workflows is also granted. It also allows the user to view VMs on hypervisor endpoints. This role also provides the capability to view IP pools. This role does not include the ability to claim a target. You must have a Device Technician, Device Administrator, or an Account Administrator role to claim a target.
- - **PERMISSION.Read-Only**: As a Read-Only user, you can view the dashboard, table views of the managed devices, change user preferences, and generate API keys. You cannot claim a device, add or remove a user, configure Identity providers or perform any server actions.
- - **PERMISSION.Server Administrator**: As a Server Administrator, you can view and manage UCS Servers and Fabric Interconnects, view all the server and Fabric Interconnect dashboard widgets, perform server actions, view server details, launch management interfaces and the CLI, create and deploy server policies and profiles, and manage API keys. This role does not include the ability to claim a device. You must have a Device Technician, Device Administrator, or an Account Administrator role to claim a device.
- - **PERMISSION.Storage Administrator**: As a Storage Administrator, a user can view and manage Storage devices, view and execute workflows and view all the storage dashboard widgets. This privilege does not include the ability to claim a device. You must have a Device Technician, Device Administrator, or an Account Administrator role to claim a device.
- - **PERMISSION.UCS Domain Administrator**: As a UCS Domain Administrator, you can view and manage Switch Profiles and Network Configuration Policies, view Fabric Interconnect dashboard widgets, perform actions on Switch, launch management interfaces and the CLI, create and deploy switch policies and profiles, and manage API keys. This role does not include the ability to claim a device. You must have a Device Technician, Device Administrator, or an Account Administrator role to claim a device.
- - **PERMISSION.User Access Administrator**: As a User Access Administrator, you can add and manage Users and Groups in Intersight, view account details and audit logs, manage the IdPs, roles, sessions and API keys for non Account Administrator users. However, you cannot claim a device or perform any management tasks in Intersight. You cannot add or manage a user with Account Administrator role.
- - **PERMISSION.Virtualization Administrator**: As a Virtualization Administrator, a user can view and manage hypervisor resources, view and execute workflows. This privilege does not include the ability to claim a device. You must have a Device Technician, Device Administrator, or an Account Administrator role to claim a device.
- - **PERMISSION.Workflow Designer**: As a Workflow Designer, you can define workflow definitions and custom data types, view workflow definitions, task definitions and custom data types, execute workflows and view workflow executions.
- - **PERMISSION.Workload Optimizer Administrator**: As a Workload Optimizer Administrator, you can view workload optimization state, recommended actions, perform adiministrative tasks for workload optimization, manage workload optimization policies, deploy workloads.
- - **PERMISSION.Workload Optimizer Advisor**: As a Workload Optimizer Advisor, you can view workload optimization state and recommended actions, run plans for workload optimization.
- - **PERMISSION.Workload Optimizer Automator**: As a Workload Optimizer Automator, you can view workload optimization state, recommended actions, run plans for workload optimization, execute workload optimization actions, and deploy workloads.
- - **PERMISSION.Workload Optimizer Deployer**: As a Workload Optimizer Deployer, you can view workload optimization state, recommended actions, perform adiministrative tasks for workload optimization, manage workload optimization policies, and deploy workloads.
- - **PERMISSION.Workload Optimizer Observer**: As a Workload Optimizer Observer, you can view workload optimization state and recommended actions.
- - **PRIVSET.Account Administrator**: A set of privileges that provides complete access to all services and resources in Intersight.
- - **PRIVSET.Audit Log Viewer**: As an Audit Log Viewer, you can view audit logs.
- - **PRIVSET.Authentication**: A set of privileges that allows to manage authentication and identity management for the user.
- - **PRIVSET.Claim Devices**: Claim devices.
- - **PRIVSET.Delete Devices**: Delete Devices.
- - **PRIVSET.Device Administrator**: As a Device Administrator, you can claim and unclaim a device in Intersight, view the device details, license status, a list of all the claimed devices, and generate API keys. You cannot perform any other management or administrative task in this role.
- - **PRIVSET.Device Technician**: As a Device Technician you can claim a device, view the device details, license status, a list of the claimed devices, and generate API keys. You cannot perform any other management or administrative task in this role.
- - **PRIVSET.Devices**: A set of privileges that allows the access to manage devices e.g. view device details, claim and delete devices.
- - **PRIVSET.Execute Workflows**: A set of privileges that allow the users to execute workflows and manage running workflows in IO.
- - **PRIVSET.External Syslog Administrator**: As an External Syslog Administrator, you can configure an external syslog server on an on-prem appliance.
- - **PRIVSET.Fabric Interconnects**: A set of privileges that allows to perform operations related to Fabric Interconnect e.g. view fabric interconnect summary or detailed information about fabric connect. Fabric Interconnect privilege set is the top level privilege set of other privilege set(s) which are mapped to privileges related to Fabric Interconnect.
- - **PRIVSET.HyperFlex Cluster**: A set of privileges that allows the access to manage HyperFlex clusters.
- - **PRIVSET.HyperFlex Cluster Administrator**: As a HyperFlex Cluster Administrator, you can create, edit, deploy, and manage HyperFlex Clusters, view all the cluster dashboard widgets, view cluster details, create HyperFlex policies and profiles, and launch HyperFlex Connect.This role does not include the ability to claim a device. It also allows the user to run workflows, manage VMs on HyperFlexAP, and manage connected storage. You must have a Device Technician, Device Administrator, or an Account Administrator role to claim a device.
- - **PRIVSET.HyperFlex Cluster Profiles**: A set of privileges that allows to manage HyperFlex policies and profiles.
- - **PRIVSET.Hypervisors**: A set of privileges that allows the access to detailed hypervisor information and to perform hypervisor related actions. Hypervisors privilege set is the top level privilege set of other privilege set(s) which are mapped to privileges related to hypervisors.
- - **PRIVSET.Kubernetes Administrator**: As a Kubernetes Administrator, you can create, edit, deploy, and manage Kubernetes Clusters. You can also view all the cluster dashboard widgets, and view cluster details. In addition, you also have privileges to view and manage storage devices associated with the Kubernetes clusters. The capability to view and execute workflows against the Kubernetes clusters is also granted. It also allows the user to run workflows to manage VMs on hypervisor endpoints, and manage connected storage, and creat/view ip pools. This role does not include the ability to claim a device. You must have a Device Technician, Device Administrator, or an Account Administrator role to claim a device.
- - **PRIVSET.Kubernetes Operator**: As a Kubernetes Operator, you can view Kubernetes Clusters. You can also view all the cluster dashboard widgets, and view cluster details. In addition, you also have privileges to view storage devices associated with the Kubernetes clusters. The capability to view workflows is also granted. It also allows the user to view VMs on hypervisor endpoints. This role does not include the ability to claim a device. You must have a Device Technician, Device Administrator, or an Account Administrator role to claim a device.
- - **PRIVSET.Launch Endpoint Management Interfaces**: Launch Endpoint Management Interfaces.
- - **PRIVSET.Manage API Keys**: Manage API Keys.
- - **PRIVSET.Manage Access and Permissions**: Manage access control rules and permissions.
- - **PRIVSET.Manage Auth Tokens**: Manage Authentication and Authorization Tokens.
- - **PRIVSET.Manage Exports**: A set of privileges that allow the users to export Intersight managed objects.
- - **PRIVSET.Manage External Syslog**: Manage External Syslog.
- - **PRIVSET.Manage Fabric Interconnects**: Manage Fabric Interconnects.
- - **PRIVSET.Manage HyperFlex Cluster Profiles**: Manage HyperFlex Cluster Profiles.
- - **PRIVSET.Manage HyperFlex Clusters**: Manage HyperFlex Clusters.
- - **PRIVSET.Manage Hypervisors**: A set of privileges that allow the users to execute workflows related to hypervisor and virtual machines management.
- - **PRIVSET.Manage Identity Providers**: Manage Single Sign On identity providers.
- - **PRIVSET.Manage Imports**: A set of privileges that allow the users to import Intersight managed objects.
- - **PRIVSET.Manage Organizations**: A set of privileges that allows the access to manage Organizations.
- - **PRIVSET.Manage Server Profiles**: Manage server profiles.
- - **PRIVSET.Manage Servers**: Manage Servers.
- - **PRIVSET.Manage Sessions**: Manage user login sessions.
- - **PRIVSET.Manage Storage Arrays**: A set of privileges that allow the user to execute workflows related to storage arrays.
- - **PRIVSET.Manage Switch Profiles**: Manage Switch Profiles.
- - **PRIVSET.Manage Telemetry**: Manage Telemetry allows [READ of broker information](http://druid.io/docs/latest/operations/api-reference.html#broker).
- - **PRIVSET.Manage Workflow Definitions**: A set of privileges that allow the users to manage workflow and custom data type definitions.
- - **PRIVSET.Organizations**: A set of privileges that allows the access to manage Organizations.
- - **PRIVSET.Read-Only**: A set of privileges that provides read-only access to services and resources in Intersight.
- - **PRIVSET.Server Administrator**: As a Server Administrator, you can view and manage UCS Servers and Fabric Interconnects, view all the server and Fabric Interconnect dashboard widgets, perform server actions, view server details, launch management interfaces and the CLI, create and deploy server policies and profiles, and manage API keys. This role does not include the ability to claim a device. You must have a Device Technician, Device Administrator, or an Account Administrator role to claim a device.
- - **PRIVSET.Server Profiles**: A set of privileges that allows to manage server policies and server profiles. Server Policy Management privilege set is the top level privilege set of other privilege set(s) which are mapped to privileges related to server policy management.
- - **PRIVSET.Servers**: A set of privileges that allows the access to detailed server information and to perform server related actions. Servers privilege set is the top level privilege set of other privilege set(s) which are mapped to privileges related to servers.
- - **PRIVSET.Storage Administrator**: As a Storage Administrator, a user can view and manage Storage devices, view and execute workflows and view all the storage dashboard widgets. This privilege does not include the ability to claim a device. You must have a Device Technician, Device Administrator, or an Account Administrator role to claim a device.
- - **PRIVSET.Storage Arrays**: A set of privileges that allows the access to detailed storage array information and to perform storage array related actions. Storage Arrays privilege set is the top level privilege set of other privilege set(s) which are mapped to privileges related to storage arrays.
- - **PRIVSET.Switch Profiles**: A set of privileges that allows to manage Switch Profiles and Network configuration policies.
- - **PRIVSET.Telemetry**: A set of privileges that allows to access to telemetry data. Telemetry privilege set is the top level privilege set of other privilege set(s) which are mapped to privileges related to Telemetry. View Telemetry allows [POST of a Druid query](http://druid.io/docs/latest/querying/querying). Manage Telemetry allows [READ of broker information](http://druid.io/docs/latest/operations/api-reference.html#broker).
- - **PRIVSET.UCS Domain Administrator**: As a UCS Domain Administrator, you can view and manage Switch Profiles and Network Configuration Policies, view Fabric Interconnect dashboard widgets, perform actions on Switch, launch management interfaces and the CLI, create and deploy switch policies and profiles, and manage API keys. This role does not include the ability to claim a device. You must have a Device Technician, Device Administrator, or an Account Administrator role to claim a device.
- - **PRIVSET.User Access Administrator**: As a User Access Administrator, you can add and manage Users and Groups in Intersight, view account details and audit logs, manage the IdPs, roles, sessions and API keys for non Account Administrator users. However, you cannot claim a device or perform any management tasks in Intersight. You cannot add or manage a user with Account Administrator role.
- - **PRIVSET.View Audit Logs**: View audit records.
- - **PRIVSET.View Devices**: A set of privileges that allows read access to devices.
- - **PRIVSET.View Exports**: A set of privileges that allow users to view export operations.
- - **PRIVSET.View Fabric Interconnects**: View Fabric Interconnects.
- - **PRIVSET.View HyperFlex Cluster Profiles**: View HyperFlex Cluster Profiles.
- - **PRIVSET.View HyperFlex Clusters**: View HyperFlex Clusters.
- - **PRIVSET.View Hypervisors**: A set of privileges that allow users to view hypervisor and virtual machines related inventory and dashboards.
- - **PRIVSET.View Imports**: A set of privileges that allow users to view the import operations.
- - **PRIVSET.View Licensing Status**: View Licensing Status
- - **PRIVSET.View Organizations**: View Organizations
- - **PRIVSET.View Server Profiles**: View server profiles.
- - **PRIVSET.View Servers**: View Servers.
- - **PRIVSET.View Storage Arrays**: A set of privileges that allow the users to view storage related inventory and dashboards.
- - **PRIVSET.View Switch Profiles**: View Switch Profiles.
- - **PRIVSET.View Telemetry**: allows [POST of a Druid query](http://druid.io/docs/latest/querying/querying).
- - **PRIVSET.View Workflow Definitions**: A set of privileges that allow the users to view the workflow, task and custom data type definitions.
- - **PRIVSET.View Workflow Executions**: A set of privileges that allow the users to view the running instances of the workflows.
- - **PRIVSET.Virtualization Administrator**: As a Virtualization Administrator, a user can view and manage hypervisor resources, view and execute workflows. This privilege does not include the ability to claim a device. You must have a Device Technician, Device Administrator, or an Account Administrator role to claim a device.
- - **PRIVSET.Workflow Designer**: As a Workflow Designer, you can define workflow definitions and custom data types, view workflow definitions, task definitions and custom data types, execute workflows and view workflow executions.
- - **PRIVSET.Workload Optimizer Administrator**: As a Workload Optimizer Administrator, you can view workload optimization state, recommended actions, perform adiministrative tasks for workload optimization, manage workload optimization policies, deploy workloads.
- - **PRIVSET.Workload Optimizer Advisor**: As a Workload Optimizer Advisor, you can view workload optimization state and recommended actions, run plans for workload optimization.
- - **PRIVSET.Workload Optimizer Automator**: As a Workload Optimizer Automator, you can view workload optimization state, recommended actions, run plans for workload optimization, execute workload optimization actions, and deploy workloads.
- - **PRIVSET.Workload Optimizer Deployer**: As a Workload Optimizer Deployer, you can view workload optimization state, recommended actions, perform adiministrative tasks for workload optimization, manage workload optimization policies, and deploy workloads.
- - **PRIVSET.Workload Optimizer Observer**: As a Workload Optimizer Observer, you can view workload optimization state and recommended actions.
- - **READ.aaa.AuditRecord**: Read a 'aaa.AuditRecord' resource.
- - **CREATE.access.Policy**: Create a 'access.Policy' resource.
- - **DELETE.access.Policy**: Delete a 'access.Policy' resource.
- - **READ.access.Policy**: Read a 'access.Policy' resource.
- - **UPDATE.access.Policy**: Update a 'access.Policy' resource.
- - **CREATE.adapter.ConfigPolicy**: Create a 'adapter.ConfigPolicy' resource.
- - **DELETE.adapter.ConfigPolicy**: Delete a 'adapter.ConfigPolicy' resource.
- - **READ.adapter.ConfigPolicy**: Read a 'adapter.ConfigPolicy' resource.
- - **UPDATE.adapter.ConfigPolicy**: Update a 'adapter.ConfigPolicy' resource.
- - **READ.adapter.ExtEthInterface**: Read a 'adapter.ExtEthInterface' resource.
- - **READ.adapter.HostEthInterface**: Read a 'adapter.HostEthInterface' resource.
- - **READ.adapter.HostFcInterface**: Read a 'adapter.HostFcInterface' resource.
- - **READ.adapter.HostIscsiInterface**: Read a 'adapter.HostIscsiInterface' resource.
- - **READ.adapter.Unit**: Read a 'adapter.Unit' resource.
- - **READ.adapter.UnitExpander**: Read a 'adapter.UnitExpander' resource.
- - **READ.appliance.AppStatus**: Read a 'appliance.AppStatus' resource.
- - **CREATE.appliance.AutoRmaPolicy**: Create a 'appliance.AutoRmaPolicy' resource.
- - **READ.appliance.AutoRmaPolicy**: Read a 'appliance.AutoRmaPolicy' resource.
- - **UPDATE.appliance.AutoRmaPolicy**: Update a 'appliance.AutoRmaPolicy' resource.
- - **CREATE.appliance.Backup**: Create a 'appliance.Backup' resource.
- - **DELETE.appliance.Backup**: Delete a 'appliance.Backup' resource.
- - **READ.appliance.Backup**: Read a 'appliance.Backup' resource.
- - **CREATE.appliance.BackupPolicy**: Create a 'appliance.BackupPolicy' resource.
- - **READ.appliance.BackupPolicy**: Read a 'appliance.BackupPolicy' resource.
- - **UPDATE.appliance.BackupPolicy**: Update a 'appliance.BackupPolicy' resource.
- - **READ.appliance.CertificateSetting**: Read a 'appliance.CertificateSetting' resource.
- - **UPDATE.appliance.CertificateSetting**: Update a 'appliance.CertificateSetting' resource.
- - **CREATE.appliance.DataExportPolicy**: Create a 'appliance.DataExportPolicy' resource.
- - **READ.appliance.DataExportPolicy**: Read a 'appliance.DataExportPolicy' resource.
- - **UPDATE.appliance.DataExportPolicy**: Update a 'appliance.DataExportPolicy' resource.
- - **READ.appliance.DeviceCertificate**: Read a 'appliance.DeviceCertificate' resource.
- - **CREATE.appliance.DeviceClaim**: Create a 'appliance.DeviceClaim' resource.
- - **READ.appliance.DeviceClaim**: Read a 'appliance.DeviceClaim' resource.
- - **UPDATE.appliance.DeviceClaim**: Update a 'appliance.DeviceClaim' resource.
- - **CREATE.appliance.DiagSetting**: Create a 'appliance.DiagSetting' resource.
- - **READ.appliance.DiagSetting**: Read a 'appliance.DiagSetting' resource.
- - **UPDATE.appliance.DiagSetting**: Update a 'appliance.DiagSetting' resource.
- - **READ.appliance.ExternalSyslogSetting**: Read a 'appliance.ExternalSyslogSetting' resource.
- - **UPDATE.appliance.ExternalSyslogSetting**: Update a 'appliance.ExternalSyslogSetting' resource.
- - **READ.appliance.FileSystemStatus**: Read a 'appliance.FileSystemStatus' resource.
- - **READ.appliance.GroupStatus**: Read a 'appliance.GroupStatus' resource.
- - **READ.appliance.ImageBundle**: Read a 'appliance.ImageBundle' resource.
- - **READ.appliance.NodeInfo**: Read a 'appliance.NodeInfo' resource.
- - **READ.appliance.NodeStatus**: Read a 'appliance.NodeStatus' resource.
- - **READ.appliance.ReleaseNote**: Read a 'appliance.ReleaseNote' resource.
- - **CREATE.appliance.RemoteFileImport**: Create a 'appliance.RemoteFileImport' resource.
- - **READ.appliance.RemoteFileImport**: Read a 'appliance.RemoteFileImport' resource.
- - **CREATE.appliance.Restore**: Create a 'appliance.Restore' resource.
- - **DELETE.appliance.Restore**: Delete a 'appliance.Restore' resource.
- - **READ.appliance.Restore**: Read a 'appliance.Restore' resource.
- - **READ.appliance.SetupInfo**: Read a 'appliance.SetupInfo' resource.
- - **UPDATE.appliance.SetupInfo**: Update a 'appliance.SetupInfo' resource.
- - **READ.appliance.SystemInfo**: Read a 'appliance.SystemInfo' resource.
- - **READ.appliance.SystemStatus**: Read a 'appliance.SystemStatus' resource.
- - **READ.appliance.Upgrade**: Read a 'appliance.Upgrade' resource.
- - **UPDATE.appliance.Upgrade**: Update a 'appliance.Upgrade' resource.
- - **READ.appliance.UpgradePolicy**: Read a 'appliance.UpgradePolicy' resource.
- - **UPDATE.appliance.UpgradePolicy**: Update a 'appliance.UpgradePolicy' resource.
- - **READ.asset.ClusterMember**: Read a 'asset.ClusterMember' resource.
- - **DELETE.asset.Deployment**: Delete a 'asset.Deployment' resource.
- - **READ.asset.Deployment**: Read a 'asset.Deployment' resource.
- - **DELETE.asset.DeploymentDevice**: Delete a 'asset.DeploymentDevice' resource.
- - **READ.asset.DeploymentDevice**: Read a 'asset.DeploymentDevice' resource.
- - **CREATE.asset.DeviceClaim**: Create a 'asset.DeviceClaim' resource.
- - **DELETE.asset.DeviceClaim**: Delete a 'asset.DeviceClaim' resource.
- - **READ.asset.DeviceConfiguration**: Read a 'asset.DeviceConfiguration' resource.
- - **UPDATE.asset.DeviceConfiguration**: Update a 'asset.DeviceConfiguration' resource.
- - **READ.asset.DeviceConnectorManager**: Read a 'asset.DeviceConnectorManager' resource.
- - **DELETE.asset.DeviceContractInformation**: Delete a 'asset.DeviceContractInformation' resource.
- - **READ.asset.DeviceContractInformation**: Read a 'asset.DeviceContractInformation' resource.
- - **UPDATE.asset.DeviceContractInformation**: Update a 'asset.DeviceContractInformation' resource.
- - **DELETE.asset.DeviceRegistration**: Deletes the resource representing the device connector. All associated REST resources will be deleted. In particular, inventory and operational data associated with this device will be deleted.
- - **READ.asset.DeviceRegistration**: Read a 'asset.DeviceRegistration' resource.
- - **UPDATE.asset.DeviceRegistration**: Updates the resource representing the device connector. For example, this can be used to annotate the device connector resource with user-specified tags.
- - **DELETE.asset.Subscription**: Delete a 'asset.Subscription' resource.
- - **READ.asset.Subscription**: Read a 'asset.Subscription' resource.
- - **DELETE.asset.SubscriptionAccount**: Delete a 'asset.SubscriptionAccount' resource.
- - **READ.asset.SubscriptionAccount**: Read a 'asset.SubscriptionAccount' resource.
- - **READ.asset.SubscriptionDeviceContractInformation**: Read a 'asset.SubscriptionDeviceContractInformation' resource.
- - **CREATE.asset.Target**: Create a 'asset.Target' resource.
- - **DELETE.asset.Target**: Delete a 'asset.Target' resource.
- - **READ.asset.Target**: Read a 'asset.Target' resource.
- - **UPDATE.asset.Target**: Update a 'asset.Target' resource.
- - **READ.bios.BootDevice**: Read a 'bios.BootDevice' resource.
- - **READ.bios.BootMode**: Read a 'bios.BootMode' resource.
- - **UPDATE.bios.BootMode**: Update a 'bios.BootMode' resource.
- - **CREATE.bios.Policy**: Create a 'bios.Policy' resource.
- - **DELETE.bios.Policy**: Delete a 'bios.Policy' resource.
- - **READ.bios.Policy**: Read a 'bios.Policy' resource.
- - **UPDATE.bios.Policy**: Update a 'bios.Policy' resource.
- - **READ.bios.SystemBootOrder**: Read a 'bios.SystemBootOrder' resource.
- - **READ.bios.TokenSettings**: Read a 'bios.TokenSettings' resource.
- - **READ.bios.Unit**: Read a 'bios.Unit' resource.
- - **UPDATE.bios.Unit**: Update a 'bios.Unit' resource.
- - **READ.bios.VfSelectMemoryRasConfiguration**: Read a 'bios.VfSelectMemoryRasConfiguration' resource.
- - **READ.boot.CddDevice**: Read a 'boot.CddDevice' resource.
- - **UPDATE.boot.CddDevice**: Update a 'boot.CddDevice' resource.
- - **READ.boot.DeviceBootMode**: Read a 'boot.DeviceBootMode' resource.
- - **UPDATE.boot.DeviceBootMode**: Update a 'boot.DeviceBootMode' resource.
- - **READ.boot.DeviceBootSecurity**: Read a 'boot.DeviceBootSecurity' resource.
- - **UPDATE.boot.DeviceBootSecurity**: Update a 'boot.DeviceBootSecurity' resource.
- - **READ.boot.HddDevice**: Read a 'boot.HddDevice' resource.
- - **UPDATE.boot.HddDevice**: Update a 'boot.HddDevice' resource.
- - **READ.boot.IscsiDevice**: Read a 'boot.IscsiDevice' resource.
- - **UPDATE.boot.IscsiDevice**: Update a 'boot.IscsiDevice' resource.
- - **READ.boot.NvmeDevice**: Read a 'boot.NvmeDevice' resource.
- - **UPDATE.boot.NvmeDevice**: Update a 'boot.NvmeDevice' resource.
- - **READ.boot.PchStorageDevice**: Read a 'boot.PchStorageDevice' resource.
- - **UPDATE.boot.PchStorageDevice**: Update a 'boot.PchStorageDevice' resource.
- - **CREATE.boot.PrecisionPolicy**: Create a 'boot.PrecisionPolicy' resource.
- - **DELETE.boot.PrecisionPolicy**: Delete a 'boot.PrecisionPolicy' resource.
- - **READ.boot.PrecisionPolicy**: Read a 'boot.PrecisionPolicy' resource.
- - **UPDATE.boot.PrecisionPolicy**: Update a 'boot.PrecisionPolicy' resource.
- - **READ.boot.PxeDevice**: Read a 'boot.PxeDevice' resource.
- - **UPDATE.boot.PxeDevice**: Update a 'boot.PxeDevice' resource.
- - **READ.boot.SanDevice**: Read a 'boot.SanDevice' resource.
- - **UPDATE.boot.SanDevice**: Update a 'boot.SanDevice' resource.
- - **READ.boot.SdDevice**: Read a 'boot.SdDevice' resource.
- - **UPDATE.boot.SdDevice**: Update a 'boot.SdDevice' resource.
- - **READ.boot.UefiShellDevice**: Read a 'boot.UefiShellDevice' resource.
- - **UPDATE.boot.UefiShellDevice**: Update a 'boot.UefiShellDevice' resource.
- - **READ.boot.UsbDevice**: Read a 'boot.UsbDevice' resource.
- - **UPDATE.boot.UsbDevice**: Update a 'boot.UsbDevice' resource.
- - **READ.boot.VmediaDevice**: Read a 'boot.VmediaDevice' resource.
- - **UPDATE.boot.VmediaDevice**: Update a 'boot.VmediaDevice' resource.
- - **CREATE.bulk.MoCloner**: Create a 'bulk.MoCloner' resource.
- - **CREATE.bulk.MoMerger**: Create a 'bulk.MoMerger' resource.
- - **CREATE.bulk.Request**: Create a 'bulk.Request' resource.
- - **CREATE.capability.AdapterUnitDescriptor**: Create a 'capability.AdapterUnitDescriptor' resource.
- - **DELETE.capability.AdapterUnitDescriptor**: Delete a 'capability.AdapterUnitDescriptor' resource.
- - **READ.capability.AdapterUnitDescriptor**: Read a 'capability.AdapterUnitDescriptor' resource.
- - **UPDATE.capability.AdapterUnitDescriptor**: Update a 'capability.AdapterUnitDescriptor' resource.
- - **READ.capability.Catalog**: Read a 'capability.Catalog' resource.
- - **UPDATE.capability.Catalog**: Update a 'capability.Catalog' resource.
- - **CREATE.capability.ChassisDescriptor**: Create a 'capability.ChassisDescriptor' resource.
- - **DELETE.capability.ChassisDescriptor**: Delete a 'capability.ChassisDescriptor' resource.
- - **READ.capability.ChassisDescriptor**: Read a 'capability.ChassisDescriptor' resource.
- - **UPDATE.capability.ChassisDescriptor**: Update a 'capability.ChassisDescriptor' resource.
- - **CREATE.capability.ChassisManufacturingDef**: Create a 'capability.ChassisManufacturingDef' resource.
- - **DELETE.capability.ChassisManufacturingDef**: Delete a 'capability.ChassisManufacturingDef' resource.
- - **READ.capability.ChassisManufacturingDef**: Read a 'capability.ChassisManufacturingDef' resource.
- - **UPDATE.capability.ChassisManufacturingDef**: Update a 'capability.ChassisManufacturingDef' resource.
- - **CREATE.capability.CimcFirmwareDescriptor**: Create a 'capability.CimcFirmwareDescriptor' resource.
- - **DELETE.capability.CimcFirmwareDescriptor**: Delete a 'capability.CimcFirmwareDescriptor' resource.
- - **READ.capability.CimcFirmwareDescriptor**: Read a 'capability.CimcFirmwareDescriptor' resource.
- - **UPDATE.capability.CimcFirmwareDescriptor**: Update a 'capability.CimcFirmwareDescriptor' resource.
- - **CREATE.capability.EquipmentPhysicalDef**: Create a 'capability.EquipmentPhysicalDef' resource.
- - **DELETE.capability.EquipmentPhysicalDef**: Delete a 'capability.EquipmentPhysicalDef' resource.
- - **READ.capability.EquipmentPhysicalDef**: Read a 'capability.EquipmentPhysicalDef' resource.
- - **UPDATE.capability.EquipmentPhysicalDef**: Update a 'capability.EquipmentPhysicalDef' resource.
- - **CREATE.capability.EquipmentSlotArray**: Create a 'capability.EquipmentSlotArray' resource.
- - **DELETE.capability.EquipmentSlotArray**: Delete a 'capability.EquipmentSlotArray' resource.
- - **READ.capability.EquipmentSlotArray**: Read a 'capability.EquipmentSlotArray' resource.
- - **UPDATE.capability.EquipmentSlotArray**: Update a 'capability.EquipmentSlotArray' resource.
- - **CREATE.capability.FanModuleDescriptor**: Create a 'capability.FanModuleDescriptor' resource.
- - **DELETE.capability.FanModuleDescriptor**: Delete a 'capability.FanModuleDescriptor' resource.
- - **READ.capability.FanModuleDescriptor**: Read a 'capability.FanModuleDescriptor' resource.
- - **UPDATE.capability.FanModuleDescriptor**: Update a 'capability.FanModuleDescriptor' resource.
- - **CREATE.capability.FanModuleManufacturingDef**: Create a 'capability.FanModuleManufacturingDef' resource.
- - **DELETE.capability.FanModuleManufacturingDef**: Delete a 'capability.FanModuleManufacturingDef' resource.
- - **READ.capability.FanModuleManufacturingDef**: Read a 'capability.FanModuleManufacturingDef' resource.
- - **UPDATE.capability.FanModuleManufacturingDef**: Update a 'capability.FanModuleManufacturingDef' resource.
- - **CREATE.capability.IoCardCapabilityDef**: Create a 'capability.IoCardCapabilityDef' resource.
- - **DELETE.capability.IoCardCapabilityDef**: Delete a 'capability.IoCardCapabilityDef' resource.
- - **READ.capability.IoCardCapabilityDef**: Read a 'capability.IoCardCapabilityDef' resource.
- - **UPDATE.capability.IoCardCapabilityDef**: Update a 'capability.IoCardCapabilityDef' resource.
- - **CREATE.capability.IoCardDescriptor**: Create a 'capability.IoCardDescriptor' resource.
- - **DELETE.capability.IoCardDescriptor**: Delete a 'capability.IoCardDescriptor' resource.
- - **READ.capability.IoCardDescriptor**: Read a 'capability.IoCardDescriptor' resource.
- - **UPDATE.capability.IoCardDescriptor**: Update a 'capability.IoCardDescriptor' resource.
- - **CREATE.capability.IoCardManufacturingDef**: Create a 'capability.IoCardManufacturingDef' resource.
- - **DELETE.capability.IoCardManufacturingDef**: Delete a 'capability.IoCardManufacturingDef' resource.
- - **READ.capability.IoCardManufacturingDef**: Read a 'capability.IoCardManufacturingDef' resource.
- - **UPDATE.capability.IoCardManufacturingDef**: Update a 'capability.IoCardManufacturingDef' resource.
- - **CREATE.capability.PortGroupAggregationDef**: Create a 'capability.PortGroupAggregationDef' resource.
- - **DELETE.capability.PortGroupAggregationDef**: Delete a 'capability.PortGroupAggregationDef' resource.
- - **READ.capability.PortGroupAggregationDef**: Read a 'capability.PortGroupAggregationDef' resource.
- - **UPDATE.capability.PortGroupAggregationDef**: Update a 'capability.PortGroupAggregationDef' resource.
- - **CREATE.capability.PsuDescriptor**: Create a 'capability.PsuDescriptor' resource.
- - **DELETE.capability.PsuDescriptor**: Delete a 'capability.PsuDescriptor' resource.
- - **READ.capability.PsuDescriptor**: Read a 'capability.PsuDescriptor' resource.
- - **UPDATE.capability.PsuDescriptor**: Update a 'capability.PsuDescriptor' resource.
- - **CREATE.capability.PsuManufacturingDef**: Create a 'capability.PsuManufacturingDef' resource.
- - **DELETE.capability.PsuManufacturingDef**: Delete a 'capability.PsuManufacturingDef' resource.
- - **READ.capability.PsuManufacturingDef**: Read a 'capability.PsuManufacturingDef' resource.
- - **UPDATE.capability.PsuManufacturingDef**: Update a 'capability.PsuManufacturingDef' resource.
- - **CREATE.capability.ServerSchemaDescriptor**: Create a 'capability.ServerSchemaDescriptor' resource.
- - **DELETE.capability.ServerSchemaDescriptor**: Delete a 'capability.ServerSchemaDescriptor' resource.
- - **READ.capability.ServerSchemaDescriptor**: Read a 'capability.ServerSchemaDescriptor' resource.
- - **UPDATE.capability.ServerSchemaDescriptor**: Update a 'capability.ServerSchemaDescriptor' resource.
- - **CREATE.capability.SiocModuleCapabilityDef**: Create a 'capability.SiocModuleCapabilityDef' resource.
- - **DELETE.capability.SiocModuleCapabilityDef**: Delete a 'capability.SiocModuleCapabilityDef' resource.
- - **READ.capability.SiocModuleCapabilityDef**: Read a 'capability.SiocModuleCapabilityDef' resource.
- - **UPDATE.capability.SiocModuleCapabilityDef**: Update a 'capability.SiocModuleCapabilityDef' resource.
- - **CREATE.capability.SiocModuleDescriptor**: Create a 'capability.SiocModuleDescriptor' resource.
- - **DELETE.capability.SiocModuleDescriptor**: Delete a 'capability.SiocModuleDescriptor' resource.
- - **READ.capability.SiocModuleDescriptor**: Read a 'capability.SiocModuleDescriptor' resource.
- - **UPDATE.capability.SiocModuleDescriptor**: Update a 'capability.SiocModuleDescriptor' resource.
- - **CREATE.capability.SiocModuleManufacturingDef**: Create a 'capability.SiocModuleManufacturingDef' resource.
- - **DELETE.capability.SiocModuleManufacturingDef**: Delete a 'capability.SiocModuleManufacturingDef' resource.
- - **READ.capability.SiocModuleManufacturingDef**: Read a 'capability.SiocModuleManufacturingDef' resource.
- - **UPDATE.capability.SiocModuleManufacturingDef**: Update a 'capability.SiocModuleManufacturingDef' resource.
- - **CREATE.capability.SwitchCapability**: Create a 'capability.SwitchCapability' resource.
- - **DELETE.capability.SwitchCapability**: Delete a 'capability.SwitchCapability' resource.
- - **READ.capability.SwitchCapability**: Read a 'capability.SwitchCapability' resource.
- - **UPDATE.capability.SwitchCapability**: Update a 'capability.SwitchCapability' resource.
- - **CREATE.capability.SwitchDescriptor**: Create a 'capability.SwitchDescriptor' resource.
- - **DELETE.capability.SwitchDescriptor**: Delete a 'capability.SwitchDescriptor' resource.
- - **READ.capability.SwitchDescriptor**: Read a 'capability.SwitchDescriptor' resource.
- - **UPDATE.capability.SwitchDescriptor**: Update a 'capability.SwitchDescriptor' resource.
- - **CREATE.capability.SwitchManufacturingDef**: Create a 'capability.SwitchManufacturingDef' resource.
- - **DELETE.capability.SwitchManufacturingDef**: Delete a 'capability.SwitchManufacturingDef' resource.
- - **READ.capability.SwitchManufacturingDef**: Read a 'capability.SwitchManufacturingDef' resource.
- - **UPDATE.capability.SwitchManufacturingDef**: Update a 'capability.SwitchManufacturingDef' resource.
- - **CREATE.certificatemanagement.Policy**: Create a 'certificatemanagement.Policy' resource.
- - **DELETE.certificatemanagement.Policy**: Delete a 'certificatemanagement.Policy' resource.
- - **READ.certificatemanagement.Policy**: Read a 'certificatemanagement.Policy' resource.
- - **UPDATE.certificatemanagement.Policy**: Update a 'certificatemanagement.Policy' resource.
- - **READ.chassis.ConfigChangeDetail**: Read a 'chassis.ConfigChangeDetail' resource.
- - **CREATE.chassis.ConfigImport**: Create a 'chassis.ConfigImport' resource.
- - **READ.chassis.ConfigImport**: Read a 'chassis.ConfigImport' resource.
- - **READ.chassis.ConfigResult**: Read a 'chassis.ConfigResult' resource.
- - **READ.chassis.ConfigResultEntry**: Read a 'chassis.ConfigResultEntry' resource.
- - **READ.chassis.IomProfile**: Read a 'chassis.IomProfile' resource.
- - **CREATE.chassis.Profile**: Create a 'chassis.Profile' resource.
- - **DELETE.chassis.Profile**: Delete a 'chassis.Profile' resource.
- - **READ.chassis.Profile**: Read a 'chassis.Profile' resource.
- - **UPDATE.chassis.Profile**: Update a 'chassis.Profile' resource.
- - **READ.cloud.AwsBillingUnit**: Read a 'cloud.AwsBillingUnit' resource.
- - **READ.cloud.AwsKeyPair**: Read a 'cloud.AwsKeyPair' resource.
- - **READ.cloud.AwsNetworkInterface**: Read a 'cloud.AwsNetworkInterface' resource.
- - **READ.cloud.AwsOrganizationalUnit**: Read a 'cloud.AwsOrganizationalUnit' resource.
- - **READ.cloud.AwsSecurityGroup**: Read a 'cloud.AwsSecurityGroup' resource.
- - **READ.cloud.AwsSubnet**: Read a 'cloud.AwsSubnet' resource.
- - **READ.cloud.AwsVirtualMachine**: Read a 'cloud.AwsVirtualMachine' resource.
- - **READ.cloud.AwsVolume**: Read a 'cloud.AwsVolume' resource.
- - **READ.cloud.AwsVpc**: Read a 'cloud.AwsVpc' resource.
- - **CREATE.cloud.CollectInventory**: Create a 'cloud.CollectInventory' resource.
- - **READ.cloud.Regions**: Read a 'cloud.Regions' resource.
- - **UPDATE.cloud.Regions**: Update a 'cloud.Regions' resource.
- - **READ.cloud.SkuContainerType**: Read a 'cloud.SkuContainerType' resource.
- - **READ.cloud.SkuDatabaseType**: Read a 'cloud.SkuDatabaseType' resource.
- - **READ.cloud.SkuInstanceType**: Read a 'cloud.SkuInstanceType' resource.
- - **READ.cloud.SkuNetworkType**: Read a 'cloud.SkuNetworkType' resource.
- - **READ.cloud.SkuVolumeType**: Read a 'cloud.SkuVolumeType' resource.
- - **READ.cloud.TfcAgentpool**: Read a 'cloud.TfcAgentpool' resource.
- - **READ.cloud.TfcOrganization**: Read a 'cloud.TfcOrganization' resource.
- - **READ.cloud.TfcWorkspace**: Read a 'cloud.TfcWorkspace' resource.
- - **CREATE.comm.HttpProxyPolicy**: Create a 'comm.HttpProxyPolicy' resource.
- - **DELETE.comm.HttpProxyPolicy**: Delete a 'comm.HttpProxyPolicy' resource.
- - **READ.comm.HttpProxyPolicy**: Read a 'comm.HttpProxyPolicy' resource.
- - **UPDATE.comm.HttpProxyPolicy**: Update a 'comm.HttpProxyPolicy' resource.
- - **READ.compute.Blade**: Read a 'compute.Blade' resource.
- - **UPDATE.compute.Blade**: Update a 'compute.Blade' resource.
- - **DELETE.compute.BladeIdentity**: Delete a 'compute.BladeIdentity' resource.
- - **READ.compute.BladeIdentity**: Read a 'compute.BladeIdentity' resource.
- - **UPDATE.compute.BladeIdentity**: Update a 'compute.BladeIdentity' resource.
- - **READ.compute.Board**: Read a 'compute.Board' resource.
- - **UPDATE.compute.Board**: Update a 'compute.Board' resource.
- - **READ.compute.Mapping**: Read a 'compute.Mapping' resource.
- - **UPDATE.compute.Mapping**: Update a 'compute.Mapping' resource.
- - **READ.compute.PhysicalSummary**: Read a 'compute.PhysicalSummary' resource.
- - **READ.compute.RackUnit**: Read a 'compute.RackUnit' resource.
- - **UPDATE.compute.RackUnit**: Update a 'compute.RackUnit' resource.
- - **DELETE.compute.RackUnitIdentity**: Delete a 'compute.RackUnitIdentity' resource.
- - **READ.compute.RackUnitIdentity**: Read a 'compute.RackUnitIdentity' resource.
- - **UPDATE.compute.RackUnitIdentity**: Update a 'compute.RackUnitIdentity' resource.
- - **READ.compute.ServerSetting**: Read a 'compute.ServerSetting' resource.
- - **UPDATE.compute.ServerSetting**: Update a 'compute.ServerSetting' resource.
- - **READ.compute.Vmedia**: Read a 'compute.Vmedia' resource.
- - **READ.cond.Alarm**: Read a 'cond.Alarm' resource.
- - **UPDATE.cond.Alarm**: Update a 'cond.Alarm' resource.
- - **READ.cond.AlarmAggregation**: Read a 'cond.AlarmAggregation' resource.
- - **READ.cond.HclStatus**: Read a 'cond.HclStatus' resource.
- - **READ.cond.HclStatusDetail**: Read a 'cond.HclStatusDetail' resource.
- - **READ.cond.HclStatusJob**: Read a 'cond.HclStatusJob' resource.
- - **READ.config.ExportedItem**: Read a 'config.ExportedItem' resource.
- - **CREATE.config.Exporter**: Create a 'config.Exporter' resource.
- - **DELETE.config.Exporter**: Delete a 'config.Exporter' resource.
- - **READ.config.Exporter**: Read a 'config.Exporter' resource.
- - **READ.config.ImportedItem**: Read a 'config.ImportedItem' resource.
- - **CREATE.config.Importer**: Create a 'config.Importer' resource.
- - **DELETE.config.Importer**: Delete a 'config.Importer' resource.
- - **READ.config.Importer**: Read a 'config.Importer' resource.
- - **CREATE.connectorpack.ConnectorPackUpgrade**: Create a 'connectorpack.ConnectorPackUpgrade' resource.
- - **DELETE.connectorpack.ConnectorPackUpgrade**: Delete a 'connectorpack.ConnectorPackUpgrade' resource.
- - **READ.connectorpack.ConnectorPackUpgrade**: Read a 'connectorpack.ConnectorPackUpgrade' resource.
- - **READ.connectorpack.UpgradeImpact**: Read a 'connectorpack.UpgradeImpact' resource.
- - **CREATE.crd.CustomResource**: Create a 'crd.CustomResource' resource.
- - **DELETE.crd.CustomResource**: Delete a 'crd.CustomResource' resource.
- - **READ.crd.CustomResource**: Read a 'crd.CustomResource' resource.
- - **UPDATE.crd.CustomResource**: Update a 'crd.CustomResource' resource.
- - **CREATE.deviceconnector.Policy**: Create a 'deviceconnector.Policy' resource.
- - **DELETE.deviceconnector.Policy**: Delete a 'deviceconnector.Policy' resource.
- - **READ.deviceconnector.Policy**: Read a 'deviceconnector.Policy' resource.
- - **UPDATE.deviceconnector.Policy**: Update a 'deviceconnector.Policy' resource.
- - **READ.equipment.Chassis**: Read a 'equipment.Chassis' resource.
- - **UPDATE.equipment.Chassis**: Update a 'equipment.Chassis' resource.
- - **READ.equipment.ChassisIdentity**: Read a 'equipment.ChassisIdentity' resource.
- - **UPDATE.equipment.ChassisIdentity**: Update a 'equipment.ChassisIdentity' resource.
- - **READ.equipment.ChassisOperation**: Read a 'equipment.ChassisOperation' resource.
- - **UPDATE.equipment.ChassisOperation**: Update a 'equipment.ChassisOperation' resource.
- - **READ.equipment.DeviceSummary**: Read a 'equipment.DeviceSummary' resource.
- - **READ.equipment.Fan**: Read a 'equipment.Fan' resource.
- - **UPDATE.equipment.Fan**: Update a 'equipment.Fan' resource.
- - **READ.equipment.FanControl**: Read a 'equipment.FanControl' resource.
- - **UPDATE.equipment.FanControl**: Update a 'equipment.FanControl' resource.
- - **READ.equipment.FanModule**: Read a 'equipment.FanModule' resource.
- - **UPDATE.equipment.FanModule**: Update a 'equipment.FanModule' resource.
- - **READ.equipment.Fex**: Read a 'equipment.Fex' resource.
- - **UPDATE.equipment.Fex**: Update a 'equipment.Fex' resource.
- - **READ.equipment.FexIdentity**: Read a 'equipment.FexIdentity' resource.
- - **UPDATE.equipment.FexIdentity**: Update a 'equipment.FexIdentity' resource.
- - **READ.equipment.FexOperation**: Read a 'equipment.FexOperation' resource.
- - **UPDATE.equipment.FexOperation**: Update a 'equipment.FexOperation' resource.
- - **READ.equipment.Fru**: Read a 'equipment.Fru' resource.
- - **UPDATE.equipment.Fru**: Update a 'equipment.Fru' resource.
- - **READ.equipment.IdentitySummary**: Read a 'equipment.IdentitySummary' resource.
- - **READ.equipment.IoCard**: Read a 'equipment.IoCard' resource.
- - **UPDATE.equipment.IoCard**: Update a 'equipment.IoCard' resource.
- - **READ.equipment.IoCardOperation**: Read a 'equipment.IoCardOperation' resource.
- - **UPDATE.equipment.IoCardOperation**: Update a 'equipment.IoCardOperation' resource.
- - **READ.equipment.IoExpander**: Read a 'equipment.IoExpander' resource.
- - **UPDATE.equipment.IoExpander**: Update a 'equipment.IoExpander' resource.
- - **READ.equipment.LocatorLed**: Read a 'equipment.LocatorLed' resource.
- - **UPDATE.equipment.LocatorLed**: Update a 'equipment.LocatorLed' resource.
- - **READ.equipment.Psu**: Read a 'equipment.Psu' resource.
- - **UPDATE.equipment.Psu**: Update a 'equipment.Psu' resource.
- - **READ.equipment.PsuControl**: Read a 'equipment.PsuControl' resource.
- - **UPDATE.equipment.PsuControl**: Update a 'equipment.PsuControl' resource.
- - **READ.equipment.RackEnclosure**: Read a 'equipment.RackEnclosure' resource.
- - **UPDATE.equipment.RackEnclosure**: Update a 'equipment.RackEnclosure' resource.
- - **READ.equipment.RackEnclosureSlot**: Read a 'equipment.RackEnclosureSlot' resource.
- - **UPDATE.equipment.RackEnclosureSlot**: Update a 'equipment.RackEnclosureSlot' resource.
- - **READ.equipment.SharedIoModule**: Read a 'equipment.SharedIoModule' resource.
- - **UPDATE.equipment.SharedIoModule**: Update a 'equipment.SharedIoModule' resource.
- - **READ.equipment.SwitchCard**: Read a 'equipment.SwitchCard' resource.
- - **UPDATE.equipment.SwitchCard**: Update a 'equipment.SwitchCard' resource.
- - **READ.equipment.SystemIoController**: Read a 'equipment.SystemIoController' resource.
- - **UPDATE.equipment.SystemIoController**: Update a 'equipment.SystemIoController' resource.
- - **READ.equipment.Tpm**: Read a 'equipment.Tpm' resource.
- - **UPDATE.equipment.Tpm**: Update a 'equipment.Tpm' resource.
- - **READ.equipment.Transceiver**: Read a 'equipment.Transceiver' resource.
- - **UPDATE.equipment.Transceiver**: Update a 'equipment.Transceiver' resource.
- - **READ.ether.HostPort**: Read a 'ether.HostPort' resource.
- - **UPDATE.ether.HostPort**: Update a 'ether.HostPort' resource.
- - **READ.ether.NetworkPort**: Read a 'ether.NetworkPort' resource.
- - **UPDATE.ether.NetworkPort**: Update a 'ether.NetworkPort' resource.
- - **READ.ether.PhysicalPort**: Read a 'ether.PhysicalPort' resource.
- - **UPDATE.ether.PhysicalPort**: Update a 'ether.PhysicalPort' resource.
- - **READ.ether.PortChannel**: Read a 'ether.PortChannel' resource.
- - **CREATE.externalsite.Authorization**: Create a 'externalsite.Authorization' resource.
- - **READ.externalsite.Authorization**: Read a 'externalsite.Authorization' resource.
- - **UPDATE.externalsite.Authorization**: Update a 'externalsite.Authorization' resource.
- - **CREATE.fabric.AppliancePcRole**: Create a 'fabric.AppliancePcRole' resource.
- - **DELETE.fabric.AppliancePcRole**: Delete a 'fabric.AppliancePcRole' resource.
- - **READ.fabric.AppliancePcRole**: Read a 'fabric.AppliancePcRole' resource.
- - **UPDATE.fabric.AppliancePcRole**: Update a 'fabric.AppliancePcRole' resource.
- - **CREATE.fabric.ApplianceRole**: Create a 'fabric.ApplianceRole' resource.
- - **DELETE.fabric.ApplianceRole**: Delete a 'fabric.ApplianceRole' resource.
- - **READ.fabric.ApplianceRole**: Read a 'fabric.ApplianceRole' resource.
- - **UPDATE.fabric.ApplianceRole**: Update a 'fabric.ApplianceRole' resource.
- - **READ.fabric.ConfigChangeDetail**: Read a 'fabric.ConfigChangeDetail' resource.
- - **READ.fabric.ConfigResult**: Read a 'fabric.ConfigResult' resource.
- - **READ.fabric.ConfigResultEntry**: Read a 'fabric.ConfigResultEntry' resource.
- - **READ.fabric.ElementIdentity**: Read a 'fabric.ElementIdentity' resource.
- - **UPDATE.fabric.ElementIdentity**: Update a 'fabric.ElementIdentity' resource.
- - **CREATE.fabric.EstimateImpact**: Create a 'fabric.EstimateImpact' resource.
- - **CREATE.fabric.EthNetworkControlPolicy**: Create a 'fabric.EthNetworkControlPolicy' resource.
- - **DELETE.fabric.EthNetworkControlPolicy**: Delete a 'fabric.EthNetworkControlPolicy' resource.
- - **READ.fabric.EthNetworkControlPolicy**: Read a 'fabric.EthNetworkControlPolicy' resource.
- - **UPDATE.fabric.EthNetworkControlPolicy**: Update a 'fabric.EthNetworkControlPolicy' resource.
- - **CREATE.fabric.EthNetworkGroupPolicy**: Create a 'fabric.EthNetworkGroupPolicy' resource.
- - **DELETE.fabric.EthNetworkGroupPolicy**: Delete a 'fabric.EthNetworkGroupPolicy' resource.
- - **READ.fabric.EthNetworkGroupPolicy**: Read a 'fabric.EthNetworkGroupPolicy' resource.
- - **UPDATE.fabric.EthNetworkGroupPolicy**: Update a 'fabric.EthNetworkGroupPolicy' resource.
- - **CREATE.fabric.EthNetworkPolicy**: Create a 'fabric.EthNetworkPolicy' resource.
- - **DELETE.fabric.EthNetworkPolicy**: Delete a 'fabric.EthNetworkPolicy' resource.
- - **READ.fabric.EthNetworkPolicy**: Read a 'fabric.EthNetworkPolicy' resource.
- - **UPDATE.fabric.EthNetworkPolicy**: Update a 'fabric.EthNetworkPolicy' resource.
- - **CREATE.fabric.FcNetworkPolicy**: Create a 'fabric.FcNetworkPolicy' resource.
- - **DELETE.fabric.FcNetworkPolicy**: Delete a 'fabric.FcNetworkPolicy' resource.
- - **READ.fabric.FcNetworkPolicy**: Read a 'fabric.FcNetworkPolicy' resource.
- - **UPDATE.fabric.FcNetworkPolicy**: Update a 'fabric.FcNetworkPolicy' resource.
- - **CREATE.fabric.FcUplinkPcRole**: Create a 'fabric.FcUplinkPcRole' resource.
- - **DELETE.fabric.FcUplinkPcRole**: Delete a 'fabric.FcUplinkPcRole' resource.
- - **READ.fabric.FcUplinkPcRole**: Read a 'fabric.FcUplinkPcRole' resource.
- - **UPDATE.fabric.FcUplinkPcRole**: Update a 'fabric.FcUplinkPcRole' resource.
- - **CREATE.fabric.FcUplinkRole**: Create a 'fabric.FcUplinkRole' resource.
- - **DELETE.fabric.FcUplinkRole**: Delete a 'fabric.FcUplinkRole' resource.
- - **READ.fabric.FcUplinkRole**: Read a 'fabric.FcUplinkRole' resource.
- - **UPDATE.fabric.FcUplinkRole**: Update a 'fabric.FcUplinkRole' resource.
- - **CREATE.fabric.FcoeUplinkPcRole**: Create a 'fabric.FcoeUplinkPcRole' resource.
- - **DELETE.fabric.FcoeUplinkPcRole**: Delete a 'fabric.FcoeUplinkPcRole' resource.
- - **READ.fabric.FcoeUplinkPcRole**: Read a 'fabric.FcoeUplinkPcRole' resource.
- - **UPDATE.fabric.FcoeUplinkPcRole**: Update a 'fabric.FcoeUplinkPcRole' resource.
- - **CREATE.fabric.FcoeUplinkRole**: Create a 'fabric.FcoeUplinkRole' resource.
- - **DELETE.fabric.FcoeUplinkRole**: Delete a 'fabric.FcoeUplinkRole' resource.
- - **READ.fabric.FcoeUplinkRole**: Read a 'fabric.FcoeUplinkRole' resource.
- - **UPDATE.fabric.FcoeUplinkRole**: Update a 'fabric.FcoeUplinkRole' resource.
- - **CREATE.fabric.FlowControlPolicy**: Create a 'fabric.FlowControlPolicy' resource.
- - **DELETE.fabric.FlowControlPolicy**: Delete a 'fabric.FlowControlPolicy' resource.
- - **READ.fabric.FlowControlPolicy**: Read a 'fabric.FlowControlPolicy' resource.
- - **UPDATE.fabric.FlowControlPolicy**: Update a 'fabric.FlowControlPolicy' resource.
- - **CREATE.fabric.LinkAggregationPolicy**: Create a 'fabric.LinkAggregationPolicy' resource.
- - **DELETE.fabric.LinkAggregationPolicy**: Delete a 'fabric.LinkAggregationPolicy' resource.
- - **READ.fabric.LinkAggregationPolicy**: Read a 'fabric.LinkAggregationPolicy' resource.
- - **UPDATE.fabric.LinkAggregationPolicy**: Update a 'fabric.LinkAggregationPolicy' resource.
- - **CREATE.fabric.LinkControlPolicy**: Create a 'fabric.LinkControlPolicy' resource.
- - **DELETE.fabric.LinkControlPolicy**: Delete a 'fabric.LinkControlPolicy' resource.
- - **READ.fabric.LinkControlPolicy**: Read a 'fabric.LinkControlPolicy' resource.
- - **UPDATE.fabric.LinkControlPolicy**: Update a 'fabric.LinkControlPolicy' resource.
- - **CREATE.fabric.MulticastPolicy**: Create a 'fabric.MulticastPolicy' resource.
- - **DELETE.fabric.MulticastPolicy**: Delete a 'fabric.MulticastPolicy' resource.
- - **READ.fabric.MulticastPolicy**: Read a 'fabric.MulticastPolicy' resource.
- - **UPDATE.fabric.MulticastPolicy**: Update a 'fabric.MulticastPolicy' resource.
- - **READ.fabric.PcMember**: Read a 'fabric.PcMember' resource.
- - **CREATE.fabric.PcOperation**: Create a 'fabric.PcOperation' resource.
- - **DELETE.fabric.PcOperation**: Delete a 'fabric.PcOperation' resource.
- - **READ.fabric.PcOperation**: Read a 'fabric.PcOperation' resource.
- - **UPDATE.fabric.PcOperation**: Update a 'fabric.PcOperation' resource.
- - **CREATE.fabric.PortMode**: Create a 'fabric.PortMode' resource.
- - **DELETE.fabric.PortMode**: Delete a 'fabric.PortMode' resource.
- - **READ.fabric.PortMode**: Read a 'fabric.PortMode' resource.
- - **UPDATE.fabric.PortMode**: Update a 'fabric.PortMode' resource.
- - **CREATE.fabric.PortOperation**: Create a 'fabric.PortOperation' resource.
- - **DELETE.fabric.PortOperation**: Delete a 'fabric.PortOperation' resource.
- - **READ.fabric.PortOperation**: Read a 'fabric.PortOperation' resource.
- - **UPDATE.fabric.PortOperation**: Update a 'fabric.PortOperation' resource.
- - **CREATE.fabric.PortPolicy**: Create a 'fabric.PortPolicy' resource.
- - **DELETE.fabric.PortPolicy**: Delete a 'fabric.PortPolicy' resource.
- - **READ.fabric.PortPolicy**: Read a 'fabric.PortPolicy' resource.
- - **UPDATE.fabric.PortPolicy**: Update a 'fabric.PortPolicy' resource.
- - **CREATE.fabric.ServerRole**: Create a 'fabric.ServerRole' resource.
- - **DELETE.fabric.ServerRole**: Delete a 'fabric.ServerRole' resource.
- - **READ.fabric.ServerRole**: Read a 'fabric.ServerRole' resource.
- - **UPDATE.fabric.ServerRole**: Update a 'fabric.ServerRole' resource.
- - **CREATE.fabric.SwitchClusterProfile**: Create a 'fabric.SwitchClusterProfile' resource.
- - **DELETE.fabric.SwitchClusterProfile**: Delete a 'fabric.SwitchClusterProfile' resource.
- - **READ.fabric.SwitchClusterProfile**: Read a 'fabric.SwitchClusterProfile' resource.
- - **UPDATE.fabric.SwitchClusterProfile**: Update a 'fabric.SwitchClusterProfile' resource.
- - **CREATE.fabric.SwitchControlPolicy**: Create a 'fabric.SwitchControlPolicy' resource.
- - **DELETE.fabric.SwitchControlPolicy**: Delete a 'fabric.SwitchControlPolicy' resource.
- - **READ.fabric.SwitchControlPolicy**: Read a 'fabric.SwitchControlPolicy' resource.
- - **UPDATE.fabric.SwitchControlPolicy**: Update a 'fabric.SwitchControlPolicy' resource.
- - **CREATE.fabric.SwitchProfile**: Create a 'fabric.SwitchProfile' resource.
- - **DELETE.fabric.SwitchProfile**: Delete a 'fabric.SwitchProfile' resource.
- - **READ.fabric.SwitchProfile**: Read a 'fabric.SwitchProfile' resource.
- - **UPDATE.fabric.SwitchProfile**: Update a 'fabric.SwitchProfile' resource.
- - **CREATE.fabric.SystemQosPolicy**: Create a 'fabric.SystemQosPolicy' resource.
- - **DELETE.fabric.SystemQosPolicy**: Delete a 'fabric.SystemQosPolicy' resource.
- - **READ.fabric.SystemQosPolicy**: Read a 'fabric.SystemQosPolicy' resource.
- - **UPDATE.fabric.SystemQosPolicy**: Update a 'fabric.SystemQosPolicy' resource.
- - **CREATE.fabric.UplinkPcRole**: Create a 'fabric.UplinkPcRole' resource.
- - **DELETE.fabric.UplinkPcRole**: Delete a 'fabric.UplinkPcRole' resource.
- - **READ.fabric.UplinkPcRole**: Read a 'fabric.UplinkPcRole' resource.
- - **UPDATE.fabric.UplinkPcRole**: Update a 'fabric.UplinkPcRole' resource.
- - **CREATE.fabric.UplinkRole**: Create a 'fabric.UplinkRole' resource.
- - **DELETE.fabric.UplinkRole**: Delete a 'fabric.UplinkRole' resource.
- - **READ.fabric.UplinkRole**: Read a 'fabric.UplinkRole' resource.
- - **UPDATE.fabric.UplinkRole**: Update a 'fabric.UplinkRole' resource.
- - **CREATE.fabric.Vlan**: Create a 'fabric.Vlan' resource.
- - **DELETE.fabric.Vlan**: Delete a 'fabric.Vlan' resource.
- - **READ.fabric.Vlan**: Read a 'fabric.Vlan' resource.
- - **UPDATE.fabric.Vlan**: Update a 'fabric.Vlan' resource.
- - **CREATE.fabric.Vsan**: Create a 'fabric.Vsan' resource.
- - **DELETE.fabric.Vsan**: Delete a 'fabric.Vsan' resource.
- - **READ.fabric.Vsan**: Read a 'fabric.Vsan' resource.
- - **UPDATE.fabric.Vsan**: Update a 'fabric.Vsan' resource.
- - **READ.fault.Instance**: Read a 'fault.Instance' resource.
- - **UPDATE.fault.Instance**: Update a 'fault.Instance' resource.
- - **READ.fc.PhysicalPort**: Read a 'fc.PhysicalPort' resource.
- - **UPDATE.fc.PhysicalPort**: Update a 'fc.PhysicalPort' resource.
- - **READ.fc.PortChannel**: Read a 'fc.PortChannel' resource.
- - **READ.fcpool.FcBlock**: Read a 'fcpool.FcBlock' resource.
- - **DELETE.fcpool.Lease**: Delete a 'fcpool.Lease' resource.
- - **READ.fcpool.Lease**: Read a 'fcpool.Lease' resource.
- - **CREATE.fcpool.Pool**: Create a 'fcpool.Pool' resource.
- - **DELETE.fcpool.Pool**: Delete a 'fcpool.Pool' resource.
- - **READ.fcpool.Pool**: Read a 'fcpool.Pool' resource.
- - **UPDATE.fcpool.Pool**: Update a 'fcpool.Pool' resource.
- - **READ.fcpool.PoolMember**: Read a 'fcpool.PoolMember' resource.
- - **READ.fcpool.Universe**: Read a 'fcpool.Universe' resource.
- - **CREATE.feedback.FeedbackPost**: Create a 'feedback.FeedbackPost' resource.
- - **CREATE.firmware.BiosDescriptor**: Create a 'firmware.BiosDescriptor' resource.
- - **DELETE.firmware.BiosDescriptor**: Delete a 'firmware.BiosDescriptor' resource.
- - **READ.firmware.BiosDescriptor**: Read a 'firmware.BiosDescriptor' resource.
- - **UPDATE.firmware.BiosDescriptor**: Update a 'firmware.BiosDescriptor' resource.
- - **CREATE.firmware.BoardControllerDescriptor**: Create a 'firmware.BoardControllerDescriptor' resource.
- - **DELETE.firmware.BoardControllerDescriptor**: Delete a 'firmware.BoardControllerDescriptor' resource.
- - **READ.firmware.BoardControllerDescriptor**: Read a 'firmware.BoardControllerDescriptor' resource.
- - **UPDATE.firmware.BoardControllerDescriptor**: Update a 'firmware.BoardControllerDescriptor' resource.
- - **CREATE.firmware.ChassisUpgrade**: Create a 'firmware.ChassisUpgrade' resource.
- - **DELETE.firmware.ChassisUpgrade**: Delete a 'firmware.ChassisUpgrade' resource.
- - **READ.firmware.ChassisUpgrade**: Read a 'firmware.ChassisUpgrade' resource.
- - **CREATE.firmware.CimcDescriptor**: Create a 'firmware.CimcDescriptor' resource.
- - **DELETE.firmware.CimcDescriptor**: Delete a 'firmware.CimcDescriptor' resource.
- - **READ.firmware.CimcDescriptor**: Read a 'firmware.CimcDescriptor' resource.
- - **UPDATE.firmware.CimcDescriptor**: Update a 'firmware.CimcDescriptor' resource.
- - **CREATE.firmware.DimmDescriptor**: Create a 'firmware.DimmDescriptor' resource.
- - **DELETE.firmware.DimmDescriptor**: Delete a 'firmware.DimmDescriptor' resource.
- - **READ.firmware.DimmDescriptor**: Read a 'firmware.DimmDescriptor' resource.
- - **UPDATE.firmware.DimmDescriptor**: Update a 'firmware.DimmDescriptor' resource.
- - **CREATE.firmware.Distributable**: Create a 'firmware.Distributable' resource.
- - **DELETE.firmware.Distributable**: Delete a 'firmware.Distributable' resource.
- - **READ.firmware.Distributable**: Read a 'firmware.Distributable' resource.
- - **UPDATE.firmware.Distributable**: Update a 'firmware.Distributable' resource.
- - **READ.firmware.DistributableMeta**: Read a 'firmware.DistributableMeta' resource.
- - **CREATE.firmware.DriveDescriptor**: Create a 'firmware.DriveDescriptor' resource.
- - **DELETE.firmware.DriveDescriptor**: Delete a 'firmware.DriveDescriptor' resource.
- - **READ.firmware.DriveDescriptor**: Read a 'firmware.DriveDescriptor' resource.
- - **UPDATE.firmware.DriveDescriptor**: Update a 'firmware.DriveDescriptor' resource.
- - **CREATE.firmware.DriverDistributable**: Create a 'firmware.DriverDistributable' resource.
- - **DELETE.firmware.DriverDistributable**: Delete a 'firmware.DriverDistributable' resource.
- - **READ.firmware.DriverDistributable**: Read a 'firmware.DriverDistributable' resource.
- - **UPDATE.firmware.DriverDistributable**: Update a 'firmware.DriverDistributable' resource.
- - **CREATE.firmware.Eula**: Create a 'firmware.Eula' resource.
- - **READ.firmware.Eula**: Read a 'firmware.Eula' resource.
- - **READ.firmware.FirmwareSummary**: Read a 'firmware.FirmwareSummary' resource.
- - **CREATE.firmware.GpuDescriptor**: Create a 'firmware.GpuDescriptor' resource.
- - **DELETE.firmware.GpuDescriptor**: Delete a 'firmware.GpuDescriptor' resource.
- - **READ.firmware.GpuDescriptor**: Read a 'firmware.GpuDescriptor' resource.
- - **UPDATE.firmware.GpuDescriptor**: Update a 'firmware.GpuDescriptor' resource.
- - **CREATE.firmware.HbaDescriptor**: Create a 'firmware.HbaDescriptor' resource.
- - **DELETE.firmware.HbaDescriptor**: Delete a 'firmware.HbaDescriptor' resource.
- - **READ.firmware.HbaDescriptor**: Read a 'firmware.HbaDescriptor' resource.
- - **UPDATE.firmware.HbaDescriptor**: Update a 'firmware.HbaDescriptor' resource.
- - **CREATE.firmware.IomDescriptor**: Create a 'firmware.IomDescriptor' resource.
- - **DELETE.firmware.IomDescriptor**: Delete a 'firmware.IomDescriptor' resource.
- - **READ.firmware.IomDescriptor**: Read a 'firmware.IomDescriptor' resource.
- - **UPDATE.firmware.IomDescriptor**: Update a 'firmware.IomDescriptor' resource.
- - **CREATE.firmware.MswitchDescriptor**: Create a 'firmware.MswitchDescriptor' resource.
- - **DELETE.firmware.MswitchDescriptor**: Delete a 'firmware.MswitchDescriptor' resource.
- - **READ.firmware.MswitchDescriptor**: Read a 'firmware.MswitchDescriptor' resource.
- - **UPDATE.firmware.MswitchDescriptor**: Update a 'firmware.MswitchDescriptor' resource.
- - **CREATE.firmware.NxosDescriptor**: Create a 'firmware.NxosDescriptor' resource.
- - **DELETE.firmware.NxosDescriptor**: Delete a 'firmware.NxosDescriptor' resource.
- - **READ.firmware.NxosDescriptor**: Read a 'firmware.NxosDescriptor' resource.
- - **UPDATE.firmware.NxosDescriptor**: Update a 'firmware.NxosDescriptor' resource.
- - **CREATE.firmware.PcieDescriptor**: Create a 'firmware.PcieDescriptor' resource.
- - **DELETE.firmware.PcieDescriptor**: Delete a 'firmware.PcieDescriptor' resource.
- - **READ.firmware.PcieDescriptor**: Read a 'firmware.PcieDescriptor' resource.
- - **UPDATE.firmware.PcieDescriptor**: Update a 'firmware.PcieDescriptor' resource.
- - **CREATE.firmware.PsuDescriptor**: Create a 'firmware.PsuDescriptor' resource.
- - **DELETE.firmware.PsuDescriptor**: Delete a 'firmware.PsuDescriptor' resource.
- - **READ.firmware.PsuDescriptor**: Read a 'firmware.PsuDescriptor' resource.
- - **UPDATE.firmware.PsuDescriptor**: Update a 'firmware.PsuDescriptor' resource.
- - **READ.firmware.RunningFirmware**: Read a 'firmware.RunningFirmware' resource.
- - **UPDATE.firmware.RunningFirmware**: Update a 'firmware.RunningFirmware' resource.
- - **CREATE.firmware.SasExpanderDescriptor**: Create a 'firmware.SasExpanderDescriptor' resource.
- - **DELETE.firmware.SasExpanderDescriptor**: Delete a 'firmware.SasExpanderDescriptor' resource.
- - **READ.firmware.SasExpanderDescriptor**: Read a 'firmware.SasExpanderDescriptor' resource.
- - **UPDATE.firmware.SasExpanderDescriptor**: Update a 'firmware.SasExpanderDescriptor' resource.
- - **CREATE.firmware.ServerConfigurationUtilityDistributable**: Create a 'firmware.ServerConfigurationUtilityDistributable' resource.
- - **DELETE.firmware.ServerConfigurationUtilityDistributable**: Delete a 'firmware.ServerConfigurationUtilityDistributable' resource.
- - **READ.firmware.ServerConfigurationUtilityDistributable**: Read a 'firmware.ServerConfigurationUtilityDistributable' resource.
- - **UPDATE.firmware.ServerConfigurationUtilityDistributable**: Update a 'firmware.ServerConfigurationUtilityDistributable' resource.
- - **CREATE.firmware.StorageControllerDescriptor**: Create a 'firmware.StorageControllerDescriptor' resource.
- - **DELETE.firmware.StorageControllerDescriptor**: Delete a 'firmware.StorageControllerDescriptor' resource.
- - **READ.firmware.StorageControllerDescriptor**: Read a 'firmware.StorageControllerDescriptor' resource.
- - **UPDATE.firmware.StorageControllerDescriptor**: Update a 'firmware.StorageControllerDescriptor' resource.
- - **CREATE.firmware.SwitchUpgrade**: Create a 'firmware.SwitchUpgrade' resource.
- - **DELETE.firmware.SwitchUpgrade**: Delete a 'firmware.SwitchUpgrade' resource.
- - **READ.firmware.SwitchUpgrade**: Read a 'firmware.SwitchUpgrade' resource.
- - **CREATE.firmware.UnsupportedVersionUpgrade**: Create a 'firmware.UnsupportedVersionUpgrade' resource.
- - **DELETE.firmware.UnsupportedVersionUpgrade**: Delete a 'firmware.UnsupportedVersionUpgrade' resource.
- - **READ.firmware.UnsupportedVersionUpgrade**: Read a 'firmware.UnsupportedVersionUpgrade' resource.
- - **UPDATE.firmware.UnsupportedVersionUpgrade**: Update a 'firmware.UnsupportedVersionUpgrade' resource.
- - **CREATE.firmware.Upgrade**: Create a 'firmware.Upgrade' resource.
- - **DELETE.firmware.Upgrade**: Delete a 'firmware.Upgrade' resource.
- - **READ.firmware.Upgrade**: Read a 'firmware.Upgrade' resource.
- - **CREATE.firmware.UpgradeImpact**: Create a 'firmware.UpgradeImpact' resource.
- - **READ.firmware.UpgradeImpactStatus**: Read a 'firmware.UpgradeImpactStatus' resource.
- - **READ.firmware.UpgradeStatus**: Read a 'firmware.UpgradeStatus' resource.
- - **READ.forecast.Catalog**: Read a 'forecast.Catalog' resource.
- - **READ.forecast.Definition**: Read a 'forecast.Definition' resource.
- - **READ.forecast.Instance**: Read a 'forecast.Instance' resource.
- - **UPDATE.forecast.Instance**: Update a 'forecast.Instance' resource.
- - **READ.graphics.Card**: Read a 'graphics.Card' resource.
- - **UPDATE.graphics.Card**: Update a 'graphics.Card' resource.
- - **READ.graphics.Controller**: Read a 'graphics.Controller' resource.
- - **UPDATE.graphics.Controller**: Update a 'graphics.Controller' resource.
- - **CREATE.hcl.CompatibilityStatus**: Create a 'hcl.CompatibilityStatus' resource.
- - **READ.hcl.DriverImage**: Read a 'hcl.DriverImage' resource.
- - **READ.hcl.ExemptedCatalog**: Read a 'hcl.ExemptedCatalog' resource.
- - **CREATE.hcl.HyperflexSoftwareCompatibilityInfo**: Create a 'hcl.HyperflexSoftwareCompatibilityInfo' resource.
- - **DELETE.hcl.HyperflexSoftwareCompatibilityInfo**: Delete a 'hcl.HyperflexSoftwareCompatibilityInfo' resource.
- - **READ.hcl.HyperflexSoftwareCompatibilityInfo**: Read a 'hcl.HyperflexSoftwareCompatibilityInfo' resource.
- - **UPDATE.hcl.HyperflexSoftwareCompatibilityInfo**: Update a 'hcl.HyperflexSoftwareCompatibilityInfo' resource.
- - **READ.hcl.OperatingSystem**: Read a 'hcl.OperatingSystem' resource.
- - **READ.hcl.OperatingSystemVendor**: Read a 'hcl.OperatingSystemVendor' resource.
- - **CREATE.hcl.SupportedDriverName**: Create a 'hcl.SupportedDriverName' resource.
- - **READ.hyperflex.Alarm**: Read a 'hyperflex.Alarm' resource.
- - **CREATE.hyperflex.AppCatalog**: Create a 'hyperflex.AppCatalog' resource.
- - **DELETE.hyperflex.AppCatalog**: Delete a 'hyperflex.AppCatalog' resource.
- - **READ.hyperflex.AppCatalog**: Read a 'hyperflex.AppCatalog' resource.
- - **UPDATE.hyperflex.AppCatalog**: Update a 'hyperflex.AppCatalog' resource.
- - **CREATE.hyperflex.AutoSupportPolicy**: Create a 'hyperflex.AutoSupportPolicy' resource.
- - **DELETE.hyperflex.AutoSupportPolicy**: Delete a 'hyperflex.AutoSupportPolicy' resource.
- - **READ.hyperflex.AutoSupportPolicy**: Read a 'hyperflex.AutoSupportPolicy' resource.
- - **UPDATE.hyperflex.AutoSupportPolicy**: Update a 'hyperflex.AutoSupportPolicy' resource.
- - **READ.hyperflex.BackupCluster**: Read a 'hyperflex.BackupCluster' resource.
- - **CREATE.hyperflex.CapabilityInfo**: Create a 'hyperflex.CapabilityInfo' resource.
- - **DELETE.hyperflex.CapabilityInfo**: Delete a 'hyperflex.CapabilityInfo' resource.
- - **READ.hyperflex.CapabilityInfo**: Read a 'hyperflex.CapabilityInfo' resource.
- - **UPDATE.hyperflex.CapabilityInfo**: Update a 'hyperflex.CapabilityInfo' resource.
- - **CREATE.hyperflex.CiscoHypervisorManager**: Create a 'hyperflex.CiscoHypervisorManager' resource.
- - **READ.hyperflex.CiscoHypervisorManager**: Read a 'hyperflex.CiscoHypervisorManager' resource.
- - **UPDATE.hyperflex.CiscoHypervisorManager**: Update a 'hyperflex.CiscoHypervisorManager' resource.
- - **READ.hyperflex.Cluster**: Read a 'hyperflex.Cluster' resource.
- - **UPDATE.hyperflex.Cluster**: Update a 'hyperflex.Cluster' resource.
- - **CREATE.hyperflex.ClusterBackupPolicy**: Create a 'hyperflex.ClusterBackupPolicy' resource.
- - **DELETE.hyperflex.ClusterBackupPolicy**: Delete a 'hyperflex.ClusterBackupPolicy' resource.
- - **READ.hyperflex.ClusterBackupPolicy**: Read a 'hyperflex.ClusterBackupPolicy' resource.
- - **UPDATE.hyperflex.ClusterBackupPolicy**: Update a 'hyperflex.ClusterBackupPolicy' resource.
- - **CREATE.hyperflex.ClusterBackupPolicyDeployment**: Create a 'hyperflex.ClusterBackupPolicyDeployment' resource.
- - **DELETE.hyperflex.ClusterBackupPolicyDeployment**: Delete a 'hyperflex.ClusterBackupPolicyDeployment' resource.
- - **READ.hyperflex.ClusterBackupPolicyDeployment**: Read a 'hyperflex.ClusterBackupPolicyDeployment' resource.
- - **UPDATE.hyperflex.ClusterBackupPolicyDeployment**: Update a 'hyperflex.ClusterBackupPolicyDeployment' resource.
- - **READ.hyperflex.ClusterHealthCheckExecutionSnapshot**: Read a 'hyperflex.ClusterHealthCheckExecutionSnapshot' resource.
- - **CREATE.hyperflex.ClusterNetworkPolicy**: Create a 'hyperflex.ClusterNetworkPolicy' resource.
- - **DELETE.hyperflex.ClusterNetworkPolicy**: Delete a 'hyperflex.ClusterNetworkPolicy' resource.
- - **READ.hyperflex.ClusterNetworkPolicy**: Read a 'hyperflex.ClusterNetworkPolicy' resource.
- - **UPDATE.hyperflex.ClusterNetworkPolicy**: Update a 'hyperflex.ClusterNetworkPolicy' resource.
- - **CREATE.hyperflex.ClusterProfile**: Create a 'hyperflex.ClusterProfile' resource.
- - **DELETE.hyperflex.ClusterProfile**: Delete a 'hyperflex.ClusterProfile' resource.
- - **READ.hyperflex.ClusterProfile**: Read a 'hyperflex.ClusterProfile' resource.
- - **UPDATE.hyperflex.ClusterProfile**: Update a 'hyperflex.ClusterProfile' resource.
- - **CREATE.hyperflex.ClusterReplicationNetworkPolicy**: Create a 'hyperflex.ClusterReplicationNetworkPolicy' resource.
- - **DELETE.hyperflex.ClusterReplicationNetworkPolicy**: Delete a 'hyperflex.ClusterReplicationNetworkPolicy' resource.
- - **READ.hyperflex.ClusterReplicationNetworkPolicy**: Read a 'hyperflex.ClusterReplicationNetworkPolicy' resource.
- - **UPDATE.hyperflex.ClusterReplicationNetworkPolicy**: Update a 'hyperflex.ClusterReplicationNetworkPolicy' resource.
- - **CREATE.hyperflex.ClusterReplicationNetworkPolicyDeployment**: Create a 'hyperflex.ClusterReplicationNetworkPolicyDeployment' resource.
- - **DELETE.hyperflex.ClusterReplicationNetworkPolicyDeployment**: Delete a 'hyperflex.ClusterReplicationNetworkPolicyDeployment' resource.
- - **READ.hyperflex.ClusterReplicationNetworkPolicyDeployment**: Read a 'hyperflex.ClusterReplicationNetworkPolicyDeployment' resource.
- - **UPDATE.hyperflex.ClusterReplicationNetworkPolicyDeployment**: Update a 'hyperflex.ClusterReplicationNetworkPolicyDeployment' resource.
- - **CREATE.hyperflex.ClusterStoragePolicy**: Create a 'hyperflex.ClusterStoragePolicy' resource.
- - **DELETE.hyperflex.ClusterStoragePolicy**: Delete a 'hyperflex.ClusterStoragePolicy' resource.
- - **READ.hyperflex.ClusterStoragePolicy**: Read a 'hyperflex.ClusterStoragePolicy' resource.
- - **UPDATE.hyperflex.ClusterStoragePolicy**: Update a 'hyperflex.ClusterStoragePolicy' resource.
- - **READ.hyperflex.ConfigResult**: Read a 'hyperflex.ConfigResult' resource.
- - **READ.hyperflex.ConfigResultEntry**: Read a 'hyperflex.ConfigResultEntry' resource.
- - **READ.hyperflex.DataProtectionPeer**: Read a 'hyperflex.DataProtectionPeer' resource.
- - **READ.hyperflex.DatastoreStatistic**: Read a 'hyperflex.DatastoreStatistic' resource.
- - **READ.hyperflex.DevicePackageDownloadState**: Read a 'hyperflex.DevicePackageDownloadState' resource.
- - **READ.hyperflex.Drive**: Read a 'hyperflex.Drive' resource.
- - **CREATE.hyperflex.ExtFcStoragePolicy**: Create a 'hyperflex.ExtFcStoragePolicy' resource.
- - **DELETE.hyperflex.ExtFcStoragePolicy**: Delete a 'hyperflex.ExtFcStoragePolicy' resource.
- - **READ.hyperflex.ExtFcStoragePolicy**: Read a 'hyperflex.ExtFcStoragePolicy' resource.
- - **UPDATE.hyperflex.ExtFcStoragePolicy**: Update a 'hyperflex.ExtFcStoragePolicy' resource.
- - **CREATE.hyperflex.ExtIscsiStoragePolicy**: Create a 'hyperflex.ExtIscsiStoragePolicy' resource.
- - **DELETE.hyperflex.ExtIscsiStoragePolicy**: Delete a 'hyperflex.ExtIscsiStoragePolicy' resource.
- - **READ.hyperflex.ExtIscsiStoragePolicy**: Read a 'hyperflex.ExtIscsiStoragePolicy' resource.
- - **UPDATE.hyperflex.ExtIscsiStoragePolicy**: Update a 'hyperflex.ExtIscsiStoragePolicy' resource.
- - **CREATE.hyperflex.FeatureLimitExternal**: Create a 'hyperflex.FeatureLimitExternal' resource.
- - **DELETE.hyperflex.FeatureLimitExternal**: Delete a 'hyperflex.FeatureLimitExternal' resource.
- - **READ.hyperflex.FeatureLimitExternal**: Read a 'hyperflex.FeatureLimitExternal' resource.
- - **UPDATE.hyperflex.FeatureLimitExternal**: Update a 'hyperflex.FeatureLimitExternal' resource.
- - **CREATE.hyperflex.FeatureLimitInternal**: Create a 'hyperflex.FeatureLimitInternal' resource.
- - **DELETE.hyperflex.FeatureLimitInternal**: Delete a 'hyperflex.FeatureLimitInternal' resource.
- - **READ.hyperflex.FeatureLimitInternal**: Read a 'hyperflex.FeatureLimitInternal' resource.
- - **UPDATE.hyperflex.FeatureLimitInternal**: Update a 'hyperflex.FeatureLimitInternal' resource.
- - **READ.hyperflex.Health**: Read a 'hyperflex.Health' resource.
- - **CREATE.hyperflex.HealthCheckDefinition**: Create a 'hyperflex.HealthCheckDefinition' resource.
- - **DELETE.hyperflex.HealthCheckDefinition**: Delete a 'hyperflex.HealthCheckDefinition' resource.
- - **READ.hyperflex.HealthCheckDefinition**: Read a 'hyperflex.HealthCheckDefinition' resource.
- - **UPDATE.hyperflex.HealthCheckDefinition**: Update a 'hyperflex.HealthCheckDefinition' resource.
- - **READ.hyperflex.HealthCheckExecution**: Read a 'hyperflex.HealthCheckExecution' resource.
- - **READ.hyperflex.HealthCheckExecutionSnapshot**: Read a 'hyperflex.HealthCheckExecutionSnapshot' resource.
- - **CREATE.hyperflex.HealthCheckPackageChecksum**: Create a 'hyperflex.HealthCheckPackageChecksum' resource.
- - **DELETE.hyperflex.HealthCheckPackageChecksum**: Delete a 'hyperflex.HealthCheckPackageChecksum' resource.
- - **READ.hyperflex.HealthCheckPackageChecksum**: Read a 'hyperflex.HealthCheckPackageChecksum' resource.
- - **UPDATE.hyperflex.HealthCheckPackageChecksum**: Update a 'hyperflex.HealthCheckPackageChecksum' resource.
- - **DELETE.hyperflex.HxapCluster**: Delete a 'hyperflex.HxapCluster' resource.
- - **READ.hyperflex.HxapCluster**: Read a 'hyperflex.HxapCluster' resource.
- - **UPDATE.hyperflex.HxapCluster**: Update a 'hyperflex.HxapCluster' resource.
- - **CREATE.hyperflex.HxapDatacenter**: Create a 'hyperflex.HxapDatacenter' resource.
- - **DELETE.hyperflex.HxapDatacenter**: Delete a 'hyperflex.HxapDatacenter' resource.
- - **READ.hyperflex.HxapDatacenter**: Read a 'hyperflex.HxapDatacenter' resource.
- - **UPDATE.hyperflex.HxapDatacenter**: Update a 'hyperflex.HxapDatacenter' resource.
- - **READ.hyperflex.HxapDvUplink**: Read a 'hyperflex.HxapDvUplink' resource.
- - **READ.hyperflex.HxapDvswitch**: Read a 'hyperflex.HxapDvswitch' resource.
- - **READ.hyperflex.HxapHost**: Read a 'hyperflex.HxapHost' resource.
- - **UPDATE.hyperflex.HxapHost**: Update a 'hyperflex.HxapHost' resource.
- - **READ.hyperflex.HxapHostInterface**: Read a 'hyperflex.HxapHostInterface' resource.
- - **READ.hyperflex.HxapHostVswitch**: Read a 'hyperflex.HxapHostVswitch' resource.
- - **READ.hyperflex.HxapNetwork**: Read a 'hyperflex.HxapNetwork' resource.
- - **READ.hyperflex.HxapVirtualDisk**: Read a 'hyperflex.HxapVirtualDisk' resource.
- - **UPDATE.hyperflex.HxapVirtualDisk**: Update a 'hyperflex.HxapVirtualDisk' resource.
- - **READ.hyperflex.HxapVirtualMachine**: Read a 'hyperflex.HxapVirtualMachine' resource.
- - **UPDATE.hyperflex.HxapVirtualMachine**: Update a 'hyperflex.HxapVirtualMachine' resource.
- - **DELETE.hyperflex.HxapVirtualMachineNetworkInterface**: Delete a 'hyperflex.HxapVirtualMachineNetworkInterface' resource.
- - **READ.hyperflex.HxapVirtualMachineNetworkInterface**: Read a 'hyperflex.HxapVirtualMachineNetworkInterface' resource.
- - **CREATE.hyperflex.HxdpVersion**: Create a 'hyperflex.HxdpVersion' resource.
- - **DELETE.hyperflex.HxdpVersion**: Delete a 'hyperflex.HxdpVersion' resource.
- - **READ.hyperflex.HxdpVersion**: Read a 'hyperflex.HxdpVersion' resource.
- - **UPDATE.hyperflex.HxdpVersion**: Update a 'hyperflex.HxdpVersion' resource.
- - **READ.hyperflex.License**: Read a 'hyperflex.License' resource.
- - **CREATE.hyperflex.LocalCredentialPolicy**: Create a 'hyperflex.LocalCredentialPolicy' resource.
- - **DELETE.hyperflex.LocalCredentialPolicy**: Delete a 'hyperflex.LocalCredentialPolicy' resource.
- - **READ.hyperflex.LocalCredentialPolicy**: Read a 'hyperflex.LocalCredentialPolicy' resource.
- - **UPDATE.hyperflex.LocalCredentialPolicy**: Update a 'hyperflex.LocalCredentialPolicy' resource.
- - **READ.hyperflex.Node**: Read a 'hyperflex.Node' resource.
- - **CREATE.hyperflex.NodeConfigPolicy**: Create a 'hyperflex.NodeConfigPolicy' resource.
- - **DELETE.hyperflex.NodeConfigPolicy**: Delete a 'hyperflex.NodeConfigPolicy' resource.
- - **READ.hyperflex.NodeConfigPolicy**: Read a 'hyperflex.NodeConfigPolicy' resource.
- - **UPDATE.hyperflex.NodeConfigPolicy**: Update a 'hyperflex.NodeConfigPolicy' resource.
- - **CREATE.hyperflex.NodeProfile**: Create a 'hyperflex.NodeProfile' resource.
- - **DELETE.hyperflex.NodeProfile**: Delete a 'hyperflex.NodeProfile' resource.
- - **READ.hyperflex.NodeProfile**: Read a 'hyperflex.NodeProfile' resource.
- - **UPDATE.hyperflex.NodeProfile**: Update a 'hyperflex.NodeProfile' resource.
- - **CREATE.hyperflex.ProxySettingPolicy**: Create a 'hyperflex.ProxySettingPolicy' resource.
- - **DELETE.hyperflex.ProxySettingPolicy**: Delete a 'hyperflex.ProxySettingPolicy' resource.
- - **READ.hyperflex.ProxySettingPolicy**: Read a 'hyperflex.ProxySettingPolicy' resource.
- - **UPDATE.hyperflex.ProxySettingPolicy**: Update a 'hyperflex.ProxySettingPolicy' resource.
- - **CREATE.hyperflex.ServerFirmwareVersion**: Create a 'hyperflex.ServerFirmwareVersion' resource.
- - **DELETE.hyperflex.ServerFirmwareVersion**: Delete a 'hyperflex.ServerFirmwareVersion' resource.
- - **READ.hyperflex.ServerFirmwareVersion**: Read a 'hyperflex.ServerFirmwareVersion' resource.
- - **UPDATE.hyperflex.ServerFirmwareVersion**: Update a 'hyperflex.ServerFirmwareVersion' resource.
- - **CREATE.hyperflex.ServerFirmwareVersionEntry**: Create a 'hyperflex.ServerFirmwareVersionEntry' resource.
- - **DELETE.hyperflex.ServerFirmwareVersionEntry**: Delete a 'hyperflex.ServerFirmwareVersionEntry' resource.
- - **READ.hyperflex.ServerFirmwareVersionEntry**: Read a 'hyperflex.ServerFirmwareVersionEntry' resource.
- - **UPDATE.hyperflex.ServerFirmwareVersionEntry**: Update a 'hyperflex.ServerFirmwareVersionEntry' resource.
- - **CREATE.hyperflex.ServerModel**: Create a 'hyperflex.ServerModel' resource.
- - **DELETE.hyperflex.ServerModel**: Delete a 'hyperflex.ServerModel' resource.
- - **READ.hyperflex.ServerModel**: Read a 'hyperflex.ServerModel' resource.
- - **UPDATE.hyperflex.ServerModel**: Update a 'hyperflex.ServerModel' resource.
- - **CREATE.hyperflex.SoftwareDistributionComponent**: Create a 'hyperflex.SoftwareDistributionComponent' resource.
- - **DELETE.hyperflex.SoftwareDistributionComponent**: Delete a 'hyperflex.SoftwareDistributionComponent' resource.
- - **READ.hyperflex.SoftwareDistributionComponent**: Read a 'hyperflex.SoftwareDistributionComponent' resource.
- - **UPDATE.hyperflex.SoftwareDistributionComponent**: Update a 'hyperflex.SoftwareDistributionComponent' resource.
- - **CREATE.hyperflex.SoftwareDistributionEntry**: Create a 'hyperflex.SoftwareDistributionEntry' resource.
- - **DELETE.hyperflex.SoftwareDistributionEntry**: Delete a 'hyperflex.SoftwareDistributionEntry' resource.
- - **READ.hyperflex.SoftwareDistributionEntry**: Read a 'hyperflex.SoftwareDistributionEntry' resource.
- - **UPDATE.hyperflex.SoftwareDistributionEntry**: Update a 'hyperflex.SoftwareDistributionEntry' resource.
- - **CREATE.hyperflex.SoftwareDistributionVersion**: Create a 'hyperflex.SoftwareDistributionVersion' resource.
- - **DELETE.hyperflex.SoftwareDistributionVersion**: Delete a 'hyperflex.SoftwareDistributionVersion' resource.
- - **READ.hyperflex.SoftwareDistributionVersion**: Read a 'hyperflex.SoftwareDistributionVersion' resource.
- - **UPDATE.hyperflex.SoftwareDistributionVersion**: Update a 'hyperflex.SoftwareDistributionVersion' resource.
- - **CREATE.hyperflex.SoftwareVersionPolicy**: Create a 'hyperflex.SoftwareVersionPolicy' resource.
- - **DELETE.hyperflex.SoftwareVersionPolicy**: Delete a 'hyperflex.SoftwareVersionPolicy' resource.
- - **READ.hyperflex.SoftwareVersionPolicy**: Read a 'hyperflex.SoftwareVersionPolicy' resource.
- - **UPDATE.hyperflex.SoftwareVersionPolicy**: Update a 'hyperflex.SoftwareVersionPolicy' resource.
- - **READ.hyperflex.StorageContainer**: Read a 'hyperflex.StorageContainer' resource.
- - **CREATE.hyperflex.SysConfigPolicy**: Create a 'hyperflex.SysConfigPolicy' resource.
- - **DELETE.hyperflex.SysConfigPolicy**: Delete a 'hyperflex.SysConfigPolicy' resource.
- - **READ.hyperflex.SysConfigPolicy**: Read a 'hyperflex.SysConfigPolicy' resource.
- - **UPDATE.hyperflex.SysConfigPolicy**: Update a 'hyperflex.SysConfigPolicy' resource.
- - **CREATE.hyperflex.UcsmConfigPolicy**: Create a 'hyperflex.UcsmConfigPolicy' resource.
- - **DELETE.hyperflex.UcsmConfigPolicy**: Delete a 'hyperflex.UcsmConfigPolicy' resource.
- - **READ.hyperflex.UcsmConfigPolicy**: Read a 'hyperflex.UcsmConfigPolicy' resource.
- - **UPDATE.hyperflex.UcsmConfigPolicy**: Update a 'hyperflex.UcsmConfigPolicy' resource.
- - **CREATE.hyperflex.VcenterConfigPolicy**: Create a 'hyperflex.VcenterConfigPolicy' resource.
- - **DELETE.hyperflex.VcenterConfigPolicy**: Delete a 'hyperflex.VcenterConfigPolicy' resource.
- - **READ.hyperflex.VcenterConfigPolicy**: Read a 'hyperflex.VcenterConfigPolicy' resource.
- - **UPDATE.hyperflex.VcenterConfigPolicy**: Update a 'hyperflex.VcenterConfigPolicy' resource.
- - **READ.hyperflex.VmBackupInfo**: Read a 'hyperflex.VmBackupInfo' resource.
- - **CREATE.hyperflex.VmImportOperation**: Create a 'hyperflex.VmImportOperation' resource.
- - **DELETE.hyperflex.VmImportOperation**: Delete a 'hyperflex.VmImportOperation' resource.
- - **READ.hyperflex.VmImportOperation**: Read a 'hyperflex.VmImportOperation' resource.
- - **CREATE.hyperflex.VmRestoreOperation**: Create a 'hyperflex.VmRestoreOperation' resource.
- - **DELETE.hyperflex.VmRestoreOperation**: Delete a 'hyperflex.VmRestoreOperation' resource.
- - **READ.hyperflex.VmRestoreOperation**: Read a 'hyperflex.VmRestoreOperation' resource.
- - **READ.hyperflex.VmSnapshotInfo**: Read a 'hyperflex.VmSnapshotInfo' resource.
- - **READ.hyperflex.Volume**: Read a 'hyperflex.Volume' resource.
- - **READ.hyperflex.WitnessConfiguration**: Read a 'hyperflex.WitnessConfiguration' resource.
- - **READ.iaas.ConnectorPack**: Read a 'iaas.ConnectorPack' resource.
- - **READ.iaas.DeviceStatus**: Read a 'iaas.DeviceStatus' resource.
- - **READ.iaas.DiagnosticMessages**: Read a 'iaas.DiagnosticMessages' resource.
- - **READ.iaas.LicenseInfo**: Read a 'iaas.LicenseInfo' resource.
- - **READ.iaas.MostRunTasks**: Read a 'iaas.MostRunTasks' resource.
- - **READ.iaas.ServiceRequest**: Read a 'iaas.ServiceRequest' resource.
- - **DELETE.iaas.UcsdInfo**: Delete a 'iaas.UcsdInfo' resource.
- - **READ.iaas.UcsdInfo**: Read a 'iaas.UcsdInfo' resource.
- - **UPDATE.iaas.UcsdInfo**: Update a 'iaas.UcsdInfo' resource.
- - **READ.iaas.UcsdManagedInfra**: Read a 'iaas.UcsdManagedInfra' resource.
- - **READ.iaas.UcsdMessages**: Read a 'iaas.UcsdMessages' resource.
- - **CREATE.iam.Account**: Create a 'iam.Account' resource.
- - **DELETE.iam.Account**: Delete a 'iam.Account' resource.
- - **READ.iam.Account**: Read a 'iam.Account' resource.
- - **UPDATE.iam.Account**: Update a 'iam.Account' resource.
- - **CREATE.iam.AccountExperience**: Create a 'iam.AccountExperience' resource.
- - **READ.iam.AccountExperience**: Read a 'iam.AccountExperience' resource.
- - **UPDATE.iam.AccountExperience**: Update a 'iam.AccountExperience' resource.
- - **CREATE.iam.ApiKey**: Create a 'iam.ApiKey' resource.
- - **DELETE.iam.ApiKey**: Delete a 'iam.ApiKey' resource.
- - **READ.iam.ApiKey**: Read a 'iam.ApiKey' resource.
- - **UPDATE.iam.ApiKey**: Update a 'iam.ApiKey' resource.
- - **CREATE.iam.AppRegistration**: Create a 'iam.AppRegistration' resource.
- - **DELETE.iam.AppRegistration**: Delete a 'iam.AppRegistration' resource.
- - **READ.iam.AppRegistration**: Read a 'iam.AppRegistration' resource.
- - **UPDATE.iam.AppRegistration**: Update a 'iam.AppRegistration' resource.
- - **READ.iam.BannerMessage**: Read a 'iam.BannerMessage' resource.
- - **UPDATE.iam.BannerMessage**: Update a 'iam.BannerMessage' resource.
- - **CREATE.iam.Certificate**: Create a 'iam.Certificate' resource.
- - **DELETE.iam.Certificate**: Delete a 'iam.Certificate' resource.
- - **READ.iam.Certificate**: Read a 'iam.Certificate' resource.
- - **UPDATE.iam.Certificate**: Update a 'iam.Certificate' resource.
- - **CREATE.iam.CertificateRequest**: Create a 'iam.CertificateRequest' resource.
- - **DELETE.iam.CertificateRequest**: Delete a 'iam.CertificateRequest' resource.
- - **READ.iam.CertificateRequest**: Read a 'iam.CertificateRequest' resource.
- - **UPDATE.iam.CertificateRequest**: Update a 'iam.CertificateRequest' resource.
- - **READ.iam.DomainGroup**: Read a 'iam.DomainGroup' resource.
- - **READ.iam.EndPointPrivilege**: Read a 'iam.EndPointPrivilege' resource.
- - **READ.iam.EndPointRole**: Read a 'iam.EndPointRole' resource.
- - **CREATE.iam.EndPointUser**: Create a 'iam.EndPointUser' resource.
- - **DELETE.iam.EndPointUser**: Delete a 'iam.EndPointUser' resource.
- - **READ.iam.EndPointUser**: Read a 'iam.EndPointUser' resource.
- - **UPDATE.iam.EndPointUser**: Update a 'iam.EndPointUser' resource.
- - **CREATE.iam.EndPointUserPolicy**: Create a 'iam.EndPointUserPolicy' resource.
- - **DELETE.iam.EndPointUserPolicy**: Delete a 'iam.EndPointUserPolicy' resource.
- - **READ.iam.EndPointUserPolicy**: Read a 'iam.EndPointUserPolicy' resource.
- - **UPDATE.iam.EndPointUserPolicy**: Update a 'iam.EndPointUserPolicy' resource.
- - **CREATE.iam.EndPointUserRole**: Create a 'iam.EndPointUserRole' resource.
- - **DELETE.iam.EndPointUserRole**: Delete a 'iam.EndPointUserRole' resource.
- - **READ.iam.EndPointUserRole**: Read a 'iam.EndPointUserRole' resource.
- - **UPDATE.iam.EndPointUserRole**: Update a 'iam.EndPointUserRole' resource.
- - **CREATE.iam.Idp**: Create a 'iam.Idp' resource.
- - **DELETE.iam.Idp**: Delete a 'iam.Idp' resource.
- - **READ.iam.Idp**: Read a 'iam.Idp' resource.
- - **UPDATE.iam.Idp**: Update a 'iam.Idp' resource.
- - **READ.iam.IdpReference**: Read a 'iam.IdpReference' resource.
- - **UPDATE.iam.IdpReference**: Update a 'iam.IdpReference' resource.
- - **CREATE.iam.IpAccessManagement**: Create a 'iam.IpAccessManagement' resource.
- - **READ.iam.IpAccessManagement**: Read a 'iam.IpAccessManagement' resource.
- - **UPDATE.iam.IpAccessManagement**: Update a 'iam.IpAccessManagement' resource.
- - **CREATE.iam.IpAddress**: Create a 'iam.IpAddress' resource.
- - **DELETE.iam.IpAddress**: Delete a 'iam.IpAddress' resource.
- - **READ.iam.IpAddress**: Read a 'iam.IpAddress' resource.
- - **UPDATE.iam.IpAddress**: Update a 'iam.IpAddress' resource.
- - **CREATE.iam.LdapGroup**: Create a 'iam.LdapGroup' resource.
- - **DELETE.iam.LdapGroup**: Delete a 'iam.LdapGroup' resource.
- - **READ.iam.LdapGroup**: Read a 'iam.LdapGroup' resource.
- - **UPDATE.iam.LdapGroup**: Update a 'iam.LdapGroup' resource.
- - **CREATE.iam.LdapPolicy**: Create a 'iam.LdapPolicy' resource.
- - **DELETE.iam.LdapPolicy**: Delete a 'iam.LdapPolicy' resource.
- - **READ.iam.LdapPolicy**: Read a 'iam.LdapPolicy' resource.
- - **UPDATE.iam.LdapPolicy**: Update a 'iam.LdapPolicy' resource.
- - **CREATE.iam.LdapProvider**: Create a 'iam.LdapProvider' resource.
- - **DELETE.iam.LdapProvider**: Delete a 'iam.LdapProvider' resource.
- - **READ.iam.LdapProvider**: Read a 'iam.LdapProvider' resource.
- - **UPDATE.iam.LdapProvider**: Update a 'iam.LdapProvider' resource.
- - **UPDATE.iam.LocalUserPassword**: Update a 'iam.LocalUserPassword' resource.
- - **READ.iam.LocalUserPasswordPolicy**: Read a 'iam.LocalUserPasswordPolicy' resource.
- - **UPDATE.iam.LocalUserPasswordPolicy**: Update a 'iam.LocalUserPasswordPolicy' resource.
- - **DELETE.iam.OAuthToken**: Delete a 'iam.OAuthToken' resource.
- - **READ.iam.OAuthToken**: Read a 'iam.OAuthToken' resource.
- - **CREATE.iam.Permission**: Create a 'iam.Permission' resource.
- - **DELETE.iam.Permission**: Delete a 'iam.Permission' resource.
- - **READ.iam.Permission**: Read a 'iam.Permission' resource.
- - **UPDATE.iam.Permission**: Update a 'iam.Permission' resource.
- - **CREATE.iam.PrivateKeySpec**: Create a 'iam.PrivateKeySpec' resource.
- - **DELETE.iam.PrivateKeySpec**: Delete a 'iam.PrivateKeySpec' resource.
- - **READ.iam.PrivateKeySpec**: Read a 'iam.PrivateKeySpec' resource.
- - **UPDATE.iam.PrivateKeySpec**: Update a 'iam.PrivateKeySpec' resource.
- - **READ.iam.Privilege**: Read a 'iam.Privilege' resource.
- - **READ.iam.PrivilegeSet**: Read a 'iam.PrivilegeSet' resource.
- - **CREATE.iam.Qualifier**: Create a 'iam.Qualifier' resource.
- - **DELETE.iam.Qualifier**: Delete a 'iam.Qualifier' resource.
- - **READ.iam.Qualifier**: Read a 'iam.Qualifier' resource.
- - **UPDATE.iam.Qualifier**: Update a 'iam.Qualifier' resource.
- - **READ.iam.ResourceLimits**: Read a 'iam.ResourceLimits' resource.
- - **READ.iam.ResourcePermission**: Read a 'iam.ResourcePermission' resource.
- - **CREATE.iam.ResourceRoles**: Create a 'iam.ResourceRoles' resource.
- - **DELETE.iam.ResourceRoles**: Delete a 'iam.ResourceRoles' resource.
- - **READ.iam.ResourceRoles**: Read a 'iam.ResourceRoles' resource.
- - **UPDATE.iam.ResourceRoles**: Update a 'iam.ResourceRoles' resource.
- - **READ.iam.Role**: Read a 'iam.Role' resource.
- - **READ.iam.SecurityHolder**: Read a 'iam.SecurityHolder' resource.
- - **READ.iam.ServiceProvider**: Read a 'iam.ServiceProvider' resource.
- - **DELETE.iam.Session**: Delete a 'iam.Session' resource.
- - **READ.iam.Session**: Read a 'iam.Session' resource.
- - **CREATE.iam.SessionLimits**: Create a 'iam.SessionLimits' resource.
- - **DELETE.iam.SessionLimits**: Delete a 'iam.SessionLimits' resource.
- - **READ.iam.SessionLimits**: Read a 'iam.SessionLimits' resource.
- - **UPDATE.iam.SessionLimits**: Update a 'iam.SessionLimits' resource.
- - **READ.iam.System**: Read a 'iam.System' resource.
- - **CREATE.iam.TrustPoint**: Create a 'iam.TrustPoint' resource.
- - **DELETE.iam.TrustPoint**: Delete a 'iam.TrustPoint' resource.
- - **READ.iam.TrustPoint**: Read a 'iam.TrustPoint' resource.
- - **CREATE.iam.User**: Create a 'iam.User' resource.
- - **DELETE.iam.User**: Delete a 'iam.User' resource.
- - **READ.iam.User**: Read a 'iam.User' resource.
- - **UPDATE.iam.User**: Update a 'iam.User' resource.
- - **CREATE.iam.UserGroup**: Create a 'iam.UserGroup' resource.
- - **DELETE.iam.UserGroup**: Delete a 'iam.UserGroup' resource.
- - **READ.iam.UserGroup**: Read a 'iam.UserGroup' resource.
- - **UPDATE.iam.UserGroup**: Update a 'iam.UserGroup' resource.
- - **READ.iam.UserPreference**: Read a 'iam.UserPreference' resource.
- - **UPDATE.iam.UserPreference**: Update a 'iam.UserPreference' resource.
- - **READ.inventory.DeviceInfo**: Read a 'inventory.DeviceInfo' resource.
- - **READ.inventory.DnMoBinding**: Read a 'inventory.DnMoBinding' resource.
- - **READ.inventory.GenericInventory**: Read a 'inventory.GenericInventory' resource.
- - **UPDATE.inventory.GenericInventory**: Update a 'inventory.GenericInventory' resource.
- - **READ.inventory.GenericInventoryHolder**: Read a 'inventory.GenericInventoryHolder' resource.
- - **UPDATE.inventory.GenericInventoryHolder**: Update a 'inventory.GenericInventoryHolder' resource.
- - **CREATE.inventory.Request**: Create a 'inventory.Request' resource.
- - **CREATE.ipmioverlan.Policy**: Create a 'ipmioverlan.Policy' resource.
- - **DELETE.ipmioverlan.Policy**: Delete a 'ipmioverlan.Policy' resource.
- - **READ.ipmioverlan.Policy**: Read a 'ipmioverlan.Policy' resource.
- - **UPDATE.ipmioverlan.Policy**: Update a 'ipmioverlan.Policy' resource.
- - **READ.ippool.BlockLease**: Read a 'ippool.BlockLease' resource.
- - **DELETE.ippool.IpLease**: Delete a 'ippool.IpLease' resource.
- - **READ.ippool.IpLease**: Read a 'ippool.IpLease' resource.
- - **CREATE.ippool.Pool**: Create a 'ippool.Pool' resource.
- - **DELETE.ippool.Pool**: Delete a 'ippool.Pool' resource.
- - **READ.ippool.Pool**: Read a 'ippool.Pool' resource.
- - **UPDATE.ippool.Pool**: Update a 'ippool.Pool' resource.
- - **READ.ippool.PoolMember**: Read a 'ippool.PoolMember' resource.
- - **READ.ippool.ShadowBlock**: Read a 'ippool.ShadowBlock' resource.
- - **READ.ippool.ShadowPool**: Read a 'ippool.ShadowPool' resource.
- - **READ.ippool.Universe**: Read a 'ippool.Universe' resource.
- - **READ.iqnpool.Block**: Read a 'iqnpool.Block' resource.
- - **DELETE.iqnpool.Lease**: Delete a 'iqnpool.Lease' resource.
- - **READ.iqnpool.Lease**: Read a 'iqnpool.Lease' resource.
- - **CREATE.iqnpool.Pool**: Create a 'iqnpool.Pool' resource.
- - **DELETE.iqnpool.Pool**: Delete a 'iqnpool.Pool' resource.
- - **READ.iqnpool.Pool**: Read a 'iqnpool.Pool' resource.
- - **UPDATE.iqnpool.Pool**: Update a 'iqnpool.Pool' resource.
- - **READ.iqnpool.PoolMember**: Read a 'iqnpool.PoolMember' resource.
- - **READ.iqnpool.Universe**: Read a 'iqnpool.Universe' resource.
- - **READ.iwotenant.TenantStatus**: Read a 'iwotenant.TenantStatus' resource.
- - **CREATE.kubernetes.AciCniApic**: Create a 'kubernetes.AciCniApic' resource.
- - **DELETE.kubernetes.AciCniApic**: Delete a 'kubernetes.AciCniApic' resource.
- - **READ.kubernetes.AciCniApic**: Read a 'kubernetes.AciCniApic' resource.
- - **UPDATE.kubernetes.AciCniApic**: Update a 'kubernetes.AciCniApic' resource.
- - **CREATE.kubernetes.AciCniProfile**: Create a 'kubernetes.AciCniProfile' resource.
- - **DELETE.kubernetes.AciCniProfile**: Delete a 'kubernetes.AciCniProfile' resource.
- - **READ.kubernetes.AciCniProfile**: Read a 'kubernetes.AciCniProfile' resource.
- - **UPDATE.kubernetes.AciCniProfile**: Update a 'kubernetes.AciCniProfile' resource.
- - **CREATE.kubernetes.AciCniTenantClusterAllocation**: Create a 'kubernetes.AciCniTenantClusterAllocation' resource.
- - **DELETE.kubernetes.AciCniTenantClusterAllocation**: Delete a 'kubernetes.AciCniTenantClusterAllocation' resource.
- - **READ.kubernetes.AciCniTenantClusterAllocation**: Read a 'kubernetes.AciCniTenantClusterAllocation' resource.
- - **UPDATE.kubernetes.AciCniTenantClusterAllocation**: Update a 'kubernetes.AciCniTenantClusterAllocation' resource.
- - **CREATE.kubernetes.AddonDefinition**: Create a 'kubernetes.AddonDefinition' resource.
- - **DELETE.kubernetes.AddonDefinition**: Delete a 'kubernetes.AddonDefinition' resource.
- - **READ.kubernetes.AddonDefinition**: Read a 'kubernetes.AddonDefinition' resource.
- - **UPDATE.kubernetes.AddonDefinition**: Update a 'kubernetes.AddonDefinition' resource.
- - **CREATE.kubernetes.AddonPolicy**: Create a 'kubernetes.AddonPolicy' resource.
- - **DELETE.kubernetes.AddonPolicy**: Delete a 'kubernetes.AddonPolicy' resource.
- - **READ.kubernetes.AddonPolicy**: Read a 'kubernetes.AddonPolicy' resource.
- - **UPDATE.kubernetes.AddonPolicy**: Update a 'kubernetes.AddonPolicy' resource.
- - **CREATE.kubernetes.AddonRepository**: Create a 'kubernetes.AddonRepository' resource.
- - **DELETE.kubernetes.AddonRepository**: Delete a 'kubernetes.AddonRepository' resource.
- - **READ.kubernetes.AddonRepository**: Read a 'kubernetes.AddonRepository' resource.
- - **UPDATE.kubernetes.AddonRepository**: Update a 'kubernetes.AddonRepository' resource.
- - **READ.kubernetes.Catalog**: Read a 'kubernetes.Catalog' resource.
- - **CREATE.kubernetes.Cluster**: Create a 'kubernetes.Cluster' resource.
- - **DELETE.kubernetes.Cluster**: Delete a 'kubernetes.Cluster' resource.
- - **READ.kubernetes.Cluster**: Read a 'kubernetes.Cluster' resource.
- - **UPDATE.kubernetes.Cluster**: Update a 'kubernetes.Cluster' resource.
- - **CREATE.kubernetes.ClusterAddonProfile**: Create a 'kubernetes.ClusterAddonProfile' resource.
- - **DELETE.kubernetes.ClusterAddonProfile**: Delete a 'kubernetes.ClusterAddonProfile' resource.
- - **READ.kubernetes.ClusterAddonProfile**: Read a 'kubernetes.ClusterAddonProfile' resource.
- - **UPDATE.kubernetes.ClusterAddonProfile**: Update a 'kubernetes.ClusterAddonProfile' resource.
- - **CREATE.kubernetes.ClusterProfile**: Create a 'kubernetes.ClusterProfile' resource.
- - **DELETE.kubernetes.ClusterProfile**: Delete a 'kubernetes.ClusterProfile' resource.
- - **READ.kubernetes.ClusterProfile**: Read a 'kubernetes.ClusterProfile' resource.
- - **UPDATE.kubernetes.ClusterProfile**: Update a 'kubernetes.ClusterProfile' resource.
- - **READ.kubernetes.ConfigResult**: Read a 'kubernetes.ConfigResult' resource.
- - **READ.kubernetes.ConfigResultEntry**: Read a 'kubernetes.ConfigResultEntry' resource.
- - **CREATE.kubernetes.ContainerRuntimePolicy**: Create a 'kubernetes.ContainerRuntimePolicy' resource.
- - **DELETE.kubernetes.ContainerRuntimePolicy**: Delete a 'kubernetes.ContainerRuntimePolicy' resource.
- - **READ.kubernetes.ContainerRuntimePolicy**: Read a 'kubernetes.ContainerRuntimePolicy' resource.
- - **UPDATE.kubernetes.ContainerRuntimePolicy**: Update a 'kubernetes.ContainerRuntimePolicy' resource.
- - **DELETE.kubernetes.DaemonSet**: Delete a 'kubernetes.DaemonSet' resource.
- - **READ.kubernetes.DaemonSet**: Read a 'kubernetes.DaemonSet' resource.
- - **DELETE.kubernetes.Deployment**: Delete a 'kubernetes.Deployment' resource.
- - **READ.kubernetes.Deployment**: Read a 'kubernetes.Deployment' resource.
- - **DELETE.kubernetes.Ingress**: Delete a 'kubernetes.Ingress' resource.
- - **READ.kubernetes.Ingress**: Read a 'kubernetes.Ingress' resource.
- - **CREATE.kubernetes.NetworkPolicy**: Create a 'kubernetes.NetworkPolicy' resource.
- - **DELETE.kubernetes.NetworkPolicy**: Delete a 'kubernetes.NetworkPolicy' resource.
- - **READ.kubernetes.NetworkPolicy**: Read a 'kubernetes.NetworkPolicy' resource.
- - **UPDATE.kubernetes.NetworkPolicy**: Update a 'kubernetes.NetworkPolicy' resource.
- - **DELETE.kubernetes.Node**: Delete a 'kubernetes.Node' resource.
- - **READ.kubernetes.Node**: Read a 'kubernetes.Node' resource.
- - **CREATE.kubernetes.NodeGroupProfile**: Create a 'kubernetes.NodeGroupProfile' resource.
- - **DELETE.kubernetes.NodeGroupProfile**: Delete a 'kubernetes.NodeGroupProfile' resource.
- - **READ.kubernetes.NodeGroupProfile**: Read a 'kubernetes.NodeGroupProfile' resource.
- - **UPDATE.kubernetes.NodeGroupProfile**: Update a 'kubernetes.NodeGroupProfile' resource.
- - **DELETE.kubernetes.Pod**: Delete a 'kubernetes.Pod' resource.
- - **READ.kubernetes.Pod**: Read a 'kubernetes.Pod' resource.
- - **DELETE.kubernetes.Service**: Delete a 'kubernetes.Service' resource.
- - **READ.kubernetes.Service**: Read a 'kubernetes.Service' resource.
- - **DELETE.kubernetes.StatefulSet**: Delete a 'kubernetes.StatefulSet' resource.
- - **READ.kubernetes.StatefulSet**: Read a 'kubernetes.StatefulSet' resource.
- - **CREATE.kubernetes.SysConfigPolicy**: Create a 'kubernetes.SysConfigPolicy' resource.
- - **DELETE.kubernetes.SysConfigPolicy**: Delete a 'kubernetes.SysConfigPolicy' resource.
- - **READ.kubernetes.SysConfigPolicy**: Read a 'kubernetes.SysConfigPolicy' resource.
- - **UPDATE.kubernetes.SysConfigPolicy**: Update a 'kubernetes.SysConfigPolicy' resource.
- - **CREATE.kubernetes.TrustedRegistriesPolicy**: Create a 'kubernetes.TrustedRegistriesPolicy' resource.
- - **DELETE.kubernetes.TrustedRegistriesPolicy**: Delete a 'kubernetes.TrustedRegistriesPolicy' resource.
- - **READ.kubernetes.TrustedRegistriesPolicy**: Read a 'kubernetes.TrustedRegistriesPolicy' resource.
- - **UPDATE.kubernetes.TrustedRegistriesPolicy**: Update a 'kubernetes.TrustedRegistriesPolicy' resource.
- - **CREATE.kubernetes.Version**: Create a 'kubernetes.Version' resource.
- - **DELETE.kubernetes.Version**: Delete a 'kubernetes.Version' resource.
- - **READ.kubernetes.Version**: Read a 'kubernetes.Version' resource.
- - **UPDATE.kubernetes.Version**: Update a 'kubernetes.Version' resource.
- - **CREATE.kubernetes.VersionPolicy**: Create a 'kubernetes.VersionPolicy' resource.
- - **DELETE.kubernetes.VersionPolicy**: Delete a 'kubernetes.VersionPolicy' resource.
- - **READ.kubernetes.VersionPolicy**: Read a 'kubernetes.VersionPolicy' resource.
- - **UPDATE.kubernetes.VersionPolicy**: Update a 'kubernetes.VersionPolicy' resource.
- - **CREATE.kubernetes.VirtualMachineInfraConfigPolicy**: Create a 'kubernetes.VirtualMachineInfraConfigPolicy' resource.
- - **DELETE.kubernetes.VirtualMachineInfraConfigPolicy**: Delete a 'kubernetes.VirtualMachineInfraConfigPolicy' resource.
- - **READ.kubernetes.VirtualMachineInfraConfigPolicy**: Read a 'kubernetes.VirtualMachineInfraConfigPolicy' resource.
- - **UPDATE.kubernetes.VirtualMachineInfraConfigPolicy**: Update a 'kubernetes.VirtualMachineInfraConfigPolicy' resource.
- - **CREATE.kubernetes.VirtualMachineInfrastructureProvider**: Create a 'kubernetes.VirtualMachineInfrastructureProvider' resource.
- - **READ.kubernetes.VirtualMachineInfrastructureProvider**: Read a 'kubernetes.VirtualMachineInfrastructureProvider' resource.
- - **UPDATE.kubernetes.VirtualMachineInfrastructureProvider**: Update a 'kubernetes.VirtualMachineInfrastructureProvider' resource.
- - **CREATE.kubernetes.VirtualMachineInstanceType**: Create a 'kubernetes.VirtualMachineInstanceType' resource.
- - **DELETE.kubernetes.VirtualMachineInstanceType**: Delete a 'kubernetes.VirtualMachineInstanceType' resource.
- - **READ.kubernetes.VirtualMachineInstanceType**: Read a 'kubernetes.VirtualMachineInstanceType' resource.
- - **UPDATE.kubernetes.VirtualMachineInstanceType**: Update a 'kubernetes.VirtualMachineInstanceType' resource.
- - **CREATE.kubernetes.VirtualMachineNodeProfile**: Create a 'kubernetes.VirtualMachineNodeProfile' resource.
- - **DELETE.kubernetes.VirtualMachineNodeProfile**: Delete a 'kubernetes.VirtualMachineNodeProfile' resource.
- - **READ.kubernetes.VirtualMachineNodeProfile**: Read a 'kubernetes.VirtualMachineNodeProfile' resource.
- - **UPDATE.kubernetes.VirtualMachineNodeProfile**: Update a 'kubernetes.VirtualMachineNodeProfile' resource.
- - **CREATE.kvm.Policy**: Create a 'kvm.Policy' resource.
- - **DELETE.kvm.Policy**: Delete a 'kvm.Policy' resource.
- - **READ.kvm.Policy**: Read a 'kvm.Policy' resource.
- - **UPDATE.kvm.Policy**: Update a 'kvm.Policy' resource.
- - **CREATE.kvm.Session**: Create a 'kvm.Session' resource.
- - **READ.kvm.Session**: Read a 'kvm.Session' resource.
- - **UPDATE.kvm.Session**: Update a 'kvm.Session' resource.
- - **CREATE.kvm.Tunnel**: Create a 'kvm.Tunnel' resource.
- - **READ.kvm.Tunnel**: Read a 'kvm.Tunnel' resource.
- - **READ.kvm.VmConsole**: Read a 'kvm.VmConsole' resource.
- - **READ.license.AccountLicenseData**: Read a 'license.AccountLicenseData' resource.
- - **UPDATE.license.AccountLicenseData**: Update a 'license.AccountLicenseData' resource.
- - **READ.license.CustomerOp**: Read a 'license.CustomerOp' resource.
- - **UPDATE.license.CustomerOp**: Update a 'license.CustomerOp' resource.
- - **READ.license.IwoCustomerOp**: Read a 'license.IwoCustomerOp' resource.
- - **UPDATE.license.IwoCustomerOp**: Update a 'license.IwoCustomerOp' resource.
- - **CREATE.license.IwoLicenseCount**: Create a 'license.IwoLicenseCount' resource.
- - **READ.license.IwoLicenseCount**: Read a 'license.IwoLicenseCount' resource.
- - **UPDATE.license.IwoLicenseCount**: Update a 'license.IwoLicenseCount' resource.
- - **CREATE.license.LicenseInfo**: Create a 'license.LicenseInfo' resource.
- - **READ.license.LicenseInfo**: Read a 'license.LicenseInfo' resource.
- - **UPDATE.license.LicenseInfo**: Update a 'license.LicenseInfo' resource.
- - **CREATE.license.LicenseReservationOp**: Create a 'license.LicenseReservationOp' resource.
- - **READ.license.LicenseReservationOp**: Read a 'license.LicenseReservationOp' resource.
- - **UPDATE.license.LicenseReservationOp**: Update a 'license.LicenseReservationOp' resource.
- - **READ.license.SmartlicenseToken**: Read a 'license.SmartlicenseToken' resource.
- - **UPDATE.license.SmartlicenseToken**: Update a 'license.SmartlicenseToken' resource.
- - **READ.ls.ServiceProfile**: Read a 'ls.ServiceProfile' resource.
- - **UPDATE.ls.ServiceProfile**: Update a 'ls.ServiceProfile' resource.
- - **READ.macpool.IdBlock**: Read a 'macpool.IdBlock' resource.
- - **DELETE.macpool.Lease**: Delete a 'macpool.Lease' resource.
- - **READ.macpool.Lease**: Read a 'macpool.Lease' resource.
- - **CREATE.macpool.Pool**: Create a 'macpool.Pool' resource.
- - **DELETE.macpool.Pool**: Delete a 'macpool.Pool' resource.
- - **READ.macpool.Pool**: Read a 'macpool.Pool' resource.
- - **UPDATE.macpool.Pool**: Update a 'macpool.Pool' resource.
- - **READ.macpool.PoolMember**: Read a 'macpool.PoolMember' resource.
- - **READ.macpool.Universe**: Read a 'macpool.Universe' resource.
- - **READ.management.Controller**: Read a 'management.Controller' resource.
- - **UPDATE.management.Controller**: Update a 'management.Controller' resource.
- - **READ.management.Entity**: Read a 'management.Entity' resource.
- - **UPDATE.management.Entity**: Update a 'management.Entity' resource.
- - **READ.management.Interface**: Read a 'management.Interface' resource.
- - **UPDATE.management.Interface**: Update a 'management.Interface' resource.
- - **READ.memory.Array**: Read a 'memory.Array' resource.
- - **UPDATE.memory.Array**: Update a 'memory.Array' resource.
- - **READ.memory.PersistentMemoryConfigResult**: Read a 'memory.PersistentMemoryConfigResult' resource.
- - **UPDATE.memory.PersistentMemoryConfigResult**: Update a 'memory.PersistentMemoryConfigResult' resource.
- - **READ.memory.PersistentMemoryConfiguration**: Read a 'memory.PersistentMemoryConfiguration' resource.
- - **UPDATE.memory.PersistentMemoryConfiguration**: Update a 'memory.PersistentMemoryConfiguration' resource.
- - **READ.memory.PersistentMemoryNamespace**: Read a 'memory.PersistentMemoryNamespace' resource.
- - **UPDATE.memory.PersistentMemoryNamespace**: Update a 'memory.PersistentMemoryNamespace' resource.
- - **READ.memory.PersistentMemoryNamespaceConfigResult**: Read a 'memory.PersistentMemoryNamespaceConfigResult' resource.
- - **UPDATE.memory.PersistentMemoryNamespaceConfigResult**: Update a 'memory.PersistentMemoryNamespaceConfigResult' resource.
- - **CREATE.memory.PersistentMemoryPolicy**: Create a 'memory.PersistentMemoryPolicy' resource.
- - **DELETE.memory.PersistentMemoryPolicy**: Delete a 'memory.PersistentMemoryPolicy' resource.
- - **READ.memory.PersistentMemoryPolicy**: Read a 'memory.PersistentMemoryPolicy' resource.
- - **UPDATE.memory.PersistentMemoryPolicy**: Update a 'memory.PersistentMemoryPolicy' resource.
- - **READ.memory.PersistentMemoryRegion**: Read a 'memory.PersistentMemoryRegion' resource.
- - **UPDATE.memory.PersistentMemoryRegion**: Update a 'memory.PersistentMemoryRegion' resource.
- - **READ.memory.PersistentMemoryUnit**: Read a 'memory.PersistentMemoryUnit' resource.
- - **UPDATE.memory.PersistentMemoryUnit**: Update a 'memory.PersistentMemoryUnit' resource.
- - **READ.memory.Unit**: Read a 'memory.Unit' resource.
- - **UPDATE.memory.Unit**: Update a 'memory.Unit' resource.
- - **DELETE.meta.Definition**: Delete a 'meta.Definition' resource.
- - **READ.meta.Definition**: Read a 'meta.Definition' resource.
- - **READ.network.Element**: Read a 'network.Element' resource.
- - **UPDATE.network.Element**: Update a 'network.Element' resource.
- - **READ.network.ElementSummary**: Read a 'network.ElementSummary' resource.
- - **READ.network.FcZoneInfo**: Read a 'network.FcZoneInfo' resource.
- - **UPDATE.network.FcZoneInfo**: Update a 'network.FcZoneInfo' resource.
- - **READ.network.VlanPortInfo**: Read a 'network.VlanPortInfo' resource.
- - **UPDATE.network.VlanPortInfo**: Update a 'network.VlanPortInfo' resource.
- - **CREATE.networkconfig.Policy**: Create a 'networkconfig.Policy' resource.
- - **DELETE.networkconfig.Policy**: Delete a 'networkconfig.Policy' resource.
- - **READ.networkconfig.Policy**: Read a 'networkconfig.Policy' resource.
- - **UPDATE.networkconfig.Policy**: Update a 'networkconfig.Policy' resource.
- - **READ.niaapi.ApicCcoPost**: Read a 'niaapi.ApicCcoPost' resource.
- - **READ.niaapi.ApicFieldNotice**: Read a 'niaapi.ApicFieldNotice' resource.
- - **READ.niaapi.ApicHweol**: Read a 'niaapi.ApicHweol' resource.
- - **READ.niaapi.ApicLatestMaintainedRelease**: Read a 'niaapi.ApicLatestMaintainedRelease' resource.
- - **READ.niaapi.ApicReleaseRecommend**: Read a 'niaapi.ApicReleaseRecommend' resource.
- - **READ.niaapi.ApicSweol**: Read a 'niaapi.ApicSweol' resource.
- - **READ.niaapi.DcnmCcoPost**: Read a 'niaapi.DcnmCcoPost' resource.
- - **READ.niaapi.DcnmFieldNotice**: Read a 'niaapi.DcnmFieldNotice' resource.
- - **READ.niaapi.DcnmHweol**: Read a 'niaapi.DcnmHweol' resource.
- - **READ.niaapi.DcnmLatestMaintainedRelease**: Read a 'niaapi.DcnmLatestMaintainedRelease' resource.
- - **READ.niaapi.DcnmReleaseRecommend**: Read a 'niaapi.DcnmReleaseRecommend' resource.
- - **READ.niaapi.DcnmSweol**: Read a 'niaapi.DcnmSweol' resource.
- - **READ.niaapi.FileDownloader**: Read a 'niaapi.FileDownloader' resource.
- - **READ.niaapi.NiaMetadata**: Read a 'niaapi.NiaMetadata' resource.
- - **READ.niaapi.NibFileDownloader**: Read a 'niaapi.NibFileDownloader' resource.
- - **READ.niaapi.NibMetadata**: Read a 'niaapi.NibMetadata' resource.
- - **READ.niaapi.VersionRegex**: Read a 'niaapi.VersionRegex' resource.
- - **READ.niatelemetry.AaaLdapProviderDetails**: Read a 'niatelemetry.AaaLdapProviderDetails' resource.
- - **READ.niatelemetry.AaaRadiusProviderDetails**: Read a 'niatelemetry.AaaRadiusProviderDetails' resource.
- - **READ.niatelemetry.AaaTacacsProviderDetails**: Read a 'niatelemetry.AaaTacacsProviderDetails' resource.
- - **READ.niatelemetry.ApicCoreFileDetails**: Read a 'niatelemetry.ApicCoreFileDetails' resource.
- - **READ.niatelemetry.ApicDbgexpRsExportDest**: Read a 'niatelemetry.ApicDbgexpRsExportDest' resource.
- - **READ.niatelemetry.ApicDbgexpRsTsScheduler**: Read a 'niatelemetry.ApicDbgexpRsTsScheduler' resource.
- - **READ.niatelemetry.ApicFanDetails**: Read a 'niatelemetry.ApicFanDetails' resource.
- - **READ.niatelemetry.ApicFexDetails**: Read a 'niatelemetry.ApicFexDetails' resource.
- - **READ.niatelemetry.ApicFlashDetails**: Read a 'niatelemetry.ApicFlashDetails' resource.
- - **READ.niatelemetry.ApicNtpAuth**: Read a 'niatelemetry.ApicNtpAuth' resource.
- - **READ.niatelemetry.ApicPsuDetails**: Read a 'niatelemetry.ApicPsuDetails' resource.
- - **READ.niatelemetry.ApicRealmDetails**: Read a 'niatelemetry.ApicRealmDetails' resource.
- - **READ.niatelemetry.ApicSnmpCommunityAccessDetails**: Read a 'niatelemetry.ApicSnmpCommunityAccessDetails' resource.
- - **READ.niatelemetry.ApicSnmpCommunityDetails**: Read a 'niatelemetry.ApicSnmpCommunityDetails' resource.
- - **READ.niatelemetry.ApicSnmpTrapDetails**: Read a 'niatelemetry.ApicSnmpTrapDetails' resource.
- - **READ.niatelemetry.ApicSnmpVersionThreeDetails**: Read a 'niatelemetry.ApicSnmpVersionThreeDetails' resource.
- - **READ.niatelemetry.ApicSysLogGrp**: Read a 'niatelemetry.ApicSysLogGrp' resource.
- - **READ.niatelemetry.ApicSysLogSrc**: Read a 'niatelemetry.ApicSysLogSrc' resource.
- - **READ.niatelemetry.ApicTransceiverDetails**: Read a 'niatelemetry.ApicTransceiverDetails' resource.
- - **READ.niatelemetry.ApicUiPageCounts**: Read a 'niatelemetry.ApicUiPageCounts' resource.
- - **READ.niatelemetry.AppDetails**: Read a 'niatelemetry.AppDetails' resource.
- - **READ.niatelemetry.DcnmFanDetails**: Read a 'niatelemetry.DcnmFanDetails' resource.
- - **READ.niatelemetry.DcnmFexDetails**: Read a 'niatelemetry.DcnmFexDetails' resource.
- - **READ.niatelemetry.DcnmModuleDetails**: Read a 'niatelemetry.DcnmModuleDetails' resource.
- - **READ.niatelemetry.DcnmPsuDetails**: Read a 'niatelemetry.DcnmPsuDetails' resource.
- - **READ.niatelemetry.DcnmTransceiverDetails**: Read a 'niatelemetry.DcnmTransceiverDetails' resource.
- - **READ.niatelemetry.Epg**: Read a 'niatelemetry.Epg' resource.
- - **READ.niatelemetry.FabricModuleDetails**: Read a 'niatelemetry.FabricModuleDetails' resource.
- - **READ.niatelemetry.Fault**: Read a 'niatelemetry.Fault' resource.
- - **READ.niatelemetry.HttpsAclContractDetails**: Read a 'niatelemetry.HttpsAclContractDetails' resource.
- - **READ.niatelemetry.HttpsAclContractFilterMap**: Read a 'niatelemetry.HttpsAclContractFilterMap' resource.
- - **READ.niatelemetry.HttpsAclEpgContractMap**: Read a 'niatelemetry.HttpsAclEpgContractMap' resource.
- - **READ.niatelemetry.HttpsAclEpgDetails**: Read a 'niatelemetry.HttpsAclEpgDetails' resource.
- - **READ.niatelemetry.HttpsAclFilterDetails**: Read a 'niatelemetry.HttpsAclFilterDetails' resource.
- - **READ.niatelemetry.Lc**: Read a 'niatelemetry.Lc' resource.
- - **READ.niatelemetry.MsoContractDetails**: Read a 'niatelemetry.MsoContractDetails' resource.
- - **READ.niatelemetry.MsoEpgDetails**: Read a 'niatelemetry.MsoEpgDetails' resource.
- - **READ.niatelemetry.MsoSchemaDetails**: Read a 'niatelemetry.MsoSchemaDetails' resource.
- - **READ.niatelemetry.MsoSiteDetails**: Read a 'niatelemetry.MsoSiteDetails' resource.
- - **READ.niatelemetry.MsoTenantDetails**: Read a 'niatelemetry.MsoTenantDetails' resource.
- - **READ.niatelemetry.NexusDashboardControllerDetails**: Read a 'niatelemetry.NexusDashboardControllerDetails' resource.
- - **READ.niatelemetry.NexusDashboardDetails**: Read a 'niatelemetry.NexusDashboardDetails' resource.
- - **READ.niatelemetry.NexusDashboardMemoryDetails**: Read a 'niatelemetry.NexusDashboardMemoryDetails' resource.
- - **READ.niatelemetry.NexusDashboards**: Read a 'niatelemetry.NexusDashboards' resource.
- - **READ.niatelemetry.NiaFeatureUsage**: Read a 'niatelemetry.NiaFeatureUsage' resource.
- - **READ.niatelemetry.NiaInventory**: Read a 'niatelemetry.NiaInventory' resource.
- - **READ.niatelemetry.NiaInventoryDcnm**: Read a 'niatelemetry.NiaInventoryDcnm' resource.
- - **READ.niatelemetry.NiaInventoryFabric**: Read a 'niatelemetry.NiaInventoryFabric' resource.
- - **READ.niatelemetry.NiaLicenseState**: Read a 'niatelemetry.NiaLicenseState' resource.
- - **READ.niatelemetry.PasswordStrengthCheck**: Read a 'niatelemetry.PasswordStrengthCheck' resource.
- - **READ.niatelemetry.SiteInventory**: Read a 'niatelemetry.SiteInventory' resource.
- - **READ.niatelemetry.SshVersionTwo**: Read a 'niatelemetry.SshVersionTwo' resource.
- - **READ.niatelemetry.SupervisorModuleDetails**: Read a 'niatelemetry.SupervisorModuleDetails' resource.
- - **READ.niatelemetry.SystemControllerDetails**: Read a 'niatelemetry.SystemControllerDetails' resource.
- - **READ.niatelemetry.Tenant**: Read a 'niatelemetry.Tenant' resource.
- - **CREATE.notification.AccountSubscription**: Create a 'notification.AccountSubscription' resource.
- - **DELETE.notification.AccountSubscription**: Delete a 'notification.AccountSubscription' resource.
- - **READ.notification.AccountSubscription**: Read a 'notification.AccountSubscription' resource.
- - **UPDATE.notification.AccountSubscription**: Update a 'notification.AccountSubscription' resource.
- - **CREATE.ntp.Policy**: Create a 'ntp.Policy' resource.
- - **DELETE.ntp.Policy**: Delete a 'ntp.Policy' resource.
- - **READ.ntp.Policy**: Read a 'ntp.Policy' resource.
- - **UPDATE.ntp.Policy**: Update a 'ntp.Policy' resource.
- - **CREATE.oprs.Deployment**: Create a 'oprs.Deployment' resource.
- - **DELETE.oprs.Deployment**: Delete a 'oprs.Deployment' resource.
- - **READ.oprs.Deployment**: Read a 'oprs.Deployment' resource.
- - **UPDATE.oprs.Deployment**: Update a 'oprs.Deployment' resource.
- - **CREATE.oprs.SyncTargetListMessage**: Create a 'oprs.SyncTargetListMessage' resource.
- - **DELETE.oprs.SyncTargetListMessage**: Delete a 'oprs.SyncTargetListMessage' resource.
- - **READ.oprs.SyncTargetListMessage**: Read a 'oprs.SyncTargetListMessage' resource.
- - **UPDATE.oprs.SyncTargetListMessage**: Update a 'oprs.SyncTargetListMessage' resource.
- - **CREATE.organization.Organization**: Create a 'organization.Organization' resource.
- - **DELETE.organization.Organization**: Delete a 'organization.Organization' resource.
- - **READ.organization.Organization**: Read a 'organization.Organization' resource.
- - **UPDATE.organization.Organization**: Update a 'organization.Organization' resource.
- - **CREATE.os.BulkInstallInfo**: Create a 'os.BulkInstallInfo' resource.
- - **READ.os.BulkInstallInfo**: Read a 'os.BulkInstallInfo' resource.
- - **READ.os.Catalog**: Read a 'os.Catalog' resource.
- - **CREATE.os.ConfigurationFile**: Create a 'os.ConfigurationFile' resource.
- - **DELETE.os.ConfigurationFile**: Delete a 'os.ConfigurationFile' resource.
- - **READ.os.ConfigurationFile**: Read a 'os.ConfigurationFile' resource.
- - **UPDATE.os.ConfigurationFile**: Update a 'os.ConfigurationFile' resource.
- - **READ.os.Distribution**: Read a 'os.Distribution' resource.
- - **CREATE.os.Install**: Create a 'os.Install' resource.
- - **READ.os.Install**: Read a 'os.Install' resource.
- - **CREATE.os.OsSupport**: Create a 'os.OsSupport' resource.
- - **READ.os.SupportedVersion**: Read a 'os.SupportedVersion' resource.
- - **CREATE.os.TemplateFile**: Create a 'os.TemplateFile' resource.
- - **CREATE.os.ValidInstallTarget**: Create a 'os.ValidInstallTarget' resource.
- - **READ.pci.CoprocessorCard**: Read a 'pci.CoprocessorCard' resource.
- - **READ.pci.Device**: Read a 'pci.Device' resource.
- - **UPDATE.pci.Device**: Update a 'pci.Device' resource.
- - **READ.pci.Link**: Read a 'pci.Link' resource.
- - **UPDATE.pci.Link**: Update a 'pci.Link' resource.
- - **READ.pci.Switch**: Read a 'pci.Switch' resource.
- - **UPDATE.pci.Switch**: Update a 'pci.Switch' resource.
- - **READ.port.Group**: Read a 'port.Group' resource.
- - **UPDATE.port.Group**: Update a 'port.Group' resource.
- - **READ.port.MacBinding**: Read a 'port.MacBinding' resource.
- - **UPDATE.port.MacBinding**: Update a 'port.MacBinding' resource.
- - **READ.port.SubGroup**: Read a 'port.SubGroup' resource.
- - **UPDATE.port.SubGroup**: Update a 'port.SubGroup' resource.
- - **READ.power.ControlState**: Read a 'power.ControlState' resource.
- - **CREATE.power.Policy**: Create a 'power.Policy' resource.
- - **DELETE.power.Policy**: Delete a 'power.Policy' resource.
- - **READ.power.Policy**: Read a 'power.Policy' resource.
- - **UPDATE.power.Policy**: Update a 'power.Policy' resource.
- - **READ.processor.Unit**: Read a 'processor.Unit' resource.
- - **UPDATE.processor.Unit**: Update a 'processor.Unit' resource.
- - **READ.recommendation.CapacityRunway**: Read a 'recommendation.CapacityRunway' resource.
- - **READ.recommendation.PhysicalItem**: Read a 'recommendation.PhysicalItem' resource.
- - **CREATE.recovery.BackupConfigPolicy**: Create a 'recovery.BackupConfigPolicy' resource.
- - **DELETE.recovery.BackupConfigPolicy**: Delete a 'recovery.BackupConfigPolicy' resource.
- - **READ.recovery.BackupConfigPolicy**: Read a 'recovery.BackupConfigPolicy' resource.
- - **UPDATE.recovery.BackupConfigPolicy**: Update a 'recovery.BackupConfigPolicy' resource.
- - **CREATE.recovery.BackupProfile**: Create a 'recovery.BackupProfile' resource.
- - **DELETE.recovery.BackupProfile**: Delete a 'recovery.BackupProfile' resource.
- - **READ.recovery.BackupProfile**: Read a 'recovery.BackupProfile' resource.
- - **UPDATE.recovery.BackupProfile**: Update a 'recovery.BackupProfile' resource.
- - **READ.recovery.ConfigResult**: Read a 'recovery.ConfigResult' resource.
- - **READ.recovery.ConfigResultEntry**: Read a 'recovery.ConfigResultEntry' resource.
- - **CREATE.recovery.OnDemandBackup**: Create a 'recovery.OnDemandBackup' resource.
- - **DELETE.recovery.OnDemandBackup**: Delete a 'recovery.OnDemandBackup' resource.
- - **READ.recovery.OnDemandBackup**: Read a 'recovery.OnDemandBackup' resource.
- - **UPDATE.recovery.OnDemandBackup**: Update a 'recovery.OnDemandBackup' resource.
- - **CREATE.recovery.Restore**: Create a 'recovery.Restore' resource.
- - **DELETE.recovery.Restore**: Delete a 'recovery.Restore' resource.
- - **READ.recovery.Restore**: Read a 'recovery.Restore' resource.
- - **CREATE.recovery.ScheduleConfigPolicy**: Create a 'recovery.ScheduleConfigPolicy' resource.
- - **DELETE.recovery.ScheduleConfigPolicy**: Delete a 'recovery.ScheduleConfigPolicy' resource.
- - **READ.recovery.ScheduleConfigPolicy**: Read a 'recovery.ScheduleConfigPolicy' resource.
- - **UPDATE.recovery.ScheduleConfigPolicy**: Update a 'recovery.ScheduleConfigPolicy' resource.
- - **CREATE.resource.Group**: Create a 'resource.Group' resource.
- - **DELETE.resource.Group**: Delete a 'resource.Group' resource.
- - **READ.resource.Group**: Read a 'resource.Group' resource.
- - **UPDATE.resource.Group**: Update a 'resource.Group' resource.
- - **READ.resource.GroupMember**: Read a 'resource.GroupMember' resource.
- - **READ.resource.LicenseResourceCount**: Read a 'resource.LicenseResourceCount' resource.
- - **READ.resource.Membership**: Read a 'resource.Membership' resource.
- - **READ.resource.MembershipHolder**: Read a 'resource.MembershipHolder' resource.
- - **CREATE.rproxy.ReverseProxy**: Create a 'rproxy.ReverseProxy' resource.
- - **CREATE.sdcard.Policy**: Create a 'sdcard.Policy' resource.
- - **DELETE.sdcard.Policy**: Delete a 'sdcard.Policy' resource.
- - **READ.sdcard.Policy**: Read a 'sdcard.Policy' resource.
- - **UPDATE.sdcard.Policy**: Update a 'sdcard.Policy' resource.
- - **CREATE.sdwan.Profile**: Create a 'sdwan.Profile' resource.
- - **DELETE.sdwan.Profile**: Delete a 'sdwan.Profile' resource.
- - **READ.sdwan.Profile**: Read a 'sdwan.Profile' resource.
- - **UPDATE.sdwan.Profile**: Update a 'sdwan.Profile' resource.
- - **CREATE.sdwan.RouterNode**: Create a 'sdwan.RouterNode' resource.
- - **DELETE.sdwan.RouterNode**: Delete a 'sdwan.RouterNode' resource.
- - **READ.sdwan.RouterNode**: Read a 'sdwan.RouterNode' resource.
- - **UPDATE.sdwan.RouterNode**: Update a 'sdwan.RouterNode' resource.
- - **CREATE.sdwan.RouterPolicy**: Create a 'sdwan.RouterPolicy' resource.
- - **DELETE.sdwan.RouterPolicy**: Delete a 'sdwan.RouterPolicy' resource.
- - **READ.sdwan.RouterPolicy**: Read a 'sdwan.RouterPolicy' resource.
- - **UPDATE.sdwan.RouterPolicy**: Update a 'sdwan.RouterPolicy' resource.
- - **CREATE.sdwan.VmanageAccountPolicy**: Create a 'sdwan.VmanageAccountPolicy' resource.
- - **DELETE.sdwan.VmanageAccountPolicy**: Delete a 'sdwan.VmanageAccountPolicy' resource.
- - **READ.sdwan.VmanageAccountPolicy**: Read a 'sdwan.VmanageAccountPolicy' resource.
- - **UPDATE.sdwan.VmanageAccountPolicy**: Update a 'sdwan.VmanageAccountPolicy' resource.
- - **READ.search.SearchItem**: Read a 'search.SearchItem' resource.
- - **READ.search.TagItem**: Read a 'search.TagItem' resource.
- - **READ.security.Unit**: Read a 'security.Unit' resource.
- - **UPDATE.security.Unit**: Update a 'security.Unit' resource.
- - **READ.server.ConfigChangeDetail**: Read a 'server.ConfigChangeDetail' resource.
- - **CREATE.server.ConfigImport**: Create a 'server.ConfigImport' resource.
- - **READ.server.ConfigImport**: Read a 'server.ConfigImport' resource.
- - **READ.server.ConfigResult**: Read a 'server.ConfigResult' resource.
- - **READ.server.ConfigResultEntry**: Read a 'server.ConfigResultEntry' resource.
- - **CREATE.server.Profile**: Create a 'server.Profile' resource.
- - **DELETE.server.Profile**: Delete a 'server.Profile' resource.
- - **READ.server.Profile**: Read a 'server.Profile' resource.
- - **UPDATE.server.Profile**: Update a 'server.Profile' resource.
- - **CREATE.server.ProfileTemplate**: Create a 'server.ProfileTemplate' resource.
- - **DELETE.server.ProfileTemplate**: Delete a 'server.ProfileTemplate' resource.
- - **READ.server.ProfileTemplate**: Read a 'server.ProfileTemplate' resource.
- - **UPDATE.server.ProfileTemplate**: Update a 'server.ProfileTemplate' resource.
- - **CREATE.smtp.Policy**: Create a 'smtp.Policy' resource.
- - **DELETE.smtp.Policy**: Delete a 'smtp.Policy' resource.
- - **READ.smtp.Policy**: Read a 'smtp.Policy' resource.
- - **UPDATE.smtp.Policy**: Update a 'smtp.Policy' resource.
- - **CREATE.snmp.Policy**: Create a 'snmp.Policy' resource.
- - **DELETE.snmp.Policy**: Delete a 'snmp.Policy' resource.
- - **READ.snmp.Policy**: Read a 'snmp.Policy' resource.
- - **UPDATE.snmp.Policy**: Update a 'snmp.Policy' resource.
- - **CREATE.software.ApplianceDistributable**: Create a 'software.ApplianceDistributable' resource.
- - **DELETE.software.ApplianceDistributable**: Delete a 'software.ApplianceDistributable' resource.
- - **READ.software.ApplianceDistributable**: Read a 'software.ApplianceDistributable' resource.
- - **UPDATE.software.ApplianceDistributable**: Update a 'software.ApplianceDistributable' resource.
- - **READ.software.DownloadHistory**: Read a 'software.DownloadHistory' resource.
- - **CREATE.software.HclMeta**: Create a 'software.HclMeta' resource.
- - **DELETE.software.HclMeta**: Delete a 'software.HclMeta' resource.
- - **READ.software.HclMeta**: Read a 'software.HclMeta' resource.
- - **UPDATE.software.HclMeta**: Update a 'software.HclMeta' resource.
- - **CREATE.software.HyperflexBundleDistributable**: Create a 'software.HyperflexBundleDistributable' resource.
- - **DELETE.software.HyperflexBundleDistributable**: Delete a 'software.HyperflexBundleDistributable' resource.
- - **READ.software.HyperflexBundleDistributable**: Read a 'software.HyperflexBundleDistributable' resource.
- - **UPDATE.software.HyperflexBundleDistributable**: Update a 'software.HyperflexBundleDistributable' resource.
- - **CREATE.software.HyperflexDistributable**: Create a 'software.HyperflexDistributable' resource.
- - **DELETE.software.HyperflexDistributable**: Delete a 'software.HyperflexDistributable' resource.
- - **READ.software.HyperflexDistributable**: Read a 'software.HyperflexDistributable' resource.
- - **UPDATE.software.HyperflexDistributable**: Update a 'software.HyperflexDistributable' resource.
- - **CREATE.software.ReleaseMeta**: Create a 'software.ReleaseMeta' resource.
- - **DELETE.software.ReleaseMeta**: Delete a 'software.ReleaseMeta' resource.
- - **READ.software.ReleaseMeta**: Read a 'software.ReleaseMeta' resource.
- - **UPDATE.software.ReleaseMeta**: Update a 'software.ReleaseMeta' resource.
- - **CREATE.software.SolutionDistributable**: Create a 'software.SolutionDistributable' resource.
- - **DELETE.software.SolutionDistributable**: Delete a 'software.SolutionDistributable' resource.
- - **READ.software.SolutionDistributable**: Read a 'software.SolutionDistributable' resource.
- - **UPDATE.software.SolutionDistributable**: Update a 'software.SolutionDistributable' resource.
- - **CREATE.software.UcsdBundleDistributable**: Create a 'software.UcsdBundleDistributable' resource.
- - **DELETE.software.UcsdBundleDistributable**: Delete a 'software.UcsdBundleDistributable' resource.
- - **READ.software.UcsdBundleDistributable**: Read a 'software.UcsdBundleDistributable' resource.
- - **UPDATE.software.UcsdBundleDistributable**: Update a 'software.UcsdBundleDistributable' resource.
- - **CREATE.software.UcsdDistributable**: Create a 'software.UcsdDistributable' resource.
- - **DELETE.software.UcsdDistributable**: Delete a 'software.UcsdDistributable' resource.
- - **READ.software.UcsdDistributable**: Read a 'software.UcsdDistributable' resource.
- - **UPDATE.software.UcsdDistributable**: Update a 'software.UcsdDistributable' resource.
- - **CREATE.softwarerepository.Authorization**: Create a 'softwarerepository.Authorization' resource.
- - **READ.softwarerepository.Authorization**: Read a 'softwarerepository.Authorization' resource.
- - **UPDATE.softwarerepository.Authorization**: Update a 'softwarerepository.Authorization' resource.
- - **READ.softwarerepository.CachedImage**: Read a 'softwarerepository.CachedImage' resource.
- - **READ.softwarerepository.Catalog**: Read a 'softwarerepository.Catalog' resource.
- - **CREATE.softwarerepository.CategoryMapper**: Create a 'softwarerepository.CategoryMapper' resource.
- - **DELETE.softwarerepository.CategoryMapper**: Delete a 'softwarerepository.CategoryMapper' resource.
- - **READ.softwarerepository.CategoryMapper**: Read a 'softwarerepository.CategoryMapper' resource.
- - **UPDATE.softwarerepository.CategoryMapper**: Update a 'softwarerepository.CategoryMapper' resource.
- - **CREATE.softwarerepository.CategoryMapperModel**: Create a 'softwarerepository.CategoryMapperModel' resource.
- - **DELETE.softwarerepository.CategoryMapperModel**: Delete a 'softwarerepository.CategoryMapperModel' resource.
- - **READ.softwarerepository.CategoryMapperModel**: Read a 'softwarerepository.CategoryMapperModel' resource.
- - **UPDATE.softwarerepository.CategoryMapperModel**: Update a 'softwarerepository.CategoryMapperModel' resource.
- - **CREATE.softwarerepository.CategorySupportConstraint**: Create a 'softwarerepository.CategorySupportConstraint' resource.
- - **DELETE.softwarerepository.CategorySupportConstraint**: Delete a 'softwarerepository.CategorySupportConstraint' resource.
- - **READ.softwarerepository.CategorySupportConstraint**: Read a 'softwarerepository.CategorySupportConstraint' resource.
- - **UPDATE.softwarerepository.CategorySupportConstraint**: Update a 'softwarerepository.CategorySupportConstraint' resource.
- - **READ.softwarerepository.DownloadSpec**: Read a 'softwarerepository.DownloadSpec' resource.
- - **CREATE.softwarerepository.OperatingSystemFile**: Create a 'softwarerepository.OperatingSystemFile' resource.
- - **DELETE.softwarerepository.OperatingSystemFile**: Delete a 'softwarerepository.OperatingSystemFile' resource.
- - **READ.softwarerepository.OperatingSystemFile**: Read a 'softwarerepository.OperatingSystemFile' resource.
- - **UPDATE.softwarerepository.OperatingSystemFile**: Update a 'softwarerepository.OperatingSystemFile' resource.
- - **CREATE.softwarerepository.Release**: Create a 'softwarerepository.Release' resource.
- - **DELETE.softwarerepository.Release**: Delete a 'softwarerepository.Release' resource.
- - **READ.softwarerepository.Release**: Read a 'softwarerepository.Release' resource.
- - **UPDATE.softwarerepository.Release**: Update a 'softwarerepository.Release' resource.
- - **CREATE.sol.Policy**: Create a 'sol.Policy' resource.
- - **DELETE.sol.Policy**: Delete a 'sol.Policy' resource.
- - **READ.sol.Policy**: Read a 'sol.Policy' resource.
- - **UPDATE.sol.Policy**: Update a 'sol.Policy' resource.
- - **CREATE.ssh.Policy**: Create a 'ssh.Policy' resource.
- - **DELETE.ssh.Policy**: Delete a 'ssh.Policy' resource.
- - **READ.ssh.Policy**: Read a 'ssh.Policy' resource.
- - **UPDATE.ssh.Policy**: Update a 'ssh.Policy' resource.
- - **READ.storage.Controller**: Read a 'storage.Controller' resource.
- - **UPDATE.storage.Controller**: Update a 'storage.Controller' resource.
- - **READ.storage.DiskGroup**: Read a 'storage.DiskGroup' resource.
- - **UPDATE.storage.DiskGroup**: Update a 'storage.DiskGroup' resource.
- - **READ.storage.DiskSlot**: Read a 'storage.DiskSlot' resource.
- - **CREATE.storage.DriveGroup**: Create a 'storage.DriveGroup' resource.
- - **DELETE.storage.DriveGroup**: Delete a 'storage.DriveGroup' resource.
- - **READ.storage.DriveGroup**: Read a 'storage.DriveGroup' resource.
- - **UPDATE.storage.DriveGroup**: Update a 'storage.DriveGroup' resource.
- - **READ.storage.Enclosure**: Read a 'storage.Enclosure' resource.
- - **UPDATE.storage.Enclosure**: Update a 'storage.Enclosure' resource.
- - **READ.storage.EnclosureDisk**: Read a 'storage.EnclosureDisk' resource.
- - **UPDATE.storage.EnclosureDisk**: Update a 'storage.EnclosureDisk' resource.
- - **READ.storage.EnclosureDiskSlotEp**: Read a 'storage.EnclosureDiskSlotEp' resource.
- - **UPDATE.storage.EnclosureDiskSlotEp**: Update a 'storage.EnclosureDiskSlotEp' resource.
- - **READ.storage.FlexFlashController**: Read a 'storage.FlexFlashController' resource.
- - **UPDATE.storage.FlexFlashController**: Update a 'storage.FlexFlashController' resource.
- - **READ.storage.FlexFlashControllerProps**: Read a 'storage.FlexFlashControllerProps' resource.
- - **UPDATE.storage.FlexFlashControllerProps**: Update a 'storage.FlexFlashControllerProps' resource.
- - **READ.storage.FlexFlashPhysicalDrive**: Read a 'storage.FlexFlashPhysicalDrive' resource.
- - **UPDATE.storage.FlexFlashPhysicalDrive**: Update a 'storage.FlexFlashPhysicalDrive' resource.
- - **READ.storage.FlexFlashVirtualDrive**: Read a 'storage.FlexFlashVirtualDrive' resource.
- - **UPDATE.storage.FlexFlashVirtualDrive**: Update a 'storage.FlexFlashVirtualDrive' resource.
- - **READ.storage.FlexUtilController**: Read a 'storage.FlexUtilController' resource.
- - **UPDATE.storage.FlexUtilController**: Update a 'storage.FlexUtilController' resource.
- - **READ.storage.FlexUtilPhysicalDrive**: Read a 'storage.FlexUtilPhysicalDrive' resource.
- - **UPDATE.storage.FlexUtilPhysicalDrive**: Update a 'storage.FlexUtilPhysicalDrive' resource.
- - **READ.storage.FlexUtilVirtualDrive**: Read a 'storage.FlexUtilVirtualDrive' resource.
- - **UPDATE.storage.FlexUtilVirtualDrive**: Update a 'storage.FlexUtilVirtualDrive' resource.
- - **READ.storage.HitachiArray**: Read a 'storage.HitachiArray' resource.
- - **UPDATE.storage.HitachiArray**: Update a 'storage.HitachiArray' resource.
- - **READ.storage.HitachiController**: Read a 'storage.HitachiController' resource.
- - **READ.storage.HitachiDisk**: Read a 'storage.HitachiDisk' resource.
- - **READ.storage.HitachiHost**: Read a 'storage.HitachiHost' resource.
- - **READ.storage.HitachiHostLun**: Read a 'storage.HitachiHostLun' resource.
- - **READ.storage.HitachiParityGroup**: Read a 'storage.HitachiParityGroup' resource.
- - **READ.storage.HitachiPool**: Read a 'storage.HitachiPool' resource.
- - **READ.storage.HitachiPort**: Read a 'storage.HitachiPort' resource.
- - **READ.storage.HitachiVolume**: Read a 'storage.HitachiVolume' resource.
- - **READ.storage.HyperFlexStorageContainer**: Read a 'storage.HyperFlexStorageContainer' resource.
- - **READ.storage.HyperFlexVolume**: Read a 'storage.HyperFlexVolume' resource.
- - **READ.storage.Item**: Read a 'storage.Item' resource.
- - **READ.storage.NetAppAggregate**: Read a 'storage.NetAppAggregate' resource.
- - **READ.storage.NetAppBaseDisk**: Read a 'storage.NetAppBaseDisk' resource.
- - **READ.storage.NetAppCluster**: Read a 'storage.NetAppCluster' resource.
- - **UPDATE.storage.NetAppCluster**: Update a 'storage.NetAppCluster' resource.
- - **READ.storage.NetAppEthernetPort**: Read a 'storage.NetAppEthernetPort' resource.
- - **READ.storage.NetAppExportPolicy**: Read a 'storage.NetAppExportPolicy' resource.
- - **READ.storage.NetAppFcInterface**: Read a 'storage.NetAppFcInterface' resource.
- - **READ.storage.NetAppFcPort**: Read a 'storage.NetAppFcPort' resource.
- - **READ.storage.NetAppInitiatorGroup**: Read a 'storage.NetAppInitiatorGroup' resource.
- - **READ.storage.NetAppIpInterface**: Read a 'storage.NetAppIpInterface' resource.
- - **READ.storage.NetAppLicense**: Read a 'storage.NetAppLicense' resource.
- - **READ.storage.NetAppLun**: Read a 'storage.NetAppLun' resource.
- - **READ.storage.NetAppLunMap**: Read a 'storage.NetAppLunMap' resource.
- - **READ.storage.NetAppNode**: Read a 'storage.NetAppNode' resource.
- - **READ.storage.NetAppStorageVm**: Read a 'storage.NetAppStorageVm' resource.
- - **READ.storage.NetAppVolume**: Read a 'storage.NetAppVolume' resource.
- - **READ.storage.NetAppVolumeSnapshot**: Read a 'storage.NetAppVolumeSnapshot' resource.
- - **READ.storage.PhysicalDisk**: Read a 'storage.PhysicalDisk' resource.
- - **UPDATE.storage.PhysicalDisk**: Update a 'storage.PhysicalDisk' resource.
- - **READ.storage.PhysicalDiskExtension**: Read a 'storage.PhysicalDiskExtension' resource.
- - **UPDATE.storage.PhysicalDiskExtension**: Update a 'storage.PhysicalDiskExtension' resource.
- - **READ.storage.PhysicalDiskUsage**: Read a 'storage.PhysicalDiskUsage' resource.
- - **UPDATE.storage.PhysicalDiskUsage**: Update a 'storage.PhysicalDiskUsage' resource.
- - **READ.storage.PureArray**: Read a 'storage.PureArray' resource.
- - **UPDATE.storage.PureArray**: Update a 'storage.PureArray' resource.
- - **READ.storage.PureController**: Read a 'storage.PureController' resource.
- - **READ.storage.PureDisk**: Read a 'storage.PureDisk' resource.
- - **READ.storage.PureHost**: Read a 'storage.PureHost' resource.
- - **READ.storage.PureHostGroup**: Read a 'storage.PureHostGroup' resource.
- - **READ.storage.PureHostLun**: Read a 'storage.PureHostLun' resource.
- - **READ.storage.PurePort**: Read a 'storage.PurePort' resource.
- - **READ.storage.PureProtectionGroup**: Read a 'storage.PureProtectionGroup' resource.
- - **READ.storage.PureProtectionGroupSnapshot**: Read a 'storage.PureProtectionGroupSnapshot' resource.
- - **READ.storage.PureReplicationSchedule**: Read a 'storage.PureReplicationSchedule' resource.
- - **READ.storage.PureSnapshotSchedule**: Read a 'storage.PureSnapshotSchedule' resource.
- - **READ.storage.PureVolume**: Read a 'storage.PureVolume' resource.
- - **READ.storage.PureVolumeSnapshot**: Read a 'storage.PureVolumeSnapshot' resource.
- - **READ.storage.SasExpander**: Read a 'storage.SasExpander' resource.
- - **UPDATE.storage.SasExpander**: Update a 'storage.SasExpander' resource.
- - **READ.storage.SasPort**: Read a 'storage.SasPort' resource.
- - **UPDATE.storage.SasPort**: Update a 'storage.SasPort' resource.
- - **READ.storage.Span**: Read a 'storage.Span' resource.
- - **UPDATE.storage.Span**: Update a 'storage.Span' resource.
- - **CREATE.storage.StoragePolicy**: Create a 'storage.StoragePolicy' resource.
- - **DELETE.storage.StoragePolicy**: Delete a 'storage.StoragePolicy' resource.
- - **READ.storage.StoragePolicy**: Read a 'storage.StoragePolicy' resource.
- - **UPDATE.storage.StoragePolicy**: Update a 'storage.StoragePolicy' resource.
- - **READ.storage.VdMemberEp**: Read a 'storage.VdMemberEp' resource.
- - **UPDATE.storage.VdMemberEp**: Update a 'storage.VdMemberEp' resource.
- - **READ.storage.VirtualDrive**: Read a 'storage.VirtualDrive' resource.
- - **UPDATE.storage.VirtualDrive**: Update a 'storage.VirtualDrive' resource.
- - **READ.storage.VirtualDriveContainer**: Read a 'storage.VirtualDriveContainer' resource.
- - **UPDATE.storage.VirtualDriveContainer**: Update a 'storage.VirtualDriveContainer' resource.
- - **READ.storage.VirtualDriveExtension**: Read a 'storage.VirtualDriveExtension' resource.
- - **UPDATE.storage.VirtualDriveExtension**: Update a 'storage.VirtualDriveExtension' resource.
- - **READ.storage.VirtualDriveIdentity**: Read a 'storage.VirtualDriveIdentity' resource.
- - **CREATE.syslog.Policy**: Create a 'syslog.Policy' resource.
- - **DELETE.syslog.Policy**: Delete a 'syslog.Policy' resource.
- - **READ.syslog.Policy**: Read a 'syslog.Policy' resource.
- - **UPDATE.syslog.Policy**: Update a 'syslog.Policy' resource.
- - **CREATE.tam.AdvisoryCount**: Create a 'tam.AdvisoryCount' resource.
- - **DELETE.tam.AdvisoryCount**: Delete a 'tam.AdvisoryCount' resource.
- - **READ.tam.AdvisoryCount**: Read a 'tam.AdvisoryCount' resource.
- - **UPDATE.tam.AdvisoryCount**: Update a 'tam.AdvisoryCount' resource.
- - **CREATE.tam.AdvisoryDefinition**: Create a 'tam.AdvisoryDefinition' resource.
- - **DELETE.tam.AdvisoryDefinition**: Delete a 'tam.AdvisoryDefinition' resource.
- - **READ.tam.AdvisoryDefinition**: Read a 'tam.AdvisoryDefinition' resource.
- - **UPDATE.tam.AdvisoryDefinition**: Update a 'tam.AdvisoryDefinition' resource.
- - **CREATE.tam.AdvisoryInfo**: Create a 'tam.AdvisoryInfo' resource.
- - **DELETE.tam.AdvisoryInfo**: Delete a 'tam.AdvisoryInfo' resource.
- - **READ.tam.AdvisoryInfo**: Read a 'tam.AdvisoryInfo' resource.
- - **UPDATE.tam.AdvisoryInfo**: Update a 'tam.AdvisoryInfo' resource.
- - **CREATE.tam.AdvisoryInstance**: Create a 'tam.AdvisoryInstance' resource.
- - **DELETE.tam.AdvisoryInstance**: Delete a 'tam.AdvisoryInstance' resource.
- - **READ.tam.AdvisoryInstance**: Read a 'tam.AdvisoryInstance' resource.
- - **UPDATE.tam.AdvisoryInstance**: Update a 'tam.AdvisoryInstance' resource.
- - **CREATE.tam.SecurityAdvisory**: Create a 'tam.SecurityAdvisory' resource.
- - **DELETE.tam.SecurityAdvisory**: Delete a 'tam.SecurityAdvisory' resource.
- - **READ.tam.SecurityAdvisory**: Read a 'tam.SecurityAdvisory' resource.
- - **UPDATE.tam.SecurityAdvisory**: Update a 'tam.SecurityAdvisory' resource.
- - **CREATE.task.HitachiScopedInventory**: Create a 'task.HitachiScopedInventory' resource.
- - **CREATE.task.HxapScopedInventory**: Create a 'task.HxapScopedInventory' resource.
- - **CREATE.task.NetAppScopedInventory**: Create a 'task.NetAppScopedInventory' resource.
- - **CREATE.task.PublicCloudScopedInventory**: Create a 'task.PublicCloudScopedInventory' resource.
- - **CREATE.task.PureScopedInventory**: Create a 'task.PureScopedInventory' resource.
- - **CREATE.techsupportmanagement.CollectionControlPolicy**: Create a 'techsupportmanagement.CollectionControlPolicy' resource.
- - **DELETE.techsupportmanagement.CollectionControlPolicy**: Delete a 'techsupportmanagement.CollectionControlPolicy' resource.
- - **READ.techsupportmanagement.CollectionControlPolicy**: Read a 'techsupportmanagement.CollectionControlPolicy' resource.
- - **UPDATE.techsupportmanagement.CollectionControlPolicy**: Update a 'techsupportmanagement.CollectionControlPolicy' resource.
- - **READ.techsupportmanagement.Download**: Read a 'techsupportmanagement.Download' resource.
- - **CREATE.techsupportmanagement.TechSupportBundle**: Create a 'techsupportmanagement.TechSupportBundle' resource.
- - **DELETE.techsupportmanagement.TechSupportBundle**: Delete a 'techsupportmanagement.TechSupportBundle' resource.
- - **READ.techsupportmanagement.TechSupportBundle**: Read a 'techsupportmanagement.TechSupportBundle' resource.
- - **READ.techsupportmanagement.TechSupportStatus**: Read a 'techsupportmanagement.TechSupportStatus' resource.
- - **READ.terminal.AuditLog**: Read a 'terminal.AuditLog' resource.
- - **CREATE.thermal.Policy**: Create a 'thermal.Policy' resource.
- - **DELETE.thermal.Policy**: Delete a 'thermal.Policy' resource.
- - **READ.thermal.Policy**: Read a 'thermal.Policy' resource.
- - **UPDATE.thermal.Policy**: Update a 'thermal.Policy' resource.
- - **READ.top.System**: Read a 'top.System' resource.
- - **UPDATE.top.System**: Update a 'top.System' resource.
- - **DELETE.ucsd.BackupInfo**: Delete a 'ucsd.BackupInfo' resource.
- - **READ.ucsd.BackupInfo**: Read a 'ucsd.BackupInfo' resource.
- - **READ.uuidpool.Block**: Read a 'uuidpool.Block' resource.
- - **CREATE.uuidpool.Pool**: Create a 'uuidpool.Pool' resource.
- - **DELETE.uuidpool.Pool**: Delete a 'uuidpool.Pool' resource.
- - **READ.uuidpool.Pool**: Read a 'uuidpool.Pool' resource.
- - **UPDATE.uuidpool.Pool**: Update a 'uuidpool.Pool' resource.
- - **READ.uuidpool.PoolMember**: Read a 'uuidpool.PoolMember' resource.
- - **READ.uuidpool.Universe**: Read a 'uuidpool.Universe' resource.
- - **DELETE.uuidpool.UuidLease**: Delete a 'uuidpool.UuidLease' resource.
- - **READ.uuidpool.UuidLease**: Read a 'uuidpool.UuidLease' resource.
- - **READ.virtualization.Host**: Read a 'virtualization.Host' resource.
- - **UPDATE.virtualization.Host**: Update a 'virtualization.Host' resource.
- - **CREATE.virtualization.VirtualDisk**: Create a 'virtualization.VirtualDisk' resource.
- - **DELETE.virtualization.VirtualDisk**: Delete a 'virtualization.VirtualDisk' resource.
- - **READ.virtualization.VirtualDisk**: Read a 'virtualization.VirtualDisk' resource.
- - **UPDATE.virtualization.VirtualDisk**: Update a 'virtualization.VirtualDisk' resource.
- - **CREATE.virtualization.VirtualMachine**: Create a 'virtualization.VirtualMachine' resource.
- - **DELETE.virtualization.VirtualMachine**: Delete a 'virtualization.VirtualMachine' resource.
- - **READ.virtualization.VirtualMachine**: Read a 'virtualization.VirtualMachine' resource.
- - **UPDATE.virtualization.VirtualMachine**: Update a 'virtualization.VirtualMachine' resource.
- - **READ.virtualization.VmwareCluster**: Read a 'virtualization.VmwareCluster' resource.
- - **UPDATE.virtualization.VmwareCluster**: Update a 'virtualization.VmwareCluster' resource.
- - **READ.virtualization.VmwareDatacenter**: Read a 'virtualization.VmwareDatacenter' resource.
- - **UPDATE.virtualization.VmwareDatacenter**: Update a 'virtualization.VmwareDatacenter' resource.
- - **READ.virtualization.VmwareDatastore**: Read a 'virtualization.VmwareDatastore' resource.
- - **UPDATE.virtualization.VmwareDatastore**: Update a 'virtualization.VmwareDatastore' resource.
- - **READ.virtualization.VmwareDatastoreCluster**: Read a 'virtualization.VmwareDatastoreCluster' resource.
- - **UPDATE.virtualization.VmwareDatastoreCluster**: Update a 'virtualization.VmwareDatastoreCluster' resource.
- - **READ.virtualization.VmwareDistributedNetwork**: Read a 'virtualization.VmwareDistributedNetwork' resource.
- - **UPDATE.virtualization.VmwareDistributedNetwork**: Update a 'virtualization.VmwareDistributedNetwork' resource.
- - **READ.virtualization.VmwareDistributedSwitch**: Read a 'virtualization.VmwareDistributedSwitch' resource.
- - **UPDATE.virtualization.VmwareDistributedSwitch**: Update a 'virtualization.VmwareDistributedSwitch' resource.
- - **READ.virtualization.VmwareFolder**: Read a 'virtualization.VmwareFolder' resource.
- - **UPDATE.virtualization.VmwareFolder**: Update a 'virtualization.VmwareFolder' resource.
- - **READ.virtualization.VmwareHost**: Read a 'virtualization.VmwareHost' resource.
- - **UPDATE.virtualization.VmwareHost**: Update a 'virtualization.VmwareHost' resource.
- - **READ.virtualization.VmwareKernelNetwork**: Read a 'virtualization.VmwareKernelNetwork' resource.
- - **UPDATE.virtualization.VmwareKernelNetwork**: Update a 'virtualization.VmwareKernelNetwork' resource.
- - **READ.virtualization.VmwareNetwork**: Read a 'virtualization.VmwareNetwork' resource.
- - **UPDATE.virtualization.VmwareNetwork**: Update a 'virtualization.VmwareNetwork' resource.
- - **READ.virtualization.VmwarePhysicalNetworkInterface**: Read a 'virtualization.VmwarePhysicalNetworkInterface' resource.
- - **UPDATE.virtualization.VmwarePhysicalNetworkInterface**: Update a 'virtualization.VmwarePhysicalNetworkInterface' resource.
- - **READ.virtualization.VmwareUplinkPort**: Read a 'virtualization.VmwareUplinkPort' resource.
- - **UPDATE.virtualization.VmwareUplinkPort**: Update a 'virtualization.VmwareUplinkPort' resource.
- - **READ.virtualization.VmwareVcenter**: Read a 'virtualization.VmwareVcenter' resource.
- - **READ.virtualization.VmwareVirtualDisk**: Read a 'virtualization.VmwareVirtualDisk' resource.
- - **UPDATE.virtualization.VmwareVirtualDisk**: Update a 'virtualization.VmwareVirtualDisk' resource.
- - **READ.virtualization.VmwareVirtualMachine**: Read a 'virtualization.VmwareVirtualMachine' resource.
- - **UPDATE.virtualization.VmwareVirtualMachine**: Update a 'virtualization.VmwareVirtualMachine' resource.
- - **READ.virtualization.VmwareVirtualNetworkInterface**: Read a 'virtualization.VmwareVirtualNetworkInterface' resource.
- - **UPDATE.virtualization.VmwareVirtualNetworkInterface**: Update a 'virtualization.VmwareVirtualNetworkInterface' resource.
- - **READ.virtualization.VmwareVirtualSwitch**: Read a 'virtualization.VmwareVirtualSwitch' resource.
- - **UPDATE.virtualization.VmwareVirtualSwitch**: Update a 'virtualization.VmwareVirtualSwitch' resource.
- - **CREATE.vmedia.Policy**: Create a 'vmedia.Policy' resource.
- - **DELETE.vmedia.Policy**: Delete a 'vmedia.Policy' resource.
- - **READ.vmedia.Policy**: Read a 'vmedia.Policy' resource.
- - **UPDATE.vmedia.Policy**: Update a 'vmedia.Policy' resource.
- - **CREATE.vmrc.Console**: Create a 'vmrc.Console' resource.
- - **READ.vmrc.Console**: Read a 'vmrc.Console' resource.
- - **UPDATE.vmrc.Console**: Update a 'vmrc.Console' resource.
- - **CREATE.vnic.EthAdapterPolicy**: Create a 'vnic.EthAdapterPolicy' resource.
- - **DELETE.vnic.EthAdapterPolicy**: Delete a 'vnic.EthAdapterPolicy' resource.
- - **READ.vnic.EthAdapterPolicy**: Read a 'vnic.EthAdapterPolicy' resource.
- - **UPDATE.vnic.EthAdapterPolicy**: Update a 'vnic.EthAdapterPolicy' resource.
- - **CREATE.vnic.EthIf**: Create a 'vnic.EthIf' resource.
- - **DELETE.vnic.EthIf**: Delete a 'vnic.EthIf' resource.
- - **READ.vnic.EthIf**: Read a 'vnic.EthIf' resource.
- - **UPDATE.vnic.EthIf**: Update a 'vnic.EthIf' resource.
- - **CREATE.vnic.EthNetworkPolicy**: Create a 'vnic.EthNetworkPolicy' resource.
- - **DELETE.vnic.EthNetworkPolicy**: Delete a 'vnic.EthNetworkPolicy' resource.
- - **READ.vnic.EthNetworkPolicy**: Read a 'vnic.EthNetworkPolicy' resource.
- - **UPDATE.vnic.EthNetworkPolicy**: Update a 'vnic.EthNetworkPolicy' resource.
- - **CREATE.vnic.EthQosPolicy**: Create a 'vnic.EthQosPolicy' resource.
- - **DELETE.vnic.EthQosPolicy**: Delete a 'vnic.EthQosPolicy' resource.
- - **READ.vnic.EthQosPolicy**: Read a 'vnic.EthQosPolicy' resource.
- - **UPDATE.vnic.EthQosPolicy**: Update a 'vnic.EthQosPolicy' resource.
- - **CREATE.vnic.FcAdapterPolicy**: Create a 'vnic.FcAdapterPolicy' resource.
- - **DELETE.vnic.FcAdapterPolicy**: Delete a 'vnic.FcAdapterPolicy' resource.
- - **READ.vnic.FcAdapterPolicy**: Read a 'vnic.FcAdapterPolicy' resource.
- - **UPDATE.vnic.FcAdapterPolicy**: Update a 'vnic.FcAdapterPolicy' resource.
- - **CREATE.vnic.FcIf**: Create a 'vnic.FcIf' resource.
- - **DELETE.vnic.FcIf**: Delete a 'vnic.FcIf' resource.
- - **READ.vnic.FcIf**: Read a 'vnic.FcIf' resource.
- - **UPDATE.vnic.FcIf**: Update a 'vnic.FcIf' resource.
- - **CREATE.vnic.FcNetworkPolicy**: Create a 'vnic.FcNetworkPolicy' resource.
- - **DELETE.vnic.FcNetworkPolicy**: Delete a 'vnic.FcNetworkPolicy' resource.
- - **READ.vnic.FcNetworkPolicy**: Read a 'vnic.FcNetworkPolicy' resource.
- - **UPDATE.vnic.FcNetworkPolicy**: Update a 'vnic.FcNetworkPolicy' resource.
- - **CREATE.vnic.FcQosPolicy**: Create a 'vnic.FcQosPolicy' resource.
- - **DELETE.vnic.FcQosPolicy**: Delete a 'vnic.FcQosPolicy' resource.
- - **READ.vnic.FcQosPolicy**: Read a 'vnic.FcQosPolicy' resource.
- - **UPDATE.vnic.FcQosPolicy**: Update a 'vnic.FcQosPolicy' resource.
- - **CREATE.vnic.IscsiAdapterPolicy**: Create a 'vnic.IscsiAdapterPolicy' resource.
- - **DELETE.vnic.IscsiAdapterPolicy**: Delete a 'vnic.IscsiAdapterPolicy' resource.
- - **READ.vnic.IscsiAdapterPolicy**: Read a 'vnic.IscsiAdapterPolicy' resource.
- - **UPDATE.vnic.IscsiAdapterPolicy**: Update a 'vnic.IscsiAdapterPolicy' resource.
- - **CREATE.vnic.IscsiBootPolicy**: Create a 'vnic.IscsiBootPolicy' resource.
- - **DELETE.vnic.IscsiBootPolicy**: Delete a 'vnic.IscsiBootPolicy' resource.
- - **READ.vnic.IscsiBootPolicy**: Read a 'vnic.IscsiBootPolicy' resource.
- - **UPDATE.vnic.IscsiBootPolicy**: Update a 'vnic.IscsiBootPolicy' resource.
- - **CREATE.vnic.IscsiStaticTargetPolicy**: Create a 'vnic.IscsiStaticTargetPolicy' resource.
- - **DELETE.vnic.IscsiStaticTargetPolicy**: Delete a 'vnic.IscsiStaticTargetPolicy' resource.
- - **READ.vnic.IscsiStaticTargetPolicy**: Read a 'vnic.IscsiStaticTargetPolicy' resource.
- - **UPDATE.vnic.IscsiStaticTargetPolicy**: Update a 'vnic.IscsiStaticTargetPolicy' resource.
- - **CREATE.vnic.LanConnectivityPolicy**: Create a 'vnic.LanConnectivityPolicy' resource.
- - **DELETE.vnic.LanConnectivityPolicy**: Delete a 'vnic.LanConnectivityPolicy' resource.
- - **READ.vnic.LanConnectivityPolicy**: Read a 'vnic.LanConnectivityPolicy' resource.
- - **UPDATE.vnic.LanConnectivityPolicy**: Update a 'vnic.LanConnectivityPolicy' resource.
- - **READ.vnic.LcpStatus**: Read a 'vnic.LcpStatus' resource.
- - **CREATE.vnic.SanConnectivityPolicy**: Create a 'vnic.SanConnectivityPolicy' resource.
- - **DELETE.vnic.SanConnectivityPolicy**: Delete a 'vnic.SanConnectivityPolicy' resource.
- - **READ.vnic.SanConnectivityPolicy**: Read a 'vnic.SanConnectivityPolicy' resource.
- - **UPDATE.vnic.SanConnectivityPolicy**: Update a 'vnic.SanConnectivityPolicy' resource.
- - **READ.vnic.ScpStatus**: Read a 'vnic.ScpStatus' resource.
- - **CREATE.vrf.Vrf**: Create a 'vrf.Vrf' resource.
- - **DELETE.vrf.Vrf**: Delete a 'vrf.Vrf' resource.
- - **READ.vrf.Vrf**: Read a 'vrf.Vrf' resource.
- - **UPDATE.vrf.Vrf**: Update a 'vrf.Vrf' resource.
- - **CREATE.workflow.BatchApiExecutor**: Create a 'workflow.BatchApiExecutor' resource.
- - **DELETE.workflow.BatchApiExecutor**: Delete a 'workflow.BatchApiExecutor' resource.
- - **READ.workflow.BatchApiExecutor**: Read a 'workflow.BatchApiExecutor' resource.
- - **UPDATE.workflow.BatchApiExecutor**: Update a 'workflow.BatchApiExecutor' resource.
- - **READ.workflow.BuildTaskMeta**: Read a 'workflow.BuildTaskMeta' resource.
- - **READ.workflow.BuildTaskMetaOwner**: Read a 'workflow.BuildTaskMetaOwner' resource.
- - **READ.workflow.Catalog**: Read a 'workflow.Catalog' resource.
- - **CREATE.workflow.CustomDataTypeDefinition**: Create a 'workflow.CustomDataTypeDefinition' resource.
- - **DELETE.workflow.CustomDataTypeDefinition**: Delete a 'workflow.CustomDataTypeDefinition' resource.
- - **READ.workflow.CustomDataTypeDefinition**: Read a 'workflow.CustomDataTypeDefinition' resource.
- - **UPDATE.workflow.CustomDataTypeDefinition**: Update a 'workflow.CustomDataTypeDefinition' resource.
- - **CREATE.workflow.ErrorResponseHandler**: Create a 'workflow.ErrorResponseHandler' resource.
- - **DELETE.workflow.ErrorResponseHandler**: Delete a 'workflow.ErrorResponseHandler' resource.
- - **READ.workflow.ErrorResponseHandler**: Read a 'workflow.ErrorResponseHandler' resource.
- - **UPDATE.workflow.ErrorResponseHandler**: Update a 'workflow.ErrorResponseHandler' resource.
- - **READ.workflow.PendingDynamicWorkflowInfo**: Read a 'workflow.PendingDynamicWorkflowInfo' resource.
- - **CREATE.workflow.RollbackWorkflow**: Create a 'workflow.RollbackWorkflow' resource.
- - **DELETE.workflow.RollbackWorkflow**: Delete a 'workflow.RollbackWorkflow' resource.
- - **READ.workflow.RollbackWorkflow**: Read a 'workflow.RollbackWorkflow' resource.
- - **UPDATE.workflow.RollbackWorkflow**: Update a 'workflow.RollbackWorkflow' resource.
- - **READ.workflow.TaskDebugLog**: Read a 'workflow.TaskDebugLog' resource.
- - **CREATE.workflow.TaskDefinition**: Create a 'workflow.TaskDefinition' resource.
- - **DELETE.workflow.TaskDefinition**: Delete a 'workflow.TaskDefinition' resource.
- - **READ.workflow.TaskDefinition**: Read a 'workflow.TaskDefinition' resource.
- - **UPDATE.workflow.TaskDefinition**: Update a 'workflow.TaskDefinition' resource.
- - **READ.workflow.TaskInfo**: Read a 'workflow.TaskInfo' resource.
- - **UPDATE.workflow.TaskInfo**: Update a 'workflow.TaskInfo' resource.
- - **READ.workflow.TaskMetadata**: Read a 'workflow.TaskMetadata' resource.
- - **CREATE.workflow.TemplateEvaluation**: Create a 'workflow.TemplateEvaluation' resource.
- - **READ.workflow.TemplateFunctionMeta**: Read a 'workflow.TemplateFunctionMeta' resource.
- - **CREATE.workflow.WorkflowDefinition**: Create a 'workflow.WorkflowDefinition' resource.
- - **DELETE.workflow.WorkflowDefinition**: Delete a 'workflow.WorkflowDefinition' resource.
- - **READ.workflow.WorkflowDefinition**: Read a 'workflow.WorkflowDefinition' resource.
- - **UPDATE.workflow.WorkflowDefinition**: Update a 'workflow.WorkflowDefinition' resource.
- - **CREATE.workflow.WorkflowInfo**: Create a 'workflow.WorkflowInfo' resource.
- - **DELETE.workflow.WorkflowInfo**: Delete a 'workflow.WorkflowInfo' resource.
- - **READ.workflow.WorkflowInfo**: Read a 'workflow.WorkflowInfo' resource.
- - **UPDATE.workflow.WorkflowInfo**: Update a 'workflow.WorkflowInfo' resource.
- - **READ.workflow.WorkflowMeta**: Read a 'workflow.WorkflowMeta' resource.
- - **READ.workflow.WorkflowMetadata**: Read a 'workflow.WorkflowMetadata' resource.
-
-
-## oAuth2
-
-- **Type**: OAuth
-- **Flow**: accessCode
-- **Authorization URL**: /iam/app-authorize
-- **Scopes**:
- - **PERMISSION.Account Administrator**: As an Account administrator, you have complete access to all services and resources in Intersight. You can perform all administrative and management tasks, including claim and manage devices, create and deploy Server and HyperFlex Cluster profiles, upgrade firmware, perform server actions, cross launch devices, add and manage users and groups, configure Identity providers and more.
- - **PERMISSION.Audit Log Viewer**: As an Audit Log Viewer, you can view audit logs.
- - **PERMISSION.Device Administrator**: As a Device Administrator, you can claim and unclaim a device in Intersight, view the device details, license status, a list of all the claimed devices, and generate API keys. You cannot perform any other management or administrative task in this role.
- - **PERMISSION.Device Technician**: As a Device Technician you can claim a device, view the device details, license status, a list of the claimed devices, and generate API keys. You cannot perform any other management or administrative task in this role.
- - **PERMISSION.External Syslog Administrator**: As an External Syslog Administrator, you can configure an external syslog server on an on-prem appliance.
- - **PERMISSION.HyperFlex Cluster Administrator**: As a HyperFlex Cluster Administrator, you can create, edit, deploy, and manage HyperFlex Clusters, view all the cluster dashboard widgets, view cluster details, create HyperFlex policies and profiles, and launch HyperFlex Connect.This role does not include the ability to claim a device. You must have a Device Technician, Device Administrator, or an Account Administrator role to claim a device.
- - **PERMISSION.Kubernetes Administrator**: As a Kubernetes Administrator, you can create, edit, deploy, and manage Kubernetes Clusters. You can also view all the cluster dashboard widgets, and view cluster details. In addition, you also have privileges to view and manage storage targets associated with the Kubernetes clusters. The capability to view and execute workflows against the Kubernetes clusters is also granted. It also allows the user to run workflows to manage VMs on hypervisor endpoints, and manage connected storage. The ability to create and view IP pools is also allowed. This role does not include the ability to claim a target. You must have a Device Technician, Device Administrator, or an Account Administrator role to claim a target.
- - **PERMISSION.Kubernetes Operator**: As a Kubernetes Operator, you can view Kubernetes Clusters. You can also view all the cluster dashboard widgets, and view cluster details. In addition, you also have privileges to view storage targets associated with the Kubernetes clusters. The capability to view workflows is also granted. It also allows the user to view VMs on hypervisor endpoints. This role also provides the capability to view IP pools. This role does not include the ability to claim a target. You must have a Device Technician, Device Administrator, or an Account Administrator role to claim a target.
- - **PERMISSION.Read-Only**: As a Read-Only user, you can view the dashboard, table views of the managed devices, change user preferences, and generate API keys. You cannot claim a device, add or remove a user, configure Identity providers or perform any server actions.
- - **PERMISSION.Server Administrator**: As a Server Administrator, you can view and manage UCS Servers and Fabric Interconnects, view all the server and Fabric Interconnect dashboard widgets, perform server actions, view server details, launch management interfaces and the CLI, create and deploy server policies and profiles, and manage API keys. This role does not include the ability to claim a device. You must have a Device Technician, Device Administrator, or an Account Administrator role to claim a device.
- - **PERMISSION.Storage Administrator**: As a Storage Administrator, a user can view and manage Storage devices, view and execute workflows and view all the storage dashboard widgets. This privilege does not include the ability to claim a device. You must have a Device Technician, Device Administrator, or an Account Administrator role to claim a device.
- - **PERMISSION.UCS Domain Administrator**: As a UCS Domain Administrator, you can view and manage Switch Profiles and Network Configuration Policies, view Fabric Interconnect dashboard widgets, perform actions on Switch, launch management interfaces and the CLI, create and deploy switch policies and profiles, and manage API keys. This role does not include the ability to claim a device. You must have a Device Technician, Device Administrator, or an Account Administrator role to claim a device.
- - **PERMISSION.User Access Administrator**: As a User Access Administrator, you can add and manage Users and Groups in Intersight, view account details and audit logs, manage the IdPs, roles, sessions and API keys for non Account Administrator users. However, you cannot claim a device or perform any management tasks in Intersight. You cannot add or manage a user with Account Administrator role.
- - **PERMISSION.Virtualization Administrator**: As a Virtualization Administrator, a user can view and manage hypervisor resources, view and execute workflows. This privilege does not include the ability to claim a device. You must have a Device Technician, Device Administrator, or an Account Administrator role to claim a device.
- - **PERMISSION.Workflow Designer**: As a Workflow Designer, you can define workflow definitions and custom data types, view workflow definitions, task definitions and custom data types, execute workflows and view workflow executions.
- - **PERMISSION.Workload Optimizer Administrator**: As a Workload Optimizer Administrator, you can view workload optimization state, recommended actions, perform adiministrative tasks for workload optimization, manage workload optimization policies, deploy workloads.
- - **PERMISSION.Workload Optimizer Advisor**: As a Workload Optimizer Advisor, you can view workload optimization state and recommended actions, run plans for workload optimization.
- - **PERMISSION.Workload Optimizer Automator**: As a Workload Optimizer Automator, you can view workload optimization state, recommended actions, run plans for workload optimization, execute workload optimization actions, and deploy workloads.
- - **PERMISSION.Workload Optimizer Deployer**: As a Workload Optimizer Deployer, you can view workload optimization state, recommended actions, perform adiministrative tasks for workload optimization, manage workload optimization policies, and deploy workloads.
- - **PERMISSION.Workload Optimizer Observer**: As a Workload Optimizer Observer, you can view workload optimization state and recommended actions.
-
-
-## Author
-
-intersight@cisco.com
-
-
-## Notes for Large OpenAPI documents
-If the OpenAPI document is large, imports in intersight.apis and intersight.models may fail with a
-RecursionError indicating the maximum recursion limit has been exceeded. In that case, there are a couple of solutions:
-
-Solution 1:
-Use specific imports for apis and models like:
-- `from intersight.api.default_api import DefaultApi`
-- `from intersight.model.pet import Pet`
-
-Solution 2:
-Before importing the package, adjust the maximum recursion limit as shown below:
+
+### 9.2. Unclaiming a Target
+
+```python
+from intersight.api import asset_api
+import intersight
+
+api_key = "api_key"
+api_key_file = "~/api_key_file_path"
+
+api_client = get_api_client(api_key, api_key_file)
+
+api_instance = asset_api.AssetApi(api_client)
+
+# To find out all the connected devices.
+kwargs = dict(filter="ConnectionStatus eq 'Connected'")
+
+# Get all registered target.
+api_result= api.get_asset_device_registration_list(**kwargs)
+
+try:
+ for device in api_result.results:
+ # You need to provide the IP address of the target, you need to unclaim
+ if "10.10.10.10" in device.device_ip_address:
+ # Deleting the target as the same we do through api
+ api_instance.delete_asset_device_claim(moid=device.device_claim.moid)
+except intersight.ApiException as e:
+ print("Exception when calling AssetApi->delete_asset_device_claim: %s\n" % e)
```
-import sys
-sys.setrecursionlimit(1500)
+
+
+### 9.3. Claiming an Appliance
+
+```python
+from intersight.api import asset_api
+from intersight.model.asset_target import AssetTarget
+from pprint import pprint
import intersight
-from intersight.apis import *
-from intersight.models import *
+
+api_key = "api_key"
+api_key_file = "~/api_key_file_path"
+
+api_client = get_api_client(api_key, api_key_file)
+
+api_instance = asset_api.AssetApi(api_client)
+
+# ApplianceDeviceClaim | The 'appliance.DeviceClaim' resource to create.
+appliance_device_claim = ApplianceDeviceClaim()
+
+# setting claim_code and device_id
+appliance_device_claim.username = "user1"
+appliance_device_claim.password = "ChangeMe"
+appliance_device_claim.hostname = "host1"
+appliance_device_claim.platform_type = "UCSD"
+
+
+# Post the above payload to claim a target
+try:
+ # Create a 'appliance.DeviceClaim' resource.
+ claim_resp = api_instance.create_appliance_device_claim(appliance_device_claim)
+ pprint(claim_resp)
+except intersight.ApiException as e:
+ print("Exception when calling AssetApi->create_appliance_device_claim: %s\n" % e)
```
+
+## 10. Triggering a Workflow
+
+
+## 11. Monitoring a Workflow
+
+
+## 12. Debugging
+
diff --git a/intersight/__init__.py b/intersight/__init__.py
index edd3a26ed1..d66f6a20bc 100644
--- a/intersight/__init__.py
+++ b/intersight/__init__.py
@@ -3,15 +3,15 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
-__version__ = "1.0.9.4437"
+__version__ = "1.0.9.4506"
# import ApiClient
from intersight.api_client import ApiClient
diff --git a/intersight/api/aaa_api.py b/intersight/api/aaa_api.py
index dce09f789a..6e8c07878a 100644
--- a/intersight/api/aaa_api.py
+++ b/intersight/api/aaa_api.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
@@ -24,6 +24,10 @@
)
from intersight.model.aaa_audit_record import AaaAuditRecord
from intersight.model.aaa_audit_record_response import AaaAuditRecordResponse
+from intersight.model.aaa_retention_config import AaaRetentionConfig
+from intersight.model.aaa_retention_config_response import AaaRetentionConfigResponse
+from intersight.model.aaa_retention_policy import AaaRetentionPolicy
+from intersight.model.aaa_retention_policy_response import AaaRetentionPolicyResponse
from intersight.model.error import Error
@@ -39,6 +43,140 @@ def __init__(self, api_client=None):
api_client = ApiClient()
self.api_client = api_client
+ def __create_aaa_retention_policy(
+ self,
+ aaa_retention_policy,
+ **kwargs
+ ):
+ """Create a 'aaa.RetentionPolicy' resource. # noqa: E501
+
+ This method makes a synchronous HTTP request by default. To make an
+ asynchronous HTTP request, please pass async_req=True
+
+ >>> thread = api.create_aaa_retention_policy(aaa_retention_policy, async_req=True)
+ >>> result = thread.get()
+
+ Args:
+ aaa_retention_policy (AaaRetentionPolicy): The 'aaa.RetentionPolicy' resource to create.
+
+ Keyword Args:
+ if_match (str): 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 (str): 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_http_data_only (bool): response data without head status
+ code and headers. Default is True.
+ _preload_content (bool): if False, the urllib3.HTTPResponse object
+ will be returned without reading/decoding response data.
+ Default is True.
+ _request_timeout (float/tuple): timeout setting for this request. If one
+ number provided, it will be total request timeout. It can also
+ be a pair (tuple) of (connection, read) timeouts.
+ Default is None.
+ _check_input_type (bool): specifies if type checking
+ should be done one the data sent to the server.
+ Default is True.
+ _check_return_type (bool): specifies if type checking
+ should be done one the data received from the server.
+ Default is True.
+ _host_index (int/None): specifies the index of the server
+ that we want to use.
+ Default is read from the configuration.
+ async_req (bool): execute request asynchronously
+
+ Returns:
+ AaaRetentionPolicy
+ If the method is called asynchronously, returns the request
+ thread.
+ """
+ kwargs['async_req'] = kwargs.get(
+ 'async_req', False
+ )
+ kwargs['_return_http_data_only'] = kwargs.get(
+ '_return_http_data_only', True
+ )
+ kwargs['_preload_content'] = kwargs.get(
+ '_preload_content', True
+ )
+ kwargs['_request_timeout'] = kwargs.get(
+ '_request_timeout', None
+ )
+ kwargs['_check_input_type'] = kwargs.get(
+ '_check_input_type', True
+ )
+ kwargs['_check_return_type'] = kwargs.get(
+ '_check_return_type', True
+ )
+ kwargs['_host_index'] = kwargs.get('_host_index')
+ kwargs['aaa_retention_policy'] = \
+ aaa_retention_policy
+ return self.call_with_http_info(**kwargs)
+
+ self.create_aaa_retention_policy = _Endpoint(
+ settings={
+ 'response_type': (AaaRetentionPolicy,),
+ 'auth': [
+ 'cookieAuth',
+ 'http_signature',
+ 'oAuth2',
+ 'oAuth2'
+ ],
+ 'endpoint_path': '/api/v1/aaa/RetentionPolicies',
+ 'operation_id': 'create_aaa_retention_policy',
+ 'http_method': 'POST',
+ 'servers': None,
+ },
+ params_map={
+ 'all': [
+ 'aaa_retention_policy',
+ 'if_match',
+ 'if_none_match',
+ ],
+ 'required': [
+ 'aaa_retention_policy',
+ ],
+ 'nullable': [
+ ],
+ 'enum': [
+ ],
+ 'validation': [
+ ]
+ },
+ root_map={
+ 'validations': {
+ },
+ 'allowed_values': {
+ },
+ 'openapi_types': {
+ 'aaa_retention_policy':
+ (AaaRetentionPolicy,),
+ 'if_match':
+ (str,),
+ 'if_none_match':
+ (str,),
+ },
+ 'attribute_map': {
+ 'if_match': 'If-Match',
+ 'if_none_match': 'If-None-Match',
+ },
+ 'location_map': {
+ 'aaa_retention_policy': 'body',
+ 'if_match': 'header',
+ 'if_none_match': 'header',
+ },
+ 'collection_format_map': {
+ }
+ },
+ headers_map={
+ 'accept': [
+ 'application/json'
+ ],
+ 'content_type': [
+ 'application/json'
+ ]
+ },
+ api_client=api_client,
+ callable=__create_aaa_retention_policy
+ )
+
def __get_aaa_audit_record_by_moid(
self,
moid,
@@ -344,3 +482,893 @@ def __get_aaa_audit_record_list(
api_client=api_client,
callable=__get_aaa_audit_record_list
)
+
+ def __get_aaa_retention_config_by_moid(
+ self,
+ moid,
+ **kwargs
+ ):
+ """Read a 'aaa.RetentionConfig' resource. # noqa: E501
+
+ This method makes a synchronous HTTP request by default. To make an
+ asynchronous HTTP request, please pass async_req=True
+
+ >>> thread = api.get_aaa_retention_config_by_moid(moid, async_req=True)
+ >>> result = thread.get()
+
+ Args:
+ moid (str): The unique Moid identifier of a resource instance.
+
+ Keyword Args:
+ _return_http_data_only (bool): response data without head status
+ code and headers. Default is True.
+ _preload_content (bool): if False, the urllib3.HTTPResponse object
+ will be returned without reading/decoding response data.
+ Default is True.
+ _request_timeout (float/tuple): timeout setting for this request. If one
+ number provided, it will be total request timeout. It can also
+ be a pair (tuple) of (connection, read) timeouts.
+ Default is None.
+ _check_input_type (bool): specifies if type checking
+ should be done one the data sent to the server.
+ Default is True.
+ _check_return_type (bool): specifies if type checking
+ should be done one the data received from the server.
+ Default is True.
+ _host_index (int/None): specifies the index of the server
+ that we want to use.
+ Default is read from the configuration.
+ async_req (bool): execute request asynchronously
+
+ Returns:
+ AaaRetentionConfig
+ If the method is called asynchronously, returns the request
+ thread.
+ """
+ kwargs['async_req'] = kwargs.get(
+ 'async_req', False
+ )
+ kwargs['_return_http_data_only'] = kwargs.get(
+ '_return_http_data_only', True
+ )
+ kwargs['_preload_content'] = kwargs.get(
+ '_preload_content', True
+ )
+ kwargs['_request_timeout'] = kwargs.get(
+ '_request_timeout', None
+ )
+ kwargs['_check_input_type'] = kwargs.get(
+ '_check_input_type', True
+ )
+ kwargs['_check_return_type'] = kwargs.get(
+ '_check_return_type', True
+ )
+ kwargs['_host_index'] = kwargs.get('_host_index')
+ kwargs['moid'] = \
+ moid
+ return self.call_with_http_info(**kwargs)
+
+ self.get_aaa_retention_config_by_moid = _Endpoint(
+ settings={
+ 'response_type': (AaaRetentionConfig,),
+ 'auth': [
+ 'cookieAuth',
+ 'http_signature',
+ 'oAuth2',
+ 'oAuth2'
+ ],
+ 'endpoint_path': '/api/v1/aaa/RetentionConfigs/{Moid}',
+ 'operation_id': 'get_aaa_retention_config_by_moid',
+ 'http_method': 'GET',
+ 'servers': None,
+ },
+ params_map={
+ 'all': [
+ 'moid',
+ ],
+ 'required': [
+ 'moid',
+ ],
+ 'nullable': [
+ ],
+ 'enum': [
+ ],
+ 'validation': [
+ ]
+ },
+ root_map={
+ 'validations': {
+ },
+ 'allowed_values': {
+ },
+ 'openapi_types': {
+ 'moid':
+ (str,),
+ },
+ 'attribute_map': {
+ 'moid': 'Moid',
+ },
+ 'location_map': {
+ 'moid': 'path',
+ },
+ 'collection_format_map': {
+ }
+ },
+ headers_map={
+ 'accept': [
+ 'application/json',
+ 'text/csv',
+ 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet'
+ ],
+ 'content_type': [],
+ },
+ api_client=api_client,
+ callable=__get_aaa_retention_config_by_moid
+ )
+
+ def __get_aaa_retention_config_list(
+ self,
+ **kwargs
+ ):
+ """Read a 'aaa.RetentionConfig' resource. # noqa: E501
+
+ This method makes a synchronous HTTP request by default. To make an
+ asynchronous HTTP request, please pass async_req=True
+
+ >>> thread = api.get_aaa_retention_config_list(async_req=True)
+ >>> result = thread.get()
+
+
+ Keyword Args:
+ filter (str): 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] if omitted the server will use the default value of ""
+ orderby (str): Determines what properties are used to sort the collection of resources.. [optional]
+ top (int): Specifies the maximum number of resources to return in the response.. [optional] if omitted the server will use the default value of 100
+ skip (int): Specifies the number of resources to skip in the response.. [optional] if omitted the server will use the default value of 0
+ select (str): Specifies a subset of properties to return.. [optional] if omitted the server will use the default value of ""
+ expand (str): Specify additional attributes or related resources to return in addition to the primary resources.. [optional]
+ apply (str): 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.. [optional]
+ count (bool): The $count query specifies the service should return the count of the matching resources, instead of returning the resources.. [optional]
+ inlinecount (str): The $inlinecount query option allows clients to request an inline count of the matching resources included with the resources in the response.. [optional] if omitted the server will use the default value of "allpages"
+ at (str): 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.. [optional]
+ tags (str): 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_http_data_only (bool): response data without head status
+ code and headers. Default is True.
+ _preload_content (bool): if False, the urllib3.HTTPResponse object
+ will be returned without reading/decoding response data.
+ Default is True.
+ _request_timeout (float/tuple): timeout setting for this request. If one
+ number provided, it will be total request timeout. It can also
+ be a pair (tuple) of (connection, read) timeouts.
+ Default is None.
+ _check_input_type (bool): specifies if type checking
+ should be done one the data sent to the server.
+ Default is True.
+ _check_return_type (bool): specifies if type checking
+ should be done one the data received from the server.
+ Default is True.
+ _host_index (int/None): specifies the index of the server
+ that we want to use.
+ Default is read from the configuration.
+ async_req (bool): execute request asynchronously
+
+ Returns:
+ AaaRetentionConfigResponse
+ If the method is called asynchronously, returns the request
+ thread.
+ """
+ kwargs['async_req'] = kwargs.get(
+ 'async_req', False
+ )
+ kwargs['_return_http_data_only'] = kwargs.get(
+ '_return_http_data_only', True
+ )
+ kwargs['_preload_content'] = kwargs.get(
+ '_preload_content', True
+ )
+ kwargs['_request_timeout'] = kwargs.get(
+ '_request_timeout', None
+ )
+ kwargs['_check_input_type'] = kwargs.get(
+ '_check_input_type', True
+ )
+ kwargs['_check_return_type'] = kwargs.get(
+ '_check_return_type', True
+ )
+ kwargs['_host_index'] = kwargs.get('_host_index')
+ return self.call_with_http_info(**kwargs)
+
+ self.get_aaa_retention_config_list = _Endpoint(
+ settings={
+ 'response_type': (AaaRetentionConfigResponse,),
+ 'auth': [
+ 'cookieAuth',
+ 'http_signature',
+ 'oAuth2',
+ 'oAuth2'
+ ],
+ 'endpoint_path': '/api/v1/aaa/RetentionConfigs',
+ 'operation_id': 'get_aaa_retention_config_list',
+ 'http_method': 'GET',
+ 'servers': None,
+ },
+ params_map={
+ 'all': [
+ 'filter',
+ 'orderby',
+ 'top',
+ 'skip',
+ 'select',
+ 'expand',
+ 'apply',
+ 'count',
+ 'inlinecount',
+ 'at',
+ 'tags',
+ ],
+ 'required': [],
+ 'nullable': [
+ ],
+ 'enum': [
+ 'inlinecount',
+ ],
+ 'validation': [
+ ]
+ },
+ root_map={
+ 'validations': {
+ },
+ 'allowed_values': {
+ ('inlinecount',): {
+
+ "ALLPAGES": "allpages",
+ "NONE": "none"
+ },
+ },
+ 'openapi_types': {
+ 'filter':
+ (str,),
+ 'orderby':
+ (str,),
+ 'top':
+ (int,),
+ 'skip':
+ (int,),
+ 'select':
+ (str,),
+ 'expand':
+ (str,),
+ 'apply':
+ (str,),
+ 'count':
+ (bool,),
+ 'inlinecount':
+ (str,),
+ 'at':
+ (str,),
+ 'tags':
+ (str,),
+ },
+ 'attribute_map': {
+ 'filter': '$filter',
+ 'orderby': '$orderby',
+ 'top': '$top',
+ 'skip': '$skip',
+ 'select': '$select',
+ 'expand': '$expand',
+ 'apply': '$apply',
+ 'count': '$count',
+ 'inlinecount': '$inlinecount',
+ 'at': 'at',
+ 'tags': 'tags',
+ },
+ 'location_map': {
+ 'filter': 'query',
+ 'orderby': 'query',
+ 'top': 'query',
+ 'skip': 'query',
+ 'select': 'query',
+ 'expand': 'query',
+ 'apply': 'query',
+ 'count': 'query',
+ 'inlinecount': 'query',
+ 'at': 'query',
+ 'tags': 'query',
+ },
+ 'collection_format_map': {
+ }
+ },
+ headers_map={
+ 'accept': [
+ 'application/json',
+ 'text/csv',
+ 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet'
+ ],
+ 'content_type': [],
+ },
+ api_client=api_client,
+ callable=__get_aaa_retention_config_list
+ )
+
+ def __get_aaa_retention_policy_by_moid(
+ self,
+ moid,
+ **kwargs
+ ):
+ """Read a 'aaa.RetentionPolicy' resource. # noqa: E501
+
+ This method makes a synchronous HTTP request by default. To make an
+ asynchronous HTTP request, please pass async_req=True
+
+ >>> thread = api.get_aaa_retention_policy_by_moid(moid, async_req=True)
+ >>> result = thread.get()
+
+ Args:
+ moid (str): The unique Moid identifier of a resource instance.
+
+ Keyword Args:
+ _return_http_data_only (bool): response data without head status
+ code and headers. Default is True.
+ _preload_content (bool): if False, the urllib3.HTTPResponse object
+ will be returned without reading/decoding response data.
+ Default is True.
+ _request_timeout (float/tuple): timeout setting for this request. If one
+ number provided, it will be total request timeout. It can also
+ be a pair (tuple) of (connection, read) timeouts.
+ Default is None.
+ _check_input_type (bool): specifies if type checking
+ should be done one the data sent to the server.
+ Default is True.
+ _check_return_type (bool): specifies if type checking
+ should be done one the data received from the server.
+ Default is True.
+ _host_index (int/None): specifies the index of the server
+ that we want to use.
+ Default is read from the configuration.
+ async_req (bool): execute request asynchronously
+
+ Returns:
+ AaaRetentionPolicy
+ If the method is called asynchronously, returns the request
+ thread.
+ """
+ kwargs['async_req'] = kwargs.get(
+ 'async_req', False
+ )
+ kwargs['_return_http_data_only'] = kwargs.get(
+ '_return_http_data_only', True
+ )
+ kwargs['_preload_content'] = kwargs.get(
+ '_preload_content', True
+ )
+ kwargs['_request_timeout'] = kwargs.get(
+ '_request_timeout', None
+ )
+ kwargs['_check_input_type'] = kwargs.get(
+ '_check_input_type', True
+ )
+ kwargs['_check_return_type'] = kwargs.get(
+ '_check_return_type', True
+ )
+ kwargs['_host_index'] = kwargs.get('_host_index')
+ kwargs['moid'] = \
+ moid
+ return self.call_with_http_info(**kwargs)
+
+ self.get_aaa_retention_policy_by_moid = _Endpoint(
+ settings={
+ 'response_type': (AaaRetentionPolicy,),
+ 'auth': [
+ 'cookieAuth',
+ 'http_signature',
+ 'oAuth2',
+ 'oAuth2'
+ ],
+ 'endpoint_path': '/api/v1/aaa/RetentionPolicies/{Moid}',
+ 'operation_id': 'get_aaa_retention_policy_by_moid',
+ 'http_method': 'GET',
+ 'servers': None,
+ },
+ params_map={
+ 'all': [
+ 'moid',
+ ],
+ 'required': [
+ 'moid',
+ ],
+ 'nullable': [
+ ],
+ 'enum': [
+ ],
+ 'validation': [
+ ]
+ },
+ root_map={
+ 'validations': {
+ },
+ 'allowed_values': {
+ },
+ 'openapi_types': {
+ 'moid':
+ (str,),
+ },
+ 'attribute_map': {
+ 'moid': 'Moid',
+ },
+ 'location_map': {
+ 'moid': 'path',
+ },
+ 'collection_format_map': {
+ }
+ },
+ headers_map={
+ 'accept': [
+ 'application/json',
+ 'text/csv',
+ 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet'
+ ],
+ 'content_type': [],
+ },
+ api_client=api_client,
+ callable=__get_aaa_retention_policy_by_moid
+ )
+
+ def __get_aaa_retention_policy_list(
+ self,
+ **kwargs
+ ):
+ """Read a 'aaa.RetentionPolicy' resource. # noqa: E501
+
+ This method makes a synchronous HTTP request by default. To make an
+ asynchronous HTTP request, please pass async_req=True
+
+ >>> thread = api.get_aaa_retention_policy_list(async_req=True)
+ >>> result = thread.get()
+
+
+ Keyword Args:
+ filter (str): 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] if omitted the server will use the default value of ""
+ orderby (str): Determines what properties are used to sort the collection of resources.. [optional]
+ top (int): Specifies the maximum number of resources to return in the response.. [optional] if omitted the server will use the default value of 100
+ skip (int): Specifies the number of resources to skip in the response.. [optional] if omitted the server will use the default value of 0
+ select (str): Specifies a subset of properties to return.. [optional] if omitted the server will use the default value of ""
+ expand (str): Specify additional attributes or related resources to return in addition to the primary resources.. [optional]
+ apply (str): 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.. [optional]
+ count (bool): The $count query specifies the service should return the count of the matching resources, instead of returning the resources.. [optional]
+ inlinecount (str): The $inlinecount query option allows clients to request an inline count of the matching resources included with the resources in the response.. [optional] if omitted the server will use the default value of "allpages"
+ at (str): 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.. [optional]
+ tags (str): 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_http_data_only (bool): response data without head status
+ code and headers. Default is True.
+ _preload_content (bool): if False, the urllib3.HTTPResponse object
+ will be returned without reading/decoding response data.
+ Default is True.
+ _request_timeout (float/tuple): timeout setting for this request. If one
+ number provided, it will be total request timeout. It can also
+ be a pair (tuple) of (connection, read) timeouts.
+ Default is None.
+ _check_input_type (bool): specifies if type checking
+ should be done one the data sent to the server.
+ Default is True.
+ _check_return_type (bool): specifies if type checking
+ should be done one the data received from the server.
+ Default is True.
+ _host_index (int/None): specifies the index of the server
+ that we want to use.
+ Default is read from the configuration.
+ async_req (bool): execute request asynchronously
+
+ Returns:
+ AaaRetentionPolicyResponse
+ If the method is called asynchronously, returns the request
+ thread.
+ """
+ kwargs['async_req'] = kwargs.get(
+ 'async_req', False
+ )
+ kwargs['_return_http_data_only'] = kwargs.get(
+ '_return_http_data_only', True
+ )
+ kwargs['_preload_content'] = kwargs.get(
+ '_preload_content', True
+ )
+ kwargs['_request_timeout'] = kwargs.get(
+ '_request_timeout', None
+ )
+ kwargs['_check_input_type'] = kwargs.get(
+ '_check_input_type', True
+ )
+ kwargs['_check_return_type'] = kwargs.get(
+ '_check_return_type', True
+ )
+ kwargs['_host_index'] = kwargs.get('_host_index')
+ return self.call_with_http_info(**kwargs)
+
+ self.get_aaa_retention_policy_list = _Endpoint(
+ settings={
+ 'response_type': (AaaRetentionPolicyResponse,),
+ 'auth': [
+ 'cookieAuth',
+ 'http_signature',
+ 'oAuth2',
+ 'oAuth2'
+ ],
+ 'endpoint_path': '/api/v1/aaa/RetentionPolicies',
+ 'operation_id': 'get_aaa_retention_policy_list',
+ 'http_method': 'GET',
+ 'servers': None,
+ },
+ params_map={
+ 'all': [
+ 'filter',
+ 'orderby',
+ 'top',
+ 'skip',
+ 'select',
+ 'expand',
+ 'apply',
+ 'count',
+ 'inlinecount',
+ 'at',
+ 'tags',
+ ],
+ 'required': [],
+ 'nullable': [
+ ],
+ 'enum': [
+ 'inlinecount',
+ ],
+ 'validation': [
+ ]
+ },
+ root_map={
+ 'validations': {
+ },
+ 'allowed_values': {
+ ('inlinecount',): {
+
+ "ALLPAGES": "allpages",
+ "NONE": "none"
+ },
+ },
+ 'openapi_types': {
+ 'filter':
+ (str,),
+ 'orderby':
+ (str,),
+ 'top':
+ (int,),
+ 'skip':
+ (int,),
+ 'select':
+ (str,),
+ 'expand':
+ (str,),
+ 'apply':
+ (str,),
+ 'count':
+ (bool,),
+ 'inlinecount':
+ (str,),
+ 'at':
+ (str,),
+ 'tags':
+ (str,),
+ },
+ 'attribute_map': {
+ 'filter': '$filter',
+ 'orderby': '$orderby',
+ 'top': '$top',
+ 'skip': '$skip',
+ 'select': '$select',
+ 'expand': '$expand',
+ 'apply': '$apply',
+ 'count': '$count',
+ 'inlinecount': '$inlinecount',
+ 'at': 'at',
+ 'tags': 'tags',
+ },
+ 'location_map': {
+ 'filter': 'query',
+ 'orderby': 'query',
+ 'top': 'query',
+ 'skip': 'query',
+ 'select': 'query',
+ 'expand': 'query',
+ 'apply': 'query',
+ 'count': 'query',
+ 'inlinecount': 'query',
+ 'at': 'query',
+ 'tags': 'query',
+ },
+ 'collection_format_map': {
+ }
+ },
+ headers_map={
+ 'accept': [
+ 'application/json',
+ 'text/csv',
+ 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet'
+ ],
+ 'content_type': [],
+ },
+ api_client=api_client,
+ callable=__get_aaa_retention_policy_list
+ )
+
+ def __patch_aaa_retention_policy(
+ self,
+ moid,
+ aaa_retention_policy,
+ **kwargs
+ ):
+ """Update a 'aaa.RetentionPolicy' resource. # noqa: E501
+
+ This method makes a synchronous HTTP request by default. To make an
+ asynchronous HTTP request, please pass async_req=True
+
+ >>> thread = api.patch_aaa_retention_policy(moid, aaa_retention_policy, async_req=True)
+ >>> result = thread.get()
+
+ Args:
+ moid (str): The unique Moid identifier of a resource instance.
+ aaa_retention_policy (AaaRetentionPolicy): The 'aaa.RetentionPolicy' resource to update.
+
+ Keyword Args:
+ if_match (str): 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_http_data_only (bool): response data without head status
+ code and headers. Default is True.
+ _preload_content (bool): if False, the urllib3.HTTPResponse object
+ will be returned without reading/decoding response data.
+ Default is True.
+ _request_timeout (float/tuple): timeout setting for this request. If one
+ number provided, it will be total request timeout. It can also
+ be a pair (tuple) of (connection, read) timeouts.
+ Default is None.
+ _check_input_type (bool): specifies if type checking
+ should be done one the data sent to the server.
+ Default is True.
+ _check_return_type (bool): specifies if type checking
+ should be done one the data received from the server.
+ Default is True.
+ _host_index (int/None): specifies the index of the server
+ that we want to use.
+ Default is read from the configuration.
+ async_req (bool): execute request asynchronously
+
+ Returns:
+ AaaRetentionPolicy
+ If the method is called asynchronously, returns the request
+ thread.
+ """
+ kwargs['async_req'] = kwargs.get(
+ 'async_req', False
+ )
+ kwargs['_return_http_data_only'] = kwargs.get(
+ '_return_http_data_only', True
+ )
+ kwargs['_preload_content'] = kwargs.get(
+ '_preload_content', True
+ )
+ kwargs['_request_timeout'] = kwargs.get(
+ '_request_timeout', None
+ )
+ kwargs['_check_input_type'] = kwargs.get(
+ '_check_input_type', True
+ )
+ kwargs['_check_return_type'] = kwargs.get(
+ '_check_return_type', True
+ )
+ kwargs['_host_index'] = kwargs.get('_host_index')
+ kwargs['moid'] = \
+ moid
+ kwargs['aaa_retention_policy'] = \
+ aaa_retention_policy
+ return self.call_with_http_info(**kwargs)
+
+ self.patch_aaa_retention_policy = _Endpoint(
+ settings={
+ 'response_type': (AaaRetentionPolicy,),
+ 'auth': [
+ 'cookieAuth',
+ 'http_signature',
+ 'oAuth2',
+ 'oAuth2'
+ ],
+ 'endpoint_path': '/api/v1/aaa/RetentionPolicies/{Moid}',
+ 'operation_id': 'patch_aaa_retention_policy',
+ 'http_method': 'PATCH',
+ 'servers': None,
+ },
+ params_map={
+ 'all': [
+ 'moid',
+ 'aaa_retention_policy',
+ 'if_match',
+ ],
+ 'required': [
+ 'moid',
+ 'aaa_retention_policy',
+ ],
+ 'nullable': [
+ ],
+ 'enum': [
+ ],
+ 'validation': [
+ ]
+ },
+ root_map={
+ 'validations': {
+ },
+ 'allowed_values': {
+ },
+ 'openapi_types': {
+ 'moid':
+ (str,),
+ 'aaa_retention_policy':
+ (AaaRetentionPolicy,),
+ 'if_match':
+ (str,),
+ },
+ 'attribute_map': {
+ 'moid': 'Moid',
+ 'if_match': 'If-Match',
+ },
+ 'location_map': {
+ 'moid': 'path',
+ 'aaa_retention_policy': 'body',
+ 'if_match': 'header',
+ },
+ 'collection_format_map': {
+ }
+ },
+ headers_map={
+ 'accept': [
+ 'application/json'
+ ],
+ 'content_type': [
+ 'application/json',
+ 'application/json-patch+json'
+ ]
+ },
+ api_client=api_client,
+ callable=__patch_aaa_retention_policy
+ )
+
+ def __update_aaa_retention_policy(
+ self,
+ moid,
+ aaa_retention_policy,
+ **kwargs
+ ):
+ """Update a 'aaa.RetentionPolicy' resource. # noqa: E501
+
+ This method makes a synchronous HTTP request by default. To make an
+ asynchronous HTTP request, please pass async_req=True
+
+ >>> thread = api.update_aaa_retention_policy(moid, aaa_retention_policy, async_req=True)
+ >>> result = thread.get()
+
+ Args:
+ moid (str): The unique Moid identifier of a resource instance.
+ aaa_retention_policy (AaaRetentionPolicy): The 'aaa.RetentionPolicy' resource to update.
+
+ Keyword Args:
+ if_match (str): 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_http_data_only (bool): response data without head status
+ code and headers. Default is True.
+ _preload_content (bool): if False, the urllib3.HTTPResponse object
+ will be returned without reading/decoding response data.
+ Default is True.
+ _request_timeout (float/tuple): timeout setting for this request. If one
+ number provided, it will be total request timeout. It can also
+ be a pair (tuple) of (connection, read) timeouts.
+ Default is None.
+ _check_input_type (bool): specifies if type checking
+ should be done one the data sent to the server.
+ Default is True.
+ _check_return_type (bool): specifies if type checking
+ should be done one the data received from the server.
+ Default is True.
+ _host_index (int/None): specifies the index of the server
+ that we want to use.
+ Default is read from the configuration.
+ async_req (bool): execute request asynchronously
+
+ Returns:
+ AaaRetentionPolicy
+ If the method is called asynchronously, returns the request
+ thread.
+ """
+ kwargs['async_req'] = kwargs.get(
+ 'async_req', False
+ )
+ kwargs['_return_http_data_only'] = kwargs.get(
+ '_return_http_data_only', True
+ )
+ kwargs['_preload_content'] = kwargs.get(
+ '_preload_content', True
+ )
+ kwargs['_request_timeout'] = kwargs.get(
+ '_request_timeout', None
+ )
+ kwargs['_check_input_type'] = kwargs.get(
+ '_check_input_type', True
+ )
+ kwargs['_check_return_type'] = kwargs.get(
+ '_check_return_type', True
+ )
+ kwargs['_host_index'] = kwargs.get('_host_index')
+ kwargs['moid'] = \
+ moid
+ kwargs['aaa_retention_policy'] = \
+ aaa_retention_policy
+ return self.call_with_http_info(**kwargs)
+
+ self.update_aaa_retention_policy = _Endpoint(
+ settings={
+ 'response_type': (AaaRetentionPolicy,),
+ 'auth': [
+ 'cookieAuth',
+ 'http_signature',
+ 'oAuth2',
+ 'oAuth2'
+ ],
+ 'endpoint_path': '/api/v1/aaa/RetentionPolicies/{Moid}',
+ 'operation_id': 'update_aaa_retention_policy',
+ 'http_method': 'POST',
+ 'servers': None,
+ },
+ params_map={
+ 'all': [
+ 'moid',
+ 'aaa_retention_policy',
+ 'if_match',
+ ],
+ 'required': [
+ 'moid',
+ 'aaa_retention_policy',
+ ],
+ 'nullable': [
+ ],
+ 'enum': [
+ ],
+ 'validation': [
+ ]
+ },
+ root_map={
+ 'validations': {
+ },
+ 'allowed_values': {
+ },
+ 'openapi_types': {
+ 'moid':
+ (str,),
+ 'aaa_retention_policy':
+ (AaaRetentionPolicy,),
+ 'if_match':
+ (str,),
+ },
+ 'attribute_map': {
+ 'moid': 'Moid',
+ 'if_match': 'If-Match',
+ },
+ 'location_map': {
+ 'moid': 'path',
+ 'aaa_retention_policy': 'body',
+ 'if_match': 'header',
+ },
+ 'collection_format_map': {
+ }
+ },
+ headers_map={
+ 'accept': [
+ 'application/json'
+ ],
+ 'content_type': [
+ 'application/json',
+ 'application/json-patch+json'
+ ]
+ },
+ api_client=api_client,
+ callable=__update_aaa_retention_policy
+ )
diff --git a/intersight/api/access_api.py b/intersight/api/access_api.py
index 1a28921872..7654824424 100644
--- a/intersight/api/access_api.py
+++ b/intersight/api/access_api.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/api/adapter_api.py b/intersight/api/adapter_api.py
index 7a12aacc1e..30238a07d3 100644
--- a/intersight/api/adapter_api.py
+++ b/intersight/api/adapter_api.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/api/appliance_api.py b/intersight/api/appliance_api.py
index 0d82291912..47cf2010e1 100644
--- a/intersight/api/appliance_api.py
+++ b/intersight/api/appliance_api.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
@@ -38,6 +38,8 @@
from intersight.model.appliance_device_certificate_response import ApplianceDeviceCertificateResponse
from intersight.model.appliance_device_claim import ApplianceDeviceClaim
from intersight.model.appliance_device_claim_response import ApplianceDeviceClaimResponse
+from intersight.model.appliance_device_upgrade_policy import ApplianceDeviceUpgradePolicy
+from intersight.model.appliance_device_upgrade_policy_response import ApplianceDeviceUpgradePolicyResponse
from intersight.model.appliance_diag_setting import ApplianceDiagSetting
from intersight.model.appliance_diag_setting_response import ApplianceDiagSettingResponse
from intersight.model.appliance_external_syslog_setting import ApplianceExternalSyslogSetting
@@ -1397,6 +1399,127 @@ def __delete_appliance_restore(
callable=__delete_appliance_restore
)
+ def __delete_appliance_upgrade(
+ self,
+ moid,
+ **kwargs
+ ):
+ """Delete a 'appliance.Upgrade' resource. # noqa: E501
+
+ This method makes a synchronous HTTP request by default. To make an
+ asynchronous HTTP request, please pass async_req=True
+
+ >>> thread = api.delete_appliance_upgrade(moid, async_req=True)
+ >>> result = thread.get()
+
+ Args:
+ moid (str): The unique Moid identifier of a resource instance.
+
+ Keyword Args:
+ _return_http_data_only (bool): response data without head status
+ code and headers. Default is True.
+ _preload_content (bool): if False, the urllib3.HTTPResponse object
+ will be returned without reading/decoding response data.
+ Default is True.
+ _request_timeout (float/tuple): timeout setting for this request. If one
+ number provided, it will be total request timeout. It can also
+ be a pair (tuple) of (connection, read) timeouts.
+ Default is None.
+ _check_input_type (bool): specifies if type checking
+ should be done one the data sent to the server.
+ Default is True.
+ _check_return_type (bool): specifies if type checking
+ should be done one the data received from the server.
+ Default is True.
+ _host_index (int/None): specifies the index of the server
+ that we want to use.
+ Default is read from the configuration.
+ async_req (bool): execute request asynchronously
+
+ Returns:
+ None
+ If the method is called asynchronously, returns the request
+ thread.
+ """
+ kwargs['async_req'] = kwargs.get(
+ 'async_req', False
+ )
+ kwargs['_return_http_data_only'] = kwargs.get(
+ '_return_http_data_only', True
+ )
+ kwargs['_preload_content'] = kwargs.get(
+ '_preload_content', True
+ )
+ kwargs['_request_timeout'] = kwargs.get(
+ '_request_timeout', None
+ )
+ kwargs['_check_input_type'] = kwargs.get(
+ '_check_input_type', True
+ )
+ kwargs['_check_return_type'] = kwargs.get(
+ '_check_return_type', True
+ )
+ kwargs['_host_index'] = kwargs.get('_host_index')
+ kwargs['moid'] = \
+ moid
+ return self.call_with_http_info(**kwargs)
+
+ self.delete_appliance_upgrade = _Endpoint(
+ settings={
+ 'response_type': None,
+ 'auth': [
+ 'cookieAuth',
+ 'http_signature',
+ 'oAuth2',
+ 'oAuth2'
+ ],
+ 'endpoint_path': '/api/v1/appliance/Upgrades/{Moid}',
+ 'operation_id': 'delete_appliance_upgrade',
+ 'http_method': 'DELETE',
+ 'servers': None,
+ },
+ params_map={
+ 'all': [
+ 'moid',
+ ],
+ 'required': [
+ 'moid',
+ ],
+ 'nullable': [
+ ],
+ 'enum': [
+ ],
+ 'validation': [
+ ]
+ },
+ root_map={
+ 'validations': {
+ },
+ 'allowed_values': {
+ },
+ 'openapi_types': {
+ 'moid':
+ (str,),
+ },
+ 'attribute_map': {
+ 'moid': 'Moid',
+ },
+ 'location_map': {
+ 'moid': 'path',
+ },
+ 'collection_format_map': {
+ }
+ },
+ headers_map={
+ 'accept': [
+ 'application/json'
+ ],
+ 'content_type': [],
+ },
+ api_client=api_client,
+ callable=__delete_appliance_upgrade
+ )
+
def __get_appliance_app_status_by_moid(
self,
moid,
@@ -3604,17 +3727,323 @@ def __get_appliance_device_claim_by_moid(
moid
return self.call_with_http_info(**kwargs)
- self.get_appliance_device_claim_by_moid = _Endpoint(
+ self.get_appliance_device_claim_by_moid = _Endpoint(
+ settings={
+ 'response_type': (ApplianceDeviceClaim,),
+ 'auth': [
+ 'cookieAuth',
+ 'http_signature',
+ 'oAuth2',
+ 'oAuth2'
+ ],
+ 'endpoint_path': '/api/v1/appliance/DeviceClaims/{Moid}',
+ 'operation_id': 'get_appliance_device_claim_by_moid',
+ 'http_method': 'GET',
+ 'servers': None,
+ },
+ params_map={
+ 'all': [
+ 'moid',
+ ],
+ 'required': [
+ 'moid',
+ ],
+ 'nullable': [
+ ],
+ 'enum': [
+ ],
+ 'validation': [
+ ]
+ },
+ root_map={
+ 'validations': {
+ },
+ 'allowed_values': {
+ },
+ 'openapi_types': {
+ 'moid':
+ (str,),
+ },
+ 'attribute_map': {
+ 'moid': 'Moid',
+ },
+ 'location_map': {
+ 'moid': 'path',
+ },
+ 'collection_format_map': {
+ }
+ },
+ headers_map={
+ 'accept': [
+ 'application/json',
+ 'text/csv',
+ 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet'
+ ],
+ 'content_type': [],
+ },
+ api_client=api_client,
+ callable=__get_appliance_device_claim_by_moid
+ )
+
+ def __get_appliance_device_claim_list(
+ self,
+ **kwargs
+ ):
+ """Read a 'appliance.DeviceClaim' resource. # noqa: E501
+
+ This method makes a synchronous HTTP request by default. To make an
+ asynchronous HTTP request, please pass async_req=True
+
+ >>> thread = api.get_appliance_device_claim_list(async_req=True)
+ >>> result = thread.get()
+
+
+ Keyword Args:
+ filter (str): 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] if omitted the server will use the default value of ""
+ orderby (str): Determines what properties are used to sort the collection of resources.. [optional]
+ top (int): Specifies the maximum number of resources to return in the response.. [optional] if omitted the server will use the default value of 100
+ skip (int): Specifies the number of resources to skip in the response.. [optional] if omitted the server will use the default value of 0
+ select (str): Specifies a subset of properties to return.. [optional] if omitted the server will use the default value of ""
+ expand (str): Specify additional attributes or related resources to return in addition to the primary resources.. [optional]
+ apply (str): 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.. [optional]
+ count (bool): The $count query specifies the service should return the count of the matching resources, instead of returning the resources.. [optional]
+ inlinecount (str): The $inlinecount query option allows clients to request an inline count of the matching resources included with the resources in the response.. [optional] if omitted the server will use the default value of "allpages"
+ at (str): 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.. [optional]
+ tags (str): 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_http_data_only (bool): response data without head status
+ code and headers. Default is True.
+ _preload_content (bool): if False, the urllib3.HTTPResponse object
+ will be returned without reading/decoding response data.
+ Default is True.
+ _request_timeout (float/tuple): timeout setting for this request. If one
+ number provided, it will be total request timeout. It can also
+ be a pair (tuple) of (connection, read) timeouts.
+ Default is None.
+ _check_input_type (bool): specifies if type checking
+ should be done one the data sent to the server.
+ Default is True.
+ _check_return_type (bool): specifies if type checking
+ should be done one the data received from the server.
+ Default is True.
+ _host_index (int/None): specifies the index of the server
+ that we want to use.
+ Default is read from the configuration.
+ async_req (bool): execute request asynchronously
+
+ Returns:
+ ApplianceDeviceClaimResponse
+ If the method is called asynchronously, returns the request
+ thread.
+ """
+ kwargs['async_req'] = kwargs.get(
+ 'async_req', False
+ )
+ kwargs['_return_http_data_only'] = kwargs.get(
+ '_return_http_data_only', True
+ )
+ kwargs['_preload_content'] = kwargs.get(
+ '_preload_content', True
+ )
+ kwargs['_request_timeout'] = kwargs.get(
+ '_request_timeout', None
+ )
+ kwargs['_check_input_type'] = kwargs.get(
+ '_check_input_type', True
+ )
+ kwargs['_check_return_type'] = kwargs.get(
+ '_check_return_type', True
+ )
+ kwargs['_host_index'] = kwargs.get('_host_index')
+ return self.call_with_http_info(**kwargs)
+
+ self.get_appliance_device_claim_list = _Endpoint(
+ settings={
+ 'response_type': (ApplianceDeviceClaimResponse,),
+ 'auth': [
+ 'cookieAuth',
+ 'http_signature',
+ 'oAuth2',
+ 'oAuth2'
+ ],
+ 'endpoint_path': '/api/v1/appliance/DeviceClaims',
+ 'operation_id': 'get_appliance_device_claim_list',
+ 'http_method': 'GET',
+ 'servers': None,
+ },
+ params_map={
+ 'all': [
+ 'filter',
+ 'orderby',
+ 'top',
+ 'skip',
+ 'select',
+ 'expand',
+ 'apply',
+ 'count',
+ 'inlinecount',
+ 'at',
+ 'tags',
+ ],
+ 'required': [],
+ 'nullable': [
+ ],
+ 'enum': [
+ 'inlinecount',
+ ],
+ 'validation': [
+ ]
+ },
+ root_map={
+ 'validations': {
+ },
+ 'allowed_values': {
+ ('inlinecount',): {
+
+ "ALLPAGES": "allpages",
+ "NONE": "none"
+ },
+ },
+ 'openapi_types': {
+ 'filter':
+ (str,),
+ 'orderby':
+ (str,),
+ 'top':
+ (int,),
+ 'skip':
+ (int,),
+ 'select':
+ (str,),
+ 'expand':
+ (str,),
+ 'apply':
+ (str,),
+ 'count':
+ (bool,),
+ 'inlinecount':
+ (str,),
+ 'at':
+ (str,),
+ 'tags':
+ (str,),
+ },
+ 'attribute_map': {
+ 'filter': '$filter',
+ 'orderby': '$orderby',
+ 'top': '$top',
+ 'skip': '$skip',
+ 'select': '$select',
+ 'expand': '$expand',
+ 'apply': '$apply',
+ 'count': '$count',
+ 'inlinecount': '$inlinecount',
+ 'at': 'at',
+ 'tags': 'tags',
+ },
+ 'location_map': {
+ 'filter': 'query',
+ 'orderby': 'query',
+ 'top': 'query',
+ 'skip': 'query',
+ 'select': 'query',
+ 'expand': 'query',
+ 'apply': 'query',
+ 'count': 'query',
+ 'inlinecount': 'query',
+ 'at': 'query',
+ 'tags': 'query',
+ },
+ 'collection_format_map': {
+ }
+ },
+ headers_map={
+ 'accept': [
+ 'application/json',
+ 'text/csv',
+ 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet'
+ ],
+ 'content_type': [],
+ },
+ api_client=api_client,
+ callable=__get_appliance_device_claim_list
+ )
+
+ def __get_appliance_device_upgrade_policy_by_moid(
+ self,
+ moid,
+ **kwargs
+ ):
+ """Read a 'appliance.DeviceUpgradePolicy' resource. # noqa: E501
+
+ This method makes a synchronous HTTP request by default. To make an
+ asynchronous HTTP request, please pass async_req=True
+
+ >>> thread = api.get_appliance_device_upgrade_policy_by_moid(moid, async_req=True)
+ >>> result = thread.get()
+
+ Args:
+ moid (str): The unique Moid identifier of a resource instance.
+
+ Keyword Args:
+ _return_http_data_only (bool): response data without head status
+ code and headers. Default is True.
+ _preload_content (bool): if False, the urllib3.HTTPResponse object
+ will be returned without reading/decoding response data.
+ Default is True.
+ _request_timeout (float/tuple): timeout setting for this request. If one
+ number provided, it will be total request timeout. It can also
+ be a pair (tuple) of (connection, read) timeouts.
+ Default is None.
+ _check_input_type (bool): specifies if type checking
+ should be done one the data sent to the server.
+ Default is True.
+ _check_return_type (bool): specifies if type checking
+ should be done one the data received from the server.
+ Default is True.
+ _host_index (int/None): specifies the index of the server
+ that we want to use.
+ Default is read from the configuration.
+ async_req (bool): execute request asynchronously
+
+ Returns:
+ ApplianceDeviceUpgradePolicy
+ If the method is called asynchronously, returns the request
+ thread.
+ """
+ kwargs['async_req'] = kwargs.get(
+ 'async_req', False
+ )
+ kwargs['_return_http_data_only'] = kwargs.get(
+ '_return_http_data_only', True
+ )
+ kwargs['_preload_content'] = kwargs.get(
+ '_preload_content', True
+ )
+ kwargs['_request_timeout'] = kwargs.get(
+ '_request_timeout', None
+ )
+ kwargs['_check_input_type'] = kwargs.get(
+ '_check_input_type', True
+ )
+ kwargs['_check_return_type'] = kwargs.get(
+ '_check_return_type', True
+ )
+ kwargs['_host_index'] = kwargs.get('_host_index')
+ kwargs['moid'] = \
+ moid
+ return self.call_with_http_info(**kwargs)
+
+ self.get_appliance_device_upgrade_policy_by_moid = _Endpoint(
settings={
- 'response_type': (ApplianceDeviceClaim,),
+ 'response_type': (ApplianceDeviceUpgradePolicy,),
'auth': [
'cookieAuth',
'http_signature',
'oAuth2',
'oAuth2'
],
- 'endpoint_path': '/api/v1/appliance/DeviceClaims/{Moid}',
- 'operation_id': 'get_appliance_device_claim_by_moid',
+ 'endpoint_path': '/api/v1/appliance/DeviceUpgradePolicies/{Moid}',
+ 'operation_id': 'get_appliance_device_upgrade_policy_by_moid',
'http_method': 'GET',
'servers': None,
},
@@ -3659,19 +4088,19 @@ def __get_appliance_device_claim_by_moid(
'content_type': [],
},
api_client=api_client,
- callable=__get_appliance_device_claim_by_moid
+ callable=__get_appliance_device_upgrade_policy_by_moid
)
- def __get_appliance_device_claim_list(
+ def __get_appliance_device_upgrade_policy_list(
self,
**kwargs
):
- """Read a 'appliance.DeviceClaim' resource. # noqa: E501
+ """Read a 'appliance.DeviceUpgradePolicy' resource. # noqa: E501
This method makes a synchronous HTTP request by default. To make an
asynchronous HTTP request, please pass async_req=True
- >>> thread = api.get_appliance_device_claim_list(async_req=True)
+ >>> thread = api.get_appliance_device_upgrade_policy_list(async_req=True)
>>> result = thread.get()
@@ -3708,7 +4137,7 @@ def __get_appliance_device_claim_list(
async_req (bool): execute request asynchronously
Returns:
- ApplianceDeviceClaimResponse
+ ApplianceDeviceUpgradePolicyResponse
If the method is called asynchronously, returns the request
thread.
"""
@@ -3733,17 +4162,17 @@ def __get_appliance_device_claim_list(
kwargs['_host_index'] = kwargs.get('_host_index')
return self.call_with_http_info(**kwargs)
- self.get_appliance_device_claim_list = _Endpoint(
+ self.get_appliance_device_upgrade_policy_list = _Endpoint(
settings={
- 'response_type': (ApplianceDeviceClaimResponse,),
+ 'response_type': (ApplianceDeviceUpgradePolicyResponse,),
'auth': [
'cookieAuth',
'http_signature',
'oAuth2',
'oAuth2'
],
- 'endpoint_path': '/api/v1/appliance/DeviceClaims',
- 'operation_id': 'get_appliance_device_claim_list',
+ 'endpoint_path': '/api/v1/appliance/DeviceUpgradePolicies',
+ 'operation_id': 'get_appliance_device_upgrade_policy_list',
'http_method': 'GET',
'servers': None,
},
@@ -3842,7 +4271,7 @@ def __get_appliance_device_claim_list(
'content_type': [],
},
api_client=api_client,
- callable=__get_appliance_device_claim_list
+ callable=__get_appliance_device_upgrade_policy_list
)
def __get_appliance_diag_setting_by_moid(
@@ -9130,6 +9559,145 @@ def __patch_appliance_device_claim(
callable=__patch_appliance_device_claim
)
+ def __patch_appliance_device_upgrade_policy(
+ self,
+ moid,
+ appliance_device_upgrade_policy,
+ **kwargs
+ ):
+ """Update a 'appliance.DeviceUpgradePolicy' resource. # noqa: E501
+
+ This method makes a synchronous HTTP request by default. To make an
+ asynchronous HTTP request, please pass async_req=True
+
+ >>> thread = api.patch_appliance_device_upgrade_policy(moid, appliance_device_upgrade_policy, async_req=True)
+ >>> result = thread.get()
+
+ Args:
+ moid (str): The unique Moid identifier of a resource instance.
+ appliance_device_upgrade_policy (ApplianceDeviceUpgradePolicy): The 'appliance.DeviceUpgradePolicy' resource to update.
+
+ Keyword Args:
+ if_match (str): 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_http_data_only (bool): response data without head status
+ code and headers. Default is True.
+ _preload_content (bool): if False, the urllib3.HTTPResponse object
+ will be returned without reading/decoding response data.
+ Default is True.
+ _request_timeout (float/tuple): timeout setting for this request. If one
+ number provided, it will be total request timeout. It can also
+ be a pair (tuple) of (connection, read) timeouts.
+ Default is None.
+ _check_input_type (bool): specifies if type checking
+ should be done one the data sent to the server.
+ Default is True.
+ _check_return_type (bool): specifies if type checking
+ should be done one the data received from the server.
+ Default is True.
+ _host_index (int/None): specifies the index of the server
+ that we want to use.
+ Default is read from the configuration.
+ async_req (bool): execute request asynchronously
+
+ Returns:
+ ApplianceDeviceUpgradePolicy
+ If the method is called asynchronously, returns the request
+ thread.
+ """
+ kwargs['async_req'] = kwargs.get(
+ 'async_req', False
+ )
+ kwargs['_return_http_data_only'] = kwargs.get(
+ '_return_http_data_only', True
+ )
+ kwargs['_preload_content'] = kwargs.get(
+ '_preload_content', True
+ )
+ kwargs['_request_timeout'] = kwargs.get(
+ '_request_timeout', None
+ )
+ kwargs['_check_input_type'] = kwargs.get(
+ '_check_input_type', True
+ )
+ kwargs['_check_return_type'] = kwargs.get(
+ '_check_return_type', True
+ )
+ kwargs['_host_index'] = kwargs.get('_host_index')
+ kwargs['moid'] = \
+ moid
+ kwargs['appliance_device_upgrade_policy'] = \
+ appliance_device_upgrade_policy
+ return self.call_with_http_info(**kwargs)
+
+ self.patch_appliance_device_upgrade_policy = _Endpoint(
+ settings={
+ 'response_type': (ApplianceDeviceUpgradePolicy,),
+ 'auth': [
+ 'cookieAuth',
+ 'http_signature',
+ 'oAuth2',
+ 'oAuth2'
+ ],
+ 'endpoint_path': '/api/v1/appliance/DeviceUpgradePolicies/{Moid}',
+ 'operation_id': 'patch_appliance_device_upgrade_policy',
+ 'http_method': 'PATCH',
+ 'servers': None,
+ },
+ params_map={
+ 'all': [
+ 'moid',
+ 'appliance_device_upgrade_policy',
+ 'if_match',
+ ],
+ 'required': [
+ 'moid',
+ 'appliance_device_upgrade_policy',
+ ],
+ 'nullable': [
+ ],
+ 'enum': [
+ ],
+ 'validation': [
+ ]
+ },
+ root_map={
+ 'validations': {
+ },
+ 'allowed_values': {
+ },
+ 'openapi_types': {
+ 'moid':
+ (str,),
+ 'appliance_device_upgrade_policy':
+ (ApplianceDeviceUpgradePolicy,),
+ 'if_match':
+ (str,),
+ },
+ 'attribute_map': {
+ 'moid': 'Moid',
+ 'if_match': 'If-Match',
+ },
+ 'location_map': {
+ 'moid': 'path',
+ 'appliance_device_upgrade_policy': 'body',
+ 'if_match': 'header',
+ },
+ 'collection_format_map': {
+ }
+ },
+ headers_map={
+ 'accept': [
+ 'application/json'
+ ],
+ 'content_type': [
+ 'application/json',
+ 'application/json-patch+json'
+ ]
+ },
+ api_client=api_client,
+ callable=__patch_appliance_device_upgrade_policy
+ )
+
def __patch_appliance_diag_setting(
self,
moid,
@@ -10520,6 +11088,145 @@ def __update_appliance_device_claim(
callable=__update_appliance_device_claim
)
+ def __update_appliance_device_upgrade_policy(
+ self,
+ moid,
+ appliance_device_upgrade_policy,
+ **kwargs
+ ):
+ """Update a 'appliance.DeviceUpgradePolicy' resource. # noqa: E501
+
+ This method makes a synchronous HTTP request by default. To make an
+ asynchronous HTTP request, please pass async_req=True
+
+ >>> thread = api.update_appliance_device_upgrade_policy(moid, appliance_device_upgrade_policy, async_req=True)
+ >>> result = thread.get()
+
+ Args:
+ moid (str): The unique Moid identifier of a resource instance.
+ appliance_device_upgrade_policy (ApplianceDeviceUpgradePolicy): The 'appliance.DeviceUpgradePolicy' resource to update.
+
+ Keyword Args:
+ if_match (str): 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_http_data_only (bool): response data without head status
+ code and headers. Default is True.
+ _preload_content (bool): if False, the urllib3.HTTPResponse object
+ will be returned without reading/decoding response data.
+ Default is True.
+ _request_timeout (float/tuple): timeout setting for this request. If one
+ number provided, it will be total request timeout. It can also
+ be a pair (tuple) of (connection, read) timeouts.
+ Default is None.
+ _check_input_type (bool): specifies if type checking
+ should be done one the data sent to the server.
+ Default is True.
+ _check_return_type (bool): specifies if type checking
+ should be done one the data received from the server.
+ Default is True.
+ _host_index (int/None): specifies the index of the server
+ that we want to use.
+ Default is read from the configuration.
+ async_req (bool): execute request asynchronously
+
+ Returns:
+ ApplianceDeviceUpgradePolicy
+ If the method is called asynchronously, returns the request
+ thread.
+ """
+ kwargs['async_req'] = kwargs.get(
+ 'async_req', False
+ )
+ kwargs['_return_http_data_only'] = kwargs.get(
+ '_return_http_data_only', True
+ )
+ kwargs['_preload_content'] = kwargs.get(
+ '_preload_content', True
+ )
+ kwargs['_request_timeout'] = kwargs.get(
+ '_request_timeout', None
+ )
+ kwargs['_check_input_type'] = kwargs.get(
+ '_check_input_type', True
+ )
+ kwargs['_check_return_type'] = kwargs.get(
+ '_check_return_type', True
+ )
+ kwargs['_host_index'] = kwargs.get('_host_index')
+ kwargs['moid'] = \
+ moid
+ kwargs['appliance_device_upgrade_policy'] = \
+ appliance_device_upgrade_policy
+ return self.call_with_http_info(**kwargs)
+
+ self.update_appliance_device_upgrade_policy = _Endpoint(
+ settings={
+ 'response_type': (ApplianceDeviceUpgradePolicy,),
+ 'auth': [
+ 'cookieAuth',
+ 'http_signature',
+ 'oAuth2',
+ 'oAuth2'
+ ],
+ 'endpoint_path': '/api/v1/appliance/DeviceUpgradePolicies/{Moid}',
+ 'operation_id': 'update_appliance_device_upgrade_policy',
+ 'http_method': 'POST',
+ 'servers': None,
+ },
+ params_map={
+ 'all': [
+ 'moid',
+ 'appliance_device_upgrade_policy',
+ 'if_match',
+ ],
+ 'required': [
+ 'moid',
+ 'appliance_device_upgrade_policy',
+ ],
+ 'nullable': [
+ ],
+ 'enum': [
+ ],
+ 'validation': [
+ ]
+ },
+ root_map={
+ 'validations': {
+ },
+ 'allowed_values': {
+ },
+ 'openapi_types': {
+ 'moid':
+ (str,),
+ 'appliance_device_upgrade_policy':
+ (ApplianceDeviceUpgradePolicy,),
+ 'if_match':
+ (str,),
+ },
+ 'attribute_map': {
+ 'moid': 'Moid',
+ 'if_match': 'If-Match',
+ },
+ 'location_map': {
+ 'moid': 'path',
+ 'appliance_device_upgrade_policy': 'body',
+ 'if_match': 'header',
+ },
+ 'collection_format_map': {
+ }
+ },
+ headers_map={
+ 'accept': [
+ 'application/json'
+ ],
+ 'content_type': [
+ 'application/json',
+ 'application/json-patch+json'
+ ]
+ },
+ api_client=api_client,
+ callable=__update_appliance_device_upgrade_policy
+ )
+
def __update_appliance_diag_setting(
self,
moid,
diff --git a/intersight/api/asset_api.py b/intersight/api/asset_api.py
index 8381430129..a0e9bc2935 100644
--- a/intersight/api/asset_api.py
+++ b/intersight/api/asset_api.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/api/bios_api.py b/intersight/api/bios_api.py
index 2302ba8357..4eed1e1854 100644
--- a/intersight/api/bios_api.py
+++ b/intersight/api/bios_api.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/api/boot_api.py b/intersight/api/boot_api.py
index b62295b880..ffcdcec935 100644
--- a/intersight/api/boot_api.py
+++ b/intersight/api/boot_api.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/api/bulk_api.py b/intersight/api/bulk_api.py
index 5bc00d93c6..a6ef3bcd89 100644
--- a/intersight/api/bulk_api.py
+++ b/intersight/api/bulk_api.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
@@ -22,9 +22,16 @@
none_type,
validate_and_convert_types
)
+from intersight.model.bulk_export import BulkExport
+from intersight.model.bulk_export_response import BulkExportResponse
+from intersight.model.bulk_exported_item import BulkExportedItem
+from intersight.model.bulk_exported_item_response import BulkExportedItemResponse
from intersight.model.bulk_mo_cloner import BulkMoCloner
from intersight.model.bulk_mo_merger import BulkMoMerger
from intersight.model.bulk_request import BulkRequest
+from intersight.model.bulk_request_response import BulkRequestResponse
+from intersight.model.bulk_sub_request_obj import BulkSubRequestObj
+from intersight.model.bulk_sub_request_obj_response import BulkSubRequestObjResponse
from intersight.model.error import Error
@@ -40,6 +47,140 @@ def __init__(self, api_client=None):
api_client = ApiClient()
self.api_client = api_client
+ def __create_bulk_export(
+ self,
+ bulk_export,
+ **kwargs
+ ):
+ """Create a 'bulk.Export' resource. # noqa: E501
+
+ This method makes a synchronous HTTP request by default. To make an
+ asynchronous HTTP request, please pass async_req=True
+
+ >>> thread = api.create_bulk_export(bulk_export, async_req=True)
+ >>> result = thread.get()
+
+ Args:
+ bulk_export (BulkExport): The 'bulk.Export' resource to create.
+
+ Keyword Args:
+ if_match (str): 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 (str): 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_http_data_only (bool): response data without head status
+ code and headers. Default is True.
+ _preload_content (bool): if False, the urllib3.HTTPResponse object
+ will be returned without reading/decoding response data.
+ Default is True.
+ _request_timeout (float/tuple): timeout setting for this request. If one
+ number provided, it will be total request timeout. It can also
+ be a pair (tuple) of (connection, read) timeouts.
+ Default is None.
+ _check_input_type (bool): specifies if type checking
+ should be done one the data sent to the server.
+ Default is True.
+ _check_return_type (bool): specifies if type checking
+ should be done one the data received from the server.
+ Default is True.
+ _host_index (int/None): specifies the index of the server
+ that we want to use.
+ Default is read from the configuration.
+ async_req (bool): execute request asynchronously
+
+ Returns:
+ BulkExport
+ If the method is called asynchronously, returns the request
+ thread.
+ """
+ kwargs['async_req'] = kwargs.get(
+ 'async_req', False
+ )
+ kwargs['_return_http_data_only'] = kwargs.get(
+ '_return_http_data_only', True
+ )
+ kwargs['_preload_content'] = kwargs.get(
+ '_preload_content', True
+ )
+ kwargs['_request_timeout'] = kwargs.get(
+ '_request_timeout', None
+ )
+ kwargs['_check_input_type'] = kwargs.get(
+ '_check_input_type', True
+ )
+ kwargs['_check_return_type'] = kwargs.get(
+ '_check_return_type', True
+ )
+ kwargs['_host_index'] = kwargs.get('_host_index')
+ kwargs['bulk_export'] = \
+ bulk_export
+ return self.call_with_http_info(**kwargs)
+
+ self.create_bulk_export = _Endpoint(
+ settings={
+ 'response_type': (BulkExport,),
+ 'auth': [
+ 'cookieAuth',
+ 'http_signature',
+ 'oAuth2',
+ 'oAuth2'
+ ],
+ 'endpoint_path': '/api/v1/bulk/Exports',
+ 'operation_id': 'create_bulk_export',
+ 'http_method': 'POST',
+ 'servers': None,
+ },
+ params_map={
+ 'all': [
+ 'bulk_export',
+ 'if_match',
+ 'if_none_match',
+ ],
+ 'required': [
+ 'bulk_export',
+ ],
+ 'nullable': [
+ ],
+ 'enum': [
+ ],
+ 'validation': [
+ ]
+ },
+ root_map={
+ 'validations': {
+ },
+ 'allowed_values': {
+ },
+ 'openapi_types': {
+ 'bulk_export':
+ (BulkExport,),
+ 'if_match':
+ (str,),
+ 'if_none_match':
+ (str,),
+ },
+ 'attribute_map': {
+ 'if_match': 'If-Match',
+ 'if_none_match': 'If-None-Match',
+ },
+ 'location_map': {
+ 'bulk_export': 'body',
+ 'if_match': 'header',
+ 'if_none_match': 'header',
+ },
+ 'collection_format_map': {
+ }
+ },
+ headers_map={
+ 'accept': [
+ 'application/json'
+ ],
+ 'content_type': [
+ 'application/json'
+ ]
+ },
+ api_client=api_client,
+ callable=__create_bulk_export
+ )
+
def __create_bulk_mo_cloner(
self,
bulk_mo_cloner,
@@ -441,3 +582,1626 @@ def __create_bulk_request(
api_client=api_client,
callable=__create_bulk_request
)
+
+ def __delete_bulk_export(
+ self,
+ moid,
+ **kwargs
+ ):
+ """Delete a 'bulk.Export' resource. # noqa: E501
+
+ This method makes a synchronous HTTP request by default. To make an
+ asynchronous HTTP request, please pass async_req=True
+
+ >>> thread = api.delete_bulk_export(moid, async_req=True)
+ >>> result = thread.get()
+
+ Args:
+ moid (str): The unique Moid identifier of a resource instance.
+
+ Keyword Args:
+ _return_http_data_only (bool): response data without head status
+ code and headers. Default is True.
+ _preload_content (bool): if False, the urllib3.HTTPResponse object
+ will be returned without reading/decoding response data.
+ Default is True.
+ _request_timeout (float/tuple): timeout setting for this request. If one
+ number provided, it will be total request timeout. It can also
+ be a pair (tuple) of (connection, read) timeouts.
+ Default is None.
+ _check_input_type (bool): specifies if type checking
+ should be done one the data sent to the server.
+ Default is True.
+ _check_return_type (bool): specifies if type checking
+ should be done one the data received from the server.
+ Default is True.
+ _host_index (int/None): specifies the index of the server
+ that we want to use.
+ Default is read from the configuration.
+ async_req (bool): execute request asynchronously
+
+ Returns:
+ None
+ If the method is called asynchronously, returns the request
+ thread.
+ """
+ kwargs['async_req'] = kwargs.get(
+ 'async_req', False
+ )
+ kwargs['_return_http_data_only'] = kwargs.get(
+ '_return_http_data_only', True
+ )
+ kwargs['_preload_content'] = kwargs.get(
+ '_preload_content', True
+ )
+ kwargs['_request_timeout'] = kwargs.get(
+ '_request_timeout', None
+ )
+ kwargs['_check_input_type'] = kwargs.get(
+ '_check_input_type', True
+ )
+ kwargs['_check_return_type'] = kwargs.get(
+ '_check_return_type', True
+ )
+ kwargs['_host_index'] = kwargs.get('_host_index')
+ kwargs['moid'] = \
+ moid
+ return self.call_with_http_info(**kwargs)
+
+ self.delete_bulk_export = _Endpoint(
+ settings={
+ 'response_type': None,
+ 'auth': [
+ 'cookieAuth',
+ 'http_signature',
+ 'oAuth2',
+ 'oAuth2'
+ ],
+ 'endpoint_path': '/api/v1/bulk/Exports/{Moid}',
+ 'operation_id': 'delete_bulk_export',
+ 'http_method': 'DELETE',
+ 'servers': None,
+ },
+ params_map={
+ 'all': [
+ 'moid',
+ ],
+ 'required': [
+ 'moid',
+ ],
+ 'nullable': [
+ ],
+ 'enum': [
+ ],
+ 'validation': [
+ ]
+ },
+ root_map={
+ 'validations': {
+ },
+ 'allowed_values': {
+ },
+ 'openapi_types': {
+ 'moid':
+ (str,),
+ },
+ 'attribute_map': {
+ 'moid': 'Moid',
+ },
+ 'location_map': {
+ 'moid': 'path',
+ },
+ 'collection_format_map': {
+ }
+ },
+ headers_map={
+ 'accept': [
+ 'application/json'
+ ],
+ 'content_type': [],
+ },
+ api_client=api_client,
+ callable=__delete_bulk_export
+ )
+
+ def __get_bulk_export_by_moid(
+ self,
+ moid,
+ **kwargs
+ ):
+ """Read a 'bulk.Export' resource. # noqa: E501
+
+ This method makes a synchronous HTTP request by default. To make an
+ asynchronous HTTP request, please pass async_req=True
+
+ >>> thread = api.get_bulk_export_by_moid(moid, async_req=True)
+ >>> result = thread.get()
+
+ Args:
+ moid (str): The unique Moid identifier of a resource instance.
+
+ Keyword Args:
+ _return_http_data_only (bool): response data without head status
+ code and headers. Default is True.
+ _preload_content (bool): if False, the urllib3.HTTPResponse object
+ will be returned without reading/decoding response data.
+ Default is True.
+ _request_timeout (float/tuple): timeout setting for this request. If one
+ number provided, it will be total request timeout. It can also
+ be a pair (tuple) of (connection, read) timeouts.
+ Default is None.
+ _check_input_type (bool): specifies if type checking
+ should be done one the data sent to the server.
+ Default is True.
+ _check_return_type (bool): specifies if type checking
+ should be done one the data received from the server.
+ Default is True.
+ _host_index (int/None): specifies the index of the server
+ that we want to use.
+ Default is read from the configuration.
+ async_req (bool): execute request asynchronously
+
+ Returns:
+ BulkExport
+ If the method is called asynchronously, returns the request
+ thread.
+ """
+ kwargs['async_req'] = kwargs.get(
+ 'async_req', False
+ )
+ kwargs['_return_http_data_only'] = kwargs.get(
+ '_return_http_data_only', True
+ )
+ kwargs['_preload_content'] = kwargs.get(
+ '_preload_content', True
+ )
+ kwargs['_request_timeout'] = kwargs.get(
+ '_request_timeout', None
+ )
+ kwargs['_check_input_type'] = kwargs.get(
+ '_check_input_type', True
+ )
+ kwargs['_check_return_type'] = kwargs.get(
+ '_check_return_type', True
+ )
+ kwargs['_host_index'] = kwargs.get('_host_index')
+ kwargs['moid'] = \
+ moid
+ return self.call_with_http_info(**kwargs)
+
+ self.get_bulk_export_by_moid = _Endpoint(
+ settings={
+ 'response_type': (BulkExport,),
+ 'auth': [
+ 'cookieAuth',
+ 'http_signature',
+ 'oAuth2',
+ 'oAuth2'
+ ],
+ 'endpoint_path': '/api/v1/bulk/Exports/{Moid}',
+ 'operation_id': 'get_bulk_export_by_moid',
+ 'http_method': 'GET',
+ 'servers': None,
+ },
+ params_map={
+ 'all': [
+ 'moid',
+ ],
+ 'required': [
+ 'moid',
+ ],
+ 'nullable': [
+ ],
+ 'enum': [
+ ],
+ 'validation': [
+ ]
+ },
+ root_map={
+ 'validations': {
+ },
+ 'allowed_values': {
+ },
+ 'openapi_types': {
+ 'moid':
+ (str,),
+ },
+ 'attribute_map': {
+ 'moid': 'Moid',
+ },
+ 'location_map': {
+ 'moid': 'path',
+ },
+ 'collection_format_map': {
+ }
+ },
+ headers_map={
+ 'accept': [
+ 'application/json',
+ 'text/csv',
+ 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet'
+ ],
+ 'content_type': [],
+ },
+ api_client=api_client,
+ callable=__get_bulk_export_by_moid
+ )
+
+ def __get_bulk_export_list(
+ self,
+ **kwargs
+ ):
+ """Read a 'bulk.Export' resource. # noqa: E501
+
+ This method makes a synchronous HTTP request by default. To make an
+ asynchronous HTTP request, please pass async_req=True
+
+ >>> thread = api.get_bulk_export_list(async_req=True)
+ >>> result = thread.get()
+
+
+ Keyword Args:
+ filter (str): 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] if omitted the server will use the default value of ""
+ orderby (str): Determines what properties are used to sort the collection of resources.. [optional]
+ top (int): Specifies the maximum number of resources to return in the response.. [optional] if omitted the server will use the default value of 100
+ skip (int): Specifies the number of resources to skip in the response.. [optional] if omitted the server will use the default value of 0
+ select (str): Specifies a subset of properties to return.. [optional] if omitted the server will use the default value of ""
+ expand (str): Specify additional attributes or related resources to return in addition to the primary resources.. [optional]
+ apply (str): 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.. [optional]
+ count (bool): The $count query specifies the service should return the count of the matching resources, instead of returning the resources.. [optional]
+ inlinecount (str): The $inlinecount query option allows clients to request an inline count of the matching resources included with the resources in the response.. [optional] if omitted the server will use the default value of "allpages"
+ at (str): 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.. [optional]
+ tags (str): 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_http_data_only (bool): response data without head status
+ code and headers. Default is True.
+ _preload_content (bool): if False, the urllib3.HTTPResponse object
+ will be returned without reading/decoding response data.
+ Default is True.
+ _request_timeout (float/tuple): timeout setting for this request. If one
+ number provided, it will be total request timeout. It can also
+ be a pair (tuple) of (connection, read) timeouts.
+ Default is None.
+ _check_input_type (bool): specifies if type checking
+ should be done one the data sent to the server.
+ Default is True.
+ _check_return_type (bool): specifies if type checking
+ should be done one the data received from the server.
+ Default is True.
+ _host_index (int/None): specifies the index of the server
+ that we want to use.
+ Default is read from the configuration.
+ async_req (bool): execute request asynchronously
+
+ Returns:
+ BulkExportResponse
+ If the method is called asynchronously, returns the request
+ thread.
+ """
+ kwargs['async_req'] = kwargs.get(
+ 'async_req', False
+ )
+ kwargs['_return_http_data_only'] = kwargs.get(
+ '_return_http_data_only', True
+ )
+ kwargs['_preload_content'] = kwargs.get(
+ '_preload_content', True
+ )
+ kwargs['_request_timeout'] = kwargs.get(
+ '_request_timeout', None
+ )
+ kwargs['_check_input_type'] = kwargs.get(
+ '_check_input_type', True
+ )
+ kwargs['_check_return_type'] = kwargs.get(
+ '_check_return_type', True
+ )
+ kwargs['_host_index'] = kwargs.get('_host_index')
+ return self.call_with_http_info(**kwargs)
+
+ self.get_bulk_export_list = _Endpoint(
+ settings={
+ 'response_type': (BulkExportResponse,),
+ 'auth': [
+ 'cookieAuth',
+ 'http_signature',
+ 'oAuth2',
+ 'oAuth2'
+ ],
+ 'endpoint_path': '/api/v1/bulk/Exports',
+ 'operation_id': 'get_bulk_export_list',
+ 'http_method': 'GET',
+ 'servers': None,
+ },
+ params_map={
+ 'all': [
+ 'filter',
+ 'orderby',
+ 'top',
+ 'skip',
+ 'select',
+ 'expand',
+ 'apply',
+ 'count',
+ 'inlinecount',
+ 'at',
+ 'tags',
+ ],
+ 'required': [],
+ 'nullable': [
+ ],
+ 'enum': [
+ 'inlinecount',
+ ],
+ 'validation': [
+ ]
+ },
+ root_map={
+ 'validations': {
+ },
+ 'allowed_values': {
+ ('inlinecount',): {
+
+ "ALLPAGES": "allpages",
+ "NONE": "none"
+ },
+ },
+ 'openapi_types': {
+ 'filter':
+ (str,),
+ 'orderby':
+ (str,),
+ 'top':
+ (int,),
+ 'skip':
+ (int,),
+ 'select':
+ (str,),
+ 'expand':
+ (str,),
+ 'apply':
+ (str,),
+ 'count':
+ (bool,),
+ 'inlinecount':
+ (str,),
+ 'at':
+ (str,),
+ 'tags':
+ (str,),
+ },
+ 'attribute_map': {
+ 'filter': '$filter',
+ 'orderby': '$orderby',
+ 'top': '$top',
+ 'skip': '$skip',
+ 'select': '$select',
+ 'expand': '$expand',
+ 'apply': '$apply',
+ 'count': '$count',
+ 'inlinecount': '$inlinecount',
+ 'at': 'at',
+ 'tags': 'tags',
+ },
+ 'location_map': {
+ 'filter': 'query',
+ 'orderby': 'query',
+ 'top': 'query',
+ 'skip': 'query',
+ 'select': 'query',
+ 'expand': 'query',
+ 'apply': 'query',
+ 'count': 'query',
+ 'inlinecount': 'query',
+ 'at': 'query',
+ 'tags': 'query',
+ },
+ 'collection_format_map': {
+ }
+ },
+ headers_map={
+ 'accept': [
+ 'application/json',
+ 'text/csv',
+ 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet'
+ ],
+ 'content_type': [],
+ },
+ api_client=api_client,
+ callable=__get_bulk_export_list
+ )
+
+ def __get_bulk_exported_item_by_moid(
+ self,
+ moid,
+ **kwargs
+ ):
+ """Read a 'bulk.ExportedItem' resource. # noqa: E501
+
+ This method makes a synchronous HTTP request by default. To make an
+ asynchronous HTTP request, please pass async_req=True
+
+ >>> thread = api.get_bulk_exported_item_by_moid(moid, async_req=True)
+ >>> result = thread.get()
+
+ Args:
+ moid (str): The unique Moid identifier of a resource instance.
+
+ Keyword Args:
+ _return_http_data_only (bool): response data without head status
+ code and headers. Default is True.
+ _preload_content (bool): if False, the urllib3.HTTPResponse object
+ will be returned without reading/decoding response data.
+ Default is True.
+ _request_timeout (float/tuple): timeout setting for this request. If one
+ number provided, it will be total request timeout. It can also
+ be a pair (tuple) of (connection, read) timeouts.
+ Default is None.
+ _check_input_type (bool): specifies if type checking
+ should be done one the data sent to the server.
+ Default is True.
+ _check_return_type (bool): specifies if type checking
+ should be done one the data received from the server.
+ Default is True.
+ _host_index (int/None): specifies the index of the server
+ that we want to use.
+ Default is read from the configuration.
+ async_req (bool): execute request asynchronously
+
+ Returns:
+ BulkExportedItem
+ If the method is called asynchronously, returns the request
+ thread.
+ """
+ kwargs['async_req'] = kwargs.get(
+ 'async_req', False
+ )
+ kwargs['_return_http_data_only'] = kwargs.get(
+ '_return_http_data_only', True
+ )
+ kwargs['_preload_content'] = kwargs.get(
+ '_preload_content', True
+ )
+ kwargs['_request_timeout'] = kwargs.get(
+ '_request_timeout', None
+ )
+ kwargs['_check_input_type'] = kwargs.get(
+ '_check_input_type', True
+ )
+ kwargs['_check_return_type'] = kwargs.get(
+ '_check_return_type', True
+ )
+ kwargs['_host_index'] = kwargs.get('_host_index')
+ kwargs['moid'] = \
+ moid
+ return self.call_with_http_info(**kwargs)
+
+ self.get_bulk_exported_item_by_moid = _Endpoint(
+ settings={
+ 'response_type': (BulkExportedItem,),
+ 'auth': [
+ 'cookieAuth',
+ 'http_signature',
+ 'oAuth2',
+ 'oAuth2'
+ ],
+ 'endpoint_path': '/api/v1/bulk/ExportedItems/{Moid}',
+ 'operation_id': 'get_bulk_exported_item_by_moid',
+ 'http_method': 'GET',
+ 'servers': None,
+ },
+ params_map={
+ 'all': [
+ 'moid',
+ ],
+ 'required': [
+ 'moid',
+ ],
+ 'nullable': [
+ ],
+ 'enum': [
+ ],
+ 'validation': [
+ ]
+ },
+ root_map={
+ 'validations': {
+ },
+ 'allowed_values': {
+ },
+ 'openapi_types': {
+ 'moid':
+ (str,),
+ },
+ 'attribute_map': {
+ 'moid': 'Moid',
+ },
+ 'location_map': {
+ 'moid': 'path',
+ },
+ 'collection_format_map': {
+ }
+ },
+ headers_map={
+ 'accept': [
+ 'application/json',
+ 'text/csv',
+ 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet'
+ ],
+ 'content_type': [],
+ },
+ api_client=api_client,
+ callable=__get_bulk_exported_item_by_moid
+ )
+
+ def __get_bulk_exported_item_list(
+ self,
+ **kwargs
+ ):
+ """Read a 'bulk.ExportedItem' resource. # noqa: E501
+
+ This method makes a synchronous HTTP request by default. To make an
+ asynchronous HTTP request, please pass async_req=True
+
+ >>> thread = api.get_bulk_exported_item_list(async_req=True)
+ >>> result = thread.get()
+
+
+ Keyword Args:
+ filter (str): 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] if omitted the server will use the default value of ""
+ orderby (str): Determines what properties are used to sort the collection of resources.. [optional]
+ top (int): Specifies the maximum number of resources to return in the response.. [optional] if omitted the server will use the default value of 100
+ skip (int): Specifies the number of resources to skip in the response.. [optional] if omitted the server will use the default value of 0
+ select (str): Specifies a subset of properties to return.. [optional] if omitted the server will use the default value of ""
+ expand (str): Specify additional attributes or related resources to return in addition to the primary resources.. [optional]
+ apply (str): 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.. [optional]
+ count (bool): The $count query specifies the service should return the count of the matching resources, instead of returning the resources.. [optional]
+ inlinecount (str): The $inlinecount query option allows clients to request an inline count of the matching resources included with the resources in the response.. [optional] if omitted the server will use the default value of "allpages"
+ at (str): 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.. [optional]
+ tags (str): 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_http_data_only (bool): response data without head status
+ code and headers. Default is True.
+ _preload_content (bool): if False, the urllib3.HTTPResponse object
+ will be returned without reading/decoding response data.
+ Default is True.
+ _request_timeout (float/tuple): timeout setting for this request. If one
+ number provided, it will be total request timeout. It can also
+ be a pair (tuple) of (connection, read) timeouts.
+ Default is None.
+ _check_input_type (bool): specifies if type checking
+ should be done one the data sent to the server.
+ Default is True.
+ _check_return_type (bool): specifies if type checking
+ should be done one the data received from the server.
+ Default is True.
+ _host_index (int/None): specifies the index of the server
+ that we want to use.
+ Default is read from the configuration.
+ async_req (bool): execute request asynchronously
+
+ Returns:
+ BulkExportedItemResponse
+ If the method is called asynchronously, returns the request
+ thread.
+ """
+ kwargs['async_req'] = kwargs.get(
+ 'async_req', False
+ )
+ kwargs['_return_http_data_only'] = kwargs.get(
+ '_return_http_data_only', True
+ )
+ kwargs['_preload_content'] = kwargs.get(
+ '_preload_content', True
+ )
+ kwargs['_request_timeout'] = kwargs.get(
+ '_request_timeout', None
+ )
+ kwargs['_check_input_type'] = kwargs.get(
+ '_check_input_type', True
+ )
+ kwargs['_check_return_type'] = kwargs.get(
+ '_check_return_type', True
+ )
+ kwargs['_host_index'] = kwargs.get('_host_index')
+ return self.call_with_http_info(**kwargs)
+
+ self.get_bulk_exported_item_list = _Endpoint(
+ settings={
+ 'response_type': (BulkExportedItemResponse,),
+ 'auth': [
+ 'cookieAuth',
+ 'http_signature',
+ 'oAuth2',
+ 'oAuth2'
+ ],
+ 'endpoint_path': '/api/v1/bulk/ExportedItems',
+ 'operation_id': 'get_bulk_exported_item_list',
+ 'http_method': 'GET',
+ 'servers': None,
+ },
+ params_map={
+ 'all': [
+ 'filter',
+ 'orderby',
+ 'top',
+ 'skip',
+ 'select',
+ 'expand',
+ 'apply',
+ 'count',
+ 'inlinecount',
+ 'at',
+ 'tags',
+ ],
+ 'required': [],
+ 'nullable': [
+ ],
+ 'enum': [
+ 'inlinecount',
+ ],
+ 'validation': [
+ ]
+ },
+ root_map={
+ 'validations': {
+ },
+ 'allowed_values': {
+ ('inlinecount',): {
+
+ "ALLPAGES": "allpages",
+ "NONE": "none"
+ },
+ },
+ 'openapi_types': {
+ 'filter':
+ (str,),
+ 'orderby':
+ (str,),
+ 'top':
+ (int,),
+ 'skip':
+ (int,),
+ 'select':
+ (str,),
+ 'expand':
+ (str,),
+ 'apply':
+ (str,),
+ 'count':
+ (bool,),
+ 'inlinecount':
+ (str,),
+ 'at':
+ (str,),
+ 'tags':
+ (str,),
+ },
+ 'attribute_map': {
+ 'filter': '$filter',
+ 'orderby': '$orderby',
+ 'top': '$top',
+ 'skip': '$skip',
+ 'select': '$select',
+ 'expand': '$expand',
+ 'apply': '$apply',
+ 'count': '$count',
+ 'inlinecount': '$inlinecount',
+ 'at': 'at',
+ 'tags': 'tags',
+ },
+ 'location_map': {
+ 'filter': 'query',
+ 'orderby': 'query',
+ 'top': 'query',
+ 'skip': 'query',
+ 'select': 'query',
+ 'expand': 'query',
+ 'apply': 'query',
+ 'count': 'query',
+ 'inlinecount': 'query',
+ 'at': 'query',
+ 'tags': 'query',
+ },
+ 'collection_format_map': {
+ }
+ },
+ headers_map={
+ 'accept': [
+ 'application/json',
+ 'text/csv',
+ 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet'
+ ],
+ 'content_type': [],
+ },
+ api_client=api_client,
+ callable=__get_bulk_exported_item_list
+ )
+
+ def __get_bulk_request_by_moid(
+ self,
+ moid,
+ **kwargs
+ ):
+ """Read a 'bulk.Request' resource. # noqa: E501
+
+ This method makes a synchronous HTTP request by default. To make an
+ asynchronous HTTP request, please pass async_req=True
+
+ >>> thread = api.get_bulk_request_by_moid(moid, async_req=True)
+ >>> result = thread.get()
+
+ Args:
+ moid (str): The unique Moid identifier of a resource instance.
+
+ Keyword Args:
+ _return_http_data_only (bool): response data without head status
+ code and headers. Default is True.
+ _preload_content (bool): if False, the urllib3.HTTPResponse object
+ will be returned without reading/decoding response data.
+ Default is True.
+ _request_timeout (float/tuple): timeout setting for this request. If one
+ number provided, it will be total request timeout. It can also
+ be a pair (tuple) of (connection, read) timeouts.
+ Default is None.
+ _check_input_type (bool): specifies if type checking
+ should be done one the data sent to the server.
+ Default is True.
+ _check_return_type (bool): specifies if type checking
+ should be done one the data received from the server.
+ Default is True.
+ _host_index (int/None): specifies the index of the server
+ that we want to use.
+ Default is read from the configuration.
+ async_req (bool): execute request asynchronously
+
+ Returns:
+ BulkRequest
+ If the method is called asynchronously, returns the request
+ thread.
+ """
+ kwargs['async_req'] = kwargs.get(
+ 'async_req', False
+ )
+ kwargs['_return_http_data_only'] = kwargs.get(
+ '_return_http_data_only', True
+ )
+ kwargs['_preload_content'] = kwargs.get(
+ '_preload_content', True
+ )
+ kwargs['_request_timeout'] = kwargs.get(
+ '_request_timeout', None
+ )
+ kwargs['_check_input_type'] = kwargs.get(
+ '_check_input_type', True
+ )
+ kwargs['_check_return_type'] = kwargs.get(
+ '_check_return_type', True
+ )
+ kwargs['_host_index'] = kwargs.get('_host_index')
+ kwargs['moid'] = \
+ moid
+ return self.call_with_http_info(**kwargs)
+
+ self.get_bulk_request_by_moid = _Endpoint(
+ settings={
+ 'response_type': (BulkRequest,),
+ 'auth': [
+ 'cookieAuth',
+ 'http_signature',
+ 'oAuth2',
+ 'oAuth2'
+ ],
+ 'endpoint_path': '/api/v1/bulk/Requests/{Moid}',
+ 'operation_id': 'get_bulk_request_by_moid',
+ 'http_method': 'GET',
+ 'servers': None,
+ },
+ params_map={
+ 'all': [
+ 'moid',
+ ],
+ 'required': [
+ 'moid',
+ ],
+ 'nullable': [
+ ],
+ 'enum': [
+ ],
+ 'validation': [
+ ]
+ },
+ root_map={
+ 'validations': {
+ },
+ 'allowed_values': {
+ },
+ 'openapi_types': {
+ 'moid':
+ (str,),
+ },
+ 'attribute_map': {
+ 'moid': 'Moid',
+ },
+ 'location_map': {
+ 'moid': 'path',
+ },
+ 'collection_format_map': {
+ }
+ },
+ headers_map={
+ 'accept': [
+ 'application/json',
+ 'text/csv',
+ 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet'
+ ],
+ 'content_type': [],
+ },
+ api_client=api_client,
+ callable=__get_bulk_request_by_moid
+ )
+
+ def __get_bulk_request_list(
+ self,
+ **kwargs
+ ):
+ """Read a 'bulk.Request' resource. # noqa: E501
+
+ This method makes a synchronous HTTP request by default. To make an
+ asynchronous HTTP request, please pass async_req=True
+
+ >>> thread = api.get_bulk_request_list(async_req=True)
+ >>> result = thread.get()
+
+
+ Keyword Args:
+ filter (str): 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] if omitted the server will use the default value of ""
+ orderby (str): Determines what properties are used to sort the collection of resources.. [optional]
+ top (int): Specifies the maximum number of resources to return in the response.. [optional] if omitted the server will use the default value of 100
+ skip (int): Specifies the number of resources to skip in the response.. [optional] if omitted the server will use the default value of 0
+ select (str): Specifies a subset of properties to return.. [optional] if omitted the server will use the default value of ""
+ expand (str): Specify additional attributes or related resources to return in addition to the primary resources.. [optional]
+ apply (str): 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.. [optional]
+ count (bool): The $count query specifies the service should return the count of the matching resources, instead of returning the resources.. [optional]
+ inlinecount (str): The $inlinecount query option allows clients to request an inline count of the matching resources included with the resources in the response.. [optional] if omitted the server will use the default value of "allpages"
+ at (str): 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.. [optional]
+ tags (str): 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_http_data_only (bool): response data without head status
+ code and headers. Default is True.
+ _preload_content (bool): if False, the urllib3.HTTPResponse object
+ will be returned without reading/decoding response data.
+ Default is True.
+ _request_timeout (float/tuple): timeout setting for this request. If one
+ number provided, it will be total request timeout. It can also
+ be a pair (tuple) of (connection, read) timeouts.
+ Default is None.
+ _check_input_type (bool): specifies if type checking
+ should be done one the data sent to the server.
+ Default is True.
+ _check_return_type (bool): specifies if type checking
+ should be done one the data received from the server.
+ Default is True.
+ _host_index (int/None): specifies the index of the server
+ that we want to use.
+ Default is read from the configuration.
+ async_req (bool): execute request asynchronously
+
+ Returns:
+ BulkRequestResponse
+ If the method is called asynchronously, returns the request
+ thread.
+ """
+ kwargs['async_req'] = kwargs.get(
+ 'async_req', False
+ )
+ kwargs['_return_http_data_only'] = kwargs.get(
+ '_return_http_data_only', True
+ )
+ kwargs['_preload_content'] = kwargs.get(
+ '_preload_content', True
+ )
+ kwargs['_request_timeout'] = kwargs.get(
+ '_request_timeout', None
+ )
+ kwargs['_check_input_type'] = kwargs.get(
+ '_check_input_type', True
+ )
+ kwargs['_check_return_type'] = kwargs.get(
+ '_check_return_type', True
+ )
+ kwargs['_host_index'] = kwargs.get('_host_index')
+ return self.call_with_http_info(**kwargs)
+
+ self.get_bulk_request_list = _Endpoint(
+ settings={
+ 'response_type': (BulkRequestResponse,),
+ 'auth': [
+ 'cookieAuth',
+ 'http_signature',
+ 'oAuth2',
+ 'oAuth2'
+ ],
+ 'endpoint_path': '/api/v1/bulk/Requests',
+ 'operation_id': 'get_bulk_request_list',
+ 'http_method': 'GET',
+ 'servers': None,
+ },
+ params_map={
+ 'all': [
+ 'filter',
+ 'orderby',
+ 'top',
+ 'skip',
+ 'select',
+ 'expand',
+ 'apply',
+ 'count',
+ 'inlinecount',
+ 'at',
+ 'tags',
+ ],
+ 'required': [],
+ 'nullable': [
+ ],
+ 'enum': [
+ 'inlinecount',
+ ],
+ 'validation': [
+ ]
+ },
+ root_map={
+ 'validations': {
+ },
+ 'allowed_values': {
+ ('inlinecount',): {
+
+ "ALLPAGES": "allpages",
+ "NONE": "none"
+ },
+ },
+ 'openapi_types': {
+ 'filter':
+ (str,),
+ 'orderby':
+ (str,),
+ 'top':
+ (int,),
+ 'skip':
+ (int,),
+ 'select':
+ (str,),
+ 'expand':
+ (str,),
+ 'apply':
+ (str,),
+ 'count':
+ (bool,),
+ 'inlinecount':
+ (str,),
+ 'at':
+ (str,),
+ 'tags':
+ (str,),
+ },
+ 'attribute_map': {
+ 'filter': '$filter',
+ 'orderby': '$orderby',
+ 'top': '$top',
+ 'skip': '$skip',
+ 'select': '$select',
+ 'expand': '$expand',
+ 'apply': '$apply',
+ 'count': '$count',
+ 'inlinecount': '$inlinecount',
+ 'at': 'at',
+ 'tags': 'tags',
+ },
+ 'location_map': {
+ 'filter': 'query',
+ 'orderby': 'query',
+ 'top': 'query',
+ 'skip': 'query',
+ 'select': 'query',
+ 'expand': 'query',
+ 'apply': 'query',
+ 'count': 'query',
+ 'inlinecount': 'query',
+ 'at': 'query',
+ 'tags': 'query',
+ },
+ 'collection_format_map': {
+ }
+ },
+ headers_map={
+ 'accept': [
+ 'application/json',
+ 'text/csv',
+ 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet'
+ ],
+ 'content_type': [],
+ },
+ api_client=api_client,
+ callable=__get_bulk_request_list
+ )
+
+ def __get_bulk_sub_request_obj_by_moid(
+ self,
+ moid,
+ **kwargs
+ ):
+ """Read a 'bulk.SubRequestObj' resource. # noqa: E501
+
+ This method makes a synchronous HTTP request by default. To make an
+ asynchronous HTTP request, please pass async_req=True
+
+ >>> thread = api.get_bulk_sub_request_obj_by_moid(moid, async_req=True)
+ >>> result = thread.get()
+
+ Args:
+ moid (str): The unique Moid identifier of a resource instance.
+
+ Keyword Args:
+ _return_http_data_only (bool): response data without head status
+ code and headers. Default is True.
+ _preload_content (bool): if False, the urllib3.HTTPResponse object
+ will be returned without reading/decoding response data.
+ Default is True.
+ _request_timeout (float/tuple): timeout setting for this request. If one
+ number provided, it will be total request timeout. It can also
+ be a pair (tuple) of (connection, read) timeouts.
+ Default is None.
+ _check_input_type (bool): specifies if type checking
+ should be done one the data sent to the server.
+ Default is True.
+ _check_return_type (bool): specifies if type checking
+ should be done one the data received from the server.
+ Default is True.
+ _host_index (int/None): specifies the index of the server
+ that we want to use.
+ Default is read from the configuration.
+ async_req (bool): execute request asynchronously
+
+ Returns:
+ BulkSubRequestObj
+ If the method is called asynchronously, returns the request
+ thread.
+ """
+ kwargs['async_req'] = kwargs.get(
+ 'async_req', False
+ )
+ kwargs['_return_http_data_only'] = kwargs.get(
+ '_return_http_data_only', True
+ )
+ kwargs['_preload_content'] = kwargs.get(
+ '_preload_content', True
+ )
+ kwargs['_request_timeout'] = kwargs.get(
+ '_request_timeout', None
+ )
+ kwargs['_check_input_type'] = kwargs.get(
+ '_check_input_type', True
+ )
+ kwargs['_check_return_type'] = kwargs.get(
+ '_check_return_type', True
+ )
+ kwargs['_host_index'] = kwargs.get('_host_index')
+ kwargs['moid'] = \
+ moid
+ return self.call_with_http_info(**kwargs)
+
+ self.get_bulk_sub_request_obj_by_moid = _Endpoint(
+ settings={
+ 'response_type': (BulkSubRequestObj,),
+ 'auth': [
+ 'cookieAuth',
+ 'http_signature',
+ 'oAuth2',
+ 'oAuth2'
+ ],
+ 'endpoint_path': '/api/v1/bulk/SubRequestObjs/{Moid}',
+ 'operation_id': 'get_bulk_sub_request_obj_by_moid',
+ 'http_method': 'GET',
+ 'servers': None,
+ },
+ params_map={
+ 'all': [
+ 'moid',
+ ],
+ 'required': [
+ 'moid',
+ ],
+ 'nullable': [
+ ],
+ 'enum': [
+ ],
+ 'validation': [
+ ]
+ },
+ root_map={
+ 'validations': {
+ },
+ 'allowed_values': {
+ },
+ 'openapi_types': {
+ 'moid':
+ (str,),
+ },
+ 'attribute_map': {
+ 'moid': 'Moid',
+ },
+ 'location_map': {
+ 'moid': 'path',
+ },
+ 'collection_format_map': {
+ }
+ },
+ headers_map={
+ 'accept': [
+ 'application/json',
+ 'text/csv',
+ 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet'
+ ],
+ 'content_type': [],
+ },
+ api_client=api_client,
+ callable=__get_bulk_sub_request_obj_by_moid
+ )
+
+ def __get_bulk_sub_request_obj_list(
+ self,
+ **kwargs
+ ):
+ """Read a 'bulk.SubRequestObj' resource. # noqa: E501
+
+ This method makes a synchronous HTTP request by default. To make an
+ asynchronous HTTP request, please pass async_req=True
+
+ >>> thread = api.get_bulk_sub_request_obj_list(async_req=True)
+ >>> result = thread.get()
+
+
+ Keyword Args:
+ filter (str): 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] if omitted the server will use the default value of ""
+ orderby (str): Determines what properties are used to sort the collection of resources.. [optional]
+ top (int): Specifies the maximum number of resources to return in the response.. [optional] if omitted the server will use the default value of 100
+ skip (int): Specifies the number of resources to skip in the response.. [optional] if omitted the server will use the default value of 0
+ select (str): Specifies a subset of properties to return.. [optional] if omitted the server will use the default value of ""
+ expand (str): Specify additional attributes or related resources to return in addition to the primary resources.. [optional]
+ apply (str): 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.. [optional]
+ count (bool): The $count query specifies the service should return the count of the matching resources, instead of returning the resources.. [optional]
+ inlinecount (str): The $inlinecount query option allows clients to request an inline count of the matching resources included with the resources in the response.. [optional] if omitted the server will use the default value of "allpages"
+ at (str): 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.. [optional]
+ tags (str): 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_http_data_only (bool): response data without head status
+ code and headers. Default is True.
+ _preload_content (bool): if False, the urllib3.HTTPResponse object
+ will be returned without reading/decoding response data.
+ Default is True.
+ _request_timeout (float/tuple): timeout setting for this request. If one
+ number provided, it will be total request timeout. It can also
+ be a pair (tuple) of (connection, read) timeouts.
+ Default is None.
+ _check_input_type (bool): specifies if type checking
+ should be done one the data sent to the server.
+ Default is True.
+ _check_return_type (bool): specifies if type checking
+ should be done one the data received from the server.
+ Default is True.
+ _host_index (int/None): specifies the index of the server
+ that we want to use.
+ Default is read from the configuration.
+ async_req (bool): execute request asynchronously
+
+ Returns:
+ BulkSubRequestObjResponse
+ If the method is called asynchronously, returns the request
+ thread.
+ """
+ kwargs['async_req'] = kwargs.get(
+ 'async_req', False
+ )
+ kwargs['_return_http_data_only'] = kwargs.get(
+ '_return_http_data_only', True
+ )
+ kwargs['_preload_content'] = kwargs.get(
+ '_preload_content', True
+ )
+ kwargs['_request_timeout'] = kwargs.get(
+ '_request_timeout', None
+ )
+ kwargs['_check_input_type'] = kwargs.get(
+ '_check_input_type', True
+ )
+ kwargs['_check_return_type'] = kwargs.get(
+ '_check_return_type', True
+ )
+ kwargs['_host_index'] = kwargs.get('_host_index')
+ return self.call_with_http_info(**kwargs)
+
+ self.get_bulk_sub_request_obj_list = _Endpoint(
+ settings={
+ 'response_type': (BulkSubRequestObjResponse,),
+ 'auth': [
+ 'cookieAuth',
+ 'http_signature',
+ 'oAuth2',
+ 'oAuth2'
+ ],
+ 'endpoint_path': '/api/v1/bulk/SubRequestObjs',
+ 'operation_id': 'get_bulk_sub_request_obj_list',
+ 'http_method': 'GET',
+ 'servers': None,
+ },
+ params_map={
+ 'all': [
+ 'filter',
+ 'orderby',
+ 'top',
+ 'skip',
+ 'select',
+ 'expand',
+ 'apply',
+ 'count',
+ 'inlinecount',
+ 'at',
+ 'tags',
+ ],
+ 'required': [],
+ 'nullable': [
+ ],
+ 'enum': [
+ 'inlinecount',
+ ],
+ 'validation': [
+ ]
+ },
+ root_map={
+ 'validations': {
+ },
+ 'allowed_values': {
+ ('inlinecount',): {
+
+ "ALLPAGES": "allpages",
+ "NONE": "none"
+ },
+ },
+ 'openapi_types': {
+ 'filter':
+ (str,),
+ 'orderby':
+ (str,),
+ 'top':
+ (int,),
+ 'skip':
+ (int,),
+ 'select':
+ (str,),
+ 'expand':
+ (str,),
+ 'apply':
+ (str,),
+ 'count':
+ (bool,),
+ 'inlinecount':
+ (str,),
+ 'at':
+ (str,),
+ 'tags':
+ (str,),
+ },
+ 'attribute_map': {
+ 'filter': '$filter',
+ 'orderby': '$orderby',
+ 'top': '$top',
+ 'skip': '$skip',
+ 'select': '$select',
+ 'expand': '$expand',
+ 'apply': '$apply',
+ 'count': '$count',
+ 'inlinecount': '$inlinecount',
+ 'at': 'at',
+ 'tags': 'tags',
+ },
+ 'location_map': {
+ 'filter': 'query',
+ 'orderby': 'query',
+ 'top': 'query',
+ 'skip': 'query',
+ 'select': 'query',
+ 'expand': 'query',
+ 'apply': 'query',
+ 'count': 'query',
+ 'inlinecount': 'query',
+ 'at': 'query',
+ 'tags': 'query',
+ },
+ 'collection_format_map': {
+ }
+ },
+ headers_map={
+ 'accept': [
+ 'application/json',
+ 'text/csv',
+ 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet'
+ ],
+ 'content_type': [],
+ },
+ api_client=api_client,
+ callable=__get_bulk_sub_request_obj_list
+ )
+
+ def __patch_bulk_export(
+ self,
+ moid,
+ bulk_export,
+ **kwargs
+ ):
+ """Update a 'bulk.Export' resource. # noqa: E501
+
+ This method makes a synchronous HTTP request by default. To make an
+ asynchronous HTTP request, please pass async_req=True
+
+ >>> thread = api.patch_bulk_export(moid, bulk_export, async_req=True)
+ >>> result = thread.get()
+
+ Args:
+ moid (str): The unique Moid identifier of a resource instance.
+ bulk_export (BulkExport): The 'bulk.Export' resource to update.
+
+ Keyword Args:
+ if_match (str): 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_http_data_only (bool): response data without head status
+ code and headers. Default is True.
+ _preload_content (bool): if False, the urllib3.HTTPResponse object
+ will be returned without reading/decoding response data.
+ Default is True.
+ _request_timeout (float/tuple): timeout setting for this request. If one
+ number provided, it will be total request timeout. It can also
+ be a pair (tuple) of (connection, read) timeouts.
+ Default is None.
+ _check_input_type (bool): specifies if type checking
+ should be done one the data sent to the server.
+ Default is True.
+ _check_return_type (bool): specifies if type checking
+ should be done one the data received from the server.
+ Default is True.
+ _host_index (int/None): specifies the index of the server
+ that we want to use.
+ Default is read from the configuration.
+ async_req (bool): execute request asynchronously
+
+ Returns:
+ BulkExport
+ If the method is called asynchronously, returns the request
+ thread.
+ """
+ kwargs['async_req'] = kwargs.get(
+ 'async_req', False
+ )
+ kwargs['_return_http_data_only'] = kwargs.get(
+ '_return_http_data_only', True
+ )
+ kwargs['_preload_content'] = kwargs.get(
+ '_preload_content', True
+ )
+ kwargs['_request_timeout'] = kwargs.get(
+ '_request_timeout', None
+ )
+ kwargs['_check_input_type'] = kwargs.get(
+ '_check_input_type', True
+ )
+ kwargs['_check_return_type'] = kwargs.get(
+ '_check_return_type', True
+ )
+ kwargs['_host_index'] = kwargs.get('_host_index')
+ kwargs['moid'] = \
+ moid
+ kwargs['bulk_export'] = \
+ bulk_export
+ return self.call_with_http_info(**kwargs)
+
+ self.patch_bulk_export = _Endpoint(
+ settings={
+ 'response_type': (BulkExport,),
+ 'auth': [
+ 'cookieAuth',
+ 'http_signature',
+ 'oAuth2',
+ 'oAuth2'
+ ],
+ 'endpoint_path': '/api/v1/bulk/Exports/{Moid}',
+ 'operation_id': 'patch_bulk_export',
+ 'http_method': 'PATCH',
+ 'servers': None,
+ },
+ params_map={
+ 'all': [
+ 'moid',
+ 'bulk_export',
+ 'if_match',
+ ],
+ 'required': [
+ 'moid',
+ 'bulk_export',
+ ],
+ 'nullable': [
+ ],
+ 'enum': [
+ ],
+ 'validation': [
+ ]
+ },
+ root_map={
+ 'validations': {
+ },
+ 'allowed_values': {
+ },
+ 'openapi_types': {
+ 'moid':
+ (str,),
+ 'bulk_export':
+ (BulkExport,),
+ 'if_match':
+ (str,),
+ },
+ 'attribute_map': {
+ 'moid': 'Moid',
+ 'if_match': 'If-Match',
+ },
+ 'location_map': {
+ 'moid': 'path',
+ 'bulk_export': 'body',
+ 'if_match': 'header',
+ },
+ 'collection_format_map': {
+ }
+ },
+ headers_map={
+ 'accept': [
+ 'application/json'
+ ],
+ 'content_type': [
+ 'application/json',
+ 'application/json-patch+json'
+ ]
+ },
+ api_client=api_client,
+ callable=__patch_bulk_export
+ )
+
+ def __update_bulk_export(
+ self,
+ moid,
+ bulk_export,
+ **kwargs
+ ):
+ """Update a 'bulk.Export' resource. # noqa: E501
+
+ This method makes a synchronous HTTP request by default. To make an
+ asynchronous HTTP request, please pass async_req=True
+
+ >>> thread = api.update_bulk_export(moid, bulk_export, async_req=True)
+ >>> result = thread.get()
+
+ Args:
+ moid (str): The unique Moid identifier of a resource instance.
+ bulk_export (BulkExport): The 'bulk.Export' resource to update.
+
+ Keyword Args:
+ if_match (str): 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_http_data_only (bool): response data without head status
+ code and headers. Default is True.
+ _preload_content (bool): if False, the urllib3.HTTPResponse object
+ will be returned without reading/decoding response data.
+ Default is True.
+ _request_timeout (float/tuple): timeout setting for this request. If one
+ number provided, it will be total request timeout. It can also
+ be a pair (tuple) of (connection, read) timeouts.
+ Default is None.
+ _check_input_type (bool): specifies if type checking
+ should be done one the data sent to the server.
+ Default is True.
+ _check_return_type (bool): specifies if type checking
+ should be done one the data received from the server.
+ Default is True.
+ _host_index (int/None): specifies the index of the server
+ that we want to use.
+ Default is read from the configuration.
+ async_req (bool): execute request asynchronously
+
+ Returns:
+ BulkExport
+ If the method is called asynchronously, returns the request
+ thread.
+ """
+ kwargs['async_req'] = kwargs.get(
+ 'async_req', False
+ )
+ kwargs['_return_http_data_only'] = kwargs.get(
+ '_return_http_data_only', True
+ )
+ kwargs['_preload_content'] = kwargs.get(
+ '_preload_content', True
+ )
+ kwargs['_request_timeout'] = kwargs.get(
+ '_request_timeout', None
+ )
+ kwargs['_check_input_type'] = kwargs.get(
+ '_check_input_type', True
+ )
+ kwargs['_check_return_type'] = kwargs.get(
+ '_check_return_type', True
+ )
+ kwargs['_host_index'] = kwargs.get('_host_index')
+ kwargs['moid'] = \
+ moid
+ kwargs['bulk_export'] = \
+ bulk_export
+ return self.call_with_http_info(**kwargs)
+
+ self.update_bulk_export = _Endpoint(
+ settings={
+ 'response_type': (BulkExport,),
+ 'auth': [
+ 'cookieAuth',
+ 'http_signature',
+ 'oAuth2',
+ 'oAuth2'
+ ],
+ 'endpoint_path': '/api/v1/bulk/Exports/{Moid}',
+ 'operation_id': 'update_bulk_export',
+ 'http_method': 'POST',
+ 'servers': None,
+ },
+ params_map={
+ 'all': [
+ 'moid',
+ 'bulk_export',
+ 'if_match',
+ ],
+ 'required': [
+ 'moid',
+ 'bulk_export',
+ ],
+ 'nullable': [
+ ],
+ 'enum': [
+ ],
+ 'validation': [
+ ]
+ },
+ root_map={
+ 'validations': {
+ },
+ 'allowed_values': {
+ },
+ 'openapi_types': {
+ 'moid':
+ (str,),
+ 'bulk_export':
+ (BulkExport,),
+ 'if_match':
+ (str,),
+ },
+ 'attribute_map': {
+ 'moid': 'Moid',
+ 'if_match': 'If-Match',
+ },
+ 'location_map': {
+ 'moid': 'path',
+ 'bulk_export': 'body',
+ 'if_match': 'header',
+ },
+ 'collection_format_map': {
+ }
+ },
+ headers_map={
+ 'accept': [
+ 'application/json'
+ ],
+ 'content_type': [
+ 'application/json',
+ 'application/json-patch+json'
+ ]
+ },
+ api_client=api_client,
+ callable=__update_bulk_export
+ )
diff --git a/intersight/api/capability_api.py b/intersight/api/capability_api.py
index d396b88d5b..6292be1144 100644
--- a/intersight/api/capability_api.py
+++ b/intersight/api/capability_api.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/api/certificatemanagement_api.py b/intersight/api/certificatemanagement_api.py
index ee5fd7e4c2..35273db393 100644
--- a/intersight/api/certificatemanagement_api.py
+++ b/intersight/api/certificatemanagement_api.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/api/chassis_api.py b/intersight/api/chassis_api.py
index 83409951af..c6b46bb78a 100644
--- a/intersight/api/chassis_api.py
+++ b/intersight/api/chassis_api.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/api/cloud_api.py b/intersight/api/cloud_api.py
index 6e1cf0b9f3..60ea10d77b 100644
--- a/intersight/api/cloud_api.py
+++ b/intersight/api/cloud_api.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/api/comm_api.py b/intersight/api/comm_api.py
index 52ab5f8a2e..19f2c1b441 100644
--- a/intersight/api/comm_api.py
+++ b/intersight/api/comm_api.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/api/compute_api.py b/intersight/api/compute_api.py
index 4dc0a3867d..2c18e65082 100644
--- a/intersight/api/compute_api.py
+++ b/intersight/api/compute_api.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/api/cond_api.py b/intersight/api/cond_api.py
index d67d0a3525..6095d23d40 100644
--- a/intersight/api/cond_api.py
+++ b/intersight/api/cond_api.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/api/connectorpack_api.py b/intersight/api/connectorpack_api.py
index 2b8d39b4c7..1c88c3e6c8 100644
--- a/intersight/api/connectorpack_api.py
+++ b/intersight/api/connectorpack_api.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/api/crd_api.py b/intersight/api/crd_api.py
index be82a56761..75f7e22485 100644
--- a/intersight/api/crd_api.py
+++ b/intersight/api/crd_api.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/api/deviceconnector_api.py b/intersight/api/deviceconnector_api.py
index e0276ef3f1..b6418bf9ba 100644
--- a/intersight/api/deviceconnector_api.py
+++ b/intersight/api/deviceconnector_api.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/api/equipment_api.py b/intersight/api/equipment_api.py
index 5e8a312e84..5b609f01d3 100644
--- a/intersight/api/equipment_api.py
+++ b/intersight/api/equipment_api.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
@@ -30,6 +30,8 @@
from intersight.model.equipment_chassis_response import EquipmentChassisResponse
from intersight.model.equipment_device_summary import EquipmentDeviceSummary
from intersight.model.equipment_device_summary_response import EquipmentDeviceSummaryResponse
+from intersight.model.equipment_expander_module import EquipmentExpanderModule
+from intersight.model.equipment_expander_module_response import EquipmentExpanderModuleResponse
from intersight.model.equipment_fan import EquipmentFan
from intersight.model.equipment_fan_control import EquipmentFanControl
from intersight.model.equipment_fan_control_response import EquipmentFanControlResponse
@@ -1311,6 +1313,312 @@ def __get_equipment_device_summary_list(
callable=__get_equipment_device_summary_list
)
+ def __get_equipment_expander_module_by_moid(
+ self,
+ moid,
+ **kwargs
+ ):
+ """Read a 'equipment.ExpanderModule' resource. # noqa: E501
+
+ This method makes a synchronous HTTP request by default. To make an
+ asynchronous HTTP request, please pass async_req=True
+
+ >>> thread = api.get_equipment_expander_module_by_moid(moid, async_req=True)
+ >>> result = thread.get()
+
+ Args:
+ moid (str): The unique Moid identifier of a resource instance.
+
+ Keyword Args:
+ _return_http_data_only (bool): response data without head status
+ code and headers. Default is True.
+ _preload_content (bool): if False, the urllib3.HTTPResponse object
+ will be returned without reading/decoding response data.
+ Default is True.
+ _request_timeout (float/tuple): timeout setting for this request. If one
+ number provided, it will be total request timeout. It can also
+ be a pair (tuple) of (connection, read) timeouts.
+ Default is None.
+ _check_input_type (bool): specifies if type checking
+ should be done one the data sent to the server.
+ Default is True.
+ _check_return_type (bool): specifies if type checking
+ should be done one the data received from the server.
+ Default is True.
+ _host_index (int/None): specifies the index of the server
+ that we want to use.
+ Default is read from the configuration.
+ async_req (bool): execute request asynchronously
+
+ Returns:
+ EquipmentExpanderModule
+ If the method is called asynchronously, returns the request
+ thread.
+ """
+ kwargs['async_req'] = kwargs.get(
+ 'async_req', False
+ )
+ kwargs['_return_http_data_only'] = kwargs.get(
+ '_return_http_data_only', True
+ )
+ kwargs['_preload_content'] = kwargs.get(
+ '_preload_content', True
+ )
+ kwargs['_request_timeout'] = kwargs.get(
+ '_request_timeout', None
+ )
+ kwargs['_check_input_type'] = kwargs.get(
+ '_check_input_type', True
+ )
+ kwargs['_check_return_type'] = kwargs.get(
+ '_check_return_type', True
+ )
+ kwargs['_host_index'] = kwargs.get('_host_index')
+ kwargs['moid'] = \
+ moid
+ return self.call_with_http_info(**kwargs)
+
+ self.get_equipment_expander_module_by_moid = _Endpoint(
+ settings={
+ 'response_type': (EquipmentExpanderModule,),
+ 'auth': [
+ 'cookieAuth',
+ 'http_signature',
+ 'oAuth2',
+ 'oAuth2'
+ ],
+ 'endpoint_path': '/api/v1/equipment/ExpanderModules/{Moid}',
+ 'operation_id': 'get_equipment_expander_module_by_moid',
+ 'http_method': 'GET',
+ 'servers': None,
+ },
+ params_map={
+ 'all': [
+ 'moid',
+ ],
+ 'required': [
+ 'moid',
+ ],
+ 'nullable': [
+ ],
+ 'enum': [
+ ],
+ 'validation': [
+ ]
+ },
+ root_map={
+ 'validations': {
+ },
+ 'allowed_values': {
+ },
+ 'openapi_types': {
+ 'moid':
+ (str,),
+ },
+ 'attribute_map': {
+ 'moid': 'Moid',
+ },
+ 'location_map': {
+ 'moid': 'path',
+ },
+ 'collection_format_map': {
+ }
+ },
+ headers_map={
+ 'accept': [
+ 'application/json',
+ 'text/csv',
+ 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet'
+ ],
+ 'content_type': [],
+ },
+ api_client=api_client,
+ callable=__get_equipment_expander_module_by_moid
+ )
+
+ def __get_equipment_expander_module_list(
+ self,
+ **kwargs
+ ):
+ """Read a 'equipment.ExpanderModule' resource. # noqa: E501
+
+ This method makes a synchronous HTTP request by default. To make an
+ asynchronous HTTP request, please pass async_req=True
+
+ >>> thread = api.get_equipment_expander_module_list(async_req=True)
+ >>> result = thread.get()
+
+
+ Keyword Args:
+ filter (str): 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] if omitted the server will use the default value of ""
+ orderby (str): Determines what properties are used to sort the collection of resources.. [optional]
+ top (int): Specifies the maximum number of resources to return in the response.. [optional] if omitted the server will use the default value of 100
+ skip (int): Specifies the number of resources to skip in the response.. [optional] if omitted the server will use the default value of 0
+ select (str): Specifies a subset of properties to return.. [optional] if omitted the server will use the default value of ""
+ expand (str): Specify additional attributes or related resources to return in addition to the primary resources.. [optional]
+ apply (str): 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.. [optional]
+ count (bool): The $count query specifies the service should return the count of the matching resources, instead of returning the resources.. [optional]
+ inlinecount (str): The $inlinecount query option allows clients to request an inline count of the matching resources included with the resources in the response.. [optional] if omitted the server will use the default value of "allpages"
+ at (str): 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.. [optional]
+ tags (str): 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_http_data_only (bool): response data without head status
+ code and headers. Default is True.
+ _preload_content (bool): if False, the urllib3.HTTPResponse object
+ will be returned without reading/decoding response data.
+ Default is True.
+ _request_timeout (float/tuple): timeout setting for this request. If one
+ number provided, it will be total request timeout. It can also
+ be a pair (tuple) of (connection, read) timeouts.
+ Default is None.
+ _check_input_type (bool): specifies if type checking
+ should be done one the data sent to the server.
+ Default is True.
+ _check_return_type (bool): specifies if type checking
+ should be done one the data received from the server.
+ Default is True.
+ _host_index (int/None): specifies the index of the server
+ that we want to use.
+ Default is read from the configuration.
+ async_req (bool): execute request asynchronously
+
+ Returns:
+ EquipmentExpanderModuleResponse
+ If the method is called asynchronously, returns the request
+ thread.
+ """
+ kwargs['async_req'] = kwargs.get(
+ 'async_req', False
+ )
+ kwargs['_return_http_data_only'] = kwargs.get(
+ '_return_http_data_only', True
+ )
+ kwargs['_preload_content'] = kwargs.get(
+ '_preload_content', True
+ )
+ kwargs['_request_timeout'] = kwargs.get(
+ '_request_timeout', None
+ )
+ kwargs['_check_input_type'] = kwargs.get(
+ '_check_input_type', True
+ )
+ kwargs['_check_return_type'] = kwargs.get(
+ '_check_return_type', True
+ )
+ kwargs['_host_index'] = kwargs.get('_host_index')
+ return self.call_with_http_info(**kwargs)
+
+ self.get_equipment_expander_module_list = _Endpoint(
+ settings={
+ 'response_type': (EquipmentExpanderModuleResponse,),
+ 'auth': [
+ 'cookieAuth',
+ 'http_signature',
+ 'oAuth2',
+ 'oAuth2'
+ ],
+ 'endpoint_path': '/api/v1/equipment/ExpanderModules',
+ 'operation_id': 'get_equipment_expander_module_list',
+ 'http_method': 'GET',
+ 'servers': None,
+ },
+ params_map={
+ 'all': [
+ 'filter',
+ 'orderby',
+ 'top',
+ 'skip',
+ 'select',
+ 'expand',
+ 'apply',
+ 'count',
+ 'inlinecount',
+ 'at',
+ 'tags',
+ ],
+ 'required': [],
+ 'nullable': [
+ ],
+ 'enum': [
+ 'inlinecount',
+ ],
+ 'validation': [
+ ]
+ },
+ root_map={
+ 'validations': {
+ },
+ 'allowed_values': {
+ ('inlinecount',): {
+
+ "ALLPAGES": "allpages",
+ "NONE": "none"
+ },
+ },
+ 'openapi_types': {
+ 'filter':
+ (str,),
+ 'orderby':
+ (str,),
+ 'top':
+ (int,),
+ 'skip':
+ (int,),
+ 'select':
+ (str,),
+ 'expand':
+ (str,),
+ 'apply':
+ (str,),
+ 'count':
+ (bool,),
+ 'inlinecount':
+ (str,),
+ 'at':
+ (str,),
+ 'tags':
+ (str,),
+ },
+ 'attribute_map': {
+ 'filter': '$filter',
+ 'orderby': '$orderby',
+ 'top': '$top',
+ 'skip': '$skip',
+ 'select': '$select',
+ 'expand': '$expand',
+ 'apply': '$apply',
+ 'count': '$count',
+ 'inlinecount': '$inlinecount',
+ 'at': 'at',
+ 'tags': 'tags',
+ },
+ 'location_map': {
+ 'filter': 'query',
+ 'orderby': 'query',
+ 'top': 'query',
+ 'skip': 'query',
+ 'select': 'query',
+ 'expand': 'query',
+ 'apply': 'query',
+ 'count': 'query',
+ 'inlinecount': 'query',
+ 'at': 'query',
+ 'tags': 'query',
+ },
+ 'collection_format_map': {
+ }
+ },
+ headers_map={
+ 'accept': [
+ 'application/json',
+ 'text/csv',
+ 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet'
+ ],
+ 'content_type': [],
+ },
+ api_client=api_client,
+ callable=__get_equipment_expander_module_list
+ )
+
def __get_equipment_fan_by_moid(
self,
moid,
@@ -8154,6 +8462,145 @@ def __patch_equipment_chassis_operation(
callable=__patch_equipment_chassis_operation
)
+ def __patch_equipment_expander_module(
+ self,
+ moid,
+ equipment_expander_module,
+ **kwargs
+ ):
+ """Update a 'equipment.ExpanderModule' resource. # noqa: E501
+
+ This method makes a synchronous HTTP request by default. To make an
+ asynchronous HTTP request, please pass async_req=True
+
+ >>> thread = api.patch_equipment_expander_module(moid, equipment_expander_module, async_req=True)
+ >>> result = thread.get()
+
+ Args:
+ moid (str): The unique Moid identifier of a resource instance.
+ equipment_expander_module (EquipmentExpanderModule): The 'equipment.ExpanderModule' resource to update.
+
+ Keyword Args:
+ if_match (str): 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_http_data_only (bool): response data without head status
+ code and headers. Default is True.
+ _preload_content (bool): if False, the urllib3.HTTPResponse object
+ will be returned without reading/decoding response data.
+ Default is True.
+ _request_timeout (float/tuple): timeout setting for this request. If one
+ number provided, it will be total request timeout. It can also
+ be a pair (tuple) of (connection, read) timeouts.
+ Default is None.
+ _check_input_type (bool): specifies if type checking
+ should be done one the data sent to the server.
+ Default is True.
+ _check_return_type (bool): specifies if type checking
+ should be done one the data received from the server.
+ Default is True.
+ _host_index (int/None): specifies the index of the server
+ that we want to use.
+ Default is read from the configuration.
+ async_req (bool): execute request asynchronously
+
+ Returns:
+ EquipmentExpanderModule
+ If the method is called asynchronously, returns the request
+ thread.
+ """
+ kwargs['async_req'] = kwargs.get(
+ 'async_req', False
+ )
+ kwargs['_return_http_data_only'] = kwargs.get(
+ '_return_http_data_only', True
+ )
+ kwargs['_preload_content'] = kwargs.get(
+ '_preload_content', True
+ )
+ kwargs['_request_timeout'] = kwargs.get(
+ '_request_timeout', None
+ )
+ kwargs['_check_input_type'] = kwargs.get(
+ '_check_input_type', True
+ )
+ kwargs['_check_return_type'] = kwargs.get(
+ '_check_return_type', True
+ )
+ kwargs['_host_index'] = kwargs.get('_host_index')
+ kwargs['moid'] = \
+ moid
+ kwargs['equipment_expander_module'] = \
+ equipment_expander_module
+ return self.call_with_http_info(**kwargs)
+
+ self.patch_equipment_expander_module = _Endpoint(
+ settings={
+ 'response_type': (EquipmentExpanderModule,),
+ 'auth': [
+ 'cookieAuth',
+ 'http_signature',
+ 'oAuth2',
+ 'oAuth2'
+ ],
+ 'endpoint_path': '/api/v1/equipment/ExpanderModules/{Moid}',
+ 'operation_id': 'patch_equipment_expander_module',
+ 'http_method': 'PATCH',
+ 'servers': None,
+ },
+ params_map={
+ 'all': [
+ 'moid',
+ 'equipment_expander_module',
+ 'if_match',
+ ],
+ 'required': [
+ 'moid',
+ 'equipment_expander_module',
+ ],
+ 'nullable': [
+ ],
+ 'enum': [
+ ],
+ 'validation': [
+ ]
+ },
+ root_map={
+ 'validations': {
+ },
+ 'allowed_values': {
+ },
+ 'openapi_types': {
+ 'moid':
+ (str,),
+ 'equipment_expander_module':
+ (EquipmentExpanderModule,),
+ 'if_match':
+ (str,),
+ },
+ 'attribute_map': {
+ 'moid': 'Moid',
+ 'if_match': 'If-Match',
+ },
+ 'location_map': {
+ 'moid': 'path',
+ 'equipment_expander_module': 'body',
+ 'if_match': 'header',
+ },
+ 'collection_format_map': {
+ }
+ },
+ headers_map={
+ 'accept': [
+ 'application/json'
+ ],
+ 'content_type': [
+ 'application/json',
+ 'application/json-patch+json'
+ ]
+ },
+ api_client=api_client,
+ callable=__patch_equipment_expander_module
+ )
+
def __patch_equipment_fan(
self,
moid,
@@ -11351,6 +11798,145 @@ def __update_equipment_chassis_operation(
callable=__update_equipment_chassis_operation
)
+ def __update_equipment_expander_module(
+ self,
+ moid,
+ equipment_expander_module,
+ **kwargs
+ ):
+ """Update a 'equipment.ExpanderModule' resource. # noqa: E501
+
+ This method makes a synchronous HTTP request by default. To make an
+ asynchronous HTTP request, please pass async_req=True
+
+ >>> thread = api.update_equipment_expander_module(moid, equipment_expander_module, async_req=True)
+ >>> result = thread.get()
+
+ Args:
+ moid (str): The unique Moid identifier of a resource instance.
+ equipment_expander_module (EquipmentExpanderModule): The 'equipment.ExpanderModule' resource to update.
+
+ Keyword Args:
+ if_match (str): 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_http_data_only (bool): response data without head status
+ code and headers. Default is True.
+ _preload_content (bool): if False, the urllib3.HTTPResponse object
+ will be returned without reading/decoding response data.
+ Default is True.
+ _request_timeout (float/tuple): timeout setting for this request. If one
+ number provided, it will be total request timeout. It can also
+ be a pair (tuple) of (connection, read) timeouts.
+ Default is None.
+ _check_input_type (bool): specifies if type checking
+ should be done one the data sent to the server.
+ Default is True.
+ _check_return_type (bool): specifies if type checking
+ should be done one the data received from the server.
+ Default is True.
+ _host_index (int/None): specifies the index of the server
+ that we want to use.
+ Default is read from the configuration.
+ async_req (bool): execute request asynchronously
+
+ Returns:
+ EquipmentExpanderModule
+ If the method is called asynchronously, returns the request
+ thread.
+ """
+ kwargs['async_req'] = kwargs.get(
+ 'async_req', False
+ )
+ kwargs['_return_http_data_only'] = kwargs.get(
+ '_return_http_data_only', True
+ )
+ kwargs['_preload_content'] = kwargs.get(
+ '_preload_content', True
+ )
+ kwargs['_request_timeout'] = kwargs.get(
+ '_request_timeout', None
+ )
+ kwargs['_check_input_type'] = kwargs.get(
+ '_check_input_type', True
+ )
+ kwargs['_check_return_type'] = kwargs.get(
+ '_check_return_type', True
+ )
+ kwargs['_host_index'] = kwargs.get('_host_index')
+ kwargs['moid'] = \
+ moid
+ kwargs['equipment_expander_module'] = \
+ equipment_expander_module
+ return self.call_with_http_info(**kwargs)
+
+ self.update_equipment_expander_module = _Endpoint(
+ settings={
+ 'response_type': (EquipmentExpanderModule,),
+ 'auth': [
+ 'cookieAuth',
+ 'http_signature',
+ 'oAuth2',
+ 'oAuth2'
+ ],
+ 'endpoint_path': '/api/v1/equipment/ExpanderModules/{Moid}',
+ 'operation_id': 'update_equipment_expander_module',
+ 'http_method': 'POST',
+ 'servers': None,
+ },
+ params_map={
+ 'all': [
+ 'moid',
+ 'equipment_expander_module',
+ 'if_match',
+ ],
+ 'required': [
+ 'moid',
+ 'equipment_expander_module',
+ ],
+ 'nullable': [
+ ],
+ 'enum': [
+ ],
+ 'validation': [
+ ]
+ },
+ root_map={
+ 'validations': {
+ },
+ 'allowed_values': {
+ },
+ 'openapi_types': {
+ 'moid':
+ (str,),
+ 'equipment_expander_module':
+ (EquipmentExpanderModule,),
+ 'if_match':
+ (str,),
+ },
+ 'attribute_map': {
+ 'moid': 'Moid',
+ 'if_match': 'If-Match',
+ },
+ 'location_map': {
+ 'moid': 'path',
+ 'equipment_expander_module': 'body',
+ 'if_match': 'header',
+ },
+ 'collection_format_map': {
+ }
+ },
+ headers_map={
+ 'accept': [
+ 'application/json'
+ ],
+ 'content_type': [
+ 'application/json',
+ 'application/json-patch+json'
+ ]
+ },
+ api_client=api_client,
+ callable=__update_equipment_expander_module
+ )
+
def __update_equipment_fan(
self,
moid,
diff --git a/intersight/api/ether_api.py b/intersight/api/ether_api.py
index 410e0c95ee..cdd6676c74 100644
--- a/intersight/api/ether_api.py
+++ b/intersight/api/ether_api.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/api/externalsite_api.py b/intersight/api/externalsite_api.py
index 3ae557f181..1544532c02 100644
--- a/intersight/api/externalsite_api.py
+++ b/intersight/api/externalsite_api.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/api/fabric_api.py b/intersight/api/fabric_api.py
index fa5700e738..c027d405c3 100644
--- a/intersight/api/fabric_api.py
+++ b/intersight/api/fabric_api.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/api/fault_api.py b/intersight/api/fault_api.py
index ade1f9cb67..228fb9bc77 100644
--- a/intersight/api/fault_api.py
+++ b/intersight/api/fault_api.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/api/fc_api.py b/intersight/api/fc_api.py
index 5be7fa9780..aa7b843a8d 100644
--- a/intersight/api/fc_api.py
+++ b/intersight/api/fc_api.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/api/fcpool_api.py b/intersight/api/fcpool_api.py
index b279fee462..d18f0ada18 100644
--- a/intersight/api/fcpool_api.py
+++ b/intersight/api/fcpool_api.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/api/feedback_api.py b/intersight/api/feedback_api.py
index fa0bf1a2fe..9769a86994 100644
--- a/intersight/api/feedback_api.py
+++ b/intersight/api/feedback_api.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/api/firmware_api.py b/intersight/api/firmware_api.py
index 4565632433..81ef9f25e4 100644
--- a/intersight/api/firmware_api.py
+++ b/intersight/api/firmware_api.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/api/forecast_api.py b/intersight/api/forecast_api.py
index ff671baee7..1430a999c5 100644
--- a/intersight/api/forecast_api.py
+++ b/intersight/api/forecast_api.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/api/graphics_api.py b/intersight/api/graphics_api.py
index f24d2aa7d9..44f6f6520b 100644
--- a/intersight/api/graphics_api.py
+++ b/intersight/api/graphics_api.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/api/hcl_api.py b/intersight/api/hcl_api.py
index 916ad81497..a397225c7c 100644
--- a/intersight/api/hcl_api.py
+++ b/intersight/api/hcl_api.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/api/hyperflex_api.py b/intersight/api/hyperflex_api.py
index b2a8351660..095ac596dd 100644
--- a/intersight/api/hyperflex_api.py
+++ b/intersight/api/hyperflex_api.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/api/iaas_api.py b/intersight/api/iaas_api.py
index 693a5cc947..ddeaa39466 100644
--- a/intersight/api/iaas_api.py
+++ b/intersight/api/iaas_api.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/api/iam_api.py b/intersight/api/iam_api.py
index 4e0ce7c8eb..364180d5af 100644
--- a/intersight/api/iam_api.py
+++ b/intersight/api/iam_api.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/api/inventory_api.py b/intersight/api/inventory_api.py
index 1ef988825d..5db9bce75d 100644
--- a/intersight/api/inventory_api.py
+++ b/intersight/api/inventory_api.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/api/ipmioverlan_api.py b/intersight/api/ipmioverlan_api.py
index 16d428fbb9..c813961ce8 100644
--- a/intersight/api/ipmioverlan_api.py
+++ b/intersight/api/ipmioverlan_api.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/api/ippool_api.py b/intersight/api/ippool_api.py
index 9abf234ccf..7ac556b283 100644
--- a/intersight/api/ippool_api.py
+++ b/intersight/api/ippool_api.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/api/iqnpool_api.py b/intersight/api/iqnpool_api.py
index 767b3f0309..96deb45345 100644
--- a/intersight/api/iqnpool_api.py
+++ b/intersight/api/iqnpool_api.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/api/iwotenant_api.py b/intersight/api/iwotenant_api.py
index e6b6d4192d..85fafbae57 100644
--- a/intersight/api/iwotenant_api.py
+++ b/intersight/api/iwotenant_api.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/api/kubernetes_api.py b/intersight/api/kubernetes_api.py
index 36d4b9f7a7..0bc34d22f6 100644
--- a/intersight/api/kubernetes_api.py
+++ b/intersight/api/kubernetes_api.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
@@ -35,6 +35,8 @@
from intersight.model.kubernetes_addon_policy_response import KubernetesAddonPolicyResponse
from intersight.model.kubernetes_addon_repository import KubernetesAddonRepository
from intersight.model.kubernetes_addon_repository_response import KubernetesAddonRepositoryResponse
+from intersight.model.kubernetes_baremetal_node_profile import KubernetesBaremetalNodeProfile
+from intersight.model.kubernetes_baremetal_node_profile_response import KubernetesBaremetalNodeProfileResponse
from intersight.model.kubernetes_catalog import KubernetesCatalog
from intersight.model.kubernetes_catalog_response import KubernetesCatalogResponse
from intersight.model.kubernetes_cluster import KubernetesCluster
@@ -901,6 +903,140 @@ def __create_kubernetes_addon_repository(
callable=__create_kubernetes_addon_repository
)
+ def __create_kubernetes_baremetal_node_profile(
+ self,
+ kubernetes_baremetal_node_profile,
+ **kwargs
+ ):
+ """Create a 'kubernetes.BaremetalNodeProfile' resource. # noqa: E501
+
+ This method makes a synchronous HTTP request by default. To make an
+ asynchronous HTTP request, please pass async_req=True
+
+ >>> thread = api.create_kubernetes_baremetal_node_profile(kubernetes_baremetal_node_profile, async_req=True)
+ >>> result = thread.get()
+
+ Args:
+ kubernetes_baremetal_node_profile (KubernetesBaremetalNodeProfile): The 'kubernetes.BaremetalNodeProfile' resource to create.
+
+ Keyword Args:
+ if_match (str): 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 (str): 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_http_data_only (bool): response data without head status
+ code and headers. Default is True.
+ _preload_content (bool): if False, the urllib3.HTTPResponse object
+ will be returned without reading/decoding response data.
+ Default is True.
+ _request_timeout (float/tuple): timeout setting for this request. If one
+ number provided, it will be total request timeout. It can also
+ be a pair (tuple) of (connection, read) timeouts.
+ Default is None.
+ _check_input_type (bool): specifies if type checking
+ should be done one the data sent to the server.
+ Default is True.
+ _check_return_type (bool): specifies if type checking
+ should be done one the data received from the server.
+ Default is True.
+ _host_index (int/None): specifies the index of the server
+ that we want to use.
+ Default is read from the configuration.
+ async_req (bool): execute request asynchronously
+
+ Returns:
+ KubernetesBaremetalNodeProfile
+ If the method is called asynchronously, returns the request
+ thread.
+ """
+ kwargs['async_req'] = kwargs.get(
+ 'async_req', False
+ )
+ kwargs['_return_http_data_only'] = kwargs.get(
+ '_return_http_data_only', True
+ )
+ kwargs['_preload_content'] = kwargs.get(
+ '_preload_content', True
+ )
+ kwargs['_request_timeout'] = kwargs.get(
+ '_request_timeout', None
+ )
+ kwargs['_check_input_type'] = kwargs.get(
+ '_check_input_type', True
+ )
+ kwargs['_check_return_type'] = kwargs.get(
+ '_check_return_type', True
+ )
+ kwargs['_host_index'] = kwargs.get('_host_index')
+ kwargs['kubernetes_baremetal_node_profile'] = \
+ kubernetes_baremetal_node_profile
+ return self.call_with_http_info(**kwargs)
+
+ self.create_kubernetes_baremetal_node_profile = _Endpoint(
+ settings={
+ 'response_type': (KubernetesBaremetalNodeProfile,),
+ 'auth': [
+ 'cookieAuth',
+ 'http_signature',
+ 'oAuth2',
+ 'oAuth2'
+ ],
+ 'endpoint_path': '/api/v1/kubernetes/BaremetalNodeProfiles',
+ 'operation_id': 'create_kubernetes_baremetal_node_profile',
+ 'http_method': 'POST',
+ 'servers': None,
+ },
+ params_map={
+ 'all': [
+ 'kubernetes_baremetal_node_profile',
+ 'if_match',
+ 'if_none_match',
+ ],
+ 'required': [
+ 'kubernetes_baremetal_node_profile',
+ ],
+ 'nullable': [
+ ],
+ 'enum': [
+ ],
+ 'validation': [
+ ]
+ },
+ root_map={
+ 'validations': {
+ },
+ 'allowed_values': {
+ },
+ 'openapi_types': {
+ 'kubernetes_baremetal_node_profile':
+ (KubernetesBaremetalNodeProfile,),
+ 'if_match':
+ (str,),
+ 'if_none_match':
+ (str,),
+ },
+ 'attribute_map': {
+ 'if_match': 'If-Match',
+ 'if_none_match': 'If-None-Match',
+ },
+ 'location_map': {
+ 'kubernetes_baremetal_node_profile': 'body',
+ 'if_match': 'header',
+ 'if_none_match': 'header',
+ },
+ 'collection_format_map': {
+ }
+ },
+ headers_map={
+ 'accept': [
+ 'application/json'
+ ],
+ 'content_type': [
+ 'application/json'
+ ]
+ },
+ api_client=api_client,
+ callable=__create_kubernetes_baremetal_node_profile
+ )
+
def __create_kubernetes_cluster(
self,
kubernetes_cluster,
@@ -3503,6 +3639,127 @@ def __delete_kubernetes_addon_repository(
callable=__delete_kubernetes_addon_repository
)
+ def __delete_kubernetes_baremetal_node_profile(
+ self,
+ moid,
+ **kwargs
+ ):
+ """Delete a 'kubernetes.BaremetalNodeProfile' resource. # noqa: E501
+
+ This method makes a synchronous HTTP request by default. To make an
+ asynchronous HTTP request, please pass async_req=True
+
+ >>> thread = api.delete_kubernetes_baremetal_node_profile(moid, async_req=True)
+ >>> result = thread.get()
+
+ Args:
+ moid (str): The unique Moid identifier of a resource instance.
+
+ Keyword Args:
+ _return_http_data_only (bool): response data without head status
+ code and headers. Default is True.
+ _preload_content (bool): if False, the urllib3.HTTPResponse object
+ will be returned without reading/decoding response data.
+ Default is True.
+ _request_timeout (float/tuple): timeout setting for this request. If one
+ number provided, it will be total request timeout. It can also
+ be a pair (tuple) of (connection, read) timeouts.
+ Default is None.
+ _check_input_type (bool): specifies if type checking
+ should be done one the data sent to the server.
+ Default is True.
+ _check_return_type (bool): specifies if type checking
+ should be done one the data received from the server.
+ Default is True.
+ _host_index (int/None): specifies the index of the server
+ that we want to use.
+ Default is read from the configuration.
+ async_req (bool): execute request asynchronously
+
+ Returns:
+ None
+ If the method is called asynchronously, returns the request
+ thread.
+ """
+ kwargs['async_req'] = kwargs.get(
+ 'async_req', False
+ )
+ kwargs['_return_http_data_only'] = kwargs.get(
+ '_return_http_data_only', True
+ )
+ kwargs['_preload_content'] = kwargs.get(
+ '_preload_content', True
+ )
+ kwargs['_request_timeout'] = kwargs.get(
+ '_request_timeout', None
+ )
+ kwargs['_check_input_type'] = kwargs.get(
+ '_check_input_type', True
+ )
+ kwargs['_check_return_type'] = kwargs.get(
+ '_check_return_type', True
+ )
+ kwargs['_host_index'] = kwargs.get('_host_index')
+ kwargs['moid'] = \
+ moid
+ return self.call_with_http_info(**kwargs)
+
+ self.delete_kubernetes_baremetal_node_profile = _Endpoint(
+ settings={
+ 'response_type': None,
+ 'auth': [
+ 'cookieAuth',
+ 'http_signature',
+ 'oAuth2',
+ 'oAuth2'
+ ],
+ 'endpoint_path': '/api/v1/kubernetes/BaremetalNodeProfiles/{Moid}',
+ 'operation_id': 'delete_kubernetes_baremetal_node_profile',
+ 'http_method': 'DELETE',
+ 'servers': None,
+ },
+ params_map={
+ 'all': [
+ 'moid',
+ ],
+ 'required': [
+ 'moid',
+ ],
+ 'nullable': [
+ ],
+ 'enum': [
+ ],
+ 'validation': [
+ ]
+ },
+ root_map={
+ 'validations': {
+ },
+ 'allowed_values': {
+ },
+ 'openapi_types': {
+ 'moid':
+ (str,),
+ },
+ 'attribute_map': {
+ 'moid': 'Moid',
+ },
+ 'location_map': {
+ 'moid': 'path',
+ },
+ 'collection_format_map': {
+ }
+ },
+ headers_map={
+ 'accept': [
+ 'application/json'
+ ],
+ 'content_type': [],
+ },
+ api_client=api_client,
+ callable=__delete_kubernetes_baremetal_node_profile
+ )
+
def __delete_kubernetes_cluster(
self,
moid,
@@ -7518,17 +7775,323 @@ def __get_kubernetes_addon_repository_by_moid(
moid
return self.call_with_http_info(**kwargs)
- self.get_kubernetes_addon_repository_by_moid = _Endpoint(
+ self.get_kubernetes_addon_repository_by_moid = _Endpoint(
+ settings={
+ 'response_type': (KubernetesAddonRepository,),
+ 'auth': [
+ 'cookieAuth',
+ 'http_signature',
+ 'oAuth2',
+ 'oAuth2'
+ ],
+ 'endpoint_path': '/api/v1/kubernetes/AddonRepositories/{Moid}',
+ 'operation_id': 'get_kubernetes_addon_repository_by_moid',
+ 'http_method': 'GET',
+ 'servers': None,
+ },
+ params_map={
+ 'all': [
+ 'moid',
+ ],
+ 'required': [
+ 'moid',
+ ],
+ 'nullable': [
+ ],
+ 'enum': [
+ ],
+ 'validation': [
+ ]
+ },
+ root_map={
+ 'validations': {
+ },
+ 'allowed_values': {
+ },
+ 'openapi_types': {
+ 'moid':
+ (str,),
+ },
+ 'attribute_map': {
+ 'moid': 'Moid',
+ },
+ 'location_map': {
+ 'moid': 'path',
+ },
+ 'collection_format_map': {
+ }
+ },
+ headers_map={
+ 'accept': [
+ 'application/json',
+ 'text/csv',
+ 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet'
+ ],
+ 'content_type': [],
+ },
+ api_client=api_client,
+ callable=__get_kubernetes_addon_repository_by_moid
+ )
+
+ def __get_kubernetes_addon_repository_list(
+ self,
+ **kwargs
+ ):
+ """Read a 'kubernetes.AddonRepository' resource. # noqa: E501
+
+ This method makes a synchronous HTTP request by default. To make an
+ asynchronous HTTP request, please pass async_req=True
+
+ >>> thread = api.get_kubernetes_addon_repository_list(async_req=True)
+ >>> result = thread.get()
+
+
+ Keyword Args:
+ filter (str): 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] if omitted the server will use the default value of ""
+ orderby (str): Determines what properties are used to sort the collection of resources.. [optional]
+ top (int): Specifies the maximum number of resources to return in the response.. [optional] if omitted the server will use the default value of 100
+ skip (int): Specifies the number of resources to skip in the response.. [optional] if omitted the server will use the default value of 0
+ select (str): Specifies a subset of properties to return.. [optional] if omitted the server will use the default value of ""
+ expand (str): Specify additional attributes or related resources to return in addition to the primary resources.. [optional]
+ apply (str): 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.. [optional]
+ count (bool): The $count query specifies the service should return the count of the matching resources, instead of returning the resources.. [optional]
+ inlinecount (str): The $inlinecount query option allows clients to request an inline count of the matching resources included with the resources in the response.. [optional] if omitted the server will use the default value of "allpages"
+ at (str): 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.. [optional]
+ tags (str): 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_http_data_only (bool): response data without head status
+ code and headers. Default is True.
+ _preload_content (bool): if False, the urllib3.HTTPResponse object
+ will be returned without reading/decoding response data.
+ Default is True.
+ _request_timeout (float/tuple): timeout setting for this request. If one
+ number provided, it will be total request timeout. It can also
+ be a pair (tuple) of (connection, read) timeouts.
+ Default is None.
+ _check_input_type (bool): specifies if type checking
+ should be done one the data sent to the server.
+ Default is True.
+ _check_return_type (bool): specifies if type checking
+ should be done one the data received from the server.
+ Default is True.
+ _host_index (int/None): specifies the index of the server
+ that we want to use.
+ Default is read from the configuration.
+ async_req (bool): execute request asynchronously
+
+ Returns:
+ KubernetesAddonRepositoryResponse
+ If the method is called asynchronously, returns the request
+ thread.
+ """
+ kwargs['async_req'] = kwargs.get(
+ 'async_req', False
+ )
+ kwargs['_return_http_data_only'] = kwargs.get(
+ '_return_http_data_only', True
+ )
+ kwargs['_preload_content'] = kwargs.get(
+ '_preload_content', True
+ )
+ kwargs['_request_timeout'] = kwargs.get(
+ '_request_timeout', None
+ )
+ kwargs['_check_input_type'] = kwargs.get(
+ '_check_input_type', True
+ )
+ kwargs['_check_return_type'] = kwargs.get(
+ '_check_return_type', True
+ )
+ kwargs['_host_index'] = kwargs.get('_host_index')
+ return self.call_with_http_info(**kwargs)
+
+ self.get_kubernetes_addon_repository_list = _Endpoint(
+ settings={
+ 'response_type': (KubernetesAddonRepositoryResponse,),
+ 'auth': [
+ 'cookieAuth',
+ 'http_signature',
+ 'oAuth2',
+ 'oAuth2'
+ ],
+ 'endpoint_path': '/api/v1/kubernetes/AddonRepositories',
+ 'operation_id': 'get_kubernetes_addon_repository_list',
+ 'http_method': 'GET',
+ 'servers': None,
+ },
+ params_map={
+ 'all': [
+ 'filter',
+ 'orderby',
+ 'top',
+ 'skip',
+ 'select',
+ 'expand',
+ 'apply',
+ 'count',
+ 'inlinecount',
+ 'at',
+ 'tags',
+ ],
+ 'required': [],
+ 'nullable': [
+ ],
+ 'enum': [
+ 'inlinecount',
+ ],
+ 'validation': [
+ ]
+ },
+ root_map={
+ 'validations': {
+ },
+ 'allowed_values': {
+ ('inlinecount',): {
+
+ "ALLPAGES": "allpages",
+ "NONE": "none"
+ },
+ },
+ 'openapi_types': {
+ 'filter':
+ (str,),
+ 'orderby':
+ (str,),
+ 'top':
+ (int,),
+ 'skip':
+ (int,),
+ 'select':
+ (str,),
+ 'expand':
+ (str,),
+ 'apply':
+ (str,),
+ 'count':
+ (bool,),
+ 'inlinecount':
+ (str,),
+ 'at':
+ (str,),
+ 'tags':
+ (str,),
+ },
+ 'attribute_map': {
+ 'filter': '$filter',
+ 'orderby': '$orderby',
+ 'top': '$top',
+ 'skip': '$skip',
+ 'select': '$select',
+ 'expand': '$expand',
+ 'apply': '$apply',
+ 'count': '$count',
+ 'inlinecount': '$inlinecount',
+ 'at': 'at',
+ 'tags': 'tags',
+ },
+ 'location_map': {
+ 'filter': 'query',
+ 'orderby': 'query',
+ 'top': 'query',
+ 'skip': 'query',
+ 'select': 'query',
+ 'expand': 'query',
+ 'apply': 'query',
+ 'count': 'query',
+ 'inlinecount': 'query',
+ 'at': 'query',
+ 'tags': 'query',
+ },
+ 'collection_format_map': {
+ }
+ },
+ headers_map={
+ 'accept': [
+ 'application/json',
+ 'text/csv',
+ 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet'
+ ],
+ 'content_type': [],
+ },
+ api_client=api_client,
+ callable=__get_kubernetes_addon_repository_list
+ )
+
+ def __get_kubernetes_baremetal_node_profile_by_moid(
+ self,
+ moid,
+ **kwargs
+ ):
+ """Read a 'kubernetes.BaremetalNodeProfile' resource. # noqa: E501
+
+ This method makes a synchronous HTTP request by default. To make an
+ asynchronous HTTP request, please pass async_req=True
+
+ >>> thread = api.get_kubernetes_baremetal_node_profile_by_moid(moid, async_req=True)
+ >>> result = thread.get()
+
+ Args:
+ moid (str): The unique Moid identifier of a resource instance.
+
+ Keyword Args:
+ _return_http_data_only (bool): response data without head status
+ code and headers. Default is True.
+ _preload_content (bool): if False, the urllib3.HTTPResponse object
+ will be returned without reading/decoding response data.
+ Default is True.
+ _request_timeout (float/tuple): timeout setting for this request. If one
+ number provided, it will be total request timeout. It can also
+ be a pair (tuple) of (connection, read) timeouts.
+ Default is None.
+ _check_input_type (bool): specifies if type checking
+ should be done one the data sent to the server.
+ Default is True.
+ _check_return_type (bool): specifies if type checking
+ should be done one the data received from the server.
+ Default is True.
+ _host_index (int/None): specifies the index of the server
+ that we want to use.
+ Default is read from the configuration.
+ async_req (bool): execute request asynchronously
+
+ Returns:
+ KubernetesBaremetalNodeProfile
+ If the method is called asynchronously, returns the request
+ thread.
+ """
+ kwargs['async_req'] = kwargs.get(
+ 'async_req', False
+ )
+ kwargs['_return_http_data_only'] = kwargs.get(
+ '_return_http_data_only', True
+ )
+ kwargs['_preload_content'] = kwargs.get(
+ '_preload_content', True
+ )
+ kwargs['_request_timeout'] = kwargs.get(
+ '_request_timeout', None
+ )
+ kwargs['_check_input_type'] = kwargs.get(
+ '_check_input_type', True
+ )
+ kwargs['_check_return_type'] = kwargs.get(
+ '_check_return_type', True
+ )
+ kwargs['_host_index'] = kwargs.get('_host_index')
+ kwargs['moid'] = \
+ moid
+ return self.call_with_http_info(**kwargs)
+
+ self.get_kubernetes_baremetal_node_profile_by_moid = _Endpoint(
settings={
- 'response_type': (KubernetesAddonRepository,),
+ 'response_type': (KubernetesBaremetalNodeProfile,),
'auth': [
'cookieAuth',
'http_signature',
'oAuth2',
'oAuth2'
],
- 'endpoint_path': '/api/v1/kubernetes/AddonRepositories/{Moid}',
- 'operation_id': 'get_kubernetes_addon_repository_by_moid',
+ 'endpoint_path': '/api/v1/kubernetes/BaremetalNodeProfiles/{Moid}',
+ 'operation_id': 'get_kubernetes_baremetal_node_profile_by_moid',
'http_method': 'GET',
'servers': None,
},
@@ -7573,19 +8136,19 @@ def __get_kubernetes_addon_repository_by_moid(
'content_type': [],
},
api_client=api_client,
- callable=__get_kubernetes_addon_repository_by_moid
+ callable=__get_kubernetes_baremetal_node_profile_by_moid
)
- def __get_kubernetes_addon_repository_list(
+ def __get_kubernetes_baremetal_node_profile_list(
self,
**kwargs
):
- """Read a 'kubernetes.AddonRepository' resource. # noqa: E501
+ """Read a 'kubernetes.BaremetalNodeProfile' resource. # noqa: E501
This method makes a synchronous HTTP request by default. To make an
asynchronous HTTP request, please pass async_req=True
- >>> thread = api.get_kubernetes_addon_repository_list(async_req=True)
+ >>> thread = api.get_kubernetes_baremetal_node_profile_list(async_req=True)
>>> result = thread.get()
@@ -7622,7 +8185,7 @@ def __get_kubernetes_addon_repository_list(
async_req (bool): execute request asynchronously
Returns:
- KubernetesAddonRepositoryResponse
+ KubernetesBaremetalNodeProfileResponse
If the method is called asynchronously, returns the request
thread.
"""
@@ -7647,17 +8210,17 @@ def __get_kubernetes_addon_repository_list(
kwargs['_host_index'] = kwargs.get('_host_index')
return self.call_with_http_info(**kwargs)
- self.get_kubernetes_addon_repository_list = _Endpoint(
+ self.get_kubernetes_baremetal_node_profile_list = _Endpoint(
settings={
- 'response_type': (KubernetesAddonRepositoryResponse,),
+ 'response_type': (KubernetesBaremetalNodeProfileResponse,),
'auth': [
'cookieAuth',
'http_signature',
'oAuth2',
'oAuth2'
],
- 'endpoint_path': '/api/v1/kubernetes/AddonRepositories',
- 'operation_id': 'get_kubernetes_addon_repository_list',
+ 'endpoint_path': '/api/v1/kubernetes/BaremetalNodeProfiles',
+ 'operation_id': 'get_kubernetes_baremetal_node_profile_list',
'http_method': 'GET',
'servers': None,
},
@@ -7756,7 +8319,7 @@ def __get_kubernetes_addon_repository_list(
'content_type': [],
},
api_client=api_client,
- callable=__get_kubernetes_addon_repository_list
+ callable=__get_kubernetes_baremetal_node_profile_list
)
def __get_kubernetes_catalog_by_moid(
@@ -15937,6 +16500,145 @@ def __patch_kubernetes_addon_repository(
callable=__patch_kubernetes_addon_repository
)
+ def __patch_kubernetes_baremetal_node_profile(
+ self,
+ moid,
+ kubernetes_baremetal_node_profile,
+ **kwargs
+ ):
+ """Update a 'kubernetes.BaremetalNodeProfile' resource. # noqa: E501
+
+ This method makes a synchronous HTTP request by default. To make an
+ asynchronous HTTP request, please pass async_req=True
+
+ >>> thread = api.patch_kubernetes_baremetal_node_profile(moid, kubernetes_baremetal_node_profile, async_req=True)
+ >>> result = thread.get()
+
+ Args:
+ moid (str): The unique Moid identifier of a resource instance.
+ kubernetes_baremetal_node_profile (KubernetesBaremetalNodeProfile): The 'kubernetes.BaremetalNodeProfile' resource to update.
+
+ Keyword Args:
+ if_match (str): 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_http_data_only (bool): response data without head status
+ code and headers. Default is True.
+ _preload_content (bool): if False, the urllib3.HTTPResponse object
+ will be returned without reading/decoding response data.
+ Default is True.
+ _request_timeout (float/tuple): timeout setting for this request. If one
+ number provided, it will be total request timeout. It can also
+ be a pair (tuple) of (connection, read) timeouts.
+ Default is None.
+ _check_input_type (bool): specifies if type checking
+ should be done one the data sent to the server.
+ Default is True.
+ _check_return_type (bool): specifies if type checking
+ should be done one the data received from the server.
+ Default is True.
+ _host_index (int/None): specifies the index of the server
+ that we want to use.
+ Default is read from the configuration.
+ async_req (bool): execute request asynchronously
+
+ Returns:
+ KubernetesBaremetalNodeProfile
+ If the method is called asynchronously, returns the request
+ thread.
+ """
+ kwargs['async_req'] = kwargs.get(
+ 'async_req', False
+ )
+ kwargs['_return_http_data_only'] = kwargs.get(
+ '_return_http_data_only', True
+ )
+ kwargs['_preload_content'] = kwargs.get(
+ '_preload_content', True
+ )
+ kwargs['_request_timeout'] = kwargs.get(
+ '_request_timeout', None
+ )
+ kwargs['_check_input_type'] = kwargs.get(
+ '_check_input_type', True
+ )
+ kwargs['_check_return_type'] = kwargs.get(
+ '_check_return_type', True
+ )
+ kwargs['_host_index'] = kwargs.get('_host_index')
+ kwargs['moid'] = \
+ moid
+ kwargs['kubernetes_baremetal_node_profile'] = \
+ kubernetes_baremetal_node_profile
+ return self.call_with_http_info(**kwargs)
+
+ self.patch_kubernetes_baremetal_node_profile = _Endpoint(
+ settings={
+ 'response_type': (KubernetesBaremetalNodeProfile,),
+ 'auth': [
+ 'cookieAuth',
+ 'http_signature',
+ 'oAuth2',
+ 'oAuth2'
+ ],
+ 'endpoint_path': '/api/v1/kubernetes/BaremetalNodeProfiles/{Moid}',
+ 'operation_id': 'patch_kubernetes_baremetal_node_profile',
+ 'http_method': 'PATCH',
+ 'servers': None,
+ },
+ params_map={
+ 'all': [
+ 'moid',
+ 'kubernetes_baremetal_node_profile',
+ 'if_match',
+ ],
+ 'required': [
+ 'moid',
+ 'kubernetes_baremetal_node_profile',
+ ],
+ 'nullable': [
+ ],
+ 'enum': [
+ ],
+ 'validation': [
+ ]
+ },
+ root_map={
+ 'validations': {
+ },
+ 'allowed_values': {
+ },
+ 'openapi_types': {
+ 'moid':
+ (str,),
+ 'kubernetes_baremetal_node_profile':
+ (KubernetesBaremetalNodeProfile,),
+ 'if_match':
+ (str,),
+ },
+ 'attribute_map': {
+ 'moid': 'Moid',
+ 'if_match': 'If-Match',
+ },
+ 'location_map': {
+ 'moid': 'path',
+ 'kubernetes_baremetal_node_profile': 'body',
+ 'if_match': 'header',
+ },
+ 'collection_format_map': {
+ }
+ },
+ headers_map={
+ 'accept': [
+ 'application/json'
+ ],
+ 'content_type': [
+ 'application/json',
+ 'application/json-patch+json'
+ ]
+ },
+ api_client=api_client,
+ callable=__patch_kubernetes_baremetal_node_profile
+ )
+
def __patch_kubernetes_cluster(
self,
moid,
@@ -18717,6 +19419,145 @@ def __update_kubernetes_addon_repository(
callable=__update_kubernetes_addon_repository
)
+ def __update_kubernetes_baremetal_node_profile(
+ self,
+ moid,
+ kubernetes_baremetal_node_profile,
+ **kwargs
+ ):
+ """Update a 'kubernetes.BaremetalNodeProfile' resource. # noqa: E501
+
+ This method makes a synchronous HTTP request by default. To make an
+ asynchronous HTTP request, please pass async_req=True
+
+ >>> thread = api.update_kubernetes_baremetal_node_profile(moid, kubernetes_baremetal_node_profile, async_req=True)
+ >>> result = thread.get()
+
+ Args:
+ moid (str): The unique Moid identifier of a resource instance.
+ kubernetes_baremetal_node_profile (KubernetesBaremetalNodeProfile): The 'kubernetes.BaremetalNodeProfile' resource to update.
+
+ Keyword Args:
+ if_match (str): 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_http_data_only (bool): response data without head status
+ code and headers. Default is True.
+ _preload_content (bool): if False, the urllib3.HTTPResponse object
+ will be returned without reading/decoding response data.
+ Default is True.
+ _request_timeout (float/tuple): timeout setting for this request. If one
+ number provided, it will be total request timeout. It can also
+ be a pair (tuple) of (connection, read) timeouts.
+ Default is None.
+ _check_input_type (bool): specifies if type checking
+ should be done one the data sent to the server.
+ Default is True.
+ _check_return_type (bool): specifies if type checking
+ should be done one the data received from the server.
+ Default is True.
+ _host_index (int/None): specifies the index of the server
+ that we want to use.
+ Default is read from the configuration.
+ async_req (bool): execute request asynchronously
+
+ Returns:
+ KubernetesBaremetalNodeProfile
+ If the method is called asynchronously, returns the request
+ thread.
+ """
+ kwargs['async_req'] = kwargs.get(
+ 'async_req', False
+ )
+ kwargs['_return_http_data_only'] = kwargs.get(
+ '_return_http_data_only', True
+ )
+ kwargs['_preload_content'] = kwargs.get(
+ '_preload_content', True
+ )
+ kwargs['_request_timeout'] = kwargs.get(
+ '_request_timeout', None
+ )
+ kwargs['_check_input_type'] = kwargs.get(
+ '_check_input_type', True
+ )
+ kwargs['_check_return_type'] = kwargs.get(
+ '_check_return_type', True
+ )
+ kwargs['_host_index'] = kwargs.get('_host_index')
+ kwargs['moid'] = \
+ moid
+ kwargs['kubernetes_baremetal_node_profile'] = \
+ kubernetes_baremetal_node_profile
+ return self.call_with_http_info(**kwargs)
+
+ self.update_kubernetes_baremetal_node_profile = _Endpoint(
+ settings={
+ 'response_type': (KubernetesBaremetalNodeProfile,),
+ 'auth': [
+ 'cookieAuth',
+ 'http_signature',
+ 'oAuth2',
+ 'oAuth2'
+ ],
+ 'endpoint_path': '/api/v1/kubernetes/BaremetalNodeProfiles/{Moid}',
+ 'operation_id': 'update_kubernetes_baremetal_node_profile',
+ 'http_method': 'POST',
+ 'servers': None,
+ },
+ params_map={
+ 'all': [
+ 'moid',
+ 'kubernetes_baremetal_node_profile',
+ 'if_match',
+ ],
+ 'required': [
+ 'moid',
+ 'kubernetes_baremetal_node_profile',
+ ],
+ 'nullable': [
+ ],
+ 'enum': [
+ ],
+ 'validation': [
+ ]
+ },
+ root_map={
+ 'validations': {
+ },
+ 'allowed_values': {
+ },
+ 'openapi_types': {
+ 'moid':
+ (str,),
+ 'kubernetes_baremetal_node_profile':
+ (KubernetesBaremetalNodeProfile,),
+ 'if_match':
+ (str,),
+ },
+ 'attribute_map': {
+ 'moid': 'Moid',
+ 'if_match': 'If-Match',
+ },
+ 'location_map': {
+ 'moid': 'path',
+ 'kubernetes_baremetal_node_profile': 'body',
+ 'if_match': 'header',
+ },
+ 'collection_format_map': {
+ }
+ },
+ headers_map={
+ 'accept': [
+ 'application/json'
+ ],
+ 'content_type': [
+ 'application/json',
+ 'application/json-patch+json'
+ ]
+ },
+ api_client=api_client,
+ callable=__update_kubernetes_baremetal_node_profile
+ )
+
def __update_kubernetes_cluster(
self,
moid,
diff --git a/intersight/api/kvm_api.py b/intersight/api/kvm_api.py
index e9a8853466..f15c997db5 100644
--- a/intersight/api/kvm_api.py
+++ b/intersight/api/kvm_api.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/api/license_api.py b/intersight/api/license_api.py
index 44357d312c..445ec53c18 100644
--- a/intersight/api/license_api.py
+++ b/intersight/api/license_api.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/api/ls_api.py b/intersight/api/ls_api.py
index 0bf59b407f..123045f5ac 100644
--- a/intersight/api/ls_api.py
+++ b/intersight/api/ls_api.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/api/macpool_api.py b/intersight/api/macpool_api.py
index f8d4979127..d1c5737d96 100644
--- a/intersight/api/macpool_api.py
+++ b/intersight/api/macpool_api.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/api/management_api.py b/intersight/api/management_api.py
index 728442c250..5004ccdaf6 100644
--- a/intersight/api/management_api.py
+++ b/intersight/api/management_api.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/api/memory_api.py b/intersight/api/memory_api.py
index 2fb54ebd35..133430ac8b 100644
--- a/intersight/api/memory_api.py
+++ b/intersight/api/memory_api.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/api/meta_api.py b/intersight/api/meta_api.py
index c8390be33d..3acecb0914 100644
--- a/intersight/api/meta_api.py
+++ b/intersight/api/meta_api.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/api/network_api.py b/intersight/api/network_api.py
index 70504adf93..146e4f3462 100644
--- a/intersight/api/network_api.py
+++ b/intersight/api/network_api.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/api/networkconfig_api.py b/intersight/api/networkconfig_api.py
index 5179301c92..cd75bbbe2c 100644
--- a/intersight/api/networkconfig_api.py
+++ b/intersight/api/networkconfig_api.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/api/niaapi_api.py b/intersight/api/niaapi_api.py
index abedd41bf3..f4b2adc569 100644
--- a/intersight/api/niaapi_api.py
+++ b/intersight/api/niaapi_api.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/api/niatelemetry_api.py b/intersight/api/niatelemetry_api.py
index dad1687937..41a327cb59 100644
--- a/intersight/api/niatelemetry_api.py
+++ b/intersight/api/niatelemetry_api.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/api/notification_api.py b/intersight/api/notification_api.py
index 50a7997e16..5b07fb2994 100644
--- a/intersight/api/notification_api.py
+++ b/intersight/api/notification_api.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/api/ntp_api.py b/intersight/api/ntp_api.py
index a9c76cf329..7d0efee1ef 100644
--- a/intersight/api/ntp_api.py
+++ b/intersight/api/ntp_api.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/api/oprs_api.py b/intersight/api/oprs_api.py
index e6e46be14c..90842cf731 100644
--- a/intersight/api/oprs_api.py
+++ b/intersight/api/oprs_api.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/api/organization_api.py b/intersight/api/organization_api.py
index 1aae3b0ccd..ab78733b96 100644
--- a/intersight/api/organization_api.py
+++ b/intersight/api/organization_api.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/api/os_api.py b/intersight/api/os_api.py
index 6c6bc3478a..81f709d3db 100644
--- a/intersight/api/os_api.py
+++ b/intersight/api/os_api.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/api/pci_api.py b/intersight/api/pci_api.py
index 3c85713206..20caa04c56 100644
--- a/intersight/api/pci_api.py
+++ b/intersight/api/pci_api.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/api/port_api.py b/intersight/api/port_api.py
index d9638dce53..d821baaf21 100644
--- a/intersight/api/port_api.py
+++ b/intersight/api/port_api.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/api/power_api.py b/intersight/api/power_api.py
index 1f6ef2ebf6..e98707eadf 100644
--- a/intersight/api/power_api.py
+++ b/intersight/api/power_api.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/api/processor_api.py b/intersight/api/processor_api.py
index 4e778f0406..ced0b28a7b 100644
--- a/intersight/api/processor_api.py
+++ b/intersight/api/processor_api.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/api/recommendation_api.py b/intersight/api/recommendation_api.py
index db66652523..e4c7450f40 100644
--- a/intersight/api/recommendation_api.py
+++ b/intersight/api/recommendation_api.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/api/recovery_api.py b/intersight/api/recovery_api.py
index 3a9e4bd0e3..95f9a16f23 100644
--- a/intersight/api/recovery_api.py
+++ b/intersight/api/recovery_api.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/api/resource_api.py b/intersight/api/resource_api.py
index 678f2f6d8b..17547a83ec 100644
--- a/intersight/api/resource_api.py
+++ b/intersight/api/resource_api.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/api/resourcepool_api.py b/intersight/api/resourcepool_api.py
new file mode 100644
index 0000000000..4dda0c9bbf
--- /dev/null
+++ b/intersight/api/resourcepool_api.py
@@ -0,0 +1,2111 @@
+"""
+ Cisco Intersight
+
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
+
+ The version of the OpenAPI document: 1.0.9-4506
+ Contact: intersight@cisco.com
+ Generated by: https://openapi-generator.tech
+"""
+
+
+import re # noqa: F401
+import sys # noqa: F401
+
+from intersight.api_client import ApiClient, Endpoint as _Endpoint
+from intersight.model_utils import ( # noqa: F401
+ check_allowed_values,
+ check_validations,
+ date,
+ datetime,
+ file_type,
+ none_type,
+ validate_and_convert_types
+)
+from intersight.model.error import Error
+from intersight.model.resourcepool_lease import ResourcepoolLease
+from intersight.model.resourcepool_lease_resource import ResourcepoolLeaseResource
+from intersight.model.resourcepool_lease_resource_response import ResourcepoolLeaseResourceResponse
+from intersight.model.resourcepool_lease_response import ResourcepoolLeaseResponse
+from intersight.model.resourcepool_pool import ResourcepoolPool
+from intersight.model.resourcepool_pool_member import ResourcepoolPoolMember
+from intersight.model.resourcepool_pool_member_response import ResourcepoolPoolMemberResponse
+from intersight.model.resourcepool_pool_response import ResourcepoolPoolResponse
+from intersight.model.resourcepool_universe import ResourcepoolUniverse
+from intersight.model.resourcepool_universe_response import ResourcepoolUniverseResponse
+
+
+class ResourcepoolApi(object):
+ """NOTE: This class is auto generated by OpenAPI Generator
+ Ref: https://openapi-generator.tech
+
+ Do not edit the class manually.
+ """
+
+ def __init__(self, api_client=None):
+ if api_client is None:
+ api_client = ApiClient()
+ self.api_client = api_client
+
+ def __create_resourcepool_pool(
+ self,
+ resourcepool_pool,
+ **kwargs
+ ):
+ """Create a 'resourcepool.Pool' resource. # noqa: E501
+
+ This method makes a synchronous HTTP request by default. To make an
+ asynchronous HTTP request, please pass async_req=True
+
+ >>> thread = api.create_resourcepool_pool(resourcepool_pool, async_req=True)
+ >>> result = thread.get()
+
+ Args:
+ resourcepool_pool (ResourcepoolPool): The 'resourcepool.Pool' resource to create.
+
+ Keyword Args:
+ if_match (str): 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 (str): 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_http_data_only (bool): response data without head status
+ code and headers. Default is True.
+ _preload_content (bool): if False, the urllib3.HTTPResponse object
+ will be returned without reading/decoding response data.
+ Default is True.
+ _request_timeout (float/tuple): timeout setting for this request. If one
+ number provided, it will be total request timeout. It can also
+ be a pair (tuple) of (connection, read) timeouts.
+ Default is None.
+ _check_input_type (bool): specifies if type checking
+ should be done one the data sent to the server.
+ Default is True.
+ _check_return_type (bool): specifies if type checking
+ should be done one the data received from the server.
+ Default is True.
+ _host_index (int/None): specifies the index of the server
+ that we want to use.
+ Default is read from the configuration.
+ async_req (bool): execute request asynchronously
+
+ Returns:
+ ResourcepoolPool
+ If the method is called asynchronously, returns the request
+ thread.
+ """
+ kwargs['async_req'] = kwargs.get(
+ 'async_req', False
+ )
+ kwargs['_return_http_data_only'] = kwargs.get(
+ '_return_http_data_only', True
+ )
+ kwargs['_preload_content'] = kwargs.get(
+ '_preload_content', True
+ )
+ kwargs['_request_timeout'] = kwargs.get(
+ '_request_timeout', None
+ )
+ kwargs['_check_input_type'] = kwargs.get(
+ '_check_input_type', True
+ )
+ kwargs['_check_return_type'] = kwargs.get(
+ '_check_return_type', True
+ )
+ kwargs['_host_index'] = kwargs.get('_host_index')
+ kwargs['resourcepool_pool'] = \
+ resourcepool_pool
+ return self.call_with_http_info(**kwargs)
+
+ self.create_resourcepool_pool = _Endpoint(
+ settings={
+ 'response_type': (ResourcepoolPool,),
+ 'auth': [
+ 'cookieAuth',
+ 'http_signature',
+ 'oAuth2',
+ 'oAuth2'
+ ],
+ 'endpoint_path': '/api/v1/resourcepool/Pools',
+ 'operation_id': 'create_resourcepool_pool',
+ 'http_method': 'POST',
+ 'servers': None,
+ },
+ params_map={
+ 'all': [
+ 'resourcepool_pool',
+ 'if_match',
+ 'if_none_match',
+ ],
+ 'required': [
+ 'resourcepool_pool',
+ ],
+ 'nullable': [
+ ],
+ 'enum': [
+ ],
+ 'validation': [
+ ]
+ },
+ root_map={
+ 'validations': {
+ },
+ 'allowed_values': {
+ },
+ 'openapi_types': {
+ 'resourcepool_pool':
+ (ResourcepoolPool,),
+ 'if_match':
+ (str,),
+ 'if_none_match':
+ (str,),
+ },
+ 'attribute_map': {
+ 'if_match': 'If-Match',
+ 'if_none_match': 'If-None-Match',
+ },
+ 'location_map': {
+ 'resourcepool_pool': 'body',
+ 'if_match': 'header',
+ 'if_none_match': 'header',
+ },
+ 'collection_format_map': {
+ }
+ },
+ headers_map={
+ 'accept': [
+ 'application/json'
+ ],
+ 'content_type': [
+ 'application/json'
+ ]
+ },
+ api_client=api_client,
+ callable=__create_resourcepool_pool
+ )
+
+ def __delete_resourcepool_pool(
+ self,
+ moid,
+ **kwargs
+ ):
+ """Delete a 'resourcepool.Pool' resource. # noqa: E501
+
+ This method makes a synchronous HTTP request by default. To make an
+ asynchronous HTTP request, please pass async_req=True
+
+ >>> thread = api.delete_resourcepool_pool(moid, async_req=True)
+ >>> result = thread.get()
+
+ Args:
+ moid (str): The unique Moid identifier of a resource instance.
+
+ Keyword Args:
+ _return_http_data_only (bool): response data without head status
+ code and headers. Default is True.
+ _preload_content (bool): if False, the urllib3.HTTPResponse object
+ will be returned without reading/decoding response data.
+ Default is True.
+ _request_timeout (float/tuple): timeout setting for this request. If one
+ number provided, it will be total request timeout. It can also
+ be a pair (tuple) of (connection, read) timeouts.
+ Default is None.
+ _check_input_type (bool): specifies if type checking
+ should be done one the data sent to the server.
+ Default is True.
+ _check_return_type (bool): specifies if type checking
+ should be done one the data received from the server.
+ Default is True.
+ _host_index (int/None): specifies the index of the server
+ that we want to use.
+ Default is read from the configuration.
+ async_req (bool): execute request asynchronously
+
+ Returns:
+ None
+ If the method is called asynchronously, returns the request
+ thread.
+ """
+ kwargs['async_req'] = kwargs.get(
+ 'async_req', False
+ )
+ kwargs['_return_http_data_only'] = kwargs.get(
+ '_return_http_data_only', True
+ )
+ kwargs['_preload_content'] = kwargs.get(
+ '_preload_content', True
+ )
+ kwargs['_request_timeout'] = kwargs.get(
+ '_request_timeout', None
+ )
+ kwargs['_check_input_type'] = kwargs.get(
+ '_check_input_type', True
+ )
+ kwargs['_check_return_type'] = kwargs.get(
+ '_check_return_type', True
+ )
+ kwargs['_host_index'] = kwargs.get('_host_index')
+ kwargs['moid'] = \
+ moid
+ return self.call_with_http_info(**kwargs)
+
+ self.delete_resourcepool_pool = _Endpoint(
+ settings={
+ 'response_type': None,
+ 'auth': [
+ 'cookieAuth',
+ 'http_signature',
+ 'oAuth2',
+ 'oAuth2'
+ ],
+ 'endpoint_path': '/api/v1/resourcepool/Pools/{Moid}',
+ 'operation_id': 'delete_resourcepool_pool',
+ 'http_method': 'DELETE',
+ 'servers': None,
+ },
+ params_map={
+ 'all': [
+ 'moid',
+ ],
+ 'required': [
+ 'moid',
+ ],
+ 'nullable': [
+ ],
+ 'enum': [
+ ],
+ 'validation': [
+ ]
+ },
+ root_map={
+ 'validations': {
+ },
+ 'allowed_values': {
+ },
+ 'openapi_types': {
+ 'moid':
+ (str,),
+ },
+ 'attribute_map': {
+ 'moid': 'Moid',
+ },
+ 'location_map': {
+ 'moid': 'path',
+ },
+ 'collection_format_map': {
+ }
+ },
+ headers_map={
+ 'accept': [
+ 'application/json'
+ ],
+ 'content_type': [],
+ },
+ api_client=api_client,
+ callable=__delete_resourcepool_pool
+ )
+
+ def __get_resourcepool_lease_by_moid(
+ self,
+ moid,
+ **kwargs
+ ):
+ """Read a 'resourcepool.Lease' resource. # noqa: E501
+
+ This method makes a synchronous HTTP request by default. To make an
+ asynchronous HTTP request, please pass async_req=True
+
+ >>> thread = api.get_resourcepool_lease_by_moid(moid, async_req=True)
+ >>> result = thread.get()
+
+ Args:
+ moid (str): The unique Moid identifier of a resource instance.
+
+ Keyword Args:
+ _return_http_data_only (bool): response data without head status
+ code and headers. Default is True.
+ _preload_content (bool): if False, the urllib3.HTTPResponse object
+ will be returned without reading/decoding response data.
+ Default is True.
+ _request_timeout (float/tuple): timeout setting for this request. If one
+ number provided, it will be total request timeout. It can also
+ be a pair (tuple) of (connection, read) timeouts.
+ Default is None.
+ _check_input_type (bool): specifies if type checking
+ should be done one the data sent to the server.
+ Default is True.
+ _check_return_type (bool): specifies if type checking
+ should be done one the data received from the server.
+ Default is True.
+ _host_index (int/None): specifies the index of the server
+ that we want to use.
+ Default is read from the configuration.
+ async_req (bool): execute request asynchronously
+
+ Returns:
+ ResourcepoolLease
+ If the method is called asynchronously, returns the request
+ thread.
+ """
+ kwargs['async_req'] = kwargs.get(
+ 'async_req', False
+ )
+ kwargs['_return_http_data_only'] = kwargs.get(
+ '_return_http_data_only', True
+ )
+ kwargs['_preload_content'] = kwargs.get(
+ '_preload_content', True
+ )
+ kwargs['_request_timeout'] = kwargs.get(
+ '_request_timeout', None
+ )
+ kwargs['_check_input_type'] = kwargs.get(
+ '_check_input_type', True
+ )
+ kwargs['_check_return_type'] = kwargs.get(
+ '_check_return_type', True
+ )
+ kwargs['_host_index'] = kwargs.get('_host_index')
+ kwargs['moid'] = \
+ moid
+ return self.call_with_http_info(**kwargs)
+
+ self.get_resourcepool_lease_by_moid = _Endpoint(
+ settings={
+ 'response_type': (ResourcepoolLease,),
+ 'auth': [
+ 'cookieAuth',
+ 'http_signature',
+ 'oAuth2',
+ 'oAuth2'
+ ],
+ 'endpoint_path': '/api/v1/resourcepool/Leases/{Moid}',
+ 'operation_id': 'get_resourcepool_lease_by_moid',
+ 'http_method': 'GET',
+ 'servers': None,
+ },
+ params_map={
+ 'all': [
+ 'moid',
+ ],
+ 'required': [
+ 'moid',
+ ],
+ 'nullable': [
+ ],
+ 'enum': [
+ ],
+ 'validation': [
+ ]
+ },
+ root_map={
+ 'validations': {
+ },
+ 'allowed_values': {
+ },
+ 'openapi_types': {
+ 'moid':
+ (str,),
+ },
+ 'attribute_map': {
+ 'moid': 'Moid',
+ },
+ 'location_map': {
+ 'moid': 'path',
+ },
+ 'collection_format_map': {
+ }
+ },
+ headers_map={
+ 'accept': [
+ 'application/json',
+ 'text/csv',
+ 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet'
+ ],
+ 'content_type': [],
+ },
+ api_client=api_client,
+ callable=__get_resourcepool_lease_by_moid
+ )
+
+ def __get_resourcepool_lease_list(
+ self,
+ **kwargs
+ ):
+ """Read a 'resourcepool.Lease' resource. # noqa: E501
+
+ This method makes a synchronous HTTP request by default. To make an
+ asynchronous HTTP request, please pass async_req=True
+
+ >>> thread = api.get_resourcepool_lease_list(async_req=True)
+ >>> result = thread.get()
+
+
+ Keyword Args:
+ filter (str): 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] if omitted the server will use the default value of ""
+ orderby (str): Determines what properties are used to sort the collection of resources.. [optional]
+ top (int): Specifies the maximum number of resources to return in the response.. [optional] if omitted the server will use the default value of 100
+ skip (int): Specifies the number of resources to skip in the response.. [optional] if omitted the server will use the default value of 0
+ select (str): Specifies a subset of properties to return.. [optional] if omitted the server will use the default value of ""
+ expand (str): Specify additional attributes or related resources to return in addition to the primary resources.. [optional]
+ apply (str): 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.. [optional]
+ count (bool): The $count query specifies the service should return the count of the matching resources, instead of returning the resources.. [optional]
+ inlinecount (str): The $inlinecount query option allows clients to request an inline count of the matching resources included with the resources in the response.. [optional] if omitted the server will use the default value of "allpages"
+ at (str): 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.. [optional]
+ tags (str): 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_http_data_only (bool): response data without head status
+ code and headers. Default is True.
+ _preload_content (bool): if False, the urllib3.HTTPResponse object
+ will be returned without reading/decoding response data.
+ Default is True.
+ _request_timeout (float/tuple): timeout setting for this request. If one
+ number provided, it will be total request timeout. It can also
+ be a pair (tuple) of (connection, read) timeouts.
+ Default is None.
+ _check_input_type (bool): specifies if type checking
+ should be done one the data sent to the server.
+ Default is True.
+ _check_return_type (bool): specifies if type checking
+ should be done one the data received from the server.
+ Default is True.
+ _host_index (int/None): specifies the index of the server
+ that we want to use.
+ Default is read from the configuration.
+ async_req (bool): execute request asynchronously
+
+ Returns:
+ ResourcepoolLeaseResponse
+ If the method is called asynchronously, returns the request
+ thread.
+ """
+ kwargs['async_req'] = kwargs.get(
+ 'async_req', False
+ )
+ kwargs['_return_http_data_only'] = kwargs.get(
+ '_return_http_data_only', True
+ )
+ kwargs['_preload_content'] = kwargs.get(
+ '_preload_content', True
+ )
+ kwargs['_request_timeout'] = kwargs.get(
+ '_request_timeout', None
+ )
+ kwargs['_check_input_type'] = kwargs.get(
+ '_check_input_type', True
+ )
+ kwargs['_check_return_type'] = kwargs.get(
+ '_check_return_type', True
+ )
+ kwargs['_host_index'] = kwargs.get('_host_index')
+ return self.call_with_http_info(**kwargs)
+
+ self.get_resourcepool_lease_list = _Endpoint(
+ settings={
+ 'response_type': (ResourcepoolLeaseResponse,),
+ 'auth': [
+ 'cookieAuth',
+ 'http_signature',
+ 'oAuth2',
+ 'oAuth2'
+ ],
+ 'endpoint_path': '/api/v1/resourcepool/Leases',
+ 'operation_id': 'get_resourcepool_lease_list',
+ 'http_method': 'GET',
+ 'servers': None,
+ },
+ params_map={
+ 'all': [
+ 'filter',
+ 'orderby',
+ 'top',
+ 'skip',
+ 'select',
+ 'expand',
+ 'apply',
+ 'count',
+ 'inlinecount',
+ 'at',
+ 'tags',
+ ],
+ 'required': [],
+ 'nullable': [
+ ],
+ 'enum': [
+ 'inlinecount',
+ ],
+ 'validation': [
+ ]
+ },
+ root_map={
+ 'validations': {
+ },
+ 'allowed_values': {
+ ('inlinecount',): {
+
+ "ALLPAGES": "allpages",
+ "NONE": "none"
+ },
+ },
+ 'openapi_types': {
+ 'filter':
+ (str,),
+ 'orderby':
+ (str,),
+ 'top':
+ (int,),
+ 'skip':
+ (int,),
+ 'select':
+ (str,),
+ 'expand':
+ (str,),
+ 'apply':
+ (str,),
+ 'count':
+ (bool,),
+ 'inlinecount':
+ (str,),
+ 'at':
+ (str,),
+ 'tags':
+ (str,),
+ },
+ 'attribute_map': {
+ 'filter': '$filter',
+ 'orderby': '$orderby',
+ 'top': '$top',
+ 'skip': '$skip',
+ 'select': '$select',
+ 'expand': '$expand',
+ 'apply': '$apply',
+ 'count': '$count',
+ 'inlinecount': '$inlinecount',
+ 'at': 'at',
+ 'tags': 'tags',
+ },
+ 'location_map': {
+ 'filter': 'query',
+ 'orderby': 'query',
+ 'top': 'query',
+ 'skip': 'query',
+ 'select': 'query',
+ 'expand': 'query',
+ 'apply': 'query',
+ 'count': 'query',
+ 'inlinecount': 'query',
+ 'at': 'query',
+ 'tags': 'query',
+ },
+ 'collection_format_map': {
+ }
+ },
+ headers_map={
+ 'accept': [
+ 'application/json',
+ 'text/csv',
+ 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet'
+ ],
+ 'content_type': [],
+ },
+ api_client=api_client,
+ callable=__get_resourcepool_lease_list
+ )
+
+ def __get_resourcepool_lease_resource_by_moid(
+ self,
+ moid,
+ **kwargs
+ ):
+ """Read a 'resourcepool.LeaseResource' resource. # noqa: E501
+
+ This method makes a synchronous HTTP request by default. To make an
+ asynchronous HTTP request, please pass async_req=True
+
+ >>> thread = api.get_resourcepool_lease_resource_by_moid(moid, async_req=True)
+ >>> result = thread.get()
+
+ Args:
+ moid (str): The unique Moid identifier of a resource instance.
+
+ Keyword Args:
+ _return_http_data_only (bool): response data without head status
+ code and headers. Default is True.
+ _preload_content (bool): if False, the urllib3.HTTPResponse object
+ will be returned without reading/decoding response data.
+ Default is True.
+ _request_timeout (float/tuple): timeout setting for this request. If one
+ number provided, it will be total request timeout. It can also
+ be a pair (tuple) of (connection, read) timeouts.
+ Default is None.
+ _check_input_type (bool): specifies if type checking
+ should be done one the data sent to the server.
+ Default is True.
+ _check_return_type (bool): specifies if type checking
+ should be done one the data received from the server.
+ Default is True.
+ _host_index (int/None): specifies the index of the server
+ that we want to use.
+ Default is read from the configuration.
+ async_req (bool): execute request asynchronously
+
+ Returns:
+ ResourcepoolLeaseResource
+ If the method is called asynchronously, returns the request
+ thread.
+ """
+ kwargs['async_req'] = kwargs.get(
+ 'async_req', False
+ )
+ kwargs['_return_http_data_only'] = kwargs.get(
+ '_return_http_data_only', True
+ )
+ kwargs['_preload_content'] = kwargs.get(
+ '_preload_content', True
+ )
+ kwargs['_request_timeout'] = kwargs.get(
+ '_request_timeout', None
+ )
+ kwargs['_check_input_type'] = kwargs.get(
+ '_check_input_type', True
+ )
+ kwargs['_check_return_type'] = kwargs.get(
+ '_check_return_type', True
+ )
+ kwargs['_host_index'] = kwargs.get('_host_index')
+ kwargs['moid'] = \
+ moid
+ return self.call_with_http_info(**kwargs)
+
+ self.get_resourcepool_lease_resource_by_moid = _Endpoint(
+ settings={
+ 'response_type': (ResourcepoolLeaseResource,),
+ 'auth': [
+ 'cookieAuth',
+ 'http_signature',
+ 'oAuth2',
+ 'oAuth2'
+ ],
+ 'endpoint_path': '/api/v1/resourcepool/LeaseResources/{Moid}',
+ 'operation_id': 'get_resourcepool_lease_resource_by_moid',
+ 'http_method': 'GET',
+ 'servers': None,
+ },
+ params_map={
+ 'all': [
+ 'moid',
+ ],
+ 'required': [
+ 'moid',
+ ],
+ 'nullable': [
+ ],
+ 'enum': [
+ ],
+ 'validation': [
+ ]
+ },
+ root_map={
+ 'validations': {
+ },
+ 'allowed_values': {
+ },
+ 'openapi_types': {
+ 'moid':
+ (str,),
+ },
+ 'attribute_map': {
+ 'moid': 'Moid',
+ },
+ 'location_map': {
+ 'moid': 'path',
+ },
+ 'collection_format_map': {
+ }
+ },
+ headers_map={
+ 'accept': [
+ 'application/json',
+ 'text/csv',
+ 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet'
+ ],
+ 'content_type': [],
+ },
+ api_client=api_client,
+ callable=__get_resourcepool_lease_resource_by_moid
+ )
+
+ def __get_resourcepool_lease_resource_list(
+ self,
+ **kwargs
+ ):
+ """Read a 'resourcepool.LeaseResource' resource. # noqa: E501
+
+ This method makes a synchronous HTTP request by default. To make an
+ asynchronous HTTP request, please pass async_req=True
+
+ >>> thread = api.get_resourcepool_lease_resource_list(async_req=True)
+ >>> result = thread.get()
+
+
+ Keyword Args:
+ filter (str): 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] if omitted the server will use the default value of ""
+ orderby (str): Determines what properties are used to sort the collection of resources.. [optional]
+ top (int): Specifies the maximum number of resources to return in the response.. [optional] if omitted the server will use the default value of 100
+ skip (int): Specifies the number of resources to skip in the response.. [optional] if omitted the server will use the default value of 0
+ select (str): Specifies a subset of properties to return.. [optional] if omitted the server will use the default value of ""
+ expand (str): Specify additional attributes or related resources to return in addition to the primary resources.. [optional]
+ apply (str): 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.. [optional]
+ count (bool): The $count query specifies the service should return the count of the matching resources, instead of returning the resources.. [optional]
+ inlinecount (str): The $inlinecount query option allows clients to request an inline count of the matching resources included with the resources in the response.. [optional] if omitted the server will use the default value of "allpages"
+ at (str): 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.. [optional]
+ tags (str): 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_http_data_only (bool): response data without head status
+ code and headers. Default is True.
+ _preload_content (bool): if False, the urllib3.HTTPResponse object
+ will be returned without reading/decoding response data.
+ Default is True.
+ _request_timeout (float/tuple): timeout setting for this request. If one
+ number provided, it will be total request timeout. It can also
+ be a pair (tuple) of (connection, read) timeouts.
+ Default is None.
+ _check_input_type (bool): specifies if type checking
+ should be done one the data sent to the server.
+ Default is True.
+ _check_return_type (bool): specifies if type checking
+ should be done one the data received from the server.
+ Default is True.
+ _host_index (int/None): specifies the index of the server
+ that we want to use.
+ Default is read from the configuration.
+ async_req (bool): execute request asynchronously
+
+ Returns:
+ ResourcepoolLeaseResourceResponse
+ If the method is called asynchronously, returns the request
+ thread.
+ """
+ kwargs['async_req'] = kwargs.get(
+ 'async_req', False
+ )
+ kwargs['_return_http_data_only'] = kwargs.get(
+ '_return_http_data_only', True
+ )
+ kwargs['_preload_content'] = kwargs.get(
+ '_preload_content', True
+ )
+ kwargs['_request_timeout'] = kwargs.get(
+ '_request_timeout', None
+ )
+ kwargs['_check_input_type'] = kwargs.get(
+ '_check_input_type', True
+ )
+ kwargs['_check_return_type'] = kwargs.get(
+ '_check_return_type', True
+ )
+ kwargs['_host_index'] = kwargs.get('_host_index')
+ return self.call_with_http_info(**kwargs)
+
+ self.get_resourcepool_lease_resource_list = _Endpoint(
+ settings={
+ 'response_type': (ResourcepoolLeaseResourceResponse,),
+ 'auth': [
+ 'cookieAuth',
+ 'http_signature',
+ 'oAuth2',
+ 'oAuth2'
+ ],
+ 'endpoint_path': '/api/v1/resourcepool/LeaseResources',
+ 'operation_id': 'get_resourcepool_lease_resource_list',
+ 'http_method': 'GET',
+ 'servers': None,
+ },
+ params_map={
+ 'all': [
+ 'filter',
+ 'orderby',
+ 'top',
+ 'skip',
+ 'select',
+ 'expand',
+ 'apply',
+ 'count',
+ 'inlinecount',
+ 'at',
+ 'tags',
+ ],
+ 'required': [],
+ 'nullable': [
+ ],
+ 'enum': [
+ 'inlinecount',
+ ],
+ 'validation': [
+ ]
+ },
+ root_map={
+ 'validations': {
+ },
+ 'allowed_values': {
+ ('inlinecount',): {
+
+ "ALLPAGES": "allpages",
+ "NONE": "none"
+ },
+ },
+ 'openapi_types': {
+ 'filter':
+ (str,),
+ 'orderby':
+ (str,),
+ 'top':
+ (int,),
+ 'skip':
+ (int,),
+ 'select':
+ (str,),
+ 'expand':
+ (str,),
+ 'apply':
+ (str,),
+ 'count':
+ (bool,),
+ 'inlinecount':
+ (str,),
+ 'at':
+ (str,),
+ 'tags':
+ (str,),
+ },
+ 'attribute_map': {
+ 'filter': '$filter',
+ 'orderby': '$orderby',
+ 'top': '$top',
+ 'skip': '$skip',
+ 'select': '$select',
+ 'expand': '$expand',
+ 'apply': '$apply',
+ 'count': '$count',
+ 'inlinecount': '$inlinecount',
+ 'at': 'at',
+ 'tags': 'tags',
+ },
+ 'location_map': {
+ 'filter': 'query',
+ 'orderby': 'query',
+ 'top': 'query',
+ 'skip': 'query',
+ 'select': 'query',
+ 'expand': 'query',
+ 'apply': 'query',
+ 'count': 'query',
+ 'inlinecount': 'query',
+ 'at': 'query',
+ 'tags': 'query',
+ },
+ 'collection_format_map': {
+ }
+ },
+ headers_map={
+ 'accept': [
+ 'application/json',
+ 'text/csv',
+ 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet'
+ ],
+ 'content_type': [],
+ },
+ api_client=api_client,
+ callable=__get_resourcepool_lease_resource_list
+ )
+
+ def __get_resourcepool_pool_by_moid(
+ self,
+ moid,
+ **kwargs
+ ):
+ """Read a 'resourcepool.Pool' resource. # noqa: E501
+
+ This method makes a synchronous HTTP request by default. To make an
+ asynchronous HTTP request, please pass async_req=True
+
+ >>> thread = api.get_resourcepool_pool_by_moid(moid, async_req=True)
+ >>> result = thread.get()
+
+ Args:
+ moid (str): The unique Moid identifier of a resource instance.
+
+ Keyword Args:
+ _return_http_data_only (bool): response data without head status
+ code and headers. Default is True.
+ _preload_content (bool): if False, the urllib3.HTTPResponse object
+ will be returned without reading/decoding response data.
+ Default is True.
+ _request_timeout (float/tuple): timeout setting for this request. If one
+ number provided, it will be total request timeout. It can also
+ be a pair (tuple) of (connection, read) timeouts.
+ Default is None.
+ _check_input_type (bool): specifies if type checking
+ should be done one the data sent to the server.
+ Default is True.
+ _check_return_type (bool): specifies if type checking
+ should be done one the data received from the server.
+ Default is True.
+ _host_index (int/None): specifies the index of the server
+ that we want to use.
+ Default is read from the configuration.
+ async_req (bool): execute request asynchronously
+
+ Returns:
+ ResourcepoolPool
+ If the method is called asynchronously, returns the request
+ thread.
+ """
+ kwargs['async_req'] = kwargs.get(
+ 'async_req', False
+ )
+ kwargs['_return_http_data_only'] = kwargs.get(
+ '_return_http_data_only', True
+ )
+ kwargs['_preload_content'] = kwargs.get(
+ '_preload_content', True
+ )
+ kwargs['_request_timeout'] = kwargs.get(
+ '_request_timeout', None
+ )
+ kwargs['_check_input_type'] = kwargs.get(
+ '_check_input_type', True
+ )
+ kwargs['_check_return_type'] = kwargs.get(
+ '_check_return_type', True
+ )
+ kwargs['_host_index'] = kwargs.get('_host_index')
+ kwargs['moid'] = \
+ moid
+ return self.call_with_http_info(**kwargs)
+
+ self.get_resourcepool_pool_by_moid = _Endpoint(
+ settings={
+ 'response_type': (ResourcepoolPool,),
+ 'auth': [
+ 'cookieAuth',
+ 'http_signature',
+ 'oAuth2',
+ 'oAuth2'
+ ],
+ 'endpoint_path': '/api/v1/resourcepool/Pools/{Moid}',
+ 'operation_id': 'get_resourcepool_pool_by_moid',
+ 'http_method': 'GET',
+ 'servers': None,
+ },
+ params_map={
+ 'all': [
+ 'moid',
+ ],
+ 'required': [
+ 'moid',
+ ],
+ 'nullable': [
+ ],
+ 'enum': [
+ ],
+ 'validation': [
+ ]
+ },
+ root_map={
+ 'validations': {
+ },
+ 'allowed_values': {
+ },
+ 'openapi_types': {
+ 'moid':
+ (str,),
+ },
+ 'attribute_map': {
+ 'moid': 'Moid',
+ },
+ 'location_map': {
+ 'moid': 'path',
+ },
+ 'collection_format_map': {
+ }
+ },
+ headers_map={
+ 'accept': [
+ 'application/json',
+ 'text/csv',
+ 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet'
+ ],
+ 'content_type': [],
+ },
+ api_client=api_client,
+ callable=__get_resourcepool_pool_by_moid
+ )
+
+ def __get_resourcepool_pool_list(
+ self,
+ **kwargs
+ ):
+ """Read a 'resourcepool.Pool' resource. # noqa: E501
+
+ This method makes a synchronous HTTP request by default. To make an
+ asynchronous HTTP request, please pass async_req=True
+
+ >>> thread = api.get_resourcepool_pool_list(async_req=True)
+ >>> result = thread.get()
+
+
+ Keyword Args:
+ filter (str): 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] if omitted the server will use the default value of ""
+ orderby (str): Determines what properties are used to sort the collection of resources.. [optional]
+ top (int): Specifies the maximum number of resources to return in the response.. [optional] if omitted the server will use the default value of 100
+ skip (int): Specifies the number of resources to skip in the response.. [optional] if omitted the server will use the default value of 0
+ select (str): Specifies a subset of properties to return.. [optional] if omitted the server will use the default value of ""
+ expand (str): Specify additional attributes or related resources to return in addition to the primary resources.. [optional]
+ apply (str): 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.. [optional]
+ count (bool): The $count query specifies the service should return the count of the matching resources, instead of returning the resources.. [optional]
+ inlinecount (str): The $inlinecount query option allows clients to request an inline count of the matching resources included with the resources in the response.. [optional] if omitted the server will use the default value of "allpages"
+ at (str): 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.. [optional]
+ tags (str): 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_http_data_only (bool): response data without head status
+ code and headers. Default is True.
+ _preload_content (bool): if False, the urllib3.HTTPResponse object
+ will be returned without reading/decoding response data.
+ Default is True.
+ _request_timeout (float/tuple): timeout setting for this request. If one
+ number provided, it will be total request timeout. It can also
+ be a pair (tuple) of (connection, read) timeouts.
+ Default is None.
+ _check_input_type (bool): specifies if type checking
+ should be done one the data sent to the server.
+ Default is True.
+ _check_return_type (bool): specifies if type checking
+ should be done one the data received from the server.
+ Default is True.
+ _host_index (int/None): specifies the index of the server
+ that we want to use.
+ Default is read from the configuration.
+ async_req (bool): execute request asynchronously
+
+ Returns:
+ ResourcepoolPoolResponse
+ If the method is called asynchronously, returns the request
+ thread.
+ """
+ kwargs['async_req'] = kwargs.get(
+ 'async_req', False
+ )
+ kwargs['_return_http_data_only'] = kwargs.get(
+ '_return_http_data_only', True
+ )
+ kwargs['_preload_content'] = kwargs.get(
+ '_preload_content', True
+ )
+ kwargs['_request_timeout'] = kwargs.get(
+ '_request_timeout', None
+ )
+ kwargs['_check_input_type'] = kwargs.get(
+ '_check_input_type', True
+ )
+ kwargs['_check_return_type'] = kwargs.get(
+ '_check_return_type', True
+ )
+ kwargs['_host_index'] = kwargs.get('_host_index')
+ return self.call_with_http_info(**kwargs)
+
+ self.get_resourcepool_pool_list = _Endpoint(
+ settings={
+ 'response_type': (ResourcepoolPoolResponse,),
+ 'auth': [
+ 'cookieAuth',
+ 'http_signature',
+ 'oAuth2',
+ 'oAuth2'
+ ],
+ 'endpoint_path': '/api/v1/resourcepool/Pools',
+ 'operation_id': 'get_resourcepool_pool_list',
+ 'http_method': 'GET',
+ 'servers': None,
+ },
+ params_map={
+ 'all': [
+ 'filter',
+ 'orderby',
+ 'top',
+ 'skip',
+ 'select',
+ 'expand',
+ 'apply',
+ 'count',
+ 'inlinecount',
+ 'at',
+ 'tags',
+ ],
+ 'required': [],
+ 'nullable': [
+ ],
+ 'enum': [
+ 'inlinecount',
+ ],
+ 'validation': [
+ ]
+ },
+ root_map={
+ 'validations': {
+ },
+ 'allowed_values': {
+ ('inlinecount',): {
+
+ "ALLPAGES": "allpages",
+ "NONE": "none"
+ },
+ },
+ 'openapi_types': {
+ 'filter':
+ (str,),
+ 'orderby':
+ (str,),
+ 'top':
+ (int,),
+ 'skip':
+ (int,),
+ 'select':
+ (str,),
+ 'expand':
+ (str,),
+ 'apply':
+ (str,),
+ 'count':
+ (bool,),
+ 'inlinecount':
+ (str,),
+ 'at':
+ (str,),
+ 'tags':
+ (str,),
+ },
+ 'attribute_map': {
+ 'filter': '$filter',
+ 'orderby': '$orderby',
+ 'top': '$top',
+ 'skip': '$skip',
+ 'select': '$select',
+ 'expand': '$expand',
+ 'apply': '$apply',
+ 'count': '$count',
+ 'inlinecount': '$inlinecount',
+ 'at': 'at',
+ 'tags': 'tags',
+ },
+ 'location_map': {
+ 'filter': 'query',
+ 'orderby': 'query',
+ 'top': 'query',
+ 'skip': 'query',
+ 'select': 'query',
+ 'expand': 'query',
+ 'apply': 'query',
+ 'count': 'query',
+ 'inlinecount': 'query',
+ 'at': 'query',
+ 'tags': 'query',
+ },
+ 'collection_format_map': {
+ }
+ },
+ headers_map={
+ 'accept': [
+ 'application/json',
+ 'text/csv',
+ 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet'
+ ],
+ 'content_type': [],
+ },
+ api_client=api_client,
+ callable=__get_resourcepool_pool_list
+ )
+
+ def __get_resourcepool_pool_member_by_moid(
+ self,
+ moid,
+ **kwargs
+ ):
+ """Read a 'resourcepool.PoolMember' resource. # noqa: E501
+
+ This method makes a synchronous HTTP request by default. To make an
+ asynchronous HTTP request, please pass async_req=True
+
+ >>> thread = api.get_resourcepool_pool_member_by_moid(moid, async_req=True)
+ >>> result = thread.get()
+
+ Args:
+ moid (str): The unique Moid identifier of a resource instance.
+
+ Keyword Args:
+ _return_http_data_only (bool): response data without head status
+ code and headers. Default is True.
+ _preload_content (bool): if False, the urllib3.HTTPResponse object
+ will be returned without reading/decoding response data.
+ Default is True.
+ _request_timeout (float/tuple): timeout setting for this request. If one
+ number provided, it will be total request timeout. It can also
+ be a pair (tuple) of (connection, read) timeouts.
+ Default is None.
+ _check_input_type (bool): specifies if type checking
+ should be done one the data sent to the server.
+ Default is True.
+ _check_return_type (bool): specifies if type checking
+ should be done one the data received from the server.
+ Default is True.
+ _host_index (int/None): specifies the index of the server
+ that we want to use.
+ Default is read from the configuration.
+ async_req (bool): execute request asynchronously
+
+ Returns:
+ ResourcepoolPoolMember
+ If the method is called asynchronously, returns the request
+ thread.
+ """
+ kwargs['async_req'] = kwargs.get(
+ 'async_req', False
+ )
+ kwargs['_return_http_data_only'] = kwargs.get(
+ '_return_http_data_only', True
+ )
+ kwargs['_preload_content'] = kwargs.get(
+ '_preload_content', True
+ )
+ kwargs['_request_timeout'] = kwargs.get(
+ '_request_timeout', None
+ )
+ kwargs['_check_input_type'] = kwargs.get(
+ '_check_input_type', True
+ )
+ kwargs['_check_return_type'] = kwargs.get(
+ '_check_return_type', True
+ )
+ kwargs['_host_index'] = kwargs.get('_host_index')
+ kwargs['moid'] = \
+ moid
+ return self.call_with_http_info(**kwargs)
+
+ self.get_resourcepool_pool_member_by_moid = _Endpoint(
+ settings={
+ 'response_type': (ResourcepoolPoolMember,),
+ 'auth': [
+ 'cookieAuth',
+ 'http_signature',
+ 'oAuth2',
+ 'oAuth2'
+ ],
+ 'endpoint_path': '/api/v1/resourcepool/PoolMembers/{Moid}',
+ 'operation_id': 'get_resourcepool_pool_member_by_moid',
+ 'http_method': 'GET',
+ 'servers': None,
+ },
+ params_map={
+ 'all': [
+ 'moid',
+ ],
+ 'required': [
+ 'moid',
+ ],
+ 'nullable': [
+ ],
+ 'enum': [
+ ],
+ 'validation': [
+ ]
+ },
+ root_map={
+ 'validations': {
+ },
+ 'allowed_values': {
+ },
+ 'openapi_types': {
+ 'moid':
+ (str,),
+ },
+ 'attribute_map': {
+ 'moid': 'Moid',
+ },
+ 'location_map': {
+ 'moid': 'path',
+ },
+ 'collection_format_map': {
+ }
+ },
+ headers_map={
+ 'accept': [
+ 'application/json',
+ 'text/csv',
+ 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet'
+ ],
+ 'content_type': [],
+ },
+ api_client=api_client,
+ callable=__get_resourcepool_pool_member_by_moid
+ )
+
+ def __get_resourcepool_pool_member_list(
+ self,
+ **kwargs
+ ):
+ """Read a 'resourcepool.PoolMember' resource. # noqa: E501
+
+ This method makes a synchronous HTTP request by default. To make an
+ asynchronous HTTP request, please pass async_req=True
+
+ >>> thread = api.get_resourcepool_pool_member_list(async_req=True)
+ >>> result = thread.get()
+
+
+ Keyword Args:
+ filter (str): 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] if omitted the server will use the default value of ""
+ orderby (str): Determines what properties are used to sort the collection of resources.. [optional]
+ top (int): Specifies the maximum number of resources to return in the response.. [optional] if omitted the server will use the default value of 100
+ skip (int): Specifies the number of resources to skip in the response.. [optional] if omitted the server will use the default value of 0
+ select (str): Specifies a subset of properties to return.. [optional] if omitted the server will use the default value of ""
+ expand (str): Specify additional attributes or related resources to return in addition to the primary resources.. [optional]
+ apply (str): 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.. [optional]
+ count (bool): The $count query specifies the service should return the count of the matching resources, instead of returning the resources.. [optional]
+ inlinecount (str): The $inlinecount query option allows clients to request an inline count of the matching resources included with the resources in the response.. [optional] if omitted the server will use the default value of "allpages"
+ at (str): 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.. [optional]
+ tags (str): 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_http_data_only (bool): response data without head status
+ code and headers. Default is True.
+ _preload_content (bool): if False, the urllib3.HTTPResponse object
+ will be returned without reading/decoding response data.
+ Default is True.
+ _request_timeout (float/tuple): timeout setting for this request. If one
+ number provided, it will be total request timeout. It can also
+ be a pair (tuple) of (connection, read) timeouts.
+ Default is None.
+ _check_input_type (bool): specifies if type checking
+ should be done one the data sent to the server.
+ Default is True.
+ _check_return_type (bool): specifies if type checking
+ should be done one the data received from the server.
+ Default is True.
+ _host_index (int/None): specifies the index of the server
+ that we want to use.
+ Default is read from the configuration.
+ async_req (bool): execute request asynchronously
+
+ Returns:
+ ResourcepoolPoolMemberResponse
+ If the method is called asynchronously, returns the request
+ thread.
+ """
+ kwargs['async_req'] = kwargs.get(
+ 'async_req', False
+ )
+ kwargs['_return_http_data_only'] = kwargs.get(
+ '_return_http_data_only', True
+ )
+ kwargs['_preload_content'] = kwargs.get(
+ '_preload_content', True
+ )
+ kwargs['_request_timeout'] = kwargs.get(
+ '_request_timeout', None
+ )
+ kwargs['_check_input_type'] = kwargs.get(
+ '_check_input_type', True
+ )
+ kwargs['_check_return_type'] = kwargs.get(
+ '_check_return_type', True
+ )
+ kwargs['_host_index'] = kwargs.get('_host_index')
+ return self.call_with_http_info(**kwargs)
+
+ self.get_resourcepool_pool_member_list = _Endpoint(
+ settings={
+ 'response_type': (ResourcepoolPoolMemberResponse,),
+ 'auth': [
+ 'cookieAuth',
+ 'http_signature',
+ 'oAuth2',
+ 'oAuth2'
+ ],
+ 'endpoint_path': '/api/v1/resourcepool/PoolMembers',
+ 'operation_id': 'get_resourcepool_pool_member_list',
+ 'http_method': 'GET',
+ 'servers': None,
+ },
+ params_map={
+ 'all': [
+ 'filter',
+ 'orderby',
+ 'top',
+ 'skip',
+ 'select',
+ 'expand',
+ 'apply',
+ 'count',
+ 'inlinecount',
+ 'at',
+ 'tags',
+ ],
+ 'required': [],
+ 'nullable': [
+ ],
+ 'enum': [
+ 'inlinecount',
+ ],
+ 'validation': [
+ ]
+ },
+ root_map={
+ 'validations': {
+ },
+ 'allowed_values': {
+ ('inlinecount',): {
+
+ "ALLPAGES": "allpages",
+ "NONE": "none"
+ },
+ },
+ 'openapi_types': {
+ 'filter':
+ (str,),
+ 'orderby':
+ (str,),
+ 'top':
+ (int,),
+ 'skip':
+ (int,),
+ 'select':
+ (str,),
+ 'expand':
+ (str,),
+ 'apply':
+ (str,),
+ 'count':
+ (bool,),
+ 'inlinecount':
+ (str,),
+ 'at':
+ (str,),
+ 'tags':
+ (str,),
+ },
+ 'attribute_map': {
+ 'filter': '$filter',
+ 'orderby': '$orderby',
+ 'top': '$top',
+ 'skip': '$skip',
+ 'select': '$select',
+ 'expand': '$expand',
+ 'apply': '$apply',
+ 'count': '$count',
+ 'inlinecount': '$inlinecount',
+ 'at': 'at',
+ 'tags': 'tags',
+ },
+ 'location_map': {
+ 'filter': 'query',
+ 'orderby': 'query',
+ 'top': 'query',
+ 'skip': 'query',
+ 'select': 'query',
+ 'expand': 'query',
+ 'apply': 'query',
+ 'count': 'query',
+ 'inlinecount': 'query',
+ 'at': 'query',
+ 'tags': 'query',
+ },
+ 'collection_format_map': {
+ }
+ },
+ headers_map={
+ 'accept': [
+ 'application/json',
+ 'text/csv',
+ 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet'
+ ],
+ 'content_type': [],
+ },
+ api_client=api_client,
+ callable=__get_resourcepool_pool_member_list
+ )
+
+ def __get_resourcepool_universe_by_moid(
+ self,
+ moid,
+ **kwargs
+ ):
+ """Read a 'resourcepool.Universe' resource. # noqa: E501
+
+ This method makes a synchronous HTTP request by default. To make an
+ asynchronous HTTP request, please pass async_req=True
+
+ >>> thread = api.get_resourcepool_universe_by_moid(moid, async_req=True)
+ >>> result = thread.get()
+
+ Args:
+ moid (str): The unique Moid identifier of a resource instance.
+
+ Keyword Args:
+ _return_http_data_only (bool): response data without head status
+ code and headers. Default is True.
+ _preload_content (bool): if False, the urllib3.HTTPResponse object
+ will be returned without reading/decoding response data.
+ Default is True.
+ _request_timeout (float/tuple): timeout setting for this request. If one
+ number provided, it will be total request timeout. It can also
+ be a pair (tuple) of (connection, read) timeouts.
+ Default is None.
+ _check_input_type (bool): specifies if type checking
+ should be done one the data sent to the server.
+ Default is True.
+ _check_return_type (bool): specifies if type checking
+ should be done one the data received from the server.
+ Default is True.
+ _host_index (int/None): specifies the index of the server
+ that we want to use.
+ Default is read from the configuration.
+ async_req (bool): execute request asynchronously
+
+ Returns:
+ ResourcepoolUniverse
+ If the method is called asynchronously, returns the request
+ thread.
+ """
+ kwargs['async_req'] = kwargs.get(
+ 'async_req', False
+ )
+ kwargs['_return_http_data_only'] = kwargs.get(
+ '_return_http_data_only', True
+ )
+ kwargs['_preload_content'] = kwargs.get(
+ '_preload_content', True
+ )
+ kwargs['_request_timeout'] = kwargs.get(
+ '_request_timeout', None
+ )
+ kwargs['_check_input_type'] = kwargs.get(
+ '_check_input_type', True
+ )
+ kwargs['_check_return_type'] = kwargs.get(
+ '_check_return_type', True
+ )
+ kwargs['_host_index'] = kwargs.get('_host_index')
+ kwargs['moid'] = \
+ moid
+ return self.call_with_http_info(**kwargs)
+
+ self.get_resourcepool_universe_by_moid = _Endpoint(
+ settings={
+ 'response_type': (ResourcepoolUniverse,),
+ 'auth': [
+ 'cookieAuth',
+ 'http_signature',
+ 'oAuth2',
+ 'oAuth2'
+ ],
+ 'endpoint_path': '/api/v1/resourcepool/Universes/{Moid}',
+ 'operation_id': 'get_resourcepool_universe_by_moid',
+ 'http_method': 'GET',
+ 'servers': None,
+ },
+ params_map={
+ 'all': [
+ 'moid',
+ ],
+ 'required': [
+ 'moid',
+ ],
+ 'nullable': [
+ ],
+ 'enum': [
+ ],
+ 'validation': [
+ ]
+ },
+ root_map={
+ 'validations': {
+ },
+ 'allowed_values': {
+ },
+ 'openapi_types': {
+ 'moid':
+ (str,),
+ },
+ 'attribute_map': {
+ 'moid': 'Moid',
+ },
+ 'location_map': {
+ 'moid': 'path',
+ },
+ 'collection_format_map': {
+ }
+ },
+ headers_map={
+ 'accept': [
+ 'application/json',
+ 'text/csv',
+ 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet'
+ ],
+ 'content_type': [],
+ },
+ api_client=api_client,
+ callable=__get_resourcepool_universe_by_moid
+ )
+
+ def __get_resourcepool_universe_list(
+ self,
+ **kwargs
+ ):
+ """Read a 'resourcepool.Universe' resource. # noqa: E501
+
+ This method makes a synchronous HTTP request by default. To make an
+ asynchronous HTTP request, please pass async_req=True
+
+ >>> thread = api.get_resourcepool_universe_list(async_req=True)
+ >>> result = thread.get()
+
+
+ Keyword Args:
+ filter (str): 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] if omitted the server will use the default value of ""
+ orderby (str): Determines what properties are used to sort the collection of resources.. [optional]
+ top (int): Specifies the maximum number of resources to return in the response.. [optional] if omitted the server will use the default value of 100
+ skip (int): Specifies the number of resources to skip in the response.. [optional] if omitted the server will use the default value of 0
+ select (str): Specifies a subset of properties to return.. [optional] if omitted the server will use the default value of ""
+ expand (str): Specify additional attributes or related resources to return in addition to the primary resources.. [optional]
+ apply (str): 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.. [optional]
+ count (bool): The $count query specifies the service should return the count of the matching resources, instead of returning the resources.. [optional]
+ inlinecount (str): The $inlinecount query option allows clients to request an inline count of the matching resources included with the resources in the response.. [optional] if omitted the server will use the default value of "allpages"
+ at (str): 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.. [optional]
+ tags (str): 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_http_data_only (bool): response data without head status
+ code and headers. Default is True.
+ _preload_content (bool): if False, the urllib3.HTTPResponse object
+ will be returned without reading/decoding response data.
+ Default is True.
+ _request_timeout (float/tuple): timeout setting for this request. If one
+ number provided, it will be total request timeout. It can also
+ be a pair (tuple) of (connection, read) timeouts.
+ Default is None.
+ _check_input_type (bool): specifies if type checking
+ should be done one the data sent to the server.
+ Default is True.
+ _check_return_type (bool): specifies if type checking
+ should be done one the data received from the server.
+ Default is True.
+ _host_index (int/None): specifies the index of the server
+ that we want to use.
+ Default is read from the configuration.
+ async_req (bool): execute request asynchronously
+
+ Returns:
+ ResourcepoolUniverseResponse
+ If the method is called asynchronously, returns the request
+ thread.
+ """
+ kwargs['async_req'] = kwargs.get(
+ 'async_req', False
+ )
+ kwargs['_return_http_data_only'] = kwargs.get(
+ '_return_http_data_only', True
+ )
+ kwargs['_preload_content'] = kwargs.get(
+ '_preload_content', True
+ )
+ kwargs['_request_timeout'] = kwargs.get(
+ '_request_timeout', None
+ )
+ kwargs['_check_input_type'] = kwargs.get(
+ '_check_input_type', True
+ )
+ kwargs['_check_return_type'] = kwargs.get(
+ '_check_return_type', True
+ )
+ kwargs['_host_index'] = kwargs.get('_host_index')
+ return self.call_with_http_info(**kwargs)
+
+ self.get_resourcepool_universe_list = _Endpoint(
+ settings={
+ 'response_type': (ResourcepoolUniverseResponse,),
+ 'auth': [
+ 'cookieAuth',
+ 'http_signature',
+ 'oAuth2',
+ 'oAuth2'
+ ],
+ 'endpoint_path': '/api/v1/resourcepool/Universes',
+ 'operation_id': 'get_resourcepool_universe_list',
+ 'http_method': 'GET',
+ 'servers': None,
+ },
+ params_map={
+ 'all': [
+ 'filter',
+ 'orderby',
+ 'top',
+ 'skip',
+ 'select',
+ 'expand',
+ 'apply',
+ 'count',
+ 'inlinecount',
+ 'at',
+ 'tags',
+ ],
+ 'required': [],
+ 'nullable': [
+ ],
+ 'enum': [
+ 'inlinecount',
+ ],
+ 'validation': [
+ ]
+ },
+ root_map={
+ 'validations': {
+ },
+ 'allowed_values': {
+ ('inlinecount',): {
+
+ "ALLPAGES": "allpages",
+ "NONE": "none"
+ },
+ },
+ 'openapi_types': {
+ 'filter':
+ (str,),
+ 'orderby':
+ (str,),
+ 'top':
+ (int,),
+ 'skip':
+ (int,),
+ 'select':
+ (str,),
+ 'expand':
+ (str,),
+ 'apply':
+ (str,),
+ 'count':
+ (bool,),
+ 'inlinecount':
+ (str,),
+ 'at':
+ (str,),
+ 'tags':
+ (str,),
+ },
+ 'attribute_map': {
+ 'filter': '$filter',
+ 'orderby': '$orderby',
+ 'top': '$top',
+ 'skip': '$skip',
+ 'select': '$select',
+ 'expand': '$expand',
+ 'apply': '$apply',
+ 'count': '$count',
+ 'inlinecount': '$inlinecount',
+ 'at': 'at',
+ 'tags': 'tags',
+ },
+ 'location_map': {
+ 'filter': 'query',
+ 'orderby': 'query',
+ 'top': 'query',
+ 'skip': 'query',
+ 'select': 'query',
+ 'expand': 'query',
+ 'apply': 'query',
+ 'count': 'query',
+ 'inlinecount': 'query',
+ 'at': 'query',
+ 'tags': 'query',
+ },
+ 'collection_format_map': {
+ }
+ },
+ headers_map={
+ 'accept': [
+ 'application/json',
+ 'text/csv',
+ 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet'
+ ],
+ 'content_type': [],
+ },
+ api_client=api_client,
+ callable=__get_resourcepool_universe_list
+ )
+
+ def __patch_resourcepool_pool(
+ self,
+ moid,
+ resourcepool_pool,
+ **kwargs
+ ):
+ """Update a 'resourcepool.Pool' resource. # noqa: E501
+
+ This method makes a synchronous HTTP request by default. To make an
+ asynchronous HTTP request, please pass async_req=True
+
+ >>> thread = api.patch_resourcepool_pool(moid, resourcepool_pool, async_req=True)
+ >>> result = thread.get()
+
+ Args:
+ moid (str): The unique Moid identifier of a resource instance.
+ resourcepool_pool (ResourcepoolPool): The 'resourcepool.Pool' resource to update.
+
+ Keyword Args:
+ if_match (str): 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_http_data_only (bool): response data without head status
+ code and headers. Default is True.
+ _preload_content (bool): if False, the urllib3.HTTPResponse object
+ will be returned without reading/decoding response data.
+ Default is True.
+ _request_timeout (float/tuple): timeout setting for this request. If one
+ number provided, it will be total request timeout. It can also
+ be a pair (tuple) of (connection, read) timeouts.
+ Default is None.
+ _check_input_type (bool): specifies if type checking
+ should be done one the data sent to the server.
+ Default is True.
+ _check_return_type (bool): specifies if type checking
+ should be done one the data received from the server.
+ Default is True.
+ _host_index (int/None): specifies the index of the server
+ that we want to use.
+ Default is read from the configuration.
+ async_req (bool): execute request asynchronously
+
+ Returns:
+ ResourcepoolPool
+ If the method is called asynchronously, returns the request
+ thread.
+ """
+ kwargs['async_req'] = kwargs.get(
+ 'async_req', False
+ )
+ kwargs['_return_http_data_only'] = kwargs.get(
+ '_return_http_data_only', True
+ )
+ kwargs['_preload_content'] = kwargs.get(
+ '_preload_content', True
+ )
+ kwargs['_request_timeout'] = kwargs.get(
+ '_request_timeout', None
+ )
+ kwargs['_check_input_type'] = kwargs.get(
+ '_check_input_type', True
+ )
+ kwargs['_check_return_type'] = kwargs.get(
+ '_check_return_type', True
+ )
+ kwargs['_host_index'] = kwargs.get('_host_index')
+ kwargs['moid'] = \
+ moid
+ kwargs['resourcepool_pool'] = \
+ resourcepool_pool
+ return self.call_with_http_info(**kwargs)
+
+ self.patch_resourcepool_pool = _Endpoint(
+ settings={
+ 'response_type': (ResourcepoolPool,),
+ 'auth': [
+ 'cookieAuth',
+ 'http_signature',
+ 'oAuth2',
+ 'oAuth2'
+ ],
+ 'endpoint_path': '/api/v1/resourcepool/Pools/{Moid}',
+ 'operation_id': 'patch_resourcepool_pool',
+ 'http_method': 'PATCH',
+ 'servers': None,
+ },
+ params_map={
+ 'all': [
+ 'moid',
+ 'resourcepool_pool',
+ 'if_match',
+ ],
+ 'required': [
+ 'moid',
+ 'resourcepool_pool',
+ ],
+ 'nullable': [
+ ],
+ 'enum': [
+ ],
+ 'validation': [
+ ]
+ },
+ root_map={
+ 'validations': {
+ },
+ 'allowed_values': {
+ },
+ 'openapi_types': {
+ 'moid':
+ (str,),
+ 'resourcepool_pool':
+ (ResourcepoolPool,),
+ 'if_match':
+ (str,),
+ },
+ 'attribute_map': {
+ 'moid': 'Moid',
+ 'if_match': 'If-Match',
+ },
+ 'location_map': {
+ 'moid': 'path',
+ 'resourcepool_pool': 'body',
+ 'if_match': 'header',
+ },
+ 'collection_format_map': {
+ }
+ },
+ headers_map={
+ 'accept': [
+ 'application/json'
+ ],
+ 'content_type': [
+ 'application/json',
+ 'application/json-patch+json'
+ ]
+ },
+ api_client=api_client,
+ callable=__patch_resourcepool_pool
+ )
+
+ def __update_resourcepool_pool(
+ self,
+ moid,
+ resourcepool_pool,
+ **kwargs
+ ):
+ """Update a 'resourcepool.Pool' resource. # noqa: E501
+
+ This method makes a synchronous HTTP request by default. To make an
+ asynchronous HTTP request, please pass async_req=True
+
+ >>> thread = api.update_resourcepool_pool(moid, resourcepool_pool, async_req=True)
+ >>> result = thread.get()
+
+ Args:
+ moid (str): The unique Moid identifier of a resource instance.
+ resourcepool_pool (ResourcepoolPool): The 'resourcepool.Pool' resource to update.
+
+ Keyword Args:
+ if_match (str): 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_http_data_only (bool): response data without head status
+ code and headers. Default is True.
+ _preload_content (bool): if False, the urllib3.HTTPResponse object
+ will be returned without reading/decoding response data.
+ Default is True.
+ _request_timeout (float/tuple): timeout setting for this request. If one
+ number provided, it will be total request timeout. It can also
+ be a pair (tuple) of (connection, read) timeouts.
+ Default is None.
+ _check_input_type (bool): specifies if type checking
+ should be done one the data sent to the server.
+ Default is True.
+ _check_return_type (bool): specifies if type checking
+ should be done one the data received from the server.
+ Default is True.
+ _host_index (int/None): specifies the index of the server
+ that we want to use.
+ Default is read from the configuration.
+ async_req (bool): execute request asynchronously
+
+ Returns:
+ ResourcepoolPool
+ If the method is called asynchronously, returns the request
+ thread.
+ """
+ kwargs['async_req'] = kwargs.get(
+ 'async_req', False
+ )
+ kwargs['_return_http_data_only'] = kwargs.get(
+ '_return_http_data_only', True
+ )
+ kwargs['_preload_content'] = kwargs.get(
+ '_preload_content', True
+ )
+ kwargs['_request_timeout'] = kwargs.get(
+ '_request_timeout', None
+ )
+ kwargs['_check_input_type'] = kwargs.get(
+ '_check_input_type', True
+ )
+ kwargs['_check_return_type'] = kwargs.get(
+ '_check_return_type', True
+ )
+ kwargs['_host_index'] = kwargs.get('_host_index')
+ kwargs['moid'] = \
+ moid
+ kwargs['resourcepool_pool'] = \
+ resourcepool_pool
+ return self.call_with_http_info(**kwargs)
+
+ self.update_resourcepool_pool = _Endpoint(
+ settings={
+ 'response_type': (ResourcepoolPool,),
+ 'auth': [
+ 'cookieAuth',
+ 'http_signature',
+ 'oAuth2',
+ 'oAuth2'
+ ],
+ 'endpoint_path': '/api/v1/resourcepool/Pools/{Moid}',
+ 'operation_id': 'update_resourcepool_pool',
+ 'http_method': 'POST',
+ 'servers': None,
+ },
+ params_map={
+ 'all': [
+ 'moid',
+ 'resourcepool_pool',
+ 'if_match',
+ ],
+ 'required': [
+ 'moid',
+ 'resourcepool_pool',
+ ],
+ 'nullable': [
+ ],
+ 'enum': [
+ ],
+ 'validation': [
+ ]
+ },
+ root_map={
+ 'validations': {
+ },
+ 'allowed_values': {
+ },
+ 'openapi_types': {
+ 'moid':
+ (str,),
+ 'resourcepool_pool':
+ (ResourcepoolPool,),
+ 'if_match':
+ (str,),
+ },
+ 'attribute_map': {
+ 'moid': 'Moid',
+ 'if_match': 'If-Match',
+ },
+ 'location_map': {
+ 'moid': 'path',
+ 'resourcepool_pool': 'body',
+ 'if_match': 'header',
+ },
+ 'collection_format_map': {
+ }
+ },
+ headers_map={
+ 'accept': [
+ 'application/json'
+ ],
+ 'content_type': [
+ 'application/json',
+ 'application/json-patch+json'
+ ]
+ },
+ api_client=api_client,
+ callable=__update_resourcepool_pool
+ )
diff --git a/intersight/api/rproxy_api.py b/intersight/api/rproxy_api.py
index 7e10624a59..335cc266ec 100644
--- a/intersight/api/rproxy_api.py
+++ b/intersight/api/rproxy_api.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/api/sdcard_api.py b/intersight/api/sdcard_api.py
index 8d87ca7133..f3c86e80b1 100644
--- a/intersight/api/sdcard_api.py
+++ b/intersight/api/sdcard_api.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/api/sdwan_api.py b/intersight/api/sdwan_api.py
index 33f01c4b64..11a77eed03 100644
--- a/intersight/api/sdwan_api.py
+++ b/intersight/api/sdwan_api.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/api/search_api.py b/intersight/api/search_api.py
index 044b4c2d19..f97318bd6b 100644
--- a/intersight/api/search_api.py
+++ b/intersight/api/search_api.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/api/security_api.py b/intersight/api/security_api.py
index c97a4d2e2f..671272d080 100644
--- a/intersight/api/security_api.py
+++ b/intersight/api/security_api.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/api/server_api.py b/intersight/api/server_api.py
index dd52a95b61..325cca7009 100644
--- a/intersight/api/server_api.py
+++ b/intersight/api/server_api.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/api/smtp_api.py b/intersight/api/smtp_api.py
index e60eb418f3..7f9ed33a67 100644
--- a/intersight/api/smtp_api.py
+++ b/intersight/api/smtp_api.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/api/snmp_api.py b/intersight/api/snmp_api.py
index a7af4f8510..62bab4b8f0 100644
--- a/intersight/api/snmp_api.py
+++ b/intersight/api/snmp_api.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/api/software_api.py b/intersight/api/software_api.py
index a07dc0740d..4dee746b86 100644
--- a/intersight/api/software_api.py
+++ b/intersight/api/software_api.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/api/softwarerepository_api.py b/intersight/api/softwarerepository_api.py
index 4a55b11f71..6995978062 100644
--- a/intersight/api/softwarerepository_api.py
+++ b/intersight/api/softwarerepository_api.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/api/sol_api.py b/intersight/api/sol_api.py
index 1fa8a260dc..69d152b4f6 100644
--- a/intersight/api/sol_api.py
+++ b/intersight/api/sol_api.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/api/ssh_api.py b/intersight/api/ssh_api.py
index 1b278975fe..1b0e6d00be 100644
--- a/intersight/api/ssh_api.py
+++ b/intersight/api/ssh_api.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/api/storage_api.py b/intersight/api/storage_api.py
index 9f3d2e6eed..e531bfd51a 100644
--- a/intersight/api/storage_api.py
+++ b/intersight/api/storage_api.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/api/syslog_api.py b/intersight/api/syslog_api.py
index cb7f05a6ca..6983ae4a27 100644
--- a/intersight/api/syslog_api.py
+++ b/intersight/api/syslog_api.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/api/tam_api.py b/intersight/api/tam_api.py
index 0dd634d3d5..3f660b5f39 100644
--- a/intersight/api/tam_api.py
+++ b/intersight/api/tam_api.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/api/task_api.py b/intersight/api/task_api.py
index 138756bab9..a5ba8aa16e 100644
--- a/intersight/api/task_api.py
+++ b/intersight/api/task_api.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
@@ -28,6 +28,7 @@
from intersight.model.task_net_app_scoped_inventory import TaskNetAppScopedInventory
from intersight.model.task_public_cloud_scoped_inventory import TaskPublicCloudScopedInventory
from intersight.model.task_pure_scoped_inventory import TaskPureScopedInventory
+from intersight.model.task_server_scoped_inventory import TaskServerScopedInventory
class TaskApi(object):
@@ -711,3 +712,137 @@ def __create_task_pure_scoped_inventory(
api_client=api_client,
callable=__create_task_pure_scoped_inventory
)
+
+ def __create_task_server_scoped_inventory(
+ self,
+ task_server_scoped_inventory,
+ **kwargs
+ ):
+ """Create a 'task.ServerScopedInventory' resource. # noqa: E501
+
+ This method makes a synchronous HTTP request by default. To make an
+ asynchronous HTTP request, please pass async_req=True
+
+ >>> thread = api.create_task_server_scoped_inventory(task_server_scoped_inventory, async_req=True)
+ >>> result = thread.get()
+
+ Args:
+ task_server_scoped_inventory (TaskServerScopedInventory): The 'task.ServerScopedInventory' resource to create.
+
+ Keyword Args:
+ if_match (str): 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 (str): 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_http_data_only (bool): response data without head status
+ code and headers. Default is True.
+ _preload_content (bool): if False, the urllib3.HTTPResponse object
+ will be returned without reading/decoding response data.
+ Default is True.
+ _request_timeout (float/tuple): timeout setting for this request. If one
+ number provided, it will be total request timeout. It can also
+ be a pair (tuple) of (connection, read) timeouts.
+ Default is None.
+ _check_input_type (bool): specifies if type checking
+ should be done one the data sent to the server.
+ Default is True.
+ _check_return_type (bool): specifies if type checking
+ should be done one the data received from the server.
+ Default is True.
+ _host_index (int/None): specifies the index of the server
+ that we want to use.
+ Default is read from the configuration.
+ async_req (bool): execute request asynchronously
+
+ Returns:
+ TaskServerScopedInventory
+ If the method is called asynchronously, returns the request
+ thread.
+ """
+ kwargs['async_req'] = kwargs.get(
+ 'async_req', False
+ )
+ kwargs['_return_http_data_only'] = kwargs.get(
+ '_return_http_data_only', True
+ )
+ kwargs['_preload_content'] = kwargs.get(
+ '_preload_content', True
+ )
+ kwargs['_request_timeout'] = kwargs.get(
+ '_request_timeout', None
+ )
+ kwargs['_check_input_type'] = kwargs.get(
+ '_check_input_type', True
+ )
+ kwargs['_check_return_type'] = kwargs.get(
+ '_check_return_type', True
+ )
+ kwargs['_host_index'] = kwargs.get('_host_index')
+ kwargs['task_server_scoped_inventory'] = \
+ task_server_scoped_inventory
+ return self.call_with_http_info(**kwargs)
+
+ self.create_task_server_scoped_inventory = _Endpoint(
+ settings={
+ 'response_type': (TaskServerScopedInventory,),
+ 'auth': [
+ 'cookieAuth',
+ 'http_signature',
+ 'oAuth2',
+ 'oAuth2'
+ ],
+ 'endpoint_path': '/api/v1/task/ServerScopedInventories',
+ 'operation_id': 'create_task_server_scoped_inventory',
+ 'http_method': 'POST',
+ 'servers': None,
+ },
+ params_map={
+ 'all': [
+ 'task_server_scoped_inventory',
+ 'if_match',
+ 'if_none_match',
+ ],
+ 'required': [
+ 'task_server_scoped_inventory',
+ ],
+ 'nullable': [
+ ],
+ 'enum': [
+ ],
+ 'validation': [
+ ]
+ },
+ root_map={
+ 'validations': {
+ },
+ 'allowed_values': {
+ },
+ 'openapi_types': {
+ 'task_server_scoped_inventory':
+ (TaskServerScopedInventory,),
+ 'if_match':
+ (str,),
+ 'if_none_match':
+ (str,),
+ },
+ 'attribute_map': {
+ 'if_match': 'If-Match',
+ 'if_none_match': 'If-None-Match',
+ },
+ 'location_map': {
+ 'task_server_scoped_inventory': 'body',
+ 'if_match': 'header',
+ 'if_none_match': 'header',
+ },
+ 'collection_format_map': {
+ }
+ },
+ headers_map={
+ 'accept': [
+ 'application/json'
+ ],
+ 'content_type': [
+ 'application/json'
+ ]
+ },
+ api_client=api_client,
+ callable=__create_task_server_scoped_inventory
+ )
diff --git a/intersight/api/techsupportmanagement_api.py b/intersight/api/techsupportmanagement_api.py
index 366ff3e579..b8183cbc99 100644
--- a/intersight/api/techsupportmanagement_api.py
+++ b/intersight/api/techsupportmanagement_api.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/api/telemetry_api.py b/intersight/api/telemetry_api.py
index 5b99d052ef..4f2d3a26e5 100644
--- a/intersight/api/telemetry_api.py
+++ b/intersight/api/telemetry_api.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/api/terminal_api.py b/intersight/api/terminal_api.py
index a7a15e69b1..7ae7df95c1 100644
--- a/intersight/api/terminal_api.py
+++ b/intersight/api/terminal_api.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/api/thermal_api.py b/intersight/api/thermal_api.py
index 9ce9ea2a81..beaeae91c2 100644
--- a/intersight/api/thermal_api.py
+++ b/intersight/api/thermal_api.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/api/top_api.py b/intersight/api/top_api.py
index 9cbad76505..d1ffbbe91c 100644
--- a/intersight/api/top_api.py
+++ b/intersight/api/top_api.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/api/ucsd_api.py b/intersight/api/ucsd_api.py
index af01c1c0d4..57b9d1f2d8 100644
--- a/intersight/api/ucsd_api.py
+++ b/intersight/api/ucsd_api.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/api/uuidpool_api.py b/intersight/api/uuidpool_api.py
index eba17a207c..4258ea04b8 100644
--- a/intersight/api/uuidpool_api.py
+++ b/intersight/api/uuidpool_api.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/api/virtualization_api.py b/intersight/api/virtualization_api.py
index 6a4f292cf8..8ed4c71d6d 100644
--- a/intersight/api/virtualization_api.py
+++ b/intersight/api/virtualization_api.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
@@ -59,6 +59,8 @@
from intersight.model.virtualization_vmware_virtual_disk_response import VirtualizationVmwareVirtualDiskResponse
from intersight.model.virtualization_vmware_virtual_machine import VirtualizationVmwareVirtualMachine
from intersight.model.virtualization_vmware_virtual_machine_response import VirtualizationVmwareVirtualMachineResponse
+from intersight.model.virtualization_vmware_virtual_machine_snapshot import VirtualizationVmwareVirtualMachineSnapshot
+from intersight.model.virtualization_vmware_virtual_machine_snapshot_response import VirtualizationVmwareVirtualMachineSnapshotResponse
from intersight.model.virtualization_vmware_virtual_network_interface import VirtualizationVmwareVirtualNetworkInterface
from intersight.model.virtualization_vmware_virtual_network_interface_response import VirtualizationVmwareVirtualNetworkInterfaceResponse
from intersight.model.virtualization_vmware_virtual_switch import VirtualizationVmwareVirtualSwitch
@@ -6095,6 +6097,312 @@ def __get_virtualization_vmware_virtual_machine_list(
callable=__get_virtualization_vmware_virtual_machine_list
)
+ def __get_virtualization_vmware_virtual_machine_snapshot_by_moid(
+ self,
+ moid,
+ **kwargs
+ ):
+ """Read a 'virtualization.VmwareVirtualMachineSnapshot' resource. # noqa: E501
+
+ This method makes a synchronous HTTP request by default. To make an
+ asynchronous HTTP request, please pass async_req=True
+
+ >>> thread = api.get_virtualization_vmware_virtual_machine_snapshot_by_moid(moid, async_req=True)
+ >>> result = thread.get()
+
+ Args:
+ moid (str): The unique Moid identifier of a resource instance.
+
+ Keyword Args:
+ _return_http_data_only (bool): response data without head status
+ code and headers. Default is True.
+ _preload_content (bool): if False, the urllib3.HTTPResponse object
+ will be returned without reading/decoding response data.
+ Default is True.
+ _request_timeout (float/tuple): timeout setting for this request. If one
+ number provided, it will be total request timeout. It can also
+ be a pair (tuple) of (connection, read) timeouts.
+ Default is None.
+ _check_input_type (bool): specifies if type checking
+ should be done one the data sent to the server.
+ Default is True.
+ _check_return_type (bool): specifies if type checking
+ should be done one the data received from the server.
+ Default is True.
+ _host_index (int/None): specifies the index of the server
+ that we want to use.
+ Default is read from the configuration.
+ async_req (bool): execute request asynchronously
+
+ Returns:
+ VirtualizationVmwareVirtualMachineSnapshot
+ If the method is called asynchronously, returns the request
+ thread.
+ """
+ kwargs['async_req'] = kwargs.get(
+ 'async_req', False
+ )
+ kwargs['_return_http_data_only'] = kwargs.get(
+ '_return_http_data_only', True
+ )
+ kwargs['_preload_content'] = kwargs.get(
+ '_preload_content', True
+ )
+ kwargs['_request_timeout'] = kwargs.get(
+ '_request_timeout', None
+ )
+ kwargs['_check_input_type'] = kwargs.get(
+ '_check_input_type', True
+ )
+ kwargs['_check_return_type'] = kwargs.get(
+ '_check_return_type', True
+ )
+ kwargs['_host_index'] = kwargs.get('_host_index')
+ kwargs['moid'] = \
+ moid
+ return self.call_with_http_info(**kwargs)
+
+ self.get_virtualization_vmware_virtual_machine_snapshot_by_moid = _Endpoint(
+ settings={
+ 'response_type': (VirtualizationVmwareVirtualMachineSnapshot,),
+ 'auth': [
+ 'cookieAuth',
+ 'http_signature',
+ 'oAuth2',
+ 'oAuth2'
+ ],
+ 'endpoint_path': '/api/v1/virtualization/VmwareVirtualMachineSnapshots/{Moid}',
+ 'operation_id': 'get_virtualization_vmware_virtual_machine_snapshot_by_moid',
+ 'http_method': 'GET',
+ 'servers': None,
+ },
+ params_map={
+ 'all': [
+ 'moid',
+ ],
+ 'required': [
+ 'moid',
+ ],
+ 'nullable': [
+ ],
+ 'enum': [
+ ],
+ 'validation': [
+ ]
+ },
+ root_map={
+ 'validations': {
+ },
+ 'allowed_values': {
+ },
+ 'openapi_types': {
+ 'moid':
+ (str,),
+ },
+ 'attribute_map': {
+ 'moid': 'Moid',
+ },
+ 'location_map': {
+ 'moid': 'path',
+ },
+ 'collection_format_map': {
+ }
+ },
+ headers_map={
+ 'accept': [
+ 'application/json',
+ 'text/csv',
+ 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet'
+ ],
+ 'content_type': [],
+ },
+ api_client=api_client,
+ callable=__get_virtualization_vmware_virtual_machine_snapshot_by_moid
+ )
+
+ def __get_virtualization_vmware_virtual_machine_snapshot_list(
+ self,
+ **kwargs
+ ):
+ """Read a 'virtualization.VmwareVirtualMachineSnapshot' resource. # noqa: E501
+
+ This method makes a synchronous HTTP request by default. To make an
+ asynchronous HTTP request, please pass async_req=True
+
+ >>> thread = api.get_virtualization_vmware_virtual_machine_snapshot_list(async_req=True)
+ >>> result = thread.get()
+
+
+ Keyword Args:
+ filter (str): 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] if omitted the server will use the default value of ""
+ orderby (str): Determines what properties are used to sort the collection of resources.. [optional]
+ top (int): Specifies the maximum number of resources to return in the response.. [optional] if omitted the server will use the default value of 100
+ skip (int): Specifies the number of resources to skip in the response.. [optional] if omitted the server will use the default value of 0
+ select (str): Specifies a subset of properties to return.. [optional] if omitted the server will use the default value of ""
+ expand (str): Specify additional attributes or related resources to return in addition to the primary resources.. [optional]
+ apply (str): 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.. [optional]
+ count (bool): The $count query specifies the service should return the count of the matching resources, instead of returning the resources.. [optional]
+ inlinecount (str): The $inlinecount query option allows clients to request an inline count of the matching resources included with the resources in the response.. [optional] if omitted the server will use the default value of "allpages"
+ at (str): 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.. [optional]
+ tags (str): 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_http_data_only (bool): response data without head status
+ code and headers. Default is True.
+ _preload_content (bool): if False, the urllib3.HTTPResponse object
+ will be returned without reading/decoding response data.
+ Default is True.
+ _request_timeout (float/tuple): timeout setting for this request. If one
+ number provided, it will be total request timeout. It can also
+ be a pair (tuple) of (connection, read) timeouts.
+ Default is None.
+ _check_input_type (bool): specifies if type checking
+ should be done one the data sent to the server.
+ Default is True.
+ _check_return_type (bool): specifies if type checking
+ should be done one the data received from the server.
+ Default is True.
+ _host_index (int/None): specifies the index of the server
+ that we want to use.
+ Default is read from the configuration.
+ async_req (bool): execute request asynchronously
+
+ Returns:
+ VirtualizationVmwareVirtualMachineSnapshotResponse
+ If the method is called asynchronously, returns the request
+ thread.
+ """
+ kwargs['async_req'] = kwargs.get(
+ 'async_req', False
+ )
+ kwargs['_return_http_data_only'] = kwargs.get(
+ '_return_http_data_only', True
+ )
+ kwargs['_preload_content'] = kwargs.get(
+ '_preload_content', True
+ )
+ kwargs['_request_timeout'] = kwargs.get(
+ '_request_timeout', None
+ )
+ kwargs['_check_input_type'] = kwargs.get(
+ '_check_input_type', True
+ )
+ kwargs['_check_return_type'] = kwargs.get(
+ '_check_return_type', True
+ )
+ kwargs['_host_index'] = kwargs.get('_host_index')
+ return self.call_with_http_info(**kwargs)
+
+ self.get_virtualization_vmware_virtual_machine_snapshot_list = _Endpoint(
+ settings={
+ 'response_type': (VirtualizationVmwareVirtualMachineSnapshotResponse,),
+ 'auth': [
+ 'cookieAuth',
+ 'http_signature',
+ 'oAuth2',
+ 'oAuth2'
+ ],
+ 'endpoint_path': '/api/v1/virtualization/VmwareVirtualMachineSnapshots',
+ 'operation_id': 'get_virtualization_vmware_virtual_machine_snapshot_list',
+ 'http_method': 'GET',
+ 'servers': None,
+ },
+ params_map={
+ 'all': [
+ 'filter',
+ 'orderby',
+ 'top',
+ 'skip',
+ 'select',
+ 'expand',
+ 'apply',
+ 'count',
+ 'inlinecount',
+ 'at',
+ 'tags',
+ ],
+ 'required': [],
+ 'nullable': [
+ ],
+ 'enum': [
+ 'inlinecount',
+ ],
+ 'validation': [
+ ]
+ },
+ root_map={
+ 'validations': {
+ },
+ 'allowed_values': {
+ ('inlinecount',): {
+
+ "ALLPAGES": "allpages",
+ "NONE": "none"
+ },
+ },
+ 'openapi_types': {
+ 'filter':
+ (str,),
+ 'orderby':
+ (str,),
+ 'top':
+ (int,),
+ 'skip':
+ (int,),
+ 'select':
+ (str,),
+ 'expand':
+ (str,),
+ 'apply':
+ (str,),
+ 'count':
+ (bool,),
+ 'inlinecount':
+ (str,),
+ 'at':
+ (str,),
+ 'tags':
+ (str,),
+ },
+ 'attribute_map': {
+ 'filter': '$filter',
+ 'orderby': '$orderby',
+ 'top': '$top',
+ 'skip': '$skip',
+ 'select': '$select',
+ 'expand': '$expand',
+ 'apply': '$apply',
+ 'count': '$count',
+ 'inlinecount': '$inlinecount',
+ 'at': 'at',
+ 'tags': 'tags',
+ },
+ 'location_map': {
+ 'filter': 'query',
+ 'orderby': 'query',
+ 'top': 'query',
+ 'skip': 'query',
+ 'select': 'query',
+ 'expand': 'query',
+ 'apply': 'query',
+ 'count': 'query',
+ 'inlinecount': 'query',
+ 'at': 'query',
+ 'tags': 'query',
+ },
+ 'collection_format_map': {
+ }
+ },
+ headers_map={
+ 'accept': [
+ 'application/json',
+ 'text/csv',
+ 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet'
+ ],
+ 'content_type': [],
+ },
+ api_client=api_client,
+ callable=__get_virtualization_vmware_virtual_machine_snapshot_list
+ )
+
def __get_virtualization_vmware_virtual_network_interface_by_moid(
self,
moid,
@@ -9070,6 +9378,145 @@ def __patch_virtualization_vmware_virtual_machine(
callable=__patch_virtualization_vmware_virtual_machine
)
+ def __patch_virtualization_vmware_virtual_machine_snapshot(
+ self,
+ moid,
+ virtualization_vmware_virtual_machine_snapshot,
+ **kwargs
+ ):
+ """Update a 'virtualization.VmwareVirtualMachineSnapshot' resource. # noqa: E501
+
+ This method makes a synchronous HTTP request by default. To make an
+ asynchronous HTTP request, please pass async_req=True
+
+ >>> thread = api.patch_virtualization_vmware_virtual_machine_snapshot(moid, virtualization_vmware_virtual_machine_snapshot, async_req=True)
+ >>> result = thread.get()
+
+ Args:
+ moid (str): The unique Moid identifier of a resource instance.
+ virtualization_vmware_virtual_machine_snapshot (VirtualizationVmwareVirtualMachineSnapshot): The 'virtualization.VmwareVirtualMachineSnapshot' resource to update.
+
+ Keyword Args:
+ if_match (str): 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_http_data_only (bool): response data without head status
+ code and headers. Default is True.
+ _preload_content (bool): if False, the urllib3.HTTPResponse object
+ will be returned without reading/decoding response data.
+ Default is True.
+ _request_timeout (float/tuple): timeout setting for this request. If one
+ number provided, it will be total request timeout. It can also
+ be a pair (tuple) of (connection, read) timeouts.
+ Default is None.
+ _check_input_type (bool): specifies if type checking
+ should be done one the data sent to the server.
+ Default is True.
+ _check_return_type (bool): specifies if type checking
+ should be done one the data received from the server.
+ Default is True.
+ _host_index (int/None): specifies the index of the server
+ that we want to use.
+ Default is read from the configuration.
+ async_req (bool): execute request asynchronously
+
+ Returns:
+ VirtualizationVmwareVirtualMachineSnapshot
+ If the method is called asynchronously, returns the request
+ thread.
+ """
+ kwargs['async_req'] = kwargs.get(
+ 'async_req', False
+ )
+ kwargs['_return_http_data_only'] = kwargs.get(
+ '_return_http_data_only', True
+ )
+ kwargs['_preload_content'] = kwargs.get(
+ '_preload_content', True
+ )
+ kwargs['_request_timeout'] = kwargs.get(
+ '_request_timeout', None
+ )
+ kwargs['_check_input_type'] = kwargs.get(
+ '_check_input_type', True
+ )
+ kwargs['_check_return_type'] = kwargs.get(
+ '_check_return_type', True
+ )
+ kwargs['_host_index'] = kwargs.get('_host_index')
+ kwargs['moid'] = \
+ moid
+ kwargs['virtualization_vmware_virtual_machine_snapshot'] = \
+ virtualization_vmware_virtual_machine_snapshot
+ return self.call_with_http_info(**kwargs)
+
+ self.patch_virtualization_vmware_virtual_machine_snapshot = _Endpoint(
+ settings={
+ 'response_type': (VirtualizationVmwareVirtualMachineSnapshot,),
+ 'auth': [
+ 'cookieAuth',
+ 'http_signature',
+ 'oAuth2',
+ 'oAuth2'
+ ],
+ 'endpoint_path': '/api/v1/virtualization/VmwareVirtualMachineSnapshots/{Moid}',
+ 'operation_id': 'patch_virtualization_vmware_virtual_machine_snapshot',
+ 'http_method': 'PATCH',
+ 'servers': None,
+ },
+ params_map={
+ 'all': [
+ 'moid',
+ 'virtualization_vmware_virtual_machine_snapshot',
+ 'if_match',
+ ],
+ 'required': [
+ 'moid',
+ 'virtualization_vmware_virtual_machine_snapshot',
+ ],
+ 'nullable': [
+ ],
+ 'enum': [
+ ],
+ 'validation': [
+ ]
+ },
+ root_map={
+ 'validations': {
+ },
+ 'allowed_values': {
+ },
+ 'openapi_types': {
+ 'moid':
+ (str,),
+ 'virtualization_vmware_virtual_machine_snapshot':
+ (VirtualizationVmwareVirtualMachineSnapshot,),
+ 'if_match':
+ (str,),
+ },
+ 'attribute_map': {
+ 'moid': 'Moid',
+ 'if_match': 'If-Match',
+ },
+ 'location_map': {
+ 'moid': 'path',
+ 'virtualization_vmware_virtual_machine_snapshot': 'body',
+ 'if_match': 'header',
+ },
+ 'collection_format_map': {
+ }
+ },
+ headers_map={
+ 'accept': [
+ 'application/json'
+ ],
+ 'content_type': [
+ 'application/json',
+ 'application/json-patch+json'
+ ]
+ },
+ api_client=api_client,
+ callable=__patch_virtualization_vmware_virtual_machine_snapshot
+ )
+
def __patch_virtualization_vmware_virtual_network_interface(
self,
moid,
@@ -11711,6 +12158,145 @@ def __update_virtualization_vmware_virtual_machine(
callable=__update_virtualization_vmware_virtual_machine
)
+ def __update_virtualization_vmware_virtual_machine_snapshot(
+ self,
+ moid,
+ virtualization_vmware_virtual_machine_snapshot,
+ **kwargs
+ ):
+ """Update a 'virtualization.VmwareVirtualMachineSnapshot' resource. # noqa: E501
+
+ This method makes a synchronous HTTP request by default. To make an
+ asynchronous HTTP request, please pass async_req=True
+
+ >>> thread = api.update_virtualization_vmware_virtual_machine_snapshot(moid, virtualization_vmware_virtual_machine_snapshot, async_req=True)
+ >>> result = thread.get()
+
+ Args:
+ moid (str): The unique Moid identifier of a resource instance.
+ virtualization_vmware_virtual_machine_snapshot (VirtualizationVmwareVirtualMachineSnapshot): The 'virtualization.VmwareVirtualMachineSnapshot' resource to update.
+
+ Keyword Args:
+ if_match (str): 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_http_data_only (bool): response data without head status
+ code and headers. Default is True.
+ _preload_content (bool): if False, the urllib3.HTTPResponse object
+ will be returned without reading/decoding response data.
+ Default is True.
+ _request_timeout (float/tuple): timeout setting for this request. If one
+ number provided, it will be total request timeout. It can also
+ be a pair (tuple) of (connection, read) timeouts.
+ Default is None.
+ _check_input_type (bool): specifies if type checking
+ should be done one the data sent to the server.
+ Default is True.
+ _check_return_type (bool): specifies if type checking
+ should be done one the data received from the server.
+ Default is True.
+ _host_index (int/None): specifies the index of the server
+ that we want to use.
+ Default is read from the configuration.
+ async_req (bool): execute request asynchronously
+
+ Returns:
+ VirtualizationVmwareVirtualMachineSnapshot
+ If the method is called asynchronously, returns the request
+ thread.
+ """
+ kwargs['async_req'] = kwargs.get(
+ 'async_req', False
+ )
+ kwargs['_return_http_data_only'] = kwargs.get(
+ '_return_http_data_only', True
+ )
+ kwargs['_preload_content'] = kwargs.get(
+ '_preload_content', True
+ )
+ kwargs['_request_timeout'] = kwargs.get(
+ '_request_timeout', None
+ )
+ kwargs['_check_input_type'] = kwargs.get(
+ '_check_input_type', True
+ )
+ kwargs['_check_return_type'] = kwargs.get(
+ '_check_return_type', True
+ )
+ kwargs['_host_index'] = kwargs.get('_host_index')
+ kwargs['moid'] = \
+ moid
+ kwargs['virtualization_vmware_virtual_machine_snapshot'] = \
+ virtualization_vmware_virtual_machine_snapshot
+ return self.call_with_http_info(**kwargs)
+
+ self.update_virtualization_vmware_virtual_machine_snapshot = _Endpoint(
+ settings={
+ 'response_type': (VirtualizationVmwareVirtualMachineSnapshot,),
+ 'auth': [
+ 'cookieAuth',
+ 'http_signature',
+ 'oAuth2',
+ 'oAuth2'
+ ],
+ 'endpoint_path': '/api/v1/virtualization/VmwareVirtualMachineSnapshots/{Moid}',
+ 'operation_id': 'update_virtualization_vmware_virtual_machine_snapshot',
+ 'http_method': 'POST',
+ 'servers': None,
+ },
+ params_map={
+ 'all': [
+ 'moid',
+ 'virtualization_vmware_virtual_machine_snapshot',
+ 'if_match',
+ ],
+ 'required': [
+ 'moid',
+ 'virtualization_vmware_virtual_machine_snapshot',
+ ],
+ 'nullable': [
+ ],
+ 'enum': [
+ ],
+ 'validation': [
+ ]
+ },
+ root_map={
+ 'validations': {
+ },
+ 'allowed_values': {
+ },
+ 'openapi_types': {
+ 'moid':
+ (str,),
+ 'virtualization_vmware_virtual_machine_snapshot':
+ (VirtualizationVmwareVirtualMachineSnapshot,),
+ 'if_match':
+ (str,),
+ },
+ 'attribute_map': {
+ 'moid': 'Moid',
+ 'if_match': 'If-Match',
+ },
+ 'location_map': {
+ 'moid': 'path',
+ 'virtualization_vmware_virtual_machine_snapshot': 'body',
+ 'if_match': 'header',
+ },
+ 'collection_format_map': {
+ }
+ },
+ headers_map={
+ 'accept': [
+ 'application/json'
+ ],
+ 'content_type': [
+ 'application/json',
+ 'application/json-patch+json'
+ ]
+ },
+ api_client=api_client,
+ callable=__update_virtualization_vmware_virtual_machine_snapshot
+ )
+
def __update_virtualization_vmware_virtual_network_interface(
self,
moid,
diff --git a/intersight/api/vmedia_api.py b/intersight/api/vmedia_api.py
index 4fba4e393f..061aaffff9 100644
--- a/intersight/api/vmedia_api.py
+++ b/intersight/api/vmedia_api.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/api/vmrc_api.py b/intersight/api/vmrc_api.py
index bc9390f77f..868ba8c6d2 100644
--- a/intersight/api/vmrc_api.py
+++ b/intersight/api/vmrc_api.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/api/vnic_api.py b/intersight/api/vnic_api.py
index 574c48b550..133157fe98 100644
--- a/intersight/api/vnic_api.py
+++ b/intersight/api/vnic_api.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/api/vrf_api.py b/intersight/api/vrf_api.py
index 9d46366b59..5f0bef20ac 100644
--- a/intersight/api/vrf_api.py
+++ b/intersight/api/vrf_api.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/api/workflow_api.py b/intersight/api/workflow_api.py
index b294c0e4da..995d2919e3 100644
--- a/intersight/api/workflow_api.py
+++ b/intersight/api/workflow_api.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
@@ -47,6 +47,7 @@
from intersight.model.workflow_task_info_response import WorkflowTaskInfoResponse
from intersight.model.workflow_task_metadata import WorkflowTaskMetadata
from intersight.model.workflow_task_metadata_response import WorkflowTaskMetadataResponse
+from intersight.model.workflow_task_notification import WorkflowTaskNotification
from intersight.model.workflow_template_evaluation import WorkflowTemplateEvaluation
from intersight.model.workflow_template_function_meta import WorkflowTemplateFunctionMeta
from intersight.model.workflow_template_function_meta_response import WorkflowTemplateFunctionMetaResponse
@@ -58,6 +59,7 @@
from intersight.model.workflow_workflow_meta_response import WorkflowWorkflowMetaResponse
from intersight.model.workflow_workflow_metadata import WorkflowWorkflowMetadata
from intersight.model.workflow_workflow_metadata_response import WorkflowWorkflowMetadataResponse
+from intersight.model.workflow_workflow_notification import WorkflowWorkflowNotification
class WorkflowApi(object):
@@ -742,6 +744,140 @@ def __create_workflow_task_definition(
callable=__create_workflow_task_definition
)
+ def __create_workflow_task_notification(
+ self,
+ workflow_task_notification,
+ **kwargs
+ ):
+ """Create a 'workflow.TaskNotification' resource. # noqa: E501
+
+ This method makes a synchronous HTTP request by default. To make an
+ asynchronous HTTP request, please pass async_req=True
+
+ >>> thread = api.create_workflow_task_notification(workflow_task_notification, async_req=True)
+ >>> result = thread.get()
+
+ Args:
+ workflow_task_notification (WorkflowTaskNotification): The 'workflow.TaskNotification' resource to create.
+
+ Keyword Args:
+ if_match (str): 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 (str): 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_http_data_only (bool): response data without head status
+ code and headers. Default is True.
+ _preload_content (bool): if False, the urllib3.HTTPResponse object
+ will be returned without reading/decoding response data.
+ Default is True.
+ _request_timeout (float/tuple): timeout setting for this request. If one
+ number provided, it will be total request timeout. It can also
+ be a pair (tuple) of (connection, read) timeouts.
+ Default is None.
+ _check_input_type (bool): specifies if type checking
+ should be done one the data sent to the server.
+ Default is True.
+ _check_return_type (bool): specifies if type checking
+ should be done one the data received from the server.
+ Default is True.
+ _host_index (int/None): specifies the index of the server
+ that we want to use.
+ Default is read from the configuration.
+ async_req (bool): execute request asynchronously
+
+ Returns:
+ WorkflowTaskNotification
+ If the method is called asynchronously, returns the request
+ thread.
+ """
+ kwargs['async_req'] = kwargs.get(
+ 'async_req', False
+ )
+ kwargs['_return_http_data_only'] = kwargs.get(
+ '_return_http_data_only', True
+ )
+ kwargs['_preload_content'] = kwargs.get(
+ '_preload_content', True
+ )
+ kwargs['_request_timeout'] = kwargs.get(
+ '_request_timeout', None
+ )
+ kwargs['_check_input_type'] = kwargs.get(
+ '_check_input_type', True
+ )
+ kwargs['_check_return_type'] = kwargs.get(
+ '_check_return_type', True
+ )
+ kwargs['_host_index'] = kwargs.get('_host_index')
+ kwargs['workflow_task_notification'] = \
+ workflow_task_notification
+ return self.call_with_http_info(**kwargs)
+
+ self.create_workflow_task_notification = _Endpoint(
+ settings={
+ 'response_type': (WorkflowTaskNotification,),
+ 'auth': [
+ 'cookieAuth',
+ 'http_signature',
+ 'oAuth2',
+ 'oAuth2'
+ ],
+ 'endpoint_path': '/api/v1/workflow/TaskNotifications',
+ 'operation_id': 'create_workflow_task_notification',
+ 'http_method': 'POST',
+ 'servers': None,
+ },
+ params_map={
+ 'all': [
+ 'workflow_task_notification',
+ 'if_match',
+ 'if_none_match',
+ ],
+ 'required': [
+ 'workflow_task_notification',
+ ],
+ 'nullable': [
+ ],
+ 'enum': [
+ ],
+ 'validation': [
+ ]
+ },
+ root_map={
+ 'validations': {
+ },
+ 'allowed_values': {
+ },
+ 'openapi_types': {
+ 'workflow_task_notification':
+ (WorkflowTaskNotification,),
+ 'if_match':
+ (str,),
+ 'if_none_match':
+ (str,),
+ },
+ 'attribute_map': {
+ 'if_match': 'If-Match',
+ 'if_none_match': 'If-None-Match',
+ },
+ 'location_map': {
+ 'workflow_task_notification': 'body',
+ 'if_match': 'header',
+ 'if_none_match': 'header',
+ },
+ 'collection_format_map': {
+ }
+ },
+ headers_map={
+ 'accept': [
+ 'application/json'
+ ],
+ 'content_type': [
+ 'application/json'
+ ]
+ },
+ api_client=api_client,
+ callable=__create_workflow_task_notification
+ )
+
def __create_workflow_template_evaluation(
self,
workflow_template_evaluation,
@@ -1144,6 +1280,140 @@ def __create_workflow_workflow_info(
callable=__create_workflow_workflow_info
)
+ def __create_workflow_workflow_notification(
+ self,
+ workflow_workflow_notification,
+ **kwargs
+ ):
+ """Create a 'workflow.WorkflowNotification' resource. # noqa: E501
+
+ This method makes a synchronous HTTP request by default. To make an
+ asynchronous HTTP request, please pass async_req=True
+
+ >>> thread = api.create_workflow_workflow_notification(workflow_workflow_notification, async_req=True)
+ >>> result = thread.get()
+
+ Args:
+ workflow_workflow_notification (WorkflowWorkflowNotification): The 'workflow.WorkflowNotification' resource to create.
+
+ Keyword Args:
+ if_match (str): 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 (str): 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_http_data_only (bool): response data without head status
+ code and headers. Default is True.
+ _preload_content (bool): if False, the urllib3.HTTPResponse object
+ will be returned without reading/decoding response data.
+ Default is True.
+ _request_timeout (float/tuple): timeout setting for this request. If one
+ number provided, it will be total request timeout. It can also
+ be a pair (tuple) of (connection, read) timeouts.
+ Default is None.
+ _check_input_type (bool): specifies if type checking
+ should be done one the data sent to the server.
+ Default is True.
+ _check_return_type (bool): specifies if type checking
+ should be done one the data received from the server.
+ Default is True.
+ _host_index (int/None): specifies the index of the server
+ that we want to use.
+ Default is read from the configuration.
+ async_req (bool): execute request asynchronously
+
+ Returns:
+ WorkflowWorkflowNotification
+ If the method is called asynchronously, returns the request
+ thread.
+ """
+ kwargs['async_req'] = kwargs.get(
+ 'async_req', False
+ )
+ kwargs['_return_http_data_only'] = kwargs.get(
+ '_return_http_data_only', True
+ )
+ kwargs['_preload_content'] = kwargs.get(
+ '_preload_content', True
+ )
+ kwargs['_request_timeout'] = kwargs.get(
+ '_request_timeout', None
+ )
+ kwargs['_check_input_type'] = kwargs.get(
+ '_check_input_type', True
+ )
+ kwargs['_check_return_type'] = kwargs.get(
+ '_check_return_type', True
+ )
+ kwargs['_host_index'] = kwargs.get('_host_index')
+ kwargs['workflow_workflow_notification'] = \
+ workflow_workflow_notification
+ return self.call_with_http_info(**kwargs)
+
+ self.create_workflow_workflow_notification = _Endpoint(
+ settings={
+ 'response_type': (WorkflowWorkflowNotification,),
+ 'auth': [
+ 'cookieAuth',
+ 'http_signature',
+ 'oAuth2',
+ 'oAuth2'
+ ],
+ 'endpoint_path': '/api/v1/workflow/WorkflowNotifications',
+ 'operation_id': 'create_workflow_workflow_notification',
+ 'http_method': 'POST',
+ 'servers': None,
+ },
+ params_map={
+ 'all': [
+ 'workflow_workflow_notification',
+ 'if_match',
+ 'if_none_match',
+ ],
+ 'required': [
+ 'workflow_workflow_notification',
+ ],
+ 'nullable': [
+ ],
+ 'enum': [
+ ],
+ 'validation': [
+ ]
+ },
+ root_map={
+ 'validations': {
+ },
+ 'allowed_values': {
+ },
+ 'openapi_types': {
+ 'workflow_workflow_notification':
+ (WorkflowWorkflowNotification,),
+ 'if_match':
+ (str,),
+ 'if_none_match':
+ (str,),
+ },
+ 'attribute_map': {
+ 'if_match': 'If-Match',
+ 'if_none_match': 'If-None-Match',
+ },
+ 'location_map': {
+ 'workflow_workflow_notification': 'body',
+ 'if_match': 'header',
+ 'if_none_match': 'header',
+ },
+ 'collection_format_map': {
+ }
+ },
+ headers_map={
+ 'accept': [
+ 'application/json'
+ ],
+ 'content_type': [
+ 'application/json'
+ ]
+ },
+ api_client=api_client,
+ callable=__create_workflow_workflow_notification
+ )
+
def __delete_workflow_batch_api_executor(
self,
moid,
diff --git a/intersight/api_client.py b/intersight/api_client.py
index 0aa8037205..6db11c57f5 100644
--- a/intersight/api_client.py
+++ b/intersight/api_client.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
@@ -77,7 +77,7 @@ def __init__(self, configuration=None, header_name=None, header_value=None,
self.default_headers[header_name] = header_value
self.cookie = cookie
# Set default User-Agent.
- self.user_agent = 'OpenAPI-Generator/1.0.9.4437/python'
+ self.user_agent = 'OpenAPI-Generator/1.0.9.4506/python'
def __enter__(self):
return self
@@ -770,10 +770,10 @@ def __call__(self, *args, **kwargs):
Example:
api_instance = AaaApi()
- api_instance.get_aaa_audit_record_by_moid # this is an instance of the class Endpoint
- api_instance.get_aaa_audit_record_by_moid() # this invokes api_instance.get_aaa_audit_record_by_moid.__call__()
+ api_instance.create_aaa_retention_policy # this is an instance of the class Endpoint
+ api_instance.create_aaa_retention_policy() # this invokes api_instance.create_aaa_retention_policy.__call__()
which then invokes the callable functions stored in that endpoint at
- api_instance.get_aaa_audit_record_by_moid.callable or self.callable in this class
+ api_instance.create_aaa_retention_policy.callable or self.callable in this class
"""
return self.callable(self, *args, **kwargs)
diff --git a/intersight/apis/__init__.py b/intersight/apis/__init__.py
index ba6ee85985..5ef8b0bff3 100644
--- a/intersight/apis/__init__.py
+++ b/intersight/apis/__init__.py
@@ -29,7 +29,6 @@
from intersight.api.comm_api import CommApi
from intersight.api.compute_api import ComputeApi
from intersight.api.cond_api import CondApi
-from intersight.api.config_api import ConfigApi
from intersight.api.connectorpack_api import ConnectorpackApi
from intersight.api.crd_api import CrdApi
from intersight.api.deviceconnector_api import DeviceconnectorApi
@@ -77,6 +76,7 @@
from intersight.api.recommendation_api import RecommendationApi
from intersight.api.recovery_api import RecoveryApi
from intersight.api.resource_api import ResourceApi
+from intersight.api.resourcepool_api import ResourcepoolApi
from intersight.api.rproxy_api import RproxyApi
from intersight.api.sdcard_api import SdcardApi
from intersight.api.sdwan_api import SdwanApi
diff --git a/intersight/configuration.py b/intersight/configuration.py
index 3e428a9537..8d3fb4864e 100644
--- a/intersight/configuration.py
+++ b/intersight/configuration.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
@@ -478,8 +478,8 @@ def to_debug_report(self):
return "Python SDK Debug Report:\n"\
"OS: {env}\n"\
"Python Version: {pyversion}\n"\
- "Version of the API: 1.0.9-4437\n"\
- "SDK Package Version: 1.0.9.4437".\
+ "Version of the API: 1.0.9-4506\n"\
+ "SDK Package Version: 1.0.9.4506".\
format(env=sys.platform, pyversion=sys.version)
def get_host_settings(self):
diff --git a/intersight/exceptions.py b/intersight/exceptions.py
index 3f04c7621e..d59702c80e 100644
--- a/intersight/exceptions.py
+++ b/intersight/exceptions.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/aaa_abstract_audit_record.py b/intersight/model/aaa_abstract_audit_record.py
index 0314df0147..65983a0654 100644
--- a/intersight/model/aaa_abstract_audit_record.py
+++ b/intersight/model/aaa_abstract_audit_record.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/aaa_abstract_audit_record_all_of.py b/intersight/model/aaa_abstract_audit_record_all_of.py
index 7c7489652c..3d4b998150 100644
--- a/intersight/model/aaa_abstract_audit_record_all_of.py
+++ b/intersight/model/aaa_abstract_audit_record_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/aaa_audit_record.py b/intersight/model/aaa_audit_record.py
index 6652e7f40c..1bde8f6d0b 100644
--- a/intersight/model/aaa_audit_record.py
+++ b/intersight/model/aaa_audit_record.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/aaa_audit_record_all_of.py b/intersight/model/aaa_audit_record_all_of.py
index cb8f529cf8..6331fbde28 100644
--- a/intersight/model/aaa_audit_record_all_of.py
+++ b/intersight/model/aaa_audit_record_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/aaa_audit_record_list.py b/intersight/model/aaa_audit_record_list.py
index be4b0660c9..60cd092655 100644
--- a/intersight/model/aaa_audit_record_list.py
+++ b/intersight/model/aaa_audit_record_list.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/aaa_audit_record_list_all_of.py b/intersight/model/aaa_audit_record_list_all_of.py
index cfea292d1c..f9ea460ec3 100644
--- a/intersight/model/aaa_audit_record_list_all_of.py
+++ b/intersight/model/aaa_audit_record_list_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/aaa_audit_record_response.py b/intersight/model/aaa_audit_record_response.py
index 64b4c44f62..414cd2790b 100644
--- a/intersight/model/aaa_audit_record_response.py
+++ b/intersight/model/aaa_audit_record_response.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/aaa_retention_config.py b/intersight/model/aaa_retention_config.py
new file mode 100644
index 0000000000..ac83701f75
--- /dev/null
+++ b/intersight/model/aaa_retention_config.py
@@ -0,0 +1,296 @@
+"""
+ Cisco Intersight
+
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
+
+ The version of the OpenAPI document: 1.0.9-4506
+ Contact: intersight@cisco.com
+ Generated by: https://openapi-generator.tech
+"""
+
+
+import re # noqa: F401
+import sys # noqa: F401
+
+from intersight.model_utils import ( # noqa: F401
+ ApiTypeError,
+ ModelComposed,
+ ModelNormal,
+ ModelSimple,
+ cached_property,
+ change_keys_js_to_python,
+ convert_js_args_to_python_args,
+ date,
+ datetime,
+ file_type,
+ none_type,
+ validate_get_composed_info,
+)
+
+def lazy_import():
+ from intersight.model.aaa_retention_config_all_of import AaaRetentionConfigAllOf
+ from intersight.model.display_names import DisplayNames
+ from intersight.model.mo_base_mo import MoBaseMo
+ from intersight.model.mo_base_mo_relationship import MoBaseMoRelationship
+ from intersight.model.mo_tag import MoTag
+ from intersight.model.mo_version_context import MoVersionContext
+ globals()['AaaRetentionConfigAllOf'] = AaaRetentionConfigAllOf
+ globals()['DisplayNames'] = DisplayNames
+ globals()['MoBaseMo'] = MoBaseMo
+ globals()['MoBaseMoRelationship'] = MoBaseMoRelationship
+ globals()['MoTag'] = MoTag
+ globals()['MoVersionContext'] = MoVersionContext
+
+
+class AaaRetentionConfig(ModelComposed):
+ """NOTE: This class is auto generated by OpenAPI Generator.
+ Ref: https://openapi-generator.tech
+
+ Do not edit the class manually.
+
+ Attributes:
+ allowed_values (dict): The key is the tuple path to the attribute
+ and the for var_name this is (var_name,). The value is a dict
+ with a capitalized key describing the allowed value and an allowed
+ value. These dicts store the allowed enum values.
+ attribute_map (dict): The key is attribute name
+ and the value is json key in definition.
+ discriminator_value_class_map (dict): A dict to go from the discriminator
+ variable value to the discriminator class name.
+ validations (dict): The key is the tuple path to the attribute
+ and the for var_name this is (var_name,). The value is a dict
+ that stores validations for max_length, min_length, max_items,
+ min_items, exclusive_maximum, inclusive_maximum, exclusive_minimum,
+ inclusive_minimum, and regex.
+ additional_properties_type (tuple): A tuple of classes accepted
+ as additional properties values.
+ """
+
+ allowed_values = {
+ ('class_id',): {
+ 'AAA.RETENTIONCONFIG': "aaa.RetentionConfig",
+ },
+ ('object_type',): {
+ 'AAA.RETENTIONCONFIG': "aaa.RetentionConfig",
+ },
+ }
+
+ validations = {
+ ('retention_period',): {
+ 'inclusive_maximum': 48,
+ 'inclusive_minimum': 6,
+ },
+ }
+
+ @cached_property
+ def additional_properties_type():
+ """
+ This must be a method because a model may have properties that are
+ of type self, this must run after the class is loaded
+ """
+ lazy_import()
+ return (bool, date, datetime, dict, float, int, list, str, none_type,) # noqa: E501
+
+ _nullable = False
+
+ @cached_property
+ def openapi_types():
+ """
+ This must be a method because a model may have properties that are
+ of type self, this must run after the class is loaded
+
+ Returns
+ openapi_types (dict): The key is attribute name
+ and the value is attribute type.
+ """
+ lazy_import()
+ return {
+ 'class_id': (str,), # noqa: E501
+ 'object_type': (str,), # noqa: E501
+ 'retention_period': (int,), # noqa: E501
+ 'account_moid': (str,), # noqa: E501
+ 'create_time': (datetime,), # noqa: E501
+ 'domain_group_moid': (str,), # noqa: E501
+ 'mod_time': (datetime,), # noqa: E501
+ 'moid': (str,), # noqa: E501
+ 'owners': ([str], none_type,), # noqa: E501
+ 'shared_scope': (str,), # noqa: E501
+ 'tags': ([MoTag], none_type,), # noqa: E501
+ 'version_context': (MoVersionContext,), # noqa: E501
+ 'ancestors': ([MoBaseMoRelationship], none_type,), # noqa: E501
+ 'parent': (MoBaseMoRelationship,), # noqa: E501
+ 'permission_resources': ([MoBaseMoRelationship], none_type,), # noqa: E501
+ 'display_names': (DisplayNames,), # noqa: E501
+ }
+
+ @cached_property
+ def discriminator():
+ val = {
+ }
+ if not val:
+ return None
+ return {'class_id': val}
+
+ attribute_map = {
+ 'class_id': 'ClassId', # noqa: E501
+ 'object_type': 'ObjectType', # noqa: E501
+ 'retention_period': 'RetentionPeriod', # noqa: E501
+ 'account_moid': 'AccountMoid', # noqa: E501
+ 'create_time': 'CreateTime', # noqa: E501
+ 'domain_group_moid': 'DomainGroupMoid', # noqa: E501
+ 'mod_time': 'ModTime', # noqa: E501
+ 'moid': 'Moid', # noqa: E501
+ 'owners': 'Owners', # noqa: E501
+ 'shared_scope': 'SharedScope', # noqa: E501
+ 'tags': 'Tags', # noqa: E501
+ 'version_context': 'VersionContext', # noqa: E501
+ 'ancestors': 'Ancestors', # noqa: E501
+ 'parent': 'Parent', # noqa: E501
+ 'permission_resources': 'PermissionResources', # noqa: E501
+ 'display_names': 'DisplayNames', # noqa: E501
+ }
+
+ required_properties = set([
+ '_data_store',
+ '_check_type',
+ '_spec_property_naming',
+ '_path_to_item',
+ '_configuration',
+ '_visited_composed_classes',
+ '_composed_instances',
+ '_var_name_to_model_instances',
+ '_additional_properties_model_instances',
+ ])
+
+ @convert_js_args_to_python_args
+ def __init__(self, *args, **kwargs): # noqa: E501
+ """AaaRetentionConfig - a model defined in OpenAPI
+
+ Args:
+
+ Keyword Args:
+ class_id (str): The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.. defaults to "aaa.RetentionConfig", must be one of ["aaa.RetentionConfig", ] # noqa: E501
+ object_type (str): The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.. defaults to "aaa.RetentionConfig", must be one of ["aaa.RetentionConfig", ] # noqa: E501
+ _check_type (bool): if True, values for parameters in openapi_types
+ will be type checked and a TypeError will be
+ raised if the wrong type is input.
+ Defaults to True
+ _path_to_item (tuple/list): This is a list of keys or values to
+ drill down to the model in received_data
+ when deserializing a response
+ _spec_property_naming (bool): True if the variable names in the input data
+ are serialized names, as specified in the OpenAPI document.
+ False if the variable names in the input data
+ are pythonic names, e.g. snake case (default)
+ _configuration (Configuration): the instance to use when
+ deserializing a file_type parameter.
+ If passed, type conversion is attempted
+ If omitted no type conversion is done.
+ _visited_composed_classes (tuple): This stores a tuple of
+ classes that we have traveled through so that
+ if we see that class again we will not use its
+ discriminator again.
+ When traveling through a discriminator, the
+ composed schema that is
+ is traveled through is added to this set.
+ For example if Animal has a discriminator
+ petType and we pass in "Dog", and the class Dog
+ allOf includes Animal, we move through Animal
+ once using the discriminator, and pick Dog.
+ Then in Dog, we will make an instance of the
+ Animal class but this time we won't travel
+ through its discriminator because we passed in
+ _visited_composed_classes = (Animal,)
+ retention_period (int): The default retention period in months for audit log retention for accounts without a retention policy.. [optional] # noqa: E501
+ account_moid (str): The Account ID for this managed object.. [optional] # noqa: E501
+ create_time (datetime): The time when this managed object was created.. [optional] # noqa: E501
+ domain_group_moid (str): The DomainGroup ID for this managed object.. [optional] # noqa: E501
+ mod_time (datetime): The time when this managed object was last modified.. [optional] # noqa: E501
+ moid (str): The unique identifier of this Managed Object instance.. [optional] # noqa: E501
+ owners ([str], none_type): [optional] # noqa: E501
+ shared_scope (str): Intersight provides pre-built workflows, tasks and policies to end users through global catalogs. Objects that are made available through global catalogs are said to have a 'shared' ownership. Shared objects are either made globally available to all end users or restricted to end users based on their license entitlement. Users can use this property to differentiate the scope (global or a specific license tier) to which a shared MO belongs.. [optional] # noqa: E501
+ tags ([MoTag], none_type): [optional] # noqa: E501
+ version_context (MoVersionContext): [optional] # noqa: E501
+ ancestors ([MoBaseMoRelationship], none_type): An array of relationships to moBaseMo resources.. [optional] # noqa: E501
+ parent (MoBaseMoRelationship): [optional] # noqa: E501
+ permission_resources ([MoBaseMoRelationship], none_type): An array of relationships to moBaseMo resources.. [optional] # noqa: E501
+ display_names (DisplayNames): [optional] # noqa: E501
+ """
+
+ class_id = kwargs.get('class_id', "aaa.RetentionConfig")
+ object_type = kwargs.get('object_type', "aaa.RetentionConfig")
+ _check_type = kwargs.pop('_check_type', True)
+ _spec_property_naming = kwargs.pop('_spec_property_naming', False)
+ _path_to_item = kwargs.pop('_path_to_item', ())
+ _configuration = kwargs.pop('_configuration', None)
+ _visited_composed_classes = kwargs.pop('_visited_composed_classes', ())
+
+ if args:
+ raise ApiTypeError(
+ "Invalid positional arguments=%s passed to %s. Remove those invalid positional arguments." % (
+ args,
+ self.__class__.__name__,
+ ),
+ path_to_item=_path_to_item,
+ valid_classes=(self.__class__,),
+ )
+
+ self._data_store = {}
+ self._check_type = _check_type
+ self._spec_property_naming = _spec_property_naming
+ self._path_to_item = _path_to_item
+ self._configuration = _configuration
+ self._visited_composed_classes = _visited_composed_classes + (self.__class__,)
+
+ constant_args = {
+ '_check_type': _check_type,
+ '_path_to_item': _path_to_item,
+ '_spec_property_naming': _spec_property_naming,
+ '_configuration': _configuration,
+ '_visited_composed_classes': self._visited_composed_classes,
+ }
+ required_args = {
+ 'class_id': class_id,
+ 'object_type': object_type,
+ }
+ model_args = {}
+ model_args.update(required_args)
+ model_args.update(kwargs)
+ composed_info = validate_get_composed_info(
+ constant_args, model_args, self)
+ self._composed_instances = composed_info[0]
+ self._var_name_to_model_instances = composed_info[1]
+ self._additional_properties_model_instances = composed_info[2]
+ unused_args = composed_info[3]
+
+ for var_name, var_value in required_args.items():
+ setattr(self, var_name, var_value)
+ for var_name, var_value in kwargs.items():
+ if var_name in unused_args and \
+ self._configuration is not None and \
+ self._configuration.discard_unknown_keys and \
+ not self._additional_properties_model_instances:
+ # discard variable.
+ continue
+ setattr(self, var_name, var_value)
+
+ @cached_property
+ def _composed_schemas():
+ # we need this here to make our import statements work
+ # we must store _composed_schemas in here so the code is only run
+ # when we invoke this method. If we kept this at the class
+ # level we would get an error beause the class level
+ # code would be run when this module is imported, and these composed
+ # classes don't exist yet because their module has not finished
+ # loading
+ lazy_import()
+ return {
+ 'anyOf': [
+ ],
+ 'allOf': [
+ AaaRetentionConfigAllOf,
+ MoBaseMo,
+ ],
+ 'oneOf': [
+ ],
+ }
diff --git a/intersight/model/aaa_retention_config_all_of.py b/intersight/model/aaa_retention_config_all_of.py
new file mode 100644
index 0000000000..cd8d73d63c
--- /dev/null
+++ b/intersight/model/aaa_retention_config_all_of.py
@@ -0,0 +1,189 @@
+"""
+ Cisco Intersight
+
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
+
+ The version of the OpenAPI document: 1.0.9-4506
+ Contact: intersight@cisco.com
+ Generated by: https://openapi-generator.tech
+"""
+
+
+import re # noqa: F401
+import sys # noqa: F401
+
+from intersight.model_utils import ( # noqa: F401
+ ApiTypeError,
+ ModelComposed,
+ ModelNormal,
+ ModelSimple,
+ cached_property,
+ change_keys_js_to_python,
+ convert_js_args_to_python_args,
+ date,
+ datetime,
+ file_type,
+ none_type,
+ validate_get_composed_info,
+)
+
+
+class AaaRetentionConfigAllOf(ModelNormal):
+ """NOTE: This class is auto generated by OpenAPI Generator.
+ Ref: https://openapi-generator.tech
+
+ Do not edit the class manually.
+
+ Attributes:
+ allowed_values (dict): The key is the tuple path to the attribute
+ and the for var_name this is (var_name,). The value is a dict
+ with a capitalized key describing the allowed value and an allowed
+ value. These dicts store the allowed enum values.
+ attribute_map (dict): The key is attribute name
+ and the value is json key in definition.
+ discriminator_value_class_map (dict): A dict to go from the discriminator
+ variable value to the discriminator class name.
+ validations (dict): The key is the tuple path to the attribute
+ and the for var_name this is (var_name,). The value is a dict
+ that stores validations for max_length, min_length, max_items,
+ min_items, exclusive_maximum, inclusive_maximum, exclusive_minimum,
+ inclusive_minimum, and regex.
+ additional_properties_type (tuple): A tuple of classes accepted
+ as additional properties values.
+ """
+
+ allowed_values = {
+ ('class_id',): {
+ 'AAA.RETENTIONCONFIG': "aaa.RetentionConfig",
+ },
+ ('object_type',): {
+ 'AAA.RETENTIONCONFIG': "aaa.RetentionConfig",
+ },
+ }
+
+ validations = {
+ ('retention_period',): {
+ 'inclusive_maximum': 48,
+ 'inclusive_minimum': 6,
+ },
+ }
+
+ additional_properties_type = None
+
+ _nullable = False
+
+ @cached_property
+ def openapi_types():
+ """
+ This must be a method because a model may have properties that are
+ of type self, this must run after the class is loaded
+
+ Returns
+ openapi_types (dict): The key is attribute name
+ and the value is attribute type.
+ """
+ return {
+ 'class_id': (str,), # noqa: E501
+ 'object_type': (str,), # noqa: E501
+ 'retention_period': (int,), # noqa: E501
+ }
+
+ @cached_property
+ def discriminator():
+ return None
+
+
+ attribute_map = {
+ 'class_id': 'ClassId', # noqa: E501
+ 'object_type': 'ObjectType', # noqa: E501
+ 'retention_period': 'RetentionPeriod', # noqa: E501
+ }
+
+ _composed_schemas = {}
+
+ required_properties = set([
+ '_data_store',
+ '_check_type',
+ '_spec_property_naming',
+ '_path_to_item',
+ '_configuration',
+ '_visited_composed_classes',
+ ])
+
+ @convert_js_args_to_python_args
+ def __init__(self, *args, **kwargs): # noqa: E501
+ """AaaRetentionConfigAllOf - a model defined in OpenAPI
+
+ Args:
+
+ Keyword Args:
+ class_id (str): The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.. defaults to "aaa.RetentionConfig", must be one of ["aaa.RetentionConfig", ] # noqa: E501
+ object_type (str): The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.. defaults to "aaa.RetentionConfig", must be one of ["aaa.RetentionConfig", ] # noqa: E501
+ _check_type (bool): if True, values for parameters in openapi_types
+ will be type checked and a TypeError will be
+ raised if the wrong type is input.
+ Defaults to True
+ _path_to_item (tuple/list): This is a list of keys or values to
+ drill down to the model in received_data
+ when deserializing a response
+ _spec_property_naming (bool): True if the variable names in the input data
+ are serialized names, as specified in the OpenAPI document.
+ False if the variable names in the input data
+ are pythonic names, e.g. snake case (default)
+ _configuration (Configuration): the instance to use when
+ deserializing a file_type parameter.
+ If passed, type conversion is attempted
+ If omitted no type conversion is done.
+ _visited_composed_classes (tuple): This stores a tuple of
+ classes that we have traveled through so that
+ if we see that class again we will not use its
+ discriminator again.
+ When traveling through a discriminator, the
+ composed schema that is
+ is traveled through is added to this set.
+ For example if Animal has a discriminator
+ petType and we pass in "Dog", and the class Dog
+ allOf includes Animal, we move through Animal
+ once using the discriminator, and pick Dog.
+ Then in Dog, we will make an instance of the
+ Animal class but this time we won't travel
+ through its discriminator because we passed in
+ _visited_composed_classes = (Animal,)
+ retention_period (int): The default retention period in months for audit log retention for accounts without a retention policy.. [optional] # noqa: E501
+ """
+
+ class_id = kwargs.get('class_id', "aaa.RetentionConfig")
+ object_type = kwargs.get('object_type', "aaa.RetentionConfig")
+ _check_type = kwargs.pop('_check_type', True)
+ _spec_property_naming = kwargs.pop('_spec_property_naming', False)
+ _path_to_item = kwargs.pop('_path_to_item', ())
+ _configuration = kwargs.pop('_configuration', None)
+ _visited_composed_classes = kwargs.pop('_visited_composed_classes', ())
+
+ if args:
+ raise ApiTypeError(
+ "Invalid positional arguments=%s passed to %s. Remove those invalid positional arguments." % (
+ args,
+ self.__class__.__name__,
+ ),
+ path_to_item=_path_to_item,
+ valid_classes=(self.__class__,),
+ )
+
+ self._data_store = {}
+ self._check_type = _check_type
+ self._spec_property_naming = _spec_property_naming
+ self._path_to_item = _path_to_item
+ self._configuration = _configuration
+ self._visited_composed_classes = _visited_composed_classes + (self.__class__,)
+
+ self.class_id = class_id
+ self.object_type = object_type
+ for var_name, var_value in kwargs.items():
+ if var_name not in self.attribute_map and \
+ self._configuration is not None and \
+ self._configuration.discard_unknown_keys and \
+ self.additional_properties_type is None:
+ # discard variable.
+ continue
+ setattr(self, var_name, var_value)
diff --git a/intersight/model/aaa_retention_config_list.py b/intersight/model/aaa_retention_config_list.py
new file mode 100644
index 0000000000..b727a0d18e
--- /dev/null
+++ b/intersight/model/aaa_retention_config_list.py
@@ -0,0 +1,238 @@
+"""
+ Cisco Intersight
+
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
+
+ The version of the OpenAPI document: 1.0.9-4506
+ Contact: intersight@cisco.com
+ Generated by: https://openapi-generator.tech
+"""
+
+
+import re # noqa: F401
+import sys # noqa: F401
+
+from intersight.model_utils import ( # noqa: F401
+ ApiTypeError,
+ ModelComposed,
+ ModelNormal,
+ ModelSimple,
+ cached_property,
+ change_keys_js_to_python,
+ convert_js_args_to_python_args,
+ date,
+ datetime,
+ file_type,
+ none_type,
+ validate_get_composed_info,
+)
+
+def lazy_import():
+ from intersight.model.aaa_retention_config import AaaRetentionConfig
+ from intersight.model.aaa_retention_config_list_all_of import AaaRetentionConfigListAllOf
+ from intersight.model.mo_base_response import MoBaseResponse
+ globals()['AaaRetentionConfig'] = AaaRetentionConfig
+ globals()['AaaRetentionConfigListAllOf'] = AaaRetentionConfigListAllOf
+ globals()['MoBaseResponse'] = MoBaseResponse
+
+
+class AaaRetentionConfigList(ModelComposed):
+ """NOTE: This class is auto generated by OpenAPI Generator.
+ Ref: https://openapi-generator.tech
+
+ Do not edit the class manually.
+
+ Attributes:
+ allowed_values (dict): The key is the tuple path to the attribute
+ and the for var_name this is (var_name,). The value is a dict
+ with a capitalized key describing the allowed value and an allowed
+ value. These dicts store the allowed enum values.
+ attribute_map (dict): The key is attribute name
+ and the value is json key in definition.
+ discriminator_value_class_map (dict): A dict to go from the discriminator
+ variable value to the discriminator class name.
+ validations (dict): The key is the tuple path to the attribute
+ and the for var_name this is (var_name,). The value is a dict
+ that stores validations for max_length, min_length, max_items,
+ min_items, exclusive_maximum, inclusive_maximum, exclusive_minimum,
+ inclusive_minimum, and regex.
+ additional_properties_type (tuple): A tuple of classes accepted
+ as additional properties values.
+ """
+
+ allowed_values = {
+ }
+
+ validations = {
+ }
+
+ @cached_property
+ def additional_properties_type():
+ """
+ This must be a method because a model may have properties that are
+ of type self, this must run after the class is loaded
+ """
+ lazy_import()
+ return (bool, date, datetime, dict, float, int, list, str, none_type,) # noqa: E501
+
+ _nullable = False
+
+ @cached_property
+ def openapi_types():
+ """
+ This must be a method because a model may have properties that are
+ of type self, this must run after the class is loaded
+
+ Returns
+ openapi_types (dict): The key is attribute name
+ and the value is attribute type.
+ """
+ lazy_import()
+ return {
+ 'object_type': (str,), # noqa: E501
+ 'count': (int,), # noqa: E501
+ 'results': ([AaaRetentionConfig], none_type,), # noqa: E501
+ }
+
+ @cached_property
+ def discriminator():
+ val = {
+ }
+ if not val:
+ return None
+ return {'object_type': val}
+
+ attribute_map = {
+ 'object_type': 'ObjectType', # noqa: E501
+ 'count': 'Count', # noqa: E501
+ 'results': 'Results', # noqa: E501
+ }
+
+ required_properties = set([
+ '_data_store',
+ '_check_type',
+ '_spec_property_naming',
+ '_path_to_item',
+ '_configuration',
+ '_visited_composed_classes',
+ '_composed_instances',
+ '_var_name_to_model_instances',
+ '_additional_properties_model_instances',
+ ])
+
+ @convert_js_args_to_python_args
+ def __init__(self, object_type, *args, **kwargs): # noqa: E501
+ """AaaRetentionConfigList - a model defined in OpenAPI
+
+ Args:
+ object_type (str): A discriminator value to disambiguate the schema of a HTTP GET response body.
+
+ Keyword Args:
+ _check_type (bool): if True, values for parameters in openapi_types
+ will be type checked and a TypeError will be
+ raised if the wrong type is input.
+ Defaults to True
+ _path_to_item (tuple/list): This is a list of keys or values to
+ drill down to the model in received_data
+ when deserializing a response
+ _spec_property_naming (bool): True if the variable names in the input data
+ are serialized names, as specified in the OpenAPI document.
+ False if the variable names in the input data
+ are pythonic names, e.g. snake case (default)
+ _configuration (Configuration): the instance to use when
+ deserializing a file_type parameter.
+ If passed, type conversion is attempted
+ If omitted no type conversion is done.
+ _visited_composed_classes (tuple): This stores a tuple of
+ classes that we have traveled through so that
+ if we see that class again we will not use its
+ discriminator again.
+ When traveling through a discriminator, the
+ composed schema that is
+ is traveled through is added to this set.
+ For example if Animal has a discriminator
+ petType and we pass in "Dog", and the class Dog
+ allOf includes Animal, we move through Animal
+ once using the discriminator, and pick Dog.
+ Then in Dog, we will make an instance of the
+ Animal class but this time we won't travel
+ through its discriminator because we passed in
+ _visited_composed_classes = (Animal,)
+ count (int): The total number of 'aaa.RetentionConfig' resources matching the request, accross all pages. The 'Count' attribute is included when the HTTP GET request includes the '$inlinecount' parameter.. [optional] # noqa: E501
+ results ([AaaRetentionConfig], none_type): The array of 'aaa.RetentionConfig' resources matching the request.. [optional] # noqa: E501
+ """
+
+ _check_type = kwargs.pop('_check_type', True)
+ _spec_property_naming = kwargs.pop('_spec_property_naming', False)
+ _path_to_item = kwargs.pop('_path_to_item', ())
+ _configuration = kwargs.pop('_configuration', None)
+ _visited_composed_classes = kwargs.pop('_visited_composed_classes', ())
+
+ if args:
+ raise ApiTypeError(
+ "Invalid positional arguments=%s passed to %s. Remove those invalid positional arguments." % (
+ args,
+ self.__class__.__name__,
+ ),
+ path_to_item=_path_to_item,
+ valid_classes=(self.__class__,),
+ )
+
+ self._data_store = {}
+ self._check_type = _check_type
+ self._spec_property_naming = _spec_property_naming
+ self._path_to_item = _path_to_item
+ self._configuration = _configuration
+ self._visited_composed_classes = _visited_composed_classes + (self.__class__,)
+
+ constant_args = {
+ '_check_type': _check_type,
+ '_path_to_item': _path_to_item,
+ '_spec_property_naming': _spec_property_naming,
+ '_configuration': _configuration,
+ '_visited_composed_classes': self._visited_composed_classes,
+ }
+ required_args = {
+ 'object_type': object_type,
+ }
+ model_args = {}
+ model_args.update(required_args)
+ model_args.update(kwargs)
+ composed_info = validate_get_composed_info(
+ constant_args, model_args, self)
+ self._composed_instances = composed_info[0]
+ self._var_name_to_model_instances = composed_info[1]
+ self._additional_properties_model_instances = composed_info[2]
+ unused_args = composed_info[3]
+
+ for var_name, var_value in required_args.items():
+ setattr(self, var_name, var_value)
+ for var_name, var_value in kwargs.items():
+ if var_name in unused_args and \
+ self._configuration is not None and \
+ self._configuration.discard_unknown_keys and \
+ not self._additional_properties_model_instances:
+ # discard variable.
+ continue
+ setattr(self, var_name, var_value)
+
+ @cached_property
+ def _composed_schemas():
+ # we need this here to make our import statements work
+ # we must store _composed_schemas in here so the code is only run
+ # when we invoke this method. If we kept this at the class
+ # level we would get an error beause the class level
+ # code would be run when this module is imported, and these composed
+ # classes don't exist yet because their module has not finished
+ # loading
+ lazy_import()
+ return {
+ 'anyOf': [
+ ],
+ 'allOf': [
+ AaaRetentionConfigListAllOf,
+ MoBaseResponse,
+ ],
+ 'oneOf': [
+ ],
+ }
diff --git a/intersight/model/aaa_retention_config_list_all_of.py b/intersight/model/aaa_retention_config_list_all_of.py
new file mode 100644
index 0000000000..eaf2620995
--- /dev/null
+++ b/intersight/model/aaa_retention_config_list_all_of.py
@@ -0,0 +1,175 @@
+"""
+ Cisco Intersight
+
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
+
+ The version of the OpenAPI document: 1.0.9-4506
+ Contact: intersight@cisco.com
+ Generated by: https://openapi-generator.tech
+"""
+
+
+import re # noqa: F401
+import sys # noqa: F401
+
+from intersight.model_utils import ( # noqa: F401
+ ApiTypeError,
+ ModelComposed,
+ ModelNormal,
+ ModelSimple,
+ cached_property,
+ change_keys_js_to_python,
+ convert_js_args_to_python_args,
+ date,
+ datetime,
+ file_type,
+ none_type,
+ validate_get_composed_info,
+)
+
+def lazy_import():
+ from intersight.model.aaa_retention_config import AaaRetentionConfig
+ globals()['AaaRetentionConfig'] = AaaRetentionConfig
+
+
+class AaaRetentionConfigListAllOf(ModelNormal):
+ """NOTE: This class is auto generated by OpenAPI Generator.
+ Ref: https://openapi-generator.tech
+
+ Do not edit the class manually.
+
+ Attributes:
+ allowed_values (dict): The key is the tuple path to the attribute
+ and the for var_name this is (var_name,). The value is a dict
+ with a capitalized key describing the allowed value and an allowed
+ value. These dicts store the allowed enum values.
+ attribute_map (dict): The key is attribute name
+ and the value is json key in definition.
+ discriminator_value_class_map (dict): A dict to go from the discriminator
+ variable value to the discriminator class name.
+ validations (dict): The key is the tuple path to the attribute
+ and the for var_name this is (var_name,). The value is a dict
+ that stores validations for max_length, min_length, max_items,
+ min_items, exclusive_maximum, inclusive_maximum, exclusive_minimum,
+ inclusive_minimum, and regex.
+ additional_properties_type (tuple): A tuple of classes accepted
+ as additional properties values.
+ """
+
+ allowed_values = {
+ }
+
+ validations = {
+ }
+
+ additional_properties_type = None
+
+ _nullable = False
+
+ @cached_property
+ def openapi_types():
+ """
+ This must be a method because a model may have properties that are
+ of type self, this must run after the class is loaded
+
+ Returns
+ openapi_types (dict): The key is attribute name
+ and the value is attribute type.
+ """
+ lazy_import()
+ return {
+ 'count': (int,), # noqa: E501
+ 'results': ([AaaRetentionConfig], none_type,), # noqa: E501
+ }
+
+ @cached_property
+ def discriminator():
+ return None
+
+
+ attribute_map = {
+ 'count': 'Count', # noqa: E501
+ 'results': 'Results', # noqa: E501
+ }
+
+ _composed_schemas = {}
+
+ required_properties = set([
+ '_data_store',
+ '_check_type',
+ '_spec_property_naming',
+ '_path_to_item',
+ '_configuration',
+ '_visited_composed_classes',
+ ])
+
+ @convert_js_args_to_python_args
+ def __init__(self, *args, **kwargs): # noqa: E501
+ """AaaRetentionConfigListAllOf - a model defined in OpenAPI
+
+ Keyword Args:
+ _check_type (bool): if True, values for parameters in openapi_types
+ will be type checked and a TypeError will be
+ raised if the wrong type is input.
+ Defaults to True
+ _path_to_item (tuple/list): This is a list of keys or values to
+ drill down to the model in received_data
+ when deserializing a response
+ _spec_property_naming (bool): True if the variable names in the input data
+ are serialized names, as specified in the OpenAPI document.
+ False if the variable names in the input data
+ are pythonic names, e.g. snake case (default)
+ _configuration (Configuration): the instance to use when
+ deserializing a file_type parameter.
+ If passed, type conversion is attempted
+ If omitted no type conversion is done.
+ _visited_composed_classes (tuple): This stores a tuple of
+ classes that we have traveled through so that
+ if we see that class again we will not use its
+ discriminator again.
+ When traveling through a discriminator, the
+ composed schema that is
+ is traveled through is added to this set.
+ For example if Animal has a discriminator
+ petType and we pass in "Dog", and the class Dog
+ allOf includes Animal, we move through Animal
+ once using the discriminator, and pick Dog.
+ Then in Dog, we will make an instance of the
+ Animal class but this time we won't travel
+ through its discriminator because we passed in
+ _visited_composed_classes = (Animal,)
+ count (int): The total number of 'aaa.RetentionConfig' resources matching the request, accross all pages. The 'Count' attribute is included when the HTTP GET request includes the '$inlinecount' parameter.. [optional] # noqa: E501
+ results ([AaaRetentionConfig], none_type): The array of 'aaa.RetentionConfig' resources matching the request.. [optional] # noqa: E501
+ """
+
+ _check_type = kwargs.pop('_check_type', True)
+ _spec_property_naming = kwargs.pop('_spec_property_naming', False)
+ _path_to_item = kwargs.pop('_path_to_item', ())
+ _configuration = kwargs.pop('_configuration', None)
+ _visited_composed_classes = kwargs.pop('_visited_composed_classes', ())
+
+ if args:
+ raise ApiTypeError(
+ "Invalid positional arguments=%s passed to %s. Remove those invalid positional arguments." % (
+ args,
+ self.__class__.__name__,
+ ),
+ path_to_item=_path_to_item,
+ valid_classes=(self.__class__,),
+ )
+
+ self._data_store = {}
+ self._check_type = _check_type
+ self._spec_property_naming = _spec_property_naming
+ self._path_to_item = _path_to_item
+ self._configuration = _configuration
+ self._visited_composed_classes = _visited_composed_classes + (self.__class__,)
+
+ for var_name, var_value in kwargs.items():
+ if var_name not in self.attribute_map and \
+ self._configuration is not None and \
+ self._configuration.discard_unknown_keys and \
+ self.additional_properties_type is None:
+ # discard variable.
+ continue
+ setattr(self, var_name, var_value)
diff --git a/intersight/model/aaa_retention_config_response.py b/intersight/model/aaa_retention_config_response.py
new file mode 100644
index 0000000000..8840aa2d53
--- /dev/null
+++ b/intersight/model/aaa_retention_config_response.py
@@ -0,0 +1,249 @@
+"""
+ Cisco Intersight
+
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
+
+ The version of the OpenAPI document: 1.0.9-4506
+ Contact: intersight@cisco.com
+ Generated by: https://openapi-generator.tech
+"""
+
+
+import re # noqa: F401
+import sys # noqa: F401
+
+from intersight.model_utils import ( # noqa: F401
+ ApiTypeError,
+ ModelComposed,
+ ModelNormal,
+ ModelSimple,
+ cached_property,
+ change_keys_js_to_python,
+ convert_js_args_to_python_args,
+ date,
+ datetime,
+ file_type,
+ none_type,
+ validate_get_composed_info,
+)
+
+def lazy_import():
+ from intersight.model.aaa_retention_config_list import AaaRetentionConfigList
+ from intersight.model.mo_aggregate_transform import MoAggregateTransform
+ from intersight.model.mo_document_count import MoDocumentCount
+ from intersight.model.mo_tag_key_summary import MoTagKeySummary
+ from intersight.model.mo_tag_summary import MoTagSummary
+ globals()['AaaRetentionConfigList'] = AaaRetentionConfigList
+ globals()['MoAggregateTransform'] = MoAggregateTransform
+ globals()['MoDocumentCount'] = MoDocumentCount
+ globals()['MoTagKeySummary'] = MoTagKeySummary
+ globals()['MoTagSummary'] = MoTagSummary
+
+
+class AaaRetentionConfigResponse(ModelComposed):
+ """NOTE: This class is auto generated by OpenAPI Generator.
+ Ref: https://openapi-generator.tech
+
+ Do not edit the class manually.
+
+ Attributes:
+ allowed_values (dict): The key is the tuple path to the attribute
+ and the for var_name this is (var_name,). The value is a dict
+ with a capitalized key describing the allowed value and an allowed
+ value. These dicts store the allowed enum values.
+ attribute_map (dict): The key is attribute name
+ and the value is json key in definition.
+ discriminator_value_class_map (dict): A dict to go from the discriminator
+ variable value to the discriminator class name.
+ validations (dict): The key is the tuple path to the attribute
+ and the for var_name this is (var_name,). The value is a dict
+ that stores validations for max_length, min_length, max_items,
+ min_items, exclusive_maximum, inclusive_maximum, exclusive_minimum,
+ inclusive_minimum, and regex.
+ additional_properties_type (tuple): A tuple of classes accepted
+ as additional properties values.
+ """
+
+ allowed_values = {
+ }
+
+ validations = {
+ }
+
+ @cached_property
+ def additional_properties_type():
+ """
+ This must be a method because a model may have properties that are
+ of type self, this must run after the class is loaded
+ """
+ lazy_import()
+ return (bool, date, datetime, dict, float, int, list, str, none_type,) # noqa: E501
+
+ _nullable = False
+
+ @cached_property
+ def openapi_types():
+ """
+ This must be a method because a model may have properties that are
+ of type self, this must run after the class is loaded
+
+ Returns
+ openapi_types (dict): The key is attribute name
+ and the value is attribute type.
+ """
+ lazy_import()
+ return {
+ 'object_type': (str,), # noqa: E501
+ 'count': (int,), # noqa: E501
+ 'results': ([MoTagKeySummary], none_type,), # noqa: E501
+ }
+
+ @cached_property
+ def discriminator():
+ lazy_import()
+ val = {
+ 'aaa.RetentionConfig.List': AaaRetentionConfigList,
+ 'mo.AggregateTransform': MoAggregateTransform,
+ 'mo.DocumentCount': MoDocumentCount,
+ 'mo.TagSummary': MoTagSummary,
+ }
+ if not val:
+ return None
+ return {'object_type': val}
+
+ attribute_map = {
+ 'object_type': 'ObjectType', # noqa: E501
+ 'count': 'Count', # noqa: E501
+ 'results': 'Results', # noqa: E501
+ }
+
+ required_properties = set([
+ '_data_store',
+ '_check_type',
+ '_spec_property_naming',
+ '_path_to_item',
+ '_configuration',
+ '_visited_composed_classes',
+ '_composed_instances',
+ '_var_name_to_model_instances',
+ '_additional_properties_model_instances',
+ ])
+
+ @convert_js_args_to_python_args
+ def __init__(self, object_type, *args, **kwargs): # noqa: E501
+ """AaaRetentionConfigResponse - a model defined in OpenAPI
+
+ Args:
+ object_type (str): A discriminator value to disambiguate the schema of a HTTP GET response body.
+
+ Keyword Args:
+ _check_type (bool): if True, values for parameters in openapi_types
+ will be type checked and a TypeError will be
+ raised if the wrong type is input.
+ Defaults to True
+ _path_to_item (tuple/list): This is a list of keys or values to
+ drill down to the model in received_data
+ when deserializing a response
+ _spec_property_naming (bool): True if the variable names in the input data
+ are serialized names, as specified in the OpenAPI document.
+ False if the variable names in the input data
+ are pythonic names, e.g. snake case (default)
+ _configuration (Configuration): the instance to use when
+ deserializing a file_type parameter.
+ If passed, type conversion is attempted
+ If omitted no type conversion is done.
+ _visited_composed_classes (tuple): This stores a tuple of
+ classes that we have traveled through so that
+ if we see that class again we will not use its
+ discriminator again.
+ When traveling through a discriminator, the
+ composed schema that is
+ is traveled through is added to this set.
+ For example if Animal has a discriminator
+ petType and we pass in "Dog", and the class Dog
+ allOf includes Animal, we move through Animal
+ once using the discriminator, and pick Dog.
+ Then in Dog, we will make an instance of the
+ Animal class but this time we won't travel
+ through its discriminator because we passed in
+ _visited_composed_classes = (Animal,)
+ count (int): The total number of 'aaa.RetentionConfig' resources matching the request, accross all pages. The 'Count' attribute is included when the HTTP GET request includes the '$inlinecount' parameter.. [optional] # noqa: E501
+ results ([MoTagKeySummary], none_type): [optional] # noqa: E501
+ """
+
+ _check_type = kwargs.pop('_check_type', True)
+ _spec_property_naming = kwargs.pop('_spec_property_naming', False)
+ _path_to_item = kwargs.pop('_path_to_item', ())
+ _configuration = kwargs.pop('_configuration', None)
+ _visited_composed_classes = kwargs.pop('_visited_composed_classes', ())
+
+ if args:
+ raise ApiTypeError(
+ "Invalid positional arguments=%s passed to %s. Remove those invalid positional arguments." % (
+ args,
+ self.__class__.__name__,
+ ),
+ path_to_item=_path_to_item,
+ valid_classes=(self.__class__,),
+ )
+
+ self._data_store = {}
+ self._check_type = _check_type
+ self._spec_property_naming = _spec_property_naming
+ self._path_to_item = _path_to_item
+ self._configuration = _configuration
+ self._visited_composed_classes = _visited_composed_classes + (self.__class__,)
+
+ constant_args = {
+ '_check_type': _check_type,
+ '_path_to_item': _path_to_item,
+ '_spec_property_naming': _spec_property_naming,
+ '_configuration': _configuration,
+ '_visited_composed_classes': self._visited_composed_classes,
+ }
+ required_args = {
+ 'object_type': object_type,
+ }
+ model_args = {}
+ model_args.update(required_args)
+ model_args.update(kwargs)
+ composed_info = validate_get_composed_info(
+ constant_args, model_args, self)
+ self._composed_instances = composed_info[0]
+ self._var_name_to_model_instances = composed_info[1]
+ self._additional_properties_model_instances = composed_info[2]
+ unused_args = composed_info[3]
+
+ for var_name, var_value in required_args.items():
+ setattr(self, var_name, var_value)
+ for var_name, var_value in kwargs.items():
+ if var_name in unused_args and \
+ self._configuration is not None and \
+ self._configuration.discard_unknown_keys and \
+ not self._additional_properties_model_instances:
+ # discard variable.
+ continue
+ setattr(self, var_name, var_value)
+
+ @cached_property
+ def _composed_schemas():
+ # we need this here to make our import statements work
+ # we must store _composed_schemas in here so the code is only run
+ # when we invoke this method. If we kept this at the class
+ # level we would get an error beause the class level
+ # code would be run when this module is imported, and these composed
+ # classes don't exist yet because their module has not finished
+ # loading
+ lazy_import()
+ return {
+ 'anyOf': [
+ ],
+ 'allOf': [
+ ],
+ 'oneOf': [
+ AaaRetentionConfigList,
+ MoAggregateTransform,
+ MoDocumentCount,
+ MoTagSummary,
+ ],
+ }
diff --git a/intersight/model/aaa_retention_policy.py b/intersight/model/aaa_retention_policy.py
new file mode 100644
index 0000000000..3655cb729e
--- /dev/null
+++ b/intersight/model/aaa_retention_policy.py
@@ -0,0 +1,317 @@
+"""
+ Cisco Intersight
+
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
+
+ The version of the OpenAPI document: 1.0.9-4506
+ Contact: intersight@cisco.com
+ Generated by: https://openapi-generator.tech
+"""
+
+
+import re # noqa: F401
+import sys # noqa: F401
+
+from intersight.model_utils import ( # noqa: F401
+ ApiTypeError,
+ ModelComposed,
+ ModelNormal,
+ ModelSimple,
+ cached_property,
+ change_keys_js_to_python,
+ convert_js_args_to_python_args,
+ date,
+ datetime,
+ file_type,
+ none_type,
+ validate_get_composed_info,
+)
+
+def lazy_import():
+ from intersight.model.aaa_retention_policy_all_of import AaaRetentionPolicyAllOf
+ from intersight.model.display_names import DisplayNames
+ from intersight.model.iam_account_relationship import IamAccountRelationship
+ from intersight.model.mo_base_mo_relationship import MoBaseMoRelationship
+ from intersight.model.mo_tag import MoTag
+ from intersight.model.mo_version_context import MoVersionContext
+ from intersight.model.policy_abstract_policy import PolicyAbstractPolicy
+ globals()['AaaRetentionPolicyAllOf'] = AaaRetentionPolicyAllOf
+ globals()['DisplayNames'] = DisplayNames
+ globals()['IamAccountRelationship'] = IamAccountRelationship
+ globals()['MoBaseMoRelationship'] = MoBaseMoRelationship
+ globals()['MoTag'] = MoTag
+ globals()['MoVersionContext'] = MoVersionContext
+ globals()['PolicyAbstractPolicy'] = PolicyAbstractPolicy
+
+
+class AaaRetentionPolicy(ModelComposed):
+ """NOTE: This class is auto generated by OpenAPI Generator.
+ Ref: https://openapi-generator.tech
+
+ Do not edit the class manually.
+
+ Attributes:
+ allowed_values (dict): The key is the tuple path to the attribute
+ and the for var_name this is (var_name,). The value is a dict
+ with a capitalized key describing the allowed value and an allowed
+ value. These dicts store the allowed enum values.
+ attribute_map (dict): The key is attribute name
+ and the value is json key in definition.
+ discriminator_value_class_map (dict): A dict to go from the discriminator
+ variable value to the discriminator class name.
+ validations (dict): The key is the tuple path to the attribute
+ and the for var_name this is (var_name,). The value is a dict
+ that stores validations for max_length, min_length, max_items,
+ min_items, exclusive_maximum, inclusive_maximum, exclusive_minimum,
+ inclusive_minimum, and regex.
+ additional_properties_type (tuple): A tuple of classes accepted
+ as additional properties values.
+ """
+
+ allowed_values = {
+ ('class_id',): {
+ 'AAA.RETENTIONPOLICY': "aaa.RetentionPolicy",
+ },
+ ('object_type',): {
+ 'AAA.RETENTIONPOLICY': "aaa.RetentionPolicy",
+ },
+ }
+
+ validations = {
+ ('retention_period',): {
+ 'inclusive_maximum': 48,
+ },
+ ('description',): {
+ 'max_length': 1024,
+ 'regex': {
+ 'pattern': r'^$|^[a-zA-Z0-9]+[\x00-\xFF]*$', # noqa: E501
+ },
+ },
+ ('name',): {
+ 'regex': {
+ 'pattern': r'^[a-zA-Z0-9_.:-]{1,64}$', # noqa: E501
+ },
+ },
+ }
+
+ @cached_property
+ def additional_properties_type():
+ """
+ This must be a method because a model may have properties that are
+ of type self, this must run after the class is loaded
+ """
+ lazy_import()
+ return (bool, date, datetime, dict, float, int, list, str, none_type,) # noqa: E501
+
+ _nullable = False
+
+ @cached_property
+ def openapi_types():
+ """
+ This must be a method because a model may have properties that are
+ of type self, this must run after the class is loaded
+
+ Returns
+ openapi_types (dict): The key is attribute name
+ and the value is attribute type.
+ """
+ lazy_import()
+ return {
+ 'class_id': (str,), # noqa: E501
+ 'object_type': (str,), # noqa: E501
+ 'retention_period': (int,), # noqa: E501
+ 'account': (IamAccountRelationship,), # noqa: E501
+ 'account_moid': (str,), # noqa: E501
+ 'create_time': (datetime,), # noqa: E501
+ 'domain_group_moid': (str,), # noqa: E501
+ 'mod_time': (datetime,), # noqa: E501
+ 'moid': (str,), # noqa: E501
+ 'owners': ([str], none_type,), # noqa: E501
+ 'shared_scope': (str,), # noqa: E501
+ 'tags': ([MoTag], none_type,), # noqa: E501
+ 'version_context': (MoVersionContext,), # noqa: E501
+ 'ancestors': ([MoBaseMoRelationship], none_type,), # noqa: E501
+ 'parent': (MoBaseMoRelationship,), # noqa: E501
+ 'permission_resources': ([MoBaseMoRelationship], none_type,), # noqa: E501
+ 'display_names': (DisplayNames,), # noqa: E501
+ 'description': (str,), # noqa: E501
+ 'name': (str,), # noqa: E501
+ }
+
+ @cached_property
+ def discriminator():
+ val = {
+ }
+ if not val:
+ return None
+ return {'class_id': val}
+
+ attribute_map = {
+ 'class_id': 'ClassId', # noqa: E501
+ 'object_type': 'ObjectType', # noqa: E501
+ 'retention_period': 'RetentionPeriod', # noqa: E501
+ 'account': 'Account', # noqa: E501
+ 'account_moid': 'AccountMoid', # noqa: E501
+ 'create_time': 'CreateTime', # noqa: E501
+ 'domain_group_moid': 'DomainGroupMoid', # noqa: E501
+ 'mod_time': 'ModTime', # noqa: E501
+ 'moid': 'Moid', # noqa: E501
+ 'owners': 'Owners', # noqa: E501
+ 'shared_scope': 'SharedScope', # noqa: E501
+ 'tags': 'Tags', # noqa: E501
+ 'version_context': 'VersionContext', # noqa: E501
+ 'ancestors': 'Ancestors', # noqa: E501
+ 'parent': 'Parent', # noqa: E501
+ 'permission_resources': 'PermissionResources', # noqa: E501
+ 'display_names': 'DisplayNames', # noqa: E501
+ 'description': 'Description', # noqa: E501
+ 'name': 'Name', # noqa: E501
+ }
+
+ required_properties = set([
+ '_data_store',
+ '_check_type',
+ '_spec_property_naming',
+ '_path_to_item',
+ '_configuration',
+ '_visited_composed_classes',
+ '_composed_instances',
+ '_var_name_to_model_instances',
+ '_additional_properties_model_instances',
+ ])
+
+ @convert_js_args_to_python_args
+ def __init__(self, *args, **kwargs): # noqa: E501
+ """AaaRetentionPolicy - a model defined in OpenAPI
+
+ Args:
+
+ Keyword Args:
+ class_id (str): The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.. defaults to "aaa.RetentionPolicy", must be one of ["aaa.RetentionPolicy", ] # noqa: E501
+ object_type (str): The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.. defaults to "aaa.RetentionPolicy", must be one of ["aaa.RetentionPolicy", ] # noqa: E501
+ _check_type (bool): if True, values for parameters in openapi_types
+ will be type checked and a TypeError will be
+ raised if the wrong type is input.
+ Defaults to True
+ _path_to_item (tuple/list): This is a list of keys or values to
+ drill down to the model in received_data
+ when deserializing a response
+ _spec_property_naming (bool): True if the variable names in the input data
+ are serialized names, as specified in the OpenAPI document.
+ False if the variable names in the input data
+ are pythonic names, e.g. snake case (default)
+ _configuration (Configuration): the instance to use when
+ deserializing a file_type parameter.
+ If passed, type conversion is attempted
+ If omitted no type conversion is done.
+ _visited_composed_classes (tuple): This stores a tuple of
+ classes that we have traveled through so that
+ if we see that class again we will not use its
+ discriminator again.
+ When traveling through a discriminator, the
+ composed schema that is
+ is traveled through is added to this set.
+ For example if Animal has a discriminator
+ petType and we pass in "Dog", and the class Dog
+ allOf includes Animal, we move through Animal
+ once using the discriminator, and pick Dog.
+ Then in Dog, we will make an instance of the
+ Animal class but this time we won't travel
+ through its discriminator because we passed in
+ _visited_composed_classes = (Animal,)
+ retention_period (int): The time period in months for audit log retention. Audit logs beyond this period will be automatically deleted.. [optional] # noqa: E501
+ account (IamAccountRelationship): [optional] # noqa: E501
+ account_moid (str): The Account ID for this managed object.. [optional] # noqa: E501
+ create_time (datetime): The time when this managed object was created.. [optional] # noqa: E501
+ domain_group_moid (str): The DomainGroup ID for this managed object.. [optional] # noqa: E501
+ mod_time (datetime): The time when this managed object was last modified.. [optional] # noqa: E501
+ moid (str): The unique identifier of this Managed Object instance.. [optional] # noqa: E501
+ owners ([str], none_type): [optional] # noqa: E501
+ shared_scope (str): Intersight provides pre-built workflows, tasks and policies to end users through global catalogs. Objects that are made available through global catalogs are said to have a 'shared' ownership. Shared objects are either made globally available to all end users or restricted to end users based on their license entitlement. Users can use this property to differentiate the scope (global or a specific license tier) to which a shared MO belongs.. [optional] # noqa: E501
+ tags ([MoTag], none_type): [optional] # noqa: E501
+ version_context (MoVersionContext): [optional] # noqa: E501
+ ancestors ([MoBaseMoRelationship], none_type): An array of relationships to moBaseMo resources.. [optional] # noqa: E501
+ parent (MoBaseMoRelationship): [optional] # noqa: E501
+ permission_resources ([MoBaseMoRelationship], none_type): An array of relationships to moBaseMo resources.. [optional] # noqa: E501
+ display_names (DisplayNames): [optional] # noqa: E501
+ description (str): Description of the policy.. [optional] # noqa: E501
+ name (str): Name of the concrete policy.. [optional] # noqa: E501
+ """
+
+ class_id = kwargs.get('class_id', "aaa.RetentionPolicy")
+ object_type = kwargs.get('object_type', "aaa.RetentionPolicy")
+ _check_type = kwargs.pop('_check_type', True)
+ _spec_property_naming = kwargs.pop('_spec_property_naming', False)
+ _path_to_item = kwargs.pop('_path_to_item', ())
+ _configuration = kwargs.pop('_configuration', None)
+ _visited_composed_classes = kwargs.pop('_visited_composed_classes', ())
+
+ if args:
+ raise ApiTypeError(
+ "Invalid positional arguments=%s passed to %s. Remove those invalid positional arguments." % (
+ args,
+ self.__class__.__name__,
+ ),
+ path_to_item=_path_to_item,
+ valid_classes=(self.__class__,),
+ )
+
+ self._data_store = {}
+ self._check_type = _check_type
+ self._spec_property_naming = _spec_property_naming
+ self._path_to_item = _path_to_item
+ self._configuration = _configuration
+ self._visited_composed_classes = _visited_composed_classes + (self.__class__,)
+
+ constant_args = {
+ '_check_type': _check_type,
+ '_path_to_item': _path_to_item,
+ '_spec_property_naming': _spec_property_naming,
+ '_configuration': _configuration,
+ '_visited_composed_classes': self._visited_composed_classes,
+ }
+ required_args = {
+ 'class_id': class_id,
+ 'object_type': object_type,
+ }
+ model_args = {}
+ model_args.update(required_args)
+ model_args.update(kwargs)
+ composed_info = validate_get_composed_info(
+ constant_args, model_args, self)
+ self._composed_instances = composed_info[0]
+ self._var_name_to_model_instances = composed_info[1]
+ self._additional_properties_model_instances = composed_info[2]
+ unused_args = composed_info[3]
+
+ for var_name, var_value in required_args.items():
+ setattr(self, var_name, var_value)
+ for var_name, var_value in kwargs.items():
+ if var_name in unused_args and \
+ self._configuration is not None and \
+ self._configuration.discard_unknown_keys and \
+ not self._additional_properties_model_instances:
+ # discard variable.
+ continue
+ setattr(self, var_name, var_value)
+
+ @cached_property
+ def _composed_schemas():
+ # we need this here to make our import statements work
+ # we must store _composed_schemas in here so the code is only run
+ # when we invoke this method. If we kept this at the class
+ # level we would get an error beause the class level
+ # code would be run when this module is imported, and these composed
+ # classes don't exist yet because their module has not finished
+ # loading
+ lazy_import()
+ return {
+ 'anyOf': [
+ ],
+ 'allOf': [
+ AaaRetentionPolicyAllOf,
+ PolicyAbstractPolicy,
+ ],
+ 'oneOf': [
+ ],
+ }
diff --git a/intersight/model/aaa_retention_policy_all_of.py b/intersight/model/aaa_retention_policy_all_of.py
new file mode 100644
index 0000000000..215af42035
--- /dev/null
+++ b/intersight/model/aaa_retention_policy_all_of.py
@@ -0,0 +1,196 @@
+"""
+ Cisco Intersight
+
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
+
+ The version of the OpenAPI document: 1.0.9-4506
+ Contact: intersight@cisco.com
+ Generated by: https://openapi-generator.tech
+"""
+
+
+import re # noqa: F401
+import sys # noqa: F401
+
+from intersight.model_utils import ( # noqa: F401
+ ApiTypeError,
+ ModelComposed,
+ ModelNormal,
+ ModelSimple,
+ cached_property,
+ change_keys_js_to_python,
+ convert_js_args_to_python_args,
+ date,
+ datetime,
+ file_type,
+ none_type,
+ validate_get_composed_info,
+)
+
+def lazy_import():
+ from intersight.model.iam_account_relationship import IamAccountRelationship
+ globals()['IamAccountRelationship'] = IamAccountRelationship
+
+
+class AaaRetentionPolicyAllOf(ModelNormal):
+ """NOTE: This class is auto generated by OpenAPI Generator.
+ Ref: https://openapi-generator.tech
+
+ Do not edit the class manually.
+
+ Attributes:
+ allowed_values (dict): The key is the tuple path to the attribute
+ and the for var_name this is (var_name,). The value is a dict
+ with a capitalized key describing the allowed value and an allowed
+ value. These dicts store the allowed enum values.
+ attribute_map (dict): The key is attribute name
+ and the value is json key in definition.
+ discriminator_value_class_map (dict): A dict to go from the discriminator
+ variable value to the discriminator class name.
+ validations (dict): The key is the tuple path to the attribute
+ and the for var_name this is (var_name,). The value is a dict
+ that stores validations for max_length, min_length, max_items,
+ min_items, exclusive_maximum, inclusive_maximum, exclusive_minimum,
+ inclusive_minimum, and regex.
+ additional_properties_type (tuple): A tuple of classes accepted
+ as additional properties values.
+ """
+
+ allowed_values = {
+ ('class_id',): {
+ 'AAA.RETENTIONPOLICY': "aaa.RetentionPolicy",
+ },
+ ('object_type',): {
+ 'AAA.RETENTIONPOLICY': "aaa.RetentionPolicy",
+ },
+ }
+
+ validations = {
+ ('retention_period',): {
+ 'inclusive_maximum': 48,
+ },
+ }
+
+ additional_properties_type = None
+
+ _nullable = False
+
+ @cached_property
+ def openapi_types():
+ """
+ This must be a method because a model may have properties that are
+ of type self, this must run after the class is loaded
+
+ Returns
+ openapi_types (dict): The key is attribute name
+ and the value is attribute type.
+ """
+ lazy_import()
+ return {
+ 'class_id': (str,), # noqa: E501
+ 'object_type': (str,), # noqa: E501
+ 'retention_period': (int,), # noqa: E501
+ 'account': (IamAccountRelationship,), # noqa: E501
+ }
+
+ @cached_property
+ def discriminator():
+ return None
+
+
+ attribute_map = {
+ 'class_id': 'ClassId', # noqa: E501
+ 'object_type': 'ObjectType', # noqa: E501
+ 'retention_period': 'RetentionPeriod', # noqa: E501
+ 'account': 'Account', # noqa: E501
+ }
+
+ _composed_schemas = {}
+
+ required_properties = set([
+ '_data_store',
+ '_check_type',
+ '_spec_property_naming',
+ '_path_to_item',
+ '_configuration',
+ '_visited_composed_classes',
+ ])
+
+ @convert_js_args_to_python_args
+ def __init__(self, *args, **kwargs): # noqa: E501
+ """AaaRetentionPolicyAllOf - a model defined in OpenAPI
+
+ Args:
+
+ Keyword Args:
+ class_id (str): The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.. defaults to "aaa.RetentionPolicy", must be one of ["aaa.RetentionPolicy", ] # noqa: E501
+ object_type (str): The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.. defaults to "aaa.RetentionPolicy", must be one of ["aaa.RetentionPolicy", ] # noqa: E501
+ _check_type (bool): if True, values for parameters in openapi_types
+ will be type checked and a TypeError will be
+ raised if the wrong type is input.
+ Defaults to True
+ _path_to_item (tuple/list): This is a list of keys or values to
+ drill down to the model in received_data
+ when deserializing a response
+ _spec_property_naming (bool): True if the variable names in the input data
+ are serialized names, as specified in the OpenAPI document.
+ False if the variable names in the input data
+ are pythonic names, e.g. snake case (default)
+ _configuration (Configuration): the instance to use when
+ deserializing a file_type parameter.
+ If passed, type conversion is attempted
+ If omitted no type conversion is done.
+ _visited_composed_classes (tuple): This stores a tuple of
+ classes that we have traveled through so that
+ if we see that class again we will not use its
+ discriminator again.
+ When traveling through a discriminator, the
+ composed schema that is
+ is traveled through is added to this set.
+ For example if Animal has a discriminator
+ petType and we pass in "Dog", and the class Dog
+ allOf includes Animal, we move through Animal
+ once using the discriminator, and pick Dog.
+ Then in Dog, we will make an instance of the
+ Animal class but this time we won't travel
+ through its discriminator because we passed in
+ _visited_composed_classes = (Animal,)
+ retention_period (int): The time period in months for audit log retention. Audit logs beyond this period will be automatically deleted.. [optional] # noqa: E501
+ account (IamAccountRelationship): [optional] # noqa: E501
+ """
+
+ class_id = kwargs.get('class_id', "aaa.RetentionPolicy")
+ object_type = kwargs.get('object_type', "aaa.RetentionPolicy")
+ _check_type = kwargs.pop('_check_type', True)
+ _spec_property_naming = kwargs.pop('_spec_property_naming', False)
+ _path_to_item = kwargs.pop('_path_to_item', ())
+ _configuration = kwargs.pop('_configuration', None)
+ _visited_composed_classes = kwargs.pop('_visited_composed_classes', ())
+
+ if args:
+ raise ApiTypeError(
+ "Invalid positional arguments=%s passed to %s. Remove those invalid positional arguments." % (
+ args,
+ self.__class__.__name__,
+ ),
+ path_to_item=_path_to_item,
+ valid_classes=(self.__class__,),
+ )
+
+ self._data_store = {}
+ self._check_type = _check_type
+ self._spec_property_naming = _spec_property_naming
+ self._path_to_item = _path_to_item
+ self._configuration = _configuration
+ self._visited_composed_classes = _visited_composed_classes + (self.__class__,)
+
+ self.class_id = class_id
+ self.object_type = object_type
+ for var_name, var_value in kwargs.items():
+ if var_name not in self.attribute_map and \
+ self._configuration is not None and \
+ self._configuration.discard_unknown_keys and \
+ self.additional_properties_type is None:
+ # discard variable.
+ continue
+ setattr(self, var_name, var_value)
diff --git a/intersight/model/aaa_retention_policy_list.py b/intersight/model/aaa_retention_policy_list.py
new file mode 100644
index 0000000000..6b2cdd0391
--- /dev/null
+++ b/intersight/model/aaa_retention_policy_list.py
@@ -0,0 +1,238 @@
+"""
+ Cisco Intersight
+
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
+
+ The version of the OpenAPI document: 1.0.9-4506
+ Contact: intersight@cisco.com
+ Generated by: https://openapi-generator.tech
+"""
+
+
+import re # noqa: F401
+import sys # noqa: F401
+
+from intersight.model_utils import ( # noqa: F401
+ ApiTypeError,
+ ModelComposed,
+ ModelNormal,
+ ModelSimple,
+ cached_property,
+ change_keys_js_to_python,
+ convert_js_args_to_python_args,
+ date,
+ datetime,
+ file_type,
+ none_type,
+ validate_get_composed_info,
+)
+
+def lazy_import():
+ from intersight.model.aaa_retention_policy import AaaRetentionPolicy
+ from intersight.model.aaa_retention_policy_list_all_of import AaaRetentionPolicyListAllOf
+ from intersight.model.mo_base_response import MoBaseResponse
+ globals()['AaaRetentionPolicy'] = AaaRetentionPolicy
+ globals()['AaaRetentionPolicyListAllOf'] = AaaRetentionPolicyListAllOf
+ globals()['MoBaseResponse'] = MoBaseResponse
+
+
+class AaaRetentionPolicyList(ModelComposed):
+ """NOTE: This class is auto generated by OpenAPI Generator.
+ Ref: https://openapi-generator.tech
+
+ Do not edit the class manually.
+
+ Attributes:
+ allowed_values (dict): The key is the tuple path to the attribute
+ and the for var_name this is (var_name,). The value is a dict
+ with a capitalized key describing the allowed value and an allowed
+ value. These dicts store the allowed enum values.
+ attribute_map (dict): The key is attribute name
+ and the value is json key in definition.
+ discriminator_value_class_map (dict): A dict to go from the discriminator
+ variable value to the discriminator class name.
+ validations (dict): The key is the tuple path to the attribute
+ and the for var_name this is (var_name,). The value is a dict
+ that stores validations for max_length, min_length, max_items,
+ min_items, exclusive_maximum, inclusive_maximum, exclusive_minimum,
+ inclusive_minimum, and regex.
+ additional_properties_type (tuple): A tuple of classes accepted
+ as additional properties values.
+ """
+
+ allowed_values = {
+ }
+
+ validations = {
+ }
+
+ @cached_property
+ def additional_properties_type():
+ """
+ This must be a method because a model may have properties that are
+ of type self, this must run after the class is loaded
+ """
+ lazy_import()
+ return (bool, date, datetime, dict, float, int, list, str, none_type,) # noqa: E501
+
+ _nullable = False
+
+ @cached_property
+ def openapi_types():
+ """
+ This must be a method because a model may have properties that are
+ of type self, this must run after the class is loaded
+
+ Returns
+ openapi_types (dict): The key is attribute name
+ and the value is attribute type.
+ """
+ lazy_import()
+ return {
+ 'object_type': (str,), # noqa: E501
+ 'count': (int,), # noqa: E501
+ 'results': ([AaaRetentionPolicy], none_type,), # noqa: E501
+ }
+
+ @cached_property
+ def discriminator():
+ val = {
+ }
+ if not val:
+ return None
+ return {'object_type': val}
+
+ attribute_map = {
+ 'object_type': 'ObjectType', # noqa: E501
+ 'count': 'Count', # noqa: E501
+ 'results': 'Results', # noqa: E501
+ }
+
+ required_properties = set([
+ '_data_store',
+ '_check_type',
+ '_spec_property_naming',
+ '_path_to_item',
+ '_configuration',
+ '_visited_composed_classes',
+ '_composed_instances',
+ '_var_name_to_model_instances',
+ '_additional_properties_model_instances',
+ ])
+
+ @convert_js_args_to_python_args
+ def __init__(self, object_type, *args, **kwargs): # noqa: E501
+ """AaaRetentionPolicyList - a model defined in OpenAPI
+
+ Args:
+ object_type (str): A discriminator value to disambiguate the schema of a HTTP GET response body.
+
+ Keyword Args:
+ _check_type (bool): if True, values for parameters in openapi_types
+ will be type checked and a TypeError will be
+ raised if the wrong type is input.
+ Defaults to True
+ _path_to_item (tuple/list): This is a list of keys or values to
+ drill down to the model in received_data
+ when deserializing a response
+ _spec_property_naming (bool): True if the variable names in the input data
+ are serialized names, as specified in the OpenAPI document.
+ False if the variable names in the input data
+ are pythonic names, e.g. snake case (default)
+ _configuration (Configuration): the instance to use when
+ deserializing a file_type parameter.
+ If passed, type conversion is attempted
+ If omitted no type conversion is done.
+ _visited_composed_classes (tuple): This stores a tuple of
+ classes that we have traveled through so that
+ if we see that class again we will not use its
+ discriminator again.
+ When traveling through a discriminator, the
+ composed schema that is
+ is traveled through is added to this set.
+ For example if Animal has a discriminator
+ petType and we pass in "Dog", and the class Dog
+ allOf includes Animal, we move through Animal
+ once using the discriminator, and pick Dog.
+ Then in Dog, we will make an instance of the
+ Animal class but this time we won't travel
+ through its discriminator because we passed in
+ _visited_composed_classes = (Animal,)
+ count (int): The total number of 'aaa.RetentionPolicy' resources matching the request, accross all pages. The 'Count' attribute is included when the HTTP GET request includes the '$inlinecount' parameter.. [optional] # noqa: E501
+ results ([AaaRetentionPolicy], none_type): The array of 'aaa.RetentionPolicy' resources matching the request.. [optional] # noqa: E501
+ """
+
+ _check_type = kwargs.pop('_check_type', True)
+ _spec_property_naming = kwargs.pop('_spec_property_naming', False)
+ _path_to_item = kwargs.pop('_path_to_item', ())
+ _configuration = kwargs.pop('_configuration', None)
+ _visited_composed_classes = kwargs.pop('_visited_composed_classes', ())
+
+ if args:
+ raise ApiTypeError(
+ "Invalid positional arguments=%s passed to %s. Remove those invalid positional arguments." % (
+ args,
+ self.__class__.__name__,
+ ),
+ path_to_item=_path_to_item,
+ valid_classes=(self.__class__,),
+ )
+
+ self._data_store = {}
+ self._check_type = _check_type
+ self._spec_property_naming = _spec_property_naming
+ self._path_to_item = _path_to_item
+ self._configuration = _configuration
+ self._visited_composed_classes = _visited_composed_classes + (self.__class__,)
+
+ constant_args = {
+ '_check_type': _check_type,
+ '_path_to_item': _path_to_item,
+ '_spec_property_naming': _spec_property_naming,
+ '_configuration': _configuration,
+ '_visited_composed_classes': self._visited_composed_classes,
+ }
+ required_args = {
+ 'object_type': object_type,
+ }
+ model_args = {}
+ model_args.update(required_args)
+ model_args.update(kwargs)
+ composed_info = validate_get_composed_info(
+ constant_args, model_args, self)
+ self._composed_instances = composed_info[0]
+ self._var_name_to_model_instances = composed_info[1]
+ self._additional_properties_model_instances = composed_info[2]
+ unused_args = composed_info[3]
+
+ for var_name, var_value in required_args.items():
+ setattr(self, var_name, var_value)
+ for var_name, var_value in kwargs.items():
+ if var_name in unused_args and \
+ self._configuration is not None and \
+ self._configuration.discard_unknown_keys and \
+ not self._additional_properties_model_instances:
+ # discard variable.
+ continue
+ setattr(self, var_name, var_value)
+
+ @cached_property
+ def _composed_schemas():
+ # we need this here to make our import statements work
+ # we must store _composed_schemas in here so the code is only run
+ # when we invoke this method. If we kept this at the class
+ # level we would get an error beause the class level
+ # code would be run when this module is imported, and these composed
+ # classes don't exist yet because their module has not finished
+ # loading
+ lazy_import()
+ return {
+ 'anyOf': [
+ ],
+ 'allOf': [
+ AaaRetentionPolicyListAllOf,
+ MoBaseResponse,
+ ],
+ 'oneOf': [
+ ],
+ }
diff --git a/intersight/model/aaa_retention_policy_list_all_of.py b/intersight/model/aaa_retention_policy_list_all_of.py
new file mode 100644
index 0000000000..d38bdfd354
--- /dev/null
+++ b/intersight/model/aaa_retention_policy_list_all_of.py
@@ -0,0 +1,175 @@
+"""
+ Cisco Intersight
+
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
+
+ The version of the OpenAPI document: 1.0.9-4506
+ Contact: intersight@cisco.com
+ Generated by: https://openapi-generator.tech
+"""
+
+
+import re # noqa: F401
+import sys # noqa: F401
+
+from intersight.model_utils import ( # noqa: F401
+ ApiTypeError,
+ ModelComposed,
+ ModelNormal,
+ ModelSimple,
+ cached_property,
+ change_keys_js_to_python,
+ convert_js_args_to_python_args,
+ date,
+ datetime,
+ file_type,
+ none_type,
+ validate_get_composed_info,
+)
+
+def lazy_import():
+ from intersight.model.aaa_retention_policy import AaaRetentionPolicy
+ globals()['AaaRetentionPolicy'] = AaaRetentionPolicy
+
+
+class AaaRetentionPolicyListAllOf(ModelNormal):
+ """NOTE: This class is auto generated by OpenAPI Generator.
+ Ref: https://openapi-generator.tech
+
+ Do not edit the class manually.
+
+ Attributes:
+ allowed_values (dict): The key is the tuple path to the attribute
+ and the for var_name this is (var_name,). The value is a dict
+ with a capitalized key describing the allowed value and an allowed
+ value. These dicts store the allowed enum values.
+ attribute_map (dict): The key is attribute name
+ and the value is json key in definition.
+ discriminator_value_class_map (dict): A dict to go from the discriminator
+ variable value to the discriminator class name.
+ validations (dict): The key is the tuple path to the attribute
+ and the for var_name this is (var_name,). The value is a dict
+ that stores validations for max_length, min_length, max_items,
+ min_items, exclusive_maximum, inclusive_maximum, exclusive_minimum,
+ inclusive_minimum, and regex.
+ additional_properties_type (tuple): A tuple of classes accepted
+ as additional properties values.
+ """
+
+ allowed_values = {
+ }
+
+ validations = {
+ }
+
+ additional_properties_type = None
+
+ _nullable = False
+
+ @cached_property
+ def openapi_types():
+ """
+ This must be a method because a model may have properties that are
+ of type self, this must run after the class is loaded
+
+ Returns
+ openapi_types (dict): The key is attribute name
+ and the value is attribute type.
+ """
+ lazy_import()
+ return {
+ 'count': (int,), # noqa: E501
+ 'results': ([AaaRetentionPolicy], none_type,), # noqa: E501
+ }
+
+ @cached_property
+ def discriminator():
+ return None
+
+
+ attribute_map = {
+ 'count': 'Count', # noqa: E501
+ 'results': 'Results', # noqa: E501
+ }
+
+ _composed_schemas = {}
+
+ required_properties = set([
+ '_data_store',
+ '_check_type',
+ '_spec_property_naming',
+ '_path_to_item',
+ '_configuration',
+ '_visited_composed_classes',
+ ])
+
+ @convert_js_args_to_python_args
+ def __init__(self, *args, **kwargs): # noqa: E501
+ """AaaRetentionPolicyListAllOf - a model defined in OpenAPI
+
+ Keyword Args:
+ _check_type (bool): if True, values for parameters in openapi_types
+ will be type checked and a TypeError will be
+ raised if the wrong type is input.
+ Defaults to True
+ _path_to_item (tuple/list): This is a list of keys or values to
+ drill down to the model in received_data
+ when deserializing a response
+ _spec_property_naming (bool): True if the variable names in the input data
+ are serialized names, as specified in the OpenAPI document.
+ False if the variable names in the input data
+ are pythonic names, e.g. snake case (default)
+ _configuration (Configuration): the instance to use when
+ deserializing a file_type parameter.
+ If passed, type conversion is attempted
+ If omitted no type conversion is done.
+ _visited_composed_classes (tuple): This stores a tuple of
+ classes that we have traveled through so that
+ if we see that class again we will not use its
+ discriminator again.
+ When traveling through a discriminator, the
+ composed schema that is
+ is traveled through is added to this set.
+ For example if Animal has a discriminator
+ petType and we pass in "Dog", and the class Dog
+ allOf includes Animal, we move through Animal
+ once using the discriminator, and pick Dog.
+ Then in Dog, we will make an instance of the
+ Animal class but this time we won't travel
+ through its discriminator because we passed in
+ _visited_composed_classes = (Animal,)
+ count (int): The total number of 'aaa.RetentionPolicy' resources matching the request, accross all pages. The 'Count' attribute is included when the HTTP GET request includes the '$inlinecount' parameter.. [optional] # noqa: E501
+ results ([AaaRetentionPolicy], none_type): The array of 'aaa.RetentionPolicy' resources matching the request.. [optional] # noqa: E501
+ """
+
+ _check_type = kwargs.pop('_check_type', True)
+ _spec_property_naming = kwargs.pop('_spec_property_naming', False)
+ _path_to_item = kwargs.pop('_path_to_item', ())
+ _configuration = kwargs.pop('_configuration', None)
+ _visited_composed_classes = kwargs.pop('_visited_composed_classes', ())
+
+ if args:
+ raise ApiTypeError(
+ "Invalid positional arguments=%s passed to %s. Remove those invalid positional arguments." % (
+ args,
+ self.__class__.__name__,
+ ),
+ path_to_item=_path_to_item,
+ valid_classes=(self.__class__,),
+ )
+
+ self._data_store = {}
+ self._check_type = _check_type
+ self._spec_property_naming = _spec_property_naming
+ self._path_to_item = _path_to_item
+ self._configuration = _configuration
+ self._visited_composed_classes = _visited_composed_classes + (self.__class__,)
+
+ for var_name, var_value in kwargs.items():
+ if var_name not in self.attribute_map and \
+ self._configuration is not None and \
+ self._configuration.discard_unknown_keys and \
+ self.additional_properties_type is None:
+ # discard variable.
+ continue
+ setattr(self, var_name, var_value)
diff --git a/intersight/model/aaa_retention_policy_response.py b/intersight/model/aaa_retention_policy_response.py
new file mode 100644
index 0000000000..45a59f43ee
--- /dev/null
+++ b/intersight/model/aaa_retention_policy_response.py
@@ -0,0 +1,249 @@
+"""
+ Cisco Intersight
+
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
+
+ The version of the OpenAPI document: 1.0.9-4506
+ Contact: intersight@cisco.com
+ Generated by: https://openapi-generator.tech
+"""
+
+
+import re # noqa: F401
+import sys # noqa: F401
+
+from intersight.model_utils import ( # noqa: F401
+ ApiTypeError,
+ ModelComposed,
+ ModelNormal,
+ ModelSimple,
+ cached_property,
+ change_keys_js_to_python,
+ convert_js_args_to_python_args,
+ date,
+ datetime,
+ file_type,
+ none_type,
+ validate_get_composed_info,
+)
+
+def lazy_import():
+ from intersight.model.aaa_retention_policy_list import AaaRetentionPolicyList
+ from intersight.model.mo_aggregate_transform import MoAggregateTransform
+ from intersight.model.mo_document_count import MoDocumentCount
+ from intersight.model.mo_tag_key_summary import MoTagKeySummary
+ from intersight.model.mo_tag_summary import MoTagSummary
+ globals()['AaaRetentionPolicyList'] = AaaRetentionPolicyList
+ globals()['MoAggregateTransform'] = MoAggregateTransform
+ globals()['MoDocumentCount'] = MoDocumentCount
+ globals()['MoTagKeySummary'] = MoTagKeySummary
+ globals()['MoTagSummary'] = MoTagSummary
+
+
+class AaaRetentionPolicyResponse(ModelComposed):
+ """NOTE: This class is auto generated by OpenAPI Generator.
+ Ref: https://openapi-generator.tech
+
+ Do not edit the class manually.
+
+ Attributes:
+ allowed_values (dict): The key is the tuple path to the attribute
+ and the for var_name this is (var_name,). The value is a dict
+ with a capitalized key describing the allowed value and an allowed
+ value. These dicts store the allowed enum values.
+ attribute_map (dict): The key is attribute name
+ and the value is json key in definition.
+ discriminator_value_class_map (dict): A dict to go from the discriminator
+ variable value to the discriminator class name.
+ validations (dict): The key is the tuple path to the attribute
+ and the for var_name this is (var_name,). The value is a dict
+ that stores validations for max_length, min_length, max_items,
+ min_items, exclusive_maximum, inclusive_maximum, exclusive_minimum,
+ inclusive_minimum, and regex.
+ additional_properties_type (tuple): A tuple of classes accepted
+ as additional properties values.
+ """
+
+ allowed_values = {
+ }
+
+ validations = {
+ }
+
+ @cached_property
+ def additional_properties_type():
+ """
+ This must be a method because a model may have properties that are
+ of type self, this must run after the class is loaded
+ """
+ lazy_import()
+ return (bool, date, datetime, dict, float, int, list, str, none_type,) # noqa: E501
+
+ _nullable = False
+
+ @cached_property
+ def openapi_types():
+ """
+ This must be a method because a model may have properties that are
+ of type self, this must run after the class is loaded
+
+ Returns
+ openapi_types (dict): The key is attribute name
+ and the value is attribute type.
+ """
+ lazy_import()
+ return {
+ 'object_type': (str,), # noqa: E501
+ 'count': (int,), # noqa: E501
+ 'results': ([MoTagKeySummary], none_type,), # noqa: E501
+ }
+
+ @cached_property
+ def discriminator():
+ lazy_import()
+ val = {
+ 'aaa.RetentionPolicy.List': AaaRetentionPolicyList,
+ 'mo.AggregateTransform': MoAggregateTransform,
+ 'mo.DocumentCount': MoDocumentCount,
+ 'mo.TagSummary': MoTagSummary,
+ }
+ if not val:
+ return None
+ return {'object_type': val}
+
+ attribute_map = {
+ 'object_type': 'ObjectType', # noqa: E501
+ 'count': 'Count', # noqa: E501
+ 'results': 'Results', # noqa: E501
+ }
+
+ required_properties = set([
+ '_data_store',
+ '_check_type',
+ '_spec_property_naming',
+ '_path_to_item',
+ '_configuration',
+ '_visited_composed_classes',
+ '_composed_instances',
+ '_var_name_to_model_instances',
+ '_additional_properties_model_instances',
+ ])
+
+ @convert_js_args_to_python_args
+ def __init__(self, object_type, *args, **kwargs): # noqa: E501
+ """AaaRetentionPolicyResponse - a model defined in OpenAPI
+
+ Args:
+ object_type (str): A discriminator value to disambiguate the schema of a HTTP GET response body.
+
+ Keyword Args:
+ _check_type (bool): if True, values for parameters in openapi_types
+ will be type checked and a TypeError will be
+ raised if the wrong type is input.
+ Defaults to True
+ _path_to_item (tuple/list): This is a list of keys or values to
+ drill down to the model in received_data
+ when deserializing a response
+ _spec_property_naming (bool): True if the variable names in the input data
+ are serialized names, as specified in the OpenAPI document.
+ False if the variable names in the input data
+ are pythonic names, e.g. snake case (default)
+ _configuration (Configuration): the instance to use when
+ deserializing a file_type parameter.
+ If passed, type conversion is attempted
+ If omitted no type conversion is done.
+ _visited_composed_classes (tuple): This stores a tuple of
+ classes that we have traveled through so that
+ if we see that class again we will not use its
+ discriminator again.
+ When traveling through a discriminator, the
+ composed schema that is
+ is traveled through is added to this set.
+ For example if Animal has a discriminator
+ petType and we pass in "Dog", and the class Dog
+ allOf includes Animal, we move through Animal
+ once using the discriminator, and pick Dog.
+ Then in Dog, we will make an instance of the
+ Animal class but this time we won't travel
+ through its discriminator because we passed in
+ _visited_composed_classes = (Animal,)
+ count (int): The total number of 'aaa.RetentionPolicy' resources matching the request, accross all pages. The 'Count' attribute is included when the HTTP GET request includes the '$inlinecount' parameter.. [optional] # noqa: E501
+ results ([MoTagKeySummary], none_type): [optional] # noqa: E501
+ """
+
+ _check_type = kwargs.pop('_check_type', True)
+ _spec_property_naming = kwargs.pop('_spec_property_naming', False)
+ _path_to_item = kwargs.pop('_path_to_item', ())
+ _configuration = kwargs.pop('_configuration', None)
+ _visited_composed_classes = kwargs.pop('_visited_composed_classes', ())
+
+ if args:
+ raise ApiTypeError(
+ "Invalid positional arguments=%s passed to %s. Remove those invalid positional arguments." % (
+ args,
+ self.__class__.__name__,
+ ),
+ path_to_item=_path_to_item,
+ valid_classes=(self.__class__,),
+ )
+
+ self._data_store = {}
+ self._check_type = _check_type
+ self._spec_property_naming = _spec_property_naming
+ self._path_to_item = _path_to_item
+ self._configuration = _configuration
+ self._visited_composed_classes = _visited_composed_classes + (self.__class__,)
+
+ constant_args = {
+ '_check_type': _check_type,
+ '_path_to_item': _path_to_item,
+ '_spec_property_naming': _spec_property_naming,
+ '_configuration': _configuration,
+ '_visited_composed_classes': self._visited_composed_classes,
+ }
+ required_args = {
+ 'object_type': object_type,
+ }
+ model_args = {}
+ model_args.update(required_args)
+ model_args.update(kwargs)
+ composed_info = validate_get_composed_info(
+ constant_args, model_args, self)
+ self._composed_instances = composed_info[0]
+ self._var_name_to_model_instances = composed_info[1]
+ self._additional_properties_model_instances = composed_info[2]
+ unused_args = composed_info[3]
+
+ for var_name, var_value in required_args.items():
+ setattr(self, var_name, var_value)
+ for var_name, var_value in kwargs.items():
+ if var_name in unused_args and \
+ self._configuration is not None and \
+ self._configuration.discard_unknown_keys and \
+ not self._additional_properties_model_instances:
+ # discard variable.
+ continue
+ setattr(self, var_name, var_value)
+
+ @cached_property
+ def _composed_schemas():
+ # we need this here to make our import statements work
+ # we must store _composed_schemas in here so the code is only run
+ # when we invoke this method. If we kept this at the class
+ # level we would get an error beause the class level
+ # code would be run when this module is imported, and these composed
+ # classes don't exist yet because their module has not finished
+ # loading
+ lazy_import()
+ return {
+ 'anyOf': [
+ ],
+ 'allOf': [
+ ],
+ 'oneOf': [
+ AaaRetentionPolicyList,
+ MoAggregateTransform,
+ MoDocumentCount,
+ MoTagSummary,
+ ],
+ }
diff --git a/intersight/model/access_address_type.py b/intersight/model/access_address_type.py
index 54a08e2b3f..5c84853c2b 100644
--- a/intersight/model/access_address_type.py
+++ b/intersight/model/access_address_type.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/access_address_type_all_of.py b/intersight/model/access_address_type_all_of.py
index 1a1896fe41..3269271ee8 100644
--- a/intersight/model/access_address_type_all_of.py
+++ b/intersight/model/access_address_type_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/access_policy.py b/intersight/model/access_policy.py
index 829e1e7181..b474707d38 100644
--- a/intersight/model/access_policy.py
+++ b/intersight/model/access_policy.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/access_policy_all_of.py b/intersight/model/access_policy_all_of.py
index 75cd510826..4499bf9ac5 100644
--- a/intersight/model/access_policy_all_of.py
+++ b/intersight/model/access_policy_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/access_policy_list.py b/intersight/model/access_policy_list.py
index 603eaa66d4..67c4f790c8 100644
--- a/intersight/model/access_policy_list.py
+++ b/intersight/model/access_policy_list.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/access_policy_list_all_of.py b/intersight/model/access_policy_list_all_of.py
index bf54ba302a..cd05b862cc 100644
--- a/intersight/model/access_policy_list_all_of.py
+++ b/intersight/model/access_policy_list_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/access_policy_response.py b/intersight/model/access_policy_response.py
index c2ab21d72e..bd749168c6 100644
--- a/intersight/model/access_policy_response.py
+++ b/intersight/model/access_policy_response.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/adapter_adapter_config.py b/intersight/model/adapter_adapter_config.py
index 68fe980c86..05b6073762 100644
--- a/intersight/model/adapter_adapter_config.py
+++ b/intersight/model/adapter_adapter_config.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/adapter_adapter_config_all_of.py b/intersight/model/adapter_adapter_config_all_of.py
index ae5b64d47e..990d212afa 100644
--- a/intersight/model/adapter_adapter_config_all_of.py
+++ b/intersight/model/adapter_adapter_config_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/adapter_config_policy.py b/intersight/model/adapter_config_policy.py
index 73345bd725..f696f93bdc 100644
--- a/intersight/model/adapter_config_policy.py
+++ b/intersight/model/adapter_config_policy.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/adapter_config_policy_all_of.py b/intersight/model/adapter_config_policy_all_of.py
index 6761ccf8ab..cb8f6b41c4 100644
--- a/intersight/model/adapter_config_policy_all_of.py
+++ b/intersight/model/adapter_config_policy_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/adapter_config_policy_list.py b/intersight/model/adapter_config_policy_list.py
index a3e59c682c..6fda4d762f 100644
--- a/intersight/model/adapter_config_policy_list.py
+++ b/intersight/model/adapter_config_policy_list.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/adapter_config_policy_list_all_of.py b/intersight/model/adapter_config_policy_list_all_of.py
index 306976a5f5..4eac2c7264 100644
--- a/intersight/model/adapter_config_policy_list_all_of.py
+++ b/intersight/model/adapter_config_policy_list_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/adapter_config_policy_response.py b/intersight/model/adapter_config_policy_response.py
index dfdc3117a8..e489143824 100644
--- a/intersight/model/adapter_config_policy_response.py
+++ b/intersight/model/adapter_config_policy_response.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/adapter_dce_interface_settings.py b/intersight/model/adapter_dce_interface_settings.py
index 980bf588c7..2ebc646f11 100644
--- a/intersight/model/adapter_dce_interface_settings.py
+++ b/intersight/model/adapter_dce_interface_settings.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/adapter_dce_interface_settings_all_of.py b/intersight/model/adapter_dce_interface_settings_all_of.py
index 800b222a8b..f433fb5f4f 100644
--- a/intersight/model/adapter_dce_interface_settings_all_of.py
+++ b/intersight/model/adapter_dce_interface_settings_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/adapter_eth_settings.py b/intersight/model/adapter_eth_settings.py
index 1110aba850..e5e4bce3b1 100644
--- a/intersight/model/adapter_eth_settings.py
+++ b/intersight/model/adapter_eth_settings.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/adapter_eth_settings_all_of.py b/intersight/model/adapter_eth_settings_all_of.py
index 53f0b157af..d1e6887d28 100644
--- a/intersight/model/adapter_eth_settings_all_of.py
+++ b/intersight/model/adapter_eth_settings_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/adapter_ext_eth_interface.py b/intersight/model/adapter_ext_eth_interface.py
index 7c67cbb115..942300f63d 100644
--- a/intersight/model/adapter_ext_eth_interface.py
+++ b/intersight/model/adapter_ext_eth_interface.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/adapter_ext_eth_interface_all_of.py b/intersight/model/adapter_ext_eth_interface_all_of.py
index 08ac2cda1e..084e38dce6 100644
--- a/intersight/model/adapter_ext_eth_interface_all_of.py
+++ b/intersight/model/adapter_ext_eth_interface_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/adapter_ext_eth_interface_list.py b/intersight/model/adapter_ext_eth_interface_list.py
index 6f6cee5616..021fe28b7b 100644
--- a/intersight/model/adapter_ext_eth_interface_list.py
+++ b/intersight/model/adapter_ext_eth_interface_list.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/adapter_ext_eth_interface_list_all_of.py b/intersight/model/adapter_ext_eth_interface_list_all_of.py
index 435d4474ac..d9856b0bab 100644
--- a/intersight/model/adapter_ext_eth_interface_list_all_of.py
+++ b/intersight/model/adapter_ext_eth_interface_list_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/adapter_ext_eth_interface_relationship.py b/intersight/model/adapter_ext_eth_interface_relationship.py
index c9109b68d0..cf8489e330 100644
--- a/intersight/model/adapter_ext_eth_interface_relationship.py
+++ b/intersight/model/adapter_ext_eth_interface_relationship.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
@@ -80,6 +80,8 @@ class AdapterExtEthInterfaceRelationship(ModelComposed):
},
('object_type',): {
'AAA.AUDITRECORD': "aaa.AuditRecord",
+ 'AAA.RETENTIONCONFIG': "aaa.RetentionConfig",
+ 'AAA.RETENTIONPOLICY': "aaa.RetentionPolicy",
'ACCESS.POLICY': "access.Policy",
'ADAPTER.CONFIGPOLICY': "adapter.ConfigPolicy",
'ADAPTER.EXTETHINTERFACE': "adapter.ExtEthInterface",
@@ -96,6 +98,7 @@ class AdapterExtEthInterfaceRelationship(ModelComposed):
'APPLIANCE.DATAEXPORTPOLICY': "appliance.DataExportPolicy",
'APPLIANCE.DEVICECERTIFICATE': "appliance.DeviceCertificate",
'APPLIANCE.DEVICECLAIM': "appliance.DeviceClaim",
+ 'APPLIANCE.DEVICEUPGRADEPOLICY': "appliance.DeviceUpgradePolicy",
'APPLIANCE.DIAGSETTING': "appliance.DiagSetting",
'APPLIANCE.EXTERNALSYSLOGSETTING': "appliance.ExternalSyslogSetting",
'APPLIANCE.FILESYSTEMSTATUS': "appliance.FileSystemStatus",
@@ -144,9 +147,12 @@ class AdapterExtEthInterfaceRelationship(ModelComposed):
'BOOT.UEFISHELLDEVICE': "boot.UefiShellDevice",
'BOOT.USBDEVICE': "boot.UsbDevice",
'BOOT.VMEDIADEVICE': "boot.VmediaDevice",
+ 'BULK.EXPORT': "bulk.Export",
+ 'BULK.EXPORTEDITEM': "bulk.ExportedItem",
'BULK.MOCLONER': "bulk.MoCloner",
'BULK.MOMERGER': "bulk.MoMerger",
'BULK.REQUEST': "bulk.Request",
+ 'BULK.SUBREQUESTOBJ': "bulk.SubRequestObj",
'CAPABILITY.ADAPTERUNITDESCRIPTOR': "capability.AdapterUnitDescriptor",
'CAPABILITY.CATALOG': "capability.Catalog",
'CAPABILITY.CHASSISDESCRIPTOR': "capability.ChassisDescriptor",
@@ -210,10 +216,6 @@ class AdapterExtEthInterfaceRelationship(ModelComposed):
'COND.HCLSTATUS': "cond.HclStatus",
'COND.HCLSTATUSDETAIL': "cond.HclStatusDetail",
'COND.HCLSTATUSJOB': "cond.HclStatusJob",
- 'CONFIG.EXPORTEDITEM': "config.ExportedItem",
- 'CONFIG.EXPORTER': "config.Exporter",
- 'CONFIG.IMPORTEDITEM': "config.ImportedItem",
- 'CONFIG.IMPORTER': "config.Importer",
'CONNECTORPACK.CONNECTORPACKUPGRADE': "connectorpack.ConnectorPackUpgrade",
'CONNECTORPACK.UPGRADEIMPACT': "connectorpack.UpgradeImpact",
'CRD.CUSTOMRESOURCE': "crd.CustomResource",
@@ -222,6 +224,7 @@ class AdapterExtEthInterfaceRelationship(ModelComposed):
'EQUIPMENT.CHASSISIDENTITY': "equipment.ChassisIdentity",
'EQUIPMENT.CHASSISOPERATION': "equipment.ChassisOperation",
'EQUIPMENT.DEVICESUMMARY': "equipment.DeviceSummary",
+ 'EQUIPMENT.EXPANDERMODULE': "equipment.ExpanderModule",
'EQUIPMENT.FAN': "equipment.Fan",
'EQUIPMENT.FANCONTROL': "equipment.FanControl",
'EQUIPMENT.FANMODULE': "equipment.FanModule",
@@ -470,6 +473,7 @@ class AdapterExtEthInterfaceRelationship(ModelComposed):
'KUBERNETES.ADDONDEFINITION': "kubernetes.AddonDefinition",
'KUBERNETES.ADDONPOLICY': "kubernetes.AddonPolicy",
'KUBERNETES.ADDONREPOSITORY': "kubernetes.AddonRepository",
+ 'KUBERNETES.BAREMETALNODEPROFILE': "kubernetes.BaremetalNodeProfile",
'KUBERNETES.CATALOG': "kubernetes.Catalog",
'KUBERNETES.CLUSTER': "kubernetes.Cluster",
'KUBERNETES.CLUSTERADDONPROFILE': "kubernetes.ClusterAddonProfile",
@@ -639,6 +643,11 @@ class AdapterExtEthInterfaceRelationship(ModelComposed):
'RESOURCE.LICENSERESOURCECOUNT': "resource.LicenseResourceCount",
'RESOURCE.MEMBERSHIP': "resource.Membership",
'RESOURCE.MEMBERSHIPHOLDER': "resource.MembershipHolder",
+ 'RESOURCEPOOL.LEASE': "resourcepool.Lease",
+ 'RESOURCEPOOL.LEASERESOURCE': "resourcepool.LeaseResource",
+ 'RESOURCEPOOL.POOL': "resourcepool.Pool",
+ 'RESOURCEPOOL.POOLMEMBER': "resourcepool.PoolMember",
+ 'RESOURCEPOOL.UNIVERSE': "resourcepool.Universe",
'RPROXY.REVERSEPROXY': "rproxy.ReverseProxy",
'SDCARD.POLICY': "sdcard.Policy",
'SDWAN.PROFILE': "sdwan.Profile",
@@ -754,6 +763,7 @@ class AdapterExtEthInterfaceRelationship(ModelComposed):
'TASK.NETAPPSCOPEDINVENTORY': "task.NetAppScopedInventory",
'TASK.PUBLICCLOUDSCOPEDINVENTORY': "task.PublicCloudScopedInventory",
'TASK.PURESCOPEDINVENTORY': "task.PureScopedInventory",
+ 'TASK.SERVERSCOPEDINVENTORY': "task.ServerScopedInventory",
'TECHSUPPORTMANAGEMENT.COLLECTIONCONTROLPOLICY': "techsupportmanagement.CollectionControlPolicy",
'TECHSUPPORTMANAGEMENT.DOWNLOAD': "techsupportmanagement.Download",
'TECHSUPPORTMANAGEMENT.TECHSUPPORTBUNDLE': "techsupportmanagement.TechSupportBundle",
@@ -785,6 +795,7 @@ class AdapterExtEthInterfaceRelationship(ModelComposed):
'VIRTUALIZATION.VMWAREVCENTER': "virtualization.VmwareVcenter",
'VIRTUALIZATION.VMWAREVIRTUALDISK': "virtualization.VmwareVirtualDisk",
'VIRTUALIZATION.VMWAREVIRTUALMACHINE': "virtualization.VmwareVirtualMachine",
+ 'VIRTUALIZATION.VMWAREVIRTUALMACHINESNAPSHOT': "virtualization.VmwareVirtualMachineSnapshot",
'VIRTUALIZATION.VMWAREVIRTUALNETWORKINTERFACE': "virtualization.VmwareVirtualNetworkInterface",
'VIRTUALIZATION.VMWAREVIRTUALSWITCH': "virtualization.VmwareVirtualSwitch",
'VMEDIA.POLICY': "vmedia.Policy",
@@ -817,12 +828,14 @@ class AdapterExtEthInterfaceRelationship(ModelComposed):
'WORKFLOW.TASKDEFINITION': "workflow.TaskDefinition",
'WORKFLOW.TASKINFO': "workflow.TaskInfo",
'WORKFLOW.TASKMETADATA': "workflow.TaskMetadata",
+ 'WORKFLOW.TASKNOTIFICATION': "workflow.TaskNotification",
'WORKFLOW.TEMPLATEEVALUATION': "workflow.TemplateEvaluation",
'WORKFLOW.TEMPLATEFUNCTIONMETA': "workflow.TemplateFunctionMeta",
'WORKFLOW.WORKFLOWDEFINITION': "workflow.WorkflowDefinition",
'WORKFLOW.WORKFLOWINFO': "workflow.WorkflowInfo",
'WORKFLOW.WORKFLOWMETA': "workflow.WorkflowMeta",
'WORKFLOW.WORKFLOWMETADATA': "workflow.WorkflowMetadata",
+ 'WORKFLOW.WORKFLOWNOTIFICATION': "workflow.WorkflowNotification",
},
}
diff --git a/intersight/model/adapter_ext_eth_interface_response.py b/intersight/model/adapter_ext_eth_interface_response.py
index d4d8dceff0..582d9e8623 100644
--- a/intersight/model/adapter_ext_eth_interface_response.py
+++ b/intersight/model/adapter_ext_eth_interface_response.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/adapter_fc_settings.py b/intersight/model/adapter_fc_settings.py
index 33953191dc..6e8e96f310 100644
--- a/intersight/model/adapter_fc_settings.py
+++ b/intersight/model/adapter_fc_settings.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/adapter_fc_settings_all_of.py b/intersight/model/adapter_fc_settings_all_of.py
index ebbf2e7f41..37885a3b08 100644
--- a/intersight/model/adapter_fc_settings_all_of.py
+++ b/intersight/model/adapter_fc_settings_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/adapter_host_eth_interface.py b/intersight/model/adapter_host_eth_interface.py
index ab19af2e2b..859843be0a 100644
--- a/intersight/model/adapter_host_eth_interface.py
+++ b/intersight/model/adapter_host_eth_interface.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
@@ -125,6 +125,8 @@ class AdapterHostEthInterface(ModelComposed):
'MEMORYUNCORRECTABLEERROR': "MemoryUncorrectableError",
'MEMORYTEMPERATUREWARNING': "MemoryTemperatureWarning",
'MEMORYTEMPERATURECRITICAL': "MemoryTemperatureCritical",
+ 'MEMORYBANKERROR': "MemoryBankError",
+ 'MEMORYRANKERROR': "MemoryRankError",
'MOTHERBOARDPOWERCRITICAL': "MotherBoardPowerCritical",
'MOTHERBOARDTEMPERATUREWARNING': "MotherBoardTemperatureWarning",
'MOTHERBOARDTEMPERATURECRITICAL': "MotherBoardTemperatureCritical",
diff --git a/intersight/model/adapter_host_eth_interface_all_of.py b/intersight/model/adapter_host_eth_interface_all_of.py
index d77f60974c..51aa793c15 100644
--- a/intersight/model/adapter_host_eth_interface_all_of.py
+++ b/intersight/model/adapter_host_eth_interface_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
@@ -111,6 +111,8 @@ class AdapterHostEthInterfaceAllOf(ModelNormal):
'MEMORYUNCORRECTABLEERROR': "MemoryUncorrectableError",
'MEMORYTEMPERATUREWARNING': "MemoryTemperatureWarning",
'MEMORYTEMPERATURECRITICAL': "MemoryTemperatureCritical",
+ 'MEMORYBANKERROR': "MemoryBankError",
+ 'MEMORYRANKERROR': "MemoryRankError",
'MOTHERBOARDPOWERCRITICAL': "MotherBoardPowerCritical",
'MOTHERBOARDTEMPERATUREWARNING': "MotherBoardTemperatureWarning",
'MOTHERBOARDTEMPERATURECRITICAL': "MotherBoardTemperatureCritical",
diff --git a/intersight/model/adapter_host_eth_interface_list.py b/intersight/model/adapter_host_eth_interface_list.py
index 9cec9aaad2..54fa46f0b8 100644
--- a/intersight/model/adapter_host_eth_interface_list.py
+++ b/intersight/model/adapter_host_eth_interface_list.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/adapter_host_eth_interface_list_all_of.py b/intersight/model/adapter_host_eth_interface_list_all_of.py
index d6cb8e61fd..05127885e7 100644
--- a/intersight/model/adapter_host_eth_interface_list_all_of.py
+++ b/intersight/model/adapter_host_eth_interface_list_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/adapter_host_eth_interface_relationship.py b/intersight/model/adapter_host_eth_interface_relationship.py
index 16ae2f57d4..e1b7f4bef2 100644
--- a/intersight/model/adapter_host_eth_interface_relationship.py
+++ b/intersight/model/adapter_host_eth_interface_relationship.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
@@ -122,6 +122,8 @@ class AdapterHostEthInterfaceRelationship(ModelComposed):
'MEMORYUNCORRECTABLEERROR': "MemoryUncorrectableError",
'MEMORYTEMPERATUREWARNING': "MemoryTemperatureWarning",
'MEMORYTEMPERATURECRITICAL': "MemoryTemperatureCritical",
+ 'MEMORYBANKERROR': "MemoryBankError",
+ 'MEMORYRANKERROR': "MemoryRankError",
'MOTHERBOARDPOWERCRITICAL': "MotherBoardPowerCritical",
'MOTHERBOARDTEMPERATUREWARNING': "MotherBoardTemperatureWarning",
'MOTHERBOARDTEMPERATURECRITICAL': "MotherBoardTemperatureCritical",
@@ -136,6 +138,8 @@ class AdapterHostEthInterfaceRelationship(ModelComposed):
},
('object_type',): {
'AAA.AUDITRECORD': "aaa.AuditRecord",
+ 'AAA.RETENTIONCONFIG': "aaa.RetentionConfig",
+ 'AAA.RETENTIONPOLICY': "aaa.RetentionPolicy",
'ACCESS.POLICY': "access.Policy",
'ADAPTER.CONFIGPOLICY': "adapter.ConfigPolicy",
'ADAPTER.EXTETHINTERFACE': "adapter.ExtEthInterface",
@@ -152,6 +156,7 @@ class AdapterHostEthInterfaceRelationship(ModelComposed):
'APPLIANCE.DATAEXPORTPOLICY': "appliance.DataExportPolicy",
'APPLIANCE.DEVICECERTIFICATE': "appliance.DeviceCertificate",
'APPLIANCE.DEVICECLAIM': "appliance.DeviceClaim",
+ 'APPLIANCE.DEVICEUPGRADEPOLICY': "appliance.DeviceUpgradePolicy",
'APPLIANCE.DIAGSETTING': "appliance.DiagSetting",
'APPLIANCE.EXTERNALSYSLOGSETTING': "appliance.ExternalSyslogSetting",
'APPLIANCE.FILESYSTEMSTATUS': "appliance.FileSystemStatus",
@@ -200,9 +205,12 @@ class AdapterHostEthInterfaceRelationship(ModelComposed):
'BOOT.UEFISHELLDEVICE': "boot.UefiShellDevice",
'BOOT.USBDEVICE': "boot.UsbDevice",
'BOOT.VMEDIADEVICE': "boot.VmediaDevice",
+ 'BULK.EXPORT': "bulk.Export",
+ 'BULK.EXPORTEDITEM': "bulk.ExportedItem",
'BULK.MOCLONER': "bulk.MoCloner",
'BULK.MOMERGER': "bulk.MoMerger",
'BULK.REQUEST': "bulk.Request",
+ 'BULK.SUBREQUESTOBJ': "bulk.SubRequestObj",
'CAPABILITY.ADAPTERUNITDESCRIPTOR': "capability.AdapterUnitDescriptor",
'CAPABILITY.CATALOG': "capability.Catalog",
'CAPABILITY.CHASSISDESCRIPTOR': "capability.ChassisDescriptor",
@@ -266,10 +274,6 @@ class AdapterHostEthInterfaceRelationship(ModelComposed):
'COND.HCLSTATUS': "cond.HclStatus",
'COND.HCLSTATUSDETAIL': "cond.HclStatusDetail",
'COND.HCLSTATUSJOB': "cond.HclStatusJob",
- 'CONFIG.EXPORTEDITEM': "config.ExportedItem",
- 'CONFIG.EXPORTER': "config.Exporter",
- 'CONFIG.IMPORTEDITEM': "config.ImportedItem",
- 'CONFIG.IMPORTER': "config.Importer",
'CONNECTORPACK.CONNECTORPACKUPGRADE': "connectorpack.ConnectorPackUpgrade",
'CONNECTORPACK.UPGRADEIMPACT': "connectorpack.UpgradeImpact",
'CRD.CUSTOMRESOURCE': "crd.CustomResource",
@@ -278,6 +282,7 @@ class AdapterHostEthInterfaceRelationship(ModelComposed):
'EQUIPMENT.CHASSISIDENTITY': "equipment.ChassisIdentity",
'EQUIPMENT.CHASSISOPERATION': "equipment.ChassisOperation",
'EQUIPMENT.DEVICESUMMARY': "equipment.DeviceSummary",
+ 'EQUIPMENT.EXPANDERMODULE': "equipment.ExpanderModule",
'EQUIPMENT.FAN': "equipment.Fan",
'EQUIPMENT.FANCONTROL': "equipment.FanControl",
'EQUIPMENT.FANMODULE': "equipment.FanModule",
@@ -526,6 +531,7 @@ class AdapterHostEthInterfaceRelationship(ModelComposed):
'KUBERNETES.ADDONDEFINITION': "kubernetes.AddonDefinition",
'KUBERNETES.ADDONPOLICY': "kubernetes.AddonPolicy",
'KUBERNETES.ADDONREPOSITORY': "kubernetes.AddonRepository",
+ 'KUBERNETES.BAREMETALNODEPROFILE': "kubernetes.BaremetalNodeProfile",
'KUBERNETES.CATALOG': "kubernetes.Catalog",
'KUBERNETES.CLUSTER': "kubernetes.Cluster",
'KUBERNETES.CLUSTERADDONPROFILE': "kubernetes.ClusterAddonProfile",
@@ -695,6 +701,11 @@ class AdapterHostEthInterfaceRelationship(ModelComposed):
'RESOURCE.LICENSERESOURCECOUNT': "resource.LicenseResourceCount",
'RESOURCE.MEMBERSHIP': "resource.Membership",
'RESOURCE.MEMBERSHIPHOLDER': "resource.MembershipHolder",
+ 'RESOURCEPOOL.LEASE': "resourcepool.Lease",
+ 'RESOURCEPOOL.LEASERESOURCE': "resourcepool.LeaseResource",
+ 'RESOURCEPOOL.POOL': "resourcepool.Pool",
+ 'RESOURCEPOOL.POOLMEMBER': "resourcepool.PoolMember",
+ 'RESOURCEPOOL.UNIVERSE': "resourcepool.Universe",
'RPROXY.REVERSEPROXY': "rproxy.ReverseProxy",
'SDCARD.POLICY': "sdcard.Policy",
'SDWAN.PROFILE': "sdwan.Profile",
@@ -810,6 +821,7 @@ class AdapterHostEthInterfaceRelationship(ModelComposed):
'TASK.NETAPPSCOPEDINVENTORY': "task.NetAppScopedInventory",
'TASK.PUBLICCLOUDSCOPEDINVENTORY': "task.PublicCloudScopedInventory",
'TASK.PURESCOPEDINVENTORY': "task.PureScopedInventory",
+ 'TASK.SERVERSCOPEDINVENTORY': "task.ServerScopedInventory",
'TECHSUPPORTMANAGEMENT.COLLECTIONCONTROLPOLICY': "techsupportmanagement.CollectionControlPolicy",
'TECHSUPPORTMANAGEMENT.DOWNLOAD': "techsupportmanagement.Download",
'TECHSUPPORTMANAGEMENT.TECHSUPPORTBUNDLE': "techsupportmanagement.TechSupportBundle",
@@ -841,6 +853,7 @@ class AdapterHostEthInterfaceRelationship(ModelComposed):
'VIRTUALIZATION.VMWAREVCENTER': "virtualization.VmwareVcenter",
'VIRTUALIZATION.VMWAREVIRTUALDISK': "virtualization.VmwareVirtualDisk",
'VIRTUALIZATION.VMWAREVIRTUALMACHINE': "virtualization.VmwareVirtualMachine",
+ 'VIRTUALIZATION.VMWAREVIRTUALMACHINESNAPSHOT': "virtualization.VmwareVirtualMachineSnapshot",
'VIRTUALIZATION.VMWAREVIRTUALNETWORKINTERFACE': "virtualization.VmwareVirtualNetworkInterface",
'VIRTUALIZATION.VMWAREVIRTUALSWITCH': "virtualization.VmwareVirtualSwitch",
'VMEDIA.POLICY': "vmedia.Policy",
@@ -873,12 +886,14 @@ class AdapterHostEthInterfaceRelationship(ModelComposed):
'WORKFLOW.TASKDEFINITION': "workflow.TaskDefinition",
'WORKFLOW.TASKINFO': "workflow.TaskInfo",
'WORKFLOW.TASKMETADATA': "workflow.TaskMetadata",
+ 'WORKFLOW.TASKNOTIFICATION': "workflow.TaskNotification",
'WORKFLOW.TEMPLATEEVALUATION': "workflow.TemplateEvaluation",
'WORKFLOW.TEMPLATEFUNCTIONMETA': "workflow.TemplateFunctionMeta",
'WORKFLOW.WORKFLOWDEFINITION': "workflow.WorkflowDefinition",
'WORKFLOW.WORKFLOWINFO': "workflow.WorkflowInfo",
'WORKFLOW.WORKFLOWMETA': "workflow.WorkflowMeta",
'WORKFLOW.WORKFLOWMETADATA': "workflow.WorkflowMetadata",
+ 'WORKFLOW.WORKFLOWNOTIFICATION': "workflow.WorkflowNotification",
},
}
diff --git a/intersight/model/adapter_host_eth_interface_response.py b/intersight/model/adapter_host_eth_interface_response.py
index d085339d31..b76a0084e3 100644
--- a/intersight/model/adapter_host_eth_interface_response.py
+++ b/intersight/model/adapter_host_eth_interface_response.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/adapter_host_fc_interface.py b/intersight/model/adapter_host_fc_interface.py
index bd8601bba6..5df1083a5c 100644
--- a/intersight/model/adapter_host_fc_interface.py
+++ b/intersight/model/adapter_host_fc_interface.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
@@ -125,6 +125,8 @@ class AdapterHostFcInterface(ModelComposed):
'MEMORYUNCORRECTABLEERROR': "MemoryUncorrectableError",
'MEMORYTEMPERATUREWARNING': "MemoryTemperatureWarning",
'MEMORYTEMPERATURECRITICAL': "MemoryTemperatureCritical",
+ 'MEMORYBANKERROR': "MemoryBankError",
+ 'MEMORYRANKERROR': "MemoryRankError",
'MOTHERBOARDPOWERCRITICAL': "MotherBoardPowerCritical",
'MOTHERBOARDTEMPERATUREWARNING': "MotherBoardTemperatureWarning",
'MOTHERBOARDTEMPERATURECRITICAL': "MotherBoardTemperatureCritical",
diff --git a/intersight/model/adapter_host_fc_interface_all_of.py b/intersight/model/adapter_host_fc_interface_all_of.py
index 12e1b10353..366d6c8c37 100644
--- a/intersight/model/adapter_host_fc_interface_all_of.py
+++ b/intersight/model/adapter_host_fc_interface_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
@@ -111,6 +111,8 @@ class AdapterHostFcInterfaceAllOf(ModelNormal):
'MEMORYUNCORRECTABLEERROR': "MemoryUncorrectableError",
'MEMORYTEMPERATUREWARNING': "MemoryTemperatureWarning",
'MEMORYTEMPERATURECRITICAL': "MemoryTemperatureCritical",
+ 'MEMORYBANKERROR': "MemoryBankError",
+ 'MEMORYRANKERROR': "MemoryRankError",
'MOTHERBOARDPOWERCRITICAL': "MotherBoardPowerCritical",
'MOTHERBOARDTEMPERATUREWARNING': "MotherBoardTemperatureWarning",
'MOTHERBOARDTEMPERATURECRITICAL': "MotherBoardTemperatureCritical",
diff --git a/intersight/model/adapter_host_fc_interface_list.py b/intersight/model/adapter_host_fc_interface_list.py
index ff21758988..beba76424e 100644
--- a/intersight/model/adapter_host_fc_interface_list.py
+++ b/intersight/model/adapter_host_fc_interface_list.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/adapter_host_fc_interface_list_all_of.py b/intersight/model/adapter_host_fc_interface_list_all_of.py
index ffbb92b658..852a8618e9 100644
--- a/intersight/model/adapter_host_fc_interface_list_all_of.py
+++ b/intersight/model/adapter_host_fc_interface_list_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/adapter_host_fc_interface_relationship.py b/intersight/model/adapter_host_fc_interface_relationship.py
index 043d88a43b..d3d17f7dd2 100644
--- a/intersight/model/adapter_host_fc_interface_relationship.py
+++ b/intersight/model/adapter_host_fc_interface_relationship.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
@@ -122,6 +122,8 @@ class AdapterHostFcInterfaceRelationship(ModelComposed):
'MEMORYUNCORRECTABLEERROR': "MemoryUncorrectableError",
'MEMORYTEMPERATUREWARNING': "MemoryTemperatureWarning",
'MEMORYTEMPERATURECRITICAL': "MemoryTemperatureCritical",
+ 'MEMORYBANKERROR': "MemoryBankError",
+ 'MEMORYRANKERROR': "MemoryRankError",
'MOTHERBOARDPOWERCRITICAL': "MotherBoardPowerCritical",
'MOTHERBOARDTEMPERATUREWARNING': "MotherBoardTemperatureWarning",
'MOTHERBOARDTEMPERATURECRITICAL': "MotherBoardTemperatureCritical",
@@ -136,6 +138,8 @@ class AdapterHostFcInterfaceRelationship(ModelComposed):
},
('object_type',): {
'AAA.AUDITRECORD': "aaa.AuditRecord",
+ 'AAA.RETENTIONCONFIG': "aaa.RetentionConfig",
+ 'AAA.RETENTIONPOLICY': "aaa.RetentionPolicy",
'ACCESS.POLICY': "access.Policy",
'ADAPTER.CONFIGPOLICY': "adapter.ConfigPolicy",
'ADAPTER.EXTETHINTERFACE': "adapter.ExtEthInterface",
@@ -152,6 +156,7 @@ class AdapterHostFcInterfaceRelationship(ModelComposed):
'APPLIANCE.DATAEXPORTPOLICY': "appliance.DataExportPolicy",
'APPLIANCE.DEVICECERTIFICATE': "appliance.DeviceCertificate",
'APPLIANCE.DEVICECLAIM': "appliance.DeviceClaim",
+ 'APPLIANCE.DEVICEUPGRADEPOLICY': "appliance.DeviceUpgradePolicy",
'APPLIANCE.DIAGSETTING': "appliance.DiagSetting",
'APPLIANCE.EXTERNALSYSLOGSETTING': "appliance.ExternalSyslogSetting",
'APPLIANCE.FILESYSTEMSTATUS': "appliance.FileSystemStatus",
@@ -200,9 +205,12 @@ class AdapterHostFcInterfaceRelationship(ModelComposed):
'BOOT.UEFISHELLDEVICE': "boot.UefiShellDevice",
'BOOT.USBDEVICE': "boot.UsbDevice",
'BOOT.VMEDIADEVICE': "boot.VmediaDevice",
+ 'BULK.EXPORT': "bulk.Export",
+ 'BULK.EXPORTEDITEM': "bulk.ExportedItem",
'BULK.MOCLONER': "bulk.MoCloner",
'BULK.MOMERGER': "bulk.MoMerger",
'BULK.REQUEST': "bulk.Request",
+ 'BULK.SUBREQUESTOBJ': "bulk.SubRequestObj",
'CAPABILITY.ADAPTERUNITDESCRIPTOR': "capability.AdapterUnitDescriptor",
'CAPABILITY.CATALOG': "capability.Catalog",
'CAPABILITY.CHASSISDESCRIPTOR': "capability.ChassisDescriptor",
@@ -266,10 +274,6 @@ class AdapterHostFcInterfaceRelationship(ModelComposed):
'COND.HCLSTATUS': "cond.HclStatus",
'COND.HCLSTATUSDETAIL': "cond.HclStatusDetail",
'COND.HCLSTATUSJOB': "cond.HclStatusJob",
- 'CONFIG.EXPORTEDITEM': "config.ExportedItem",
- 'CONFIG.EXPORTER': "config.Exporter",
- 'CONFIG.IMPORTEDITEM': "config.ImportedItem",
- 'CONFIG.IMPORTER': "config.Importer",
'CONNECTORPACK.CONNECTORPACKUPGRADE': "connectorpack.ConnectorPackUpgrade",
'CONNECTORPACK.UPGRADEIMPACT': "connectorpack.UpgradeImpact",
'CRD.CUSTOMRESOURCE': "crd.CustomResource",
@@ -278,6 +282,7 @@ class AdapterHostFcInterfaceRelationship(ModelComposed):
'EQUIPMENT.CHASSISIDENTITY': "equipment.ChassisIdentity",
'EQUIPMENT.CHASSISOPERATION': "equipment.ChassisOperation",
'EQUIPMENT.DEVICESUMMARY': "equipment.DeviceSummary",
+ 'EQUIPMENT.EXPANDERMODULE': "equipment.ExpanderModule",
'EQUIPMENT.FAN': "equipment.Fan",
'EQUIPMENT.FANCONTROL': "equipment.FanControl",
'EQUIPMENT.FANMODULE': "equipment.FanModule",
@@ -526,6 +531,7 @@ class AdapterHostFcInterfaceRelationship(ModelComposed):
'KUBERNETES.ADDONDEFINITION': "kubernetes.AddonDefinition",
'KUBERNETES.ADDONPOLICY': "kubernetes.AddonPolicy",
'KUBERNETES.ADDONREPOSITORY': "kubernetes.AddonRepository",
+ 'KUBERNETES.BAREMETALNODEPROFILE': "kubernetes.BaremetalNodeProfile",
'KUBERNETES.CATALOG': "kubernetes.Catalog",
'KUBERNETES.CLUSTER': "kubernetes.Cluster",
'KUBERNETES.CLUSTERADDONPROFILE': "kubernetes.ClusterAddonProfile",
@@ -695,6 +701,11 @@ class AdapterHostFcInterfaceRelationship(ModelComposed):
'RESOURCE.LICENSERESOURCECOUNT': "resource.LicenseResourceCount",
'RESOURCE.MEMBERSHIP': "resource.Membership",
'RESOURCE.MEMBERSHIPHOLDER': "resource.MembershipHolder",
+ 'RESOURCEPOOL.LEASE': "resourcepool.Lease",
+ 'RESOURCEPOOL.LEASERESOURCE': "resourcepool.LeaseResource",
+ 'RESOURCEPOOL.POOL': "resourcepool.Pool",
+ 'RESOURCEPOOL.POOLMEMBER': "resourcepool.PoolMember",
+ 'RESOURCEPOOL.UNIVERSE': "resourcepool.Universe",
'RPROXY.REVERSEPROXY': "rproxy.ReverseProxy",
'SDCARD.POLICY': "sdcard.Policy",
'SDWAN.PROFILE': "sdwan.Profile",
@@ -810,6 +821,7 @@ class AdapterHostFcInterfaceRelationship(ModelComposed):
'TASK.NETAPPSCOPEDINVENTORY': "task.NetAppScopedInventory",
'TASK.PUBLICCLOUDSCOPEDINVENTORY': "task.PublicCloudScopedInventory",
'TASK.PURESCOPEDINVENTORY': "task.PureScopedInventory",
+ 'TASK.SERVERSCOPEDINVENTORY': "task.ServerScopedInventory",
'TECHSUPPORTMANAGEMENT.COLLECTIONCONTROLPOLICY': "techsupportmanagement.CollectionControlPolicy",
'TECHSUPPORTMANAGEMENT.DOWNLOAD': "techsupportmanagement.Download",
'TECHSUPPORTMANAGEMENT.TECHSUPPORTBUNDLE': "techsupportmanagement.TechSupportBundle",
@@ -841,6 +853,7 @@ class AdapterHostFcInterfaceRelationship(ModelComposed):
'VIRTUALIZATION.VMWAREVCENTER': "virtualization.VmwareVcenter",
'VIRTUALIZATION.VMWAREVIRTUALDISK': "virtualization.VmwareVirtualDisk",
'VIRTUALIZATION.VMWAREVIRTUALMACHINE': "virtualization.VmwareVirtualMachine",
+ 'VIRTUALIZATION.VMWAREVIRTUALMACHINESNAPSHOT': "virtualization.VmwareVirtualMachineSnapshot",
'VIRTUALIZATION.VMWAREVIRTUALNETWORKINTERFACE': "virtualization.VmwareVirtualNetworkInterface",
'VIRTUALIZATION.VMWAREVIRTUALSWITCH': "virtualization.VmwareVirtualSwitch",
'VMEDIA.POLICY': "vmedia.Policy",
@@ -873,12 +886,14 @@ class AdapterHostFcInterfaceRelationship(ModelComposed):
'WORKFLOW.TASKDEFINITION': "workflow.TaskDefinition",
'WORKFLOW.TASKINFO': "workflow.TaskInfo",
'WORKFLOW.TASKMETADATA': "workflow.TaskMetadata",
+ 'WORKFLOW.TASKNOTIFICATION': "workflow.TaskNotification",
'WORKFLOW.TEMPLATEEVALUATION': "workflow.TemplateEvaluation",
'WORKFLOW.TEMPLATEFUNCTIONMETA': "workflow.TemplateFunctionMeta",
'WORKFLOW.WORKFLOWDEFINITION': "workflow.WorkflowDefinition",
'WORKFLOW.WORKFLOWINFO': "workflow.WorkflowInfo",
'WORKFLOW.WORKFLOWMETA': "workflow.WorkflowMeta",
'WORKFLOW.WORKFLOWMETADATA': "workflow.WorkflowMetadata",
+ 'WORKFLOW.WORKFLOWNOTIFICATION': "workflow.WorkflowNotification",
},
}
diff --git a/intersight/model/adapter_host_fc_interface_response.py b/intersight/model/adapter_host_fc_interface_response.py
index 1f3bd7a044..e32530a2fe 100644
--- a/intersight/model/adapter_host_fc_interface_response.py
+++ b/intersight/model/adapter_host_fc_interface_response.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/adapter_host_iscsi_interface.py b/intersight/model/adapter_host_iscsi_interface.py
index 2aa80e0ba9..85e51c1c4b 100644
--- a/intersight/model/adapter_host_iscsi_interface.py
+++ b/intersight/model/adapter_host_iscsi_interface.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/adapter_host_iscsi_interface_all_of.py b/intersight/model/adapter_host_iscsi_interface_all_of.py
index 805bea7efc..89f4f6e82e 100644
--- a/intersight/model/adapter_host_iscsi_interface_all_of.py
+++ b/intersight/model/adapter_host_iscsi_interface_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/adapter_host_iscsi_interface_list.py b/intersight/model/adapter_host_iscsi_interface_list.py
index 1678902086..725cbb4b57 100644
--- a/intersight/model/adapter_host_iscsi_interface_list.py
+++ b/intersight/model/adapter_host_iscsi_interface_list.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/adapter_host_iscsi_interface_list_all_of.py b/intersight/model/adapter_host_iscsi_interface_list_all_of.py
index c8d10cd9b7..0c1a242afb 100644
--- a/intersight/model/adapter_host_iscsi_interface_list_all_of.py
+++ b/intersight/model/adapter_host_iscsi_interface_list_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/adapter_host_iscsi_interface_relationship.py b/intersight/model/adapter_host_iscsi_interface_relationship.py
index 6de813424b..2eb65ef60a 100644
--- a/intersight/model/adapter_host_iscsi_interface_relationship.py
+++ b/intersight/model/adapter_host_iscsi_interface_relationship.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
@@ -80,6 +80,8 @@ class AdapterHostIscsiInterfaceRelationship(ModelComposed):
},
('object_type',): {
'AAA.AUDITRECORD': "aaa.AuditRecord",
+ 'AAA.RETENTIONCONFIG': "aaa.RetentionConfig",
+ 'AAA.RETENTIONPOLICY': "aaa.RetentionPolicy",
'ACCESS.POLICY': "access.Policy",
'ADAPTER.CONFIGPOLICY': "adapter.ConfigPolicy",
'ADAPTER.EXTETHINTERFACE': "adapter.ExtEthInterface",
@@ -96,6 +98,7 @@ class AdapterHostIscsiInterfaceRelationship(ModelComposed):
'APPLIANCE.DATAEXPORTPOLICY': "appliance.DataExportPolicy",
'APPLIANCE.DEVICECERTIFICATE': "appliance.DeviceCertificate",
'APPLIANCE.DEVICECLAIM': "appliance.DeviceClaim",
+ 'APPLIANCE.DEVICEUPGRADEPOLICY': "appliance.DeviceUpgradePolicy",
'APPLIANCE.DIAGSETTING': "appliance.DiagSetting",
'APPLIANCE.EXTERNALSYSLOGSETTING': "appliance.ExternalSyslogSetting",
'APPLIANCE.FILESYSTEMSTATUS': "appliance.FileSystemStatus",
@@ -144,9 +147,12 @@ class AdapterHostIscsiInterfaceRelationship(ModelComposed):
'BOOT.UEFISHELLDEVICE': "boot.UefiShellDevice",
'BOOT.USBDEVICE': "boot.UsbDevice",
'BOOT.VMEDIADEVICE': "boot.VmediaDevice",
+ 'BULK.EXPORT': "bulk.Export",
+ 'BULK.EXPORTEDITEM': "bulk.ExportedItem",
'BULK.MOCLONER': "bulk.MoCloner",
'BULK.MOMERGER': "bulk.MoMerger",
'BULK.REQUEST': "bulk.Request",
+ 'BULK.SUBREQUESTOBJ': "bulk.SubRequestObj",
'CAPABILITY.ADAPTERUNITDESCRIPTOR': "capability.AdapterUnitDescriptor",
'CAPABILITY.CATALOG': "capability.Catalog",
'CAPABILITY.CHASSISDESCRIPTOR': "capability.ChassisDescriptor",
@@ -210,10 +216,6 @@ class AdapterHostIscsiInterfaceRelationship(ModelComposed):
'COND.HCLSTATUS': "cond.HclStatus",
'COND.HCLSTATUSDETAIL': "cond.HclStatusDetail",
'COND.HCLSTATUSJOB': "cond.HclStatusJob",
- 'CONFIG.EXPORTEDITEM': "config.ExportedItem",
- 'CONFIG.EXPORTER': "config.Exporter",
- 'CONFIG.IMPORTEDITEM': "config.ImportedItem",
- 'CONFIG.IMPORTER': "config.Importer",
'CONNECTORPACK.CONNECTORPACKUPGRADE': "connectorpack.ConnectorPackUpgrade",
'CONNECTORPACK.UPGRADEIMPACT': "connectorpack.UpgradeImpact",
'CRD.CUSTOMRESOURCE': "crd.CustomResource",
@@ -222,6 +224,7 @@ class AdapterHostIscsiInterfaceRelationship(ModelComposed):
'EQUIPMENT.CHASSISIDENTITY': "equipment.ChassisIdentity",
'EQUIPMENT.CHASSISOPERATION': "equipment.ChassisOperation",
'EQUIPMENT.DEVICESUMMARY': "equipment.DeviceSummary",
+ 'EQUIPMENT.EXPANDERMODULE': "equipment.ExpanderModule",
'EQUIPMENT.FAN': "equipment.Fan",
'EQUIPMENT.FANCONTROL': "equipment.FanControl",
'EQUIPMENT.FANMODULE': "equipment.FanModule",
@@ -470,6 +473,7 @@ class AdapterHostIscsiInterfaceRelationship(ModelComposed):
'KUBERNETES.ADDONDEFINITION': "kubernetes.AddonDefinition",
'KUBERNETES.ADDONPOLICY': "kubernetes.AddonPolicy",
'KUBERNETES.ADDONREPOSITORY': "kubernetes.AddonRepository",
+ 'KUBERNETES.BAREMETALNODEPROFILE': "kubernetes.BaremetalNodeProfile",
'KUBERNETES.CATALOG': "kubernetes.Catalog",
'KUBERNETES.CLUSTER': "kubernetes.Cluster",
'KUBERNETES.CLUSTERADDONPROFILE': "kubernetes.ClusterAddonProfile",
@@ -639,6 +643,11 @@ class AdapterHostIscsiInterfaceRelationship(ModelComposed):
'RESOURCE.LICENSERESOURCECOUNT': "resource.LicenseResourceCount",
'RESOURCE.MEMBERSHIP': "resource.Membership",
'RESOURCE.MEMBERSHIPHOLDER': "resource.MembershipHolder",
+ 'RESOURCEPOOL.LEASE': "resourcepool.Lease",
+ 'RESOURCEPOOL.LEASERESOURCE': "resourcepool.LeaseResource",
+ 'RESOURCEPOOL.POOL': "resourcepool.Pool",
+ 'RESOURCEPOOL.POOLMEMBER': "resourcepool.PoolMember",
+ 'RESOURCEPOOL.UNIVERSE': "resourcepool.Universe",
'RPROXY.REVERSEPROXY': "rproxy.ReverseProxy",
'SDCARD.POLICY': "sdcard.Policy",
'SDWAN.PROFILE': "sdwan.Profile",
@@ -754,6 +763,7 @@ class AdapterHostIscsiInterfaceRelationship(ModelComposed):
'TASK.NETAPPSCOPEDINVENTORY': "task.NetAppScopedInventory",
'TASK.PUBLICCLOUDSCOPEDINVENTORY': "task.PublicCloudScopedInventory",
'TASK.PURESCOPEDINVENTORY': "task.PureScopedInventory",
+ 'TASK.SERVERSCOPEDINVENTORY': "task.ServerScopedInventory",
'TECHSUPPORTMANAGEMENT.COLLECTIONCONTROLPOLICY': "techsupportmanagement.CollectionControlPolicy",
'TECHSUPPORTMANAGEMENT.DOWNLOAD': "techsupportmanagement.Download",
'TECHSUPPORTMANAGEMENT.TECHSUPPORTBUNDLE': "techsupportmanagement.TechSupportBundle",
@@ -785,6 +795,7 @@ class AdapterHostIscsiInterfaceRelationship(ModelComposed):
'VIRTUALIZATION.VMWAREVCENTER': "virtualization.VmwareVcenter",
'VIRTUALIZATION.VMWAREVIRTUALDISK': "virtualization.VmwareVirtualDisk",
'VIRTUALIZATION.VMWAREVIRTUALMACHINE': "virtualization.VmwareVirtualMachine",
+ 'VIRTUALIZATION.VMWAREVIRTUALMACHINESNAPSHOT': "virtualization.VmwareVirtualMachineSnapshot",
'VIRTUALIZATION.VMWAREVIRTUALNETWORKINTERFACE': "virtualization.VmwareVirtualNetworkInterface",
'VIRTUALIZATION.VMWAREVIRTUALSWITCH': "virtualization.VmwareVirtualSwitch",
'VMEDIA.POLICY': "vmedia.Policy",
@@ -817,12 +828,14 @@ class AdapterHostIscsiInterfaceRelationship(ModelComposed):
'WORKFLOW.TASKDEFINITION': "workflow.TaskDefinition",
'WORKFLOW.TASKINFO': "workflow.TaskInfo",
'WORKFLOW.TASKMETADATA': "workflow.TaskMetadata",
+ 'WORKFLOW.TASKNOTIFICATION': "workflow.TaskNotification",
'WORKFLOW.TEMPLATEEVALUATION': "workflow.TemplateEvaluation",
'WORKFLOW.TEMPLATEFUNCTIONMETA': "workflow.TemplateFunctionMeta",
'WORKFLOW.WORKFLOWDEFINITION': "workflow.WorkflowDefinition",
'WORKFLOW.WORKFLOWINFO': "workflow.WorkflowInfo",
'WORKFLOW.WORKFLOWMETA': "workflow.WorkflowMeta",
'WORKFLOW.WORKFLOWMETADATA': "workflow.WorkflowMetadata",
+ 'WORKFLOW.WORKFLOWNOTIFICATION': "workflow.WorkflowNotification",
},
}
diff --git a/intersight/model/adapter_host_iscsi_interface_response.py b/intersight/model/adapter_host_iscsi_interface_response.py
index 842bedae72..4b3648dc5a 100644
--- a/intersight/model/adapter_host_iscsi_interface_response.py
+++ b/intersight/model/adapter_host_iscsi_interface_response.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/adapter_port_channel_settings.py b/intersight/model/adapter_port_channel_settings.py
index 90d5614299..82dde652e0 100644
--- a/intersight/model/adapter_port_channel_settings.py
+++ b/intersight/model/adapter_port_channel_settings.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/adapter_port_channel_settings_all_of.py b/intersight/model/adapter_port_channel_settings_all_of.py
index d0fc7545e6..ba6d9932ed 100644
--- a/intersight/model/adapter_port_channel_settings_all_of.py
+++ b/intersight/model/adapter_port_channel_settings_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/adapter_unit.py b/intersight/model/adapter_unit.py
index 42a1bfe50b..87628308bb 100644
--- a/intersight/model/adapter_unit.py
+++ b/intersight/model/adapter_unit.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/adapter_unit_all_of.py b/intersight/model/adapter_unit_all_of.py
index a6f7cdc29f..42c032b712 100644
--- a/intersight/model/adapter_unit_all_of.py
+++ b/intersight/model/adapter_unit_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/adapter_unit_expander.py b/intersight/model/adapter_unit_expander.py
index 36ba54595f..65cbfcb402 100644
--- a/intersight/model/adapter_unit_expander.py
+++ b/intersight/model/adapter_unit_expander.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/adapter_unit_expander_all_of.py b/intersight/model/adapter_unit_expander_all_of.py
index 78c80f3985..da197c7bdd 100644
--- a/intersight/model/adapter_unit_expander_all_of.py
+++ b/intersight/model/adapter_unit_expander_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/adapter_unit_expander_list.py b/intersight/model/adapter_unit_expander_list.py
index 243587b01a..8a473f9a15 100644
--- a/intersight/model/adapter_unit_expander_list.py
+++ b/intersight/model/adapter_unit_expander_list.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/adapter_unit_expander_list_all_of.py b/intersight/model/adapter_unit_expander_list_all_of.py
index 7e817c3a11..3b98cc6e06 100644
--- a/intersight/model/adapter_unit_expander_list_all_of.py
+++ b/intersight/model/adapter_unit_expander_list_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/adapter_unit_expander_relationship.py b/intersight/model/adapter_unit_expander_relationship.py
index daf54e22c9..3d7e01834c 100644
--- a/intersight/model/adapter_unit_expander_relationship.py
+++ b/intersight/model/adapter_unit_expander_relationship.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
@@ -78,6 +78,8 @@ class AdapterUnitExpanderRelationship(ModelComposed):
},
('object_type',): {
'AAA.AUDITRECORD': "aaa.AuditRecord",
+ 'AAA.RETENTIONCONFIG': "aaa.RetentionConfig",
+ 'AAA.RETENTIONPOLICY': "aaa.RetentionPolicy",
'ACCESS.POLICY': "access.Policy",
'ADAPTER.CONFIGPOLICY': "adapter.ConfigPolicy",
'ADAPTER.EXTETHINTERFACE': "adapter.ExtEthInterface",
@@ -94,6 +96,7 @@ class AdapterUnitExpanderRelationship(ModelComposed):
'APPLIANCE.DATAEXPORTPOLICY': "appliance.DataExportPolicy",
'APPLIANCE.DEVICECERTIFICATE': "appliance.DeviceCertificate",
'APPLIANCE.DEVICECLAIM': "appliance.DeviceClaim",
+ 'APPLIANCE.DEVICEUPGRADEPOLICY': "appliance.DeviceUpgradePolicy",
'APPLIANCE.DIAGSETTING': "appliance.DiagSetting",
'APPLIANCE.EXTERNALSYSLOGSETTING': "appliance.ExternalSyslogSetting",
'APPLIANCE.FILESYSTEMSTATUS': "appliance.FileSystemStatus",
@@ -142,9 +145,12 @@ class AdapterUnitExpanderRelationship(ModelComposed):
'BOOT.UEFISHELLDEVICE': "boot.UefiShellDevice",
'BOOT.USBDEVICE': "boot.UsbDevice",
'BOOT.VMEDIADEVICE': "boot.VmediaDevice",
+ 'BULK.EXPORT': "bulk.Export",
+ 'BULK.EXPORTEDITEM': "bulk.ExportedItem",
'BULK.MOCLONER': "bulk.MoCloner",
'BULK.MOMERGER': "bulk.MoMerger",
'BULK.REQUEST': "bulk.Request",
+ 'BULK.SUBREQUESTOBJ': "bulk.SubRequestObj",
'CAPABILITY.ADAPTERUNITDESCRIPTOR': "capability.AdapterUnitDescriptor",
'CAPABILITY.CATALOG': "capability.Catalog",
'CAPABILITY.CHASSISDESCRIPTOR': "capability.ChassisDescriptor",
@@ -208,10 +214,6 @@ class AdapterUnitExpanderRelationship(ModelComposed):
'COND.HCLSTATUS': "cond.HclStatus",
'COND.HCLSTATUSDETAIL': "cond.HclStatusDetail",
'COND.HCLSTATUSJOB': "cond.HclStatusJob",
- 'CONFIG.EXPORTEDITEM': "config.ExportedItem",
- 'CONFIG.EXPORTER': "config.Exporter",
- 'CONFIG.IMPORTEDITEM': "config.ImportedItem",
- 'CONFIG.IMPORTER': "config.Importer",
'CONNECTORPACK.CONNECTORPACKUPGRADE': "connectorpack.ConnectorPackUpgrade",
'CONNECTORPACK.UPGRADEIMPACT': "connectorpack.UpgradeImpact",
'CRD.CUSTOMRESOURCE': "crd.CustomResource",
@@ -220,6 +222,7 @@ class AdapterUnitExpanderRelationship(ModelComposed):
'EQUIPMENT.CHASSISIDENTITY': "equipment.ChassisIdentity",
'EQUIPMENT.CHASSISOPERATION': "equipment.ChassisOperation",
'EQUIPMENT.DEVICESUMMARY': "equipment.DeviceSummary",
+ 'EQUIPMENT.EXPANDERMODULE': "equipment.ExpanderModule",
'EQUIPMENT.FAN': "equipment.Fan",
'EQUIPMENT.FANCONTROL': "equipment.FanControl",
'EQUIPMENT.FANMODULE': "equipment.FanModule",
@@ -468,6 +471,7 @@ class AdapterUnitExpanderRelationship(ModelComposed):
'KUBERNETES.ADDONDEFINITION': "kubernetes.AddonDefinition",
'KUBERNETES.ADDONPOLICY': "kubernetes.AddonPolicy",
'KUBERNETES.ADDONREPOSITORY': "kubernetes.AddonRepository",
+ 'KUBERNETES.BAREMETALNODEPROFILE': "kubernetes.BaremetalNodeProfile",
'KUBERNETES.CATALOG': "kubernetes.Catalog",
'KUBERNETES.CLUSTER': "kubernetes.Cluster",
'KUBERNETES.CLUSTERADDONPROFILE': "kubernetes.ClusterAddonProfile",
@@ -637,6 +641,11 @@ class AdapterUnitExpanderRelationship(ModelComposed):
'RESOURCE.LICENSERESOURCECOUNT': "resource.LicenseResourceCount",
'RESOURCE.MEMBERSHIP': "resource.Membership",
'RESOURCE.MEMBERSHIPHOLDER': "resource.MembershipHolder",
+ 'RESOURCEPOOL.LEASE': "resourcepool.Lease",
+ 'RESOURCEPOOL.LEASERESOURCE': "resourcepool.LeaseResource",
+ 'RESOURCEPOOL.POOL': "resourcepool.Pool",
+ 'RESOURCEPOOL.POOLMEMBER': "resourcepool.PoolMember",
+ 'RESOURCEPOOL.UNIVERSE': "resourcepool.Universe",
'RPROXY.REVERSEPROXY': "rproxy.ReverseProxy",
'SDCARD.POLICY': "sdcard.Policy",
'SDWAN.PROFILE': "sdwan.Profile",
@@ -752,6 +761,7 @@ class AdapterUnitExpanderRelationship(ModelComposed):
'TASK.NETAPPSCOPEDINVENTORY': "task.NetAppScopedInventory",
'TASK.PUBLICCLOUDSCOPEDINVENTORY': "task.PublicCloudScopedInventory",
'TASK.PURESCOPEDINVENTORY': "task.PureScopedInventory",
+ 'TASK.SERVERSCOPEDINVENTORY': "task.ServerScopedInventory",
'TECHSUPPORTMANAGEMENT.COLLECTIONCONTROLPOLICY': "techsupportmanagement.CollectionControlPolicy",
'TECHSUPPORTMANAGEMENT.DOWNLOAD': "techsupportmanagement.Download",
'TECHSUPPORTMANAGEMENT.TECHSUPPORTBUNDLE': "techsupportmanagement.TechSupportBundle",
@@ -783,6 +793,7 @@ class AdapterUnitExpanderRelationship(ModelComposed):
'VIRTUALIZATION.VMWAREVCENTER': "virtualization.VmwareVcenter",
'VIRTUALIZATION.VMWAREVIRTUALDISK': "virtualization.VmwareVirtualDisk",
'VIRTUALIZATION.VMWAREVIRTUALMACHINE': "virtualization.VmwareVirtualMachine",
+ 'VIRTUALIZATION.VMWAREVIRTUALMACHINESNAPSHOT': "virtualization.VmwareVirtualMachineSnapshot",
'VIRTUALIZATION.VMWAREVIRTUALNETWORKINTERFACE': "virtualization.VmwareVirtualNetworkInterface",
'VIRTUALIZATION.VMWAREVIRTUALSWITCH': "virtualization.VmwareVirtualSwitch",
'VMEDIA.POLICY': "vmedia.Policy",
@@ -815,12 +826,14 @@ class AdapterUnitExpanderRelationship(ModelComposed):
'WORKFLOW.TASKDEFINITION': "workflow.TaskDefinition",
'WORKFLOW.TASKINFO': "workflow.TaskInfo",
'WORKFLOW.TASKMETADATA': "workflow.TaskMetadata",
+ 'WORKFLOW.TASKNOTIFICATION': "workflow.TaskNotification",
'WORKFLOW.TEMPLATEEVALUATION': "workflow.TemplateEvaluation",
'WORKFLOW.TEMPLATEFUNCTIONMETA': "workflow.TemplateFunctionMeta",
'WORKFLOW.WORKFLOWDEFINITION': "workflow.WorkflowDefinition",
'WORKFLOW.WORKFLOWINFO': "workflow.WorkflowInfo",
'WORKFLOW.WORKFLOWMETA': "workflow.WorkflowMeta",
'WORKFLOW.WORKFLOWMETADATA': "workflow.WorkflowMetadata",
+ 'WORKFLOW.WORKFLOWNOTIFICATION': "workflow.WorkflowNotification",
},
}
diff --git a/intersight/model/adapter_unit_expander_response.py b/intersight/model/adapter_unit_expander_response.py
index 2890c30df7..41769f6986 100644
--- a/intersight/model/adapter_unit_expander_response.py
+++ b/intersight/model/adapter_unit_expander_response.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/adapter_unit_list.py b/intersight/model/adapter_unit_list.py
index ee15d06e52..45e5298d8e 100644
--- a/intersight/model/adapter_unit_list.py
+++ b/intersight/model/adapter_unit_list.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/adapter_unit_list_all_of.py b/intersight/model/adapter_unit_list_all_of.py
index 78dc18c2b1..994cc9a975 100644
--- a/intersight/model/adapter_unit_list_all_of.py
+++ b/intersight/model/adapter_unit_list_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/adapter_unit_relationship.py b/intersight/model/adapter_unit_relationship.py
index 259684fe96..eb413cee10 100644
--- a/intersight/model/adapter_unit_relationship.py
+++ b/intersight/model/adapter_unit_relationship.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
@@ -94,6 +94,8 @@ class AdapterUnitRelationship(ModelComposed):
},
('object_type',): {
'AAA.AUDITRECORD': "aaa.AuditRecord",
+ 'AAA.RETENTIONCONFIG': "aaa.RetentionConfig",
+ 'AAA.RETENTIONPOLICY': "aaa.RetentionPolicy",
'ACCESS.POLICY': "access.Policy",
'ADAPTER.CONFIGPOLICY': "adapter.ConfigPolicy",
'ADAPTER.EXTETHINTERFACE': "adapter.ExtEthInterface",
@@ -110,6 +112,7 @@ class AdapterUnitRelationship(ModelComposed):
'APPLIANCE.DATAEXPORTPOLICY': "appliance.DataExportPolicy",
'APPLIANCE.DEVICECERTIFICATE': "appliance.DeviceCertificate",
'APPLIANCE.DEVICECLAIM': "appliance.DeviceClaim",
+ 'APPLIANCE.DEVICEUPGRADEPOLICY': "appliance.DeviceUpgradePolicy",
'APPLIANCE.DIAGSETTING': "appliance.DiagSetting",
'APPLIANCE.EXTERNALSYSLOGSETTING': "appliance.ExternalSyslogSetting",
'APPLIANCE.FILESYSTEMSTATUS': "appliance.FileSystemStatus",
@@ -158,9 +161,12 @@ class AdapterUnitRelationship(ModelComposed):
'BOOT.UEFISHELLDEVICE': "boot.UefiShellDevice",
'BOOT.USBDEVICE': "boot.UsbDevice",
'BOOT.VMEDIADEVICE': "boot.VmediaDevice",
+ 'BULK.EXPORT': "bulk.Export",
+ 'BULK.EXPORTEDITEM': "bulk.ExportedItem",
'BULK.MOCLONER': "bulk.MoCloner",
'BULK.MOMERGER': "bulk.MoMerger",
'BULK.REQUEST': "bulk.Request",
+ 'BULK.SUBREQUESTOBJ': "bulk.SubRequestObj",
'CAPABILITY.ADAPTERUNITDESCRIPTOR': "capability.AdapterUnitDescriptor",
'CAPABILITY.CATALOG': "capability.Catalog",
'CAPABILITY.CHASSISDESCRIPTOR': "capability.ChassisDescriptor",
@@ -224,10 +230,6 @@ class AdapterUnitRelationship(ModelComposed):
'COND.HCLSTATUS': "cond.HclStatus",
'COND.HCLSTATUSDETAIL': "cond.HclStatusDetail",
'COND.HCLSTATUSJOB': "cond.HclStatusJob",
- 'CONFIG.EXPORTEDITEM': "config.ExportedItem",
- 'CONFIG.EXPORTER': "config.Exporter",
- 'CONFIG.IMPORTEDITEM': "config.ImportedItem",
- 'CONFIG.IMPORTER': "config.Importer",
'CONNECTORPACK.CONNECTORPACKUPGRADE': "connectorpack.ConnectorPackUpgrade",
'CONNECTORPACK.UPGRADEIMPACT': "connectorpack.UpgradeImpact",
'CRD.CUSTOMRESOURCE': "crd.CustomResource",
@@ -236,6 +238,7 @@ class AdapterUnitRelationship(ModelComposed):
'EQUIPMENT.CHASSISIDENTITY': "equipment.ChassisIdentity",
'EQUIPMENT.CHASSISOPERATION': "equipment.ChassisOperation",
'EQUIPMENT.DEVICESUMMARY': "equipment.DeviceSummary",
+ 'EQUIPMENT.EXPANDERMODULE': "equipment.ExpanderModule",
'EQUIPMENT.FAN': "equipment.Fan",
'EQUIPMENT.FANCONTROL': "equipment.FanControl",
'EQUIPMENT.FANMODULE': "equipment.FanModule",
@@ -484,6 +487,7 @@ class AdapterUnitRelationship(ModelComposed):
'KUBERNETES.ADDONDEFINITION': "kubernetes.AddonDefinition",
'KUBERNETES.ADDONPOLICY': "kubernetes.AddonPolicy",
'KUBERNETES.ADDONREPOSITORY': "kubernetes.AddonRepository",
+ 'KUBERNETES.BAREMETALNODEPROFILE': "kubernetes.BaremetalNodeProfile",
'KUBERNETES.CATALOG': "kubernetes.Catalog",
'KUBERNETES.CLUSTER': "kubernetes.Cluster",
'KUBERNETES.CLUSTERADDONPROFILE': "kubernetes.ClusterAddonProfile",
@@ -653,6 +657,11 @@ class AdapterUnitRelationship(ModelComposed):
'RESOURCE.LICENSERESOURCECOUNT': "resource.LicenseResourceCount",
'RESOURCE.MEMBERSHIP': "resource.Membership",
'RESOURCE.MEMBERSHIPHOLDER': "resource.MembershipHolder",
+ 'RESOURCEPOOL.LEASE': "resourcepool.Lease",
+ 'RESOURCEPOOL.LEASERESOURCE': "resourcepool.LeaseResource",
+ 'RESOURCEPOOL.POOL': "resourcepool.Pool",
+ 'RESOURCEPOOL.POOLMEMBER': "resourcepool.PoolMember",
+ 'RESOURCEPOOL.UNIVERSE': "resourcepool.Universe",
'RPROXY.REVERSEPROXY': "rproxy.ReverseProxy",
'SDCARD.POLICY': "sdcard.Policy",
'SDWAN.PROFILE': "sdwan.Profile",
@@ -768,6 +777,7 @@ class AdapterUnitRelationship(ModelComposed):
'TASK.NETAPPSCOPEDINVENTORY': "task.NetAppScopedInventory",
'TASK.PUBLICCLOUDSCOPEDINVENTORY': "task.PublicCloudScopedInventory",
'TASK.PURESCOPEDINVENTORY': "task.PureScopedInventory",
+ 'TASK.SERVERSCOPEDINVENTORY': "task.ServerScopedInventory",
'TECHSUPPORTMANAGEMENT.COLLECTIONCONTROLPOLICY': "techsupportmanagement.CollectionControlPolicy",
'TECHSUPPORTMANAGEMENT.DOWNLOAD': "techsupportmanagement.Download",
'TECHSUPPORTMANAGEMENT.TECHSUPPORTBUNDLE': "techsupportmanagement.TechSupportBundle",
@@ -799,6 +809,7 @@ class AdapterUnitRelationship(ModelComposed):
'VIRTUALIZATION.VMWAREVCENTER': "virtualization.VmwareVcenter",
'VIRTUALIZATION.VMWAREVIRTUALDISK': "virtualization.VmwareVirtualDisk",
'VIRTUALIZATION.VMWAREVIRTUALMACHINE': "virtualization.VmwareVirtualMachine",
+ 'VIRTUALIZATION.VMWAREVIRTUALMACHINESNAPSHOT': "virtualization.VmwareVirtualMachineSnapshot",
'VIRTUALIZATION.VMWAREVIRTUALNETWORKINTERFACE': "virtualization.VmwareVirtualNetworkInterface",
'VIRTUALIZATION.VMWAREVIRTUALSWITCH': "virtualization.VmwareVirtualSwitch",
'VMEDIA.POLICY': "vmedia.Policy",
@@ -831,12 +842,14 @@ class AdapterUnitRelationship(ModelComposed):
'WORKFLOW.TASKDEFINITION': "workflow.TaskDefinition",
'WORKFLOW.TASKINFO': "workflow.TaskInfo",
'WORKFLOW.TASKMETADATA': "workflow.TaskMetadata",
+ 'WORKFLOW.TASKNOTIFICATION': "workflow.TaskNotification",
'WORKFLOW.TEMPLATEEVALUATION': "workflow.TemplateEvaluation",
'WORKFLOW.TEMPLATEFUNCTIONMETA': "workflow.TemplateFunctionMeta",
'WORKFLOW.WORKFLOWDEFINITION': "workflow.WorkflowDefinition",
'WORKFLOW.WORKFLOWINFO': "workflow.WorkflowInfo",
'WORKFLOW.WORKFLOWMETA': "workflow.WorkflowMeta",
'WORKFLOW.WORKFLOWMETADATA': "workflow.WorkflowMetadata",
+ 'WORKFLOW.WORKFLOWNOTIFICATION': "workflow.WorkflowNotification",
},
}
diff --git a/intersight/model/adapter_unit_response.py b/intersight/model/adapter_unit_response.py
index b16c4a217e..e5a070d036 100644
--- a/intersight/model/adapter_unit_response.py
+++ b/intersight/model/adapter_unit_response.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/appliance_api_status.py b/intersight/model/appliance_api_status.py
index 6f10a48652..b3c7ccfaff 100644
--- a/intersight/model/appliance_api_status.py
+++ b/intersight/model/appliance_api_status.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/appliance_api_status_all_of.py b/intersight/model/appliance_api_status_all_of.py
index c6c2dde320..7ad4ca9f92 100644
--- a/intersight/model/appliance_api_status_all_of.py
+++ b/intersight/model/appliance_api_status_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/appliance_app_status.py b/intersight/model/appliance_app_status.py
index 1503b5c3f8..9cf7bf2383 100644
--- a/intersight/model/appliance_app_status.py
+++ b/intersight/model/appliance_app_status.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/appliance_app_status_all_of.py b/intersight/model/appliance_app_status_all_of.py
index 8f52d50eca..7378be6a9a 100644
--- a/intersight/model/appliance_app_status_all_of.py
+++ b/intersight/model/appliance_app_status_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/appliance_app_status_list.py b/intersight/model/appliance_app_status_list.py
index 519eea1b64..d86cb19634 100644
--- a/intersight/model/appliance_app_status_list.py
+++ b/intersight/model/appliance_app_status_list.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/appliance_app_status_list_all_of.py b/intersight/model/appliance_app_status_list_all_of.py
index cb21030992..f9a2c3d08a 100644
--- a/intersight/model/appliance_app_status_list_all_of.py
+++ b/intersight/model/appliance_app_status_list_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/appliance_app_status_relationship.py b/intersight/model/appliance_app_status_relationship.py
index f3ce818cb1..cc9ec8157e 100644
--- a/intersight/model/appliance_app_status_relationship.py
+++ b/intersight/model/appliance_app_status_relationship.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
@@ -86,6 +86,8 @@ class ApplianceAppStatusRelationship(ModelComposed):
},
('object_type',): {
'AAA.AUDITRECORD': "aaa.AuditRecord",
+ 'AAA.RETENTIONCONFIG': "aaa.RetentionConfig",
+ 'AAA.RETENTIONPOLICY': "aaa.RetentionPolicy",
'ACCESS.POLICY': "access.Policy",
'ADAPTER.CONFIGPOLICY': "adapter.ConfigPolicy",
'ADAPTER.EXTETHINTERFACE': "adapter.ExtEthInterface",
@@ -102,6 +104,7 @@ class ApplianceAppStatusRelationship(ModelComposed):
'APPLIANCE.DATAEXPORTPOLICY': "appliance.DataExportPolicy",
'APPLIANCE.DEVICECERTIFICATE': "appliance.DeviceCertificate",
'APPLIANCE.DEVICECLAIM': "appliance.DeviceClaim",
+ 'APPLIANCE.DEVICEUPGRADEPOLICY': "appliance.DeviceUpgradePolicy",
'APPLIANCE.DIAGSETTING': "appliance.DiagSetting",
'APPLIANCE.EXTERNALSYSLOGSETTING': "appliance.ExternalSyslogSetting",
'APPLIANCE.FILESYSTEMSTATUS': "appliance.FileSystemStatus",
@@ -150,9 +153,12 @@ class ApplianceAppStatusRelationship(ModelComposed):
'BOOT.UEFISHELLDEVICE': "boot.UefiShellDevice",
'BOOT.USBDEVICE': "boot.UsbDevice",
'BOOT.VMEDIADEVICE': "boot.VmediaDevice",
+ 'BULK.EXPORT': "bulk.Export",
+ 'BULK.EXPORTEDITEM': "bulk.ExportedItem",
'BULK.MOCLONER': "bulk.MoCloner",
'BULK.MOMERGER': "bulk.MoMerger",
'BULK.REQUEST': "bulk.Request",
+ 'BULK.SUBREQUESTOBJ': "bulk.SubRequestObj",
'CAPABILITY.ADAPTERUNITDESCRIPTOR': "capability.AdapterUnitDescriptor",
'CAPABILITY.CATALOG': "capability.Catalog",
'CAPABILITY.CHASSISDESCRIPTOR': "capability.ChassisDescriptor",
@@ -216,10 +222,6 @@ class ApplianceAppStatusRelationship(ModelComposed):
'COND.HCLSTATUS': "cond.HclStatus",
'COND.HCLSTATUSDETAIL': "cond.HclStatusDetail",
'COND.HCLSTATUSJOB': "cond.HclStatusJob",
- 'CONFIG.EXPORTEDITEM': "config.ExportedItem",
- 'CONFIG.EXPORTER': "config.Exporter",
- 'CONFIG.IMPORTEDITEM': "config.ImportedItem",
- 'CONFIG.IMPORTER': "config.Importer",
'CONNECTORPACK.CONNECTORPACKUPGRADE': "connectorpack.ConnectorPackUpgrade",
'CONNECTORPACK.UPGRADEIMPACT': "connectorpack.UpgradeImpact",
'CRD.CUSTOMRESOURCE': "crd.CustomResource",
@@ -228,6 +230,7 @@ class ApplianceAppStatusRelationship(ModelComposed):
'EQUIPMENT.CHASSISIDENTITY': "equipment.ChassisIdentity",
'EQUIPMENT.CHASSISOPERATION': "equipment.ChassisOperation",
'EQUIPMENT.DEVICESUMMARY': "equipment.DeviceSummary",
+ 'EQUIPMENT.EXPANDERMODULE': "equipment.ExpanderModule",
'EQUIPMENT.FAN': "equipment.Fan",
'EQUIPMENT.FANCONTROL': "equipment.FanControl",
'EQUIPMENT.FANMODULE': "equipment.FanModule",
@@ -476,6 +479,7 @@ class ApplianceAppStatusRelationship(ModelComposed):
'KUBERNETES.ADDONDEFINITION': "kubernetes.AddonDefinition",
'KUBERNETES.ADDONPOLICY': "kubernetes.AddonPolicy",
'KUBERNETES.ADDONREPOSITORY': "kubernetes.AddonRepository",
+ 'KUBERNETES.BAREMETALNODEPROFILE': "kubernetes.BaremetalNodeProfile",
'KUBERNETES.CATALOG': "kubernetes.Catalog",
'KUBERNETES.CLUSTER': "kubernetes.Cluster",
'KUBERNETES.CLUSTERADDONPROFILE': "kubernetes.ClusterAddonProfile",
@@ -645,6 +649,11 @@ class ApplianceAppStatusRelationship(ModelComposed):
'RESOURCE.LICENSERESOURCECOUNT': "resource.LicenseResourceCount",
'RESOURCE.MEMBERSHIP': "resource.Membership",
'RESOURCE.MEMBERSHIPHOLDER': "resource.MembershipHolder",
+ 'RESOURCEPOOL.LEASE': "resourcepool.Lease",
+ 'RESOURCEPOOL.LEASERESOURCE': "resourcepool.LeaseResource",
+ 'RESOURCEPOOL.POOL': "resourcepool.Pool",
+ 'RESOURCEPOOL.POOLMEMBER': "resourcepool.PoolMember",
+ 'RESOURCEPOOL.UNIVERSE': "resourcepool.Universe",
'RPROXY.REVERSEPROXY': "rproxy.ReverseProxy",
'SDCARD.POLICY': "sdcard.Policy",
'SDWAN.PROFILE': "sdwan.Profile",
@@ -760,6 +769,7 @@ class ApplianceAppStatusRelationship(ModelComposed):
'TASK.NETAPPSCOPEDINVENTORY': "task.NetAppScopedInventory",
'TASK.PUBLICCLOUDSCOPEDINVENTORY': "task.PublicCloudScopedInventory",
'TASK.PURESCOPEDINVENTORY': "task.PureScopedInventory",
+ 'TASK.SERVERSCOPEDINVENTORY': "task.ServerScopedInventory",
'TECHSUPPORTMANAGEMENT.COLLECTIONCONTROLPOLICY': "techsupportmanagement.CollectionControlPolicy",
'TECHSUPPORTMANAGEMENT.DOWNLOAD': "techsupportmanagement.Download",
'TECHSUPPORTMANAGEMENT.TECHSUPPORTBUNDLE': "techsupportmanagement.TechSupportBundle",
@@ -791,6 +801,7 @@ class ApplianceAppStatusRelationship(ModelComposed):
'VIRTUALIZATION.VMWAREVCENTER': "virtualization.VmwareVcenter",
'VIRTUALIZATION.VMWAREVIRTUALDISK': "virtualization.VmwareVirtualDisk",
'VIRTUALIZATION.VMWAREVIRTUALMACHINE': "virtualization.VmwareVirtualMachine",
+ 'VIRTUALIZATION.VMWAREVIRTUALMACHINESNAPSHOT': "virtualization.VmwareVirtualMachineSnapshot",
'VIRTUALIZATION.VMWAREVIRTUALNETWORKINTERFACE': "virtualization.VmwareVirtualNetworkInterface",
'VIRTUALIZATION.VMWAREVIRTUALSWITCH': "virtualization.VmwareVirtualSwitch",
'VMEDIA.POLICY': "vmedia.Policy",
@@ -823,12 +834,14 @@ class ApplianceAppStatusRelationship(ModelComposed):
'WORKFLOW.TASKDEFINITION': "workflow.TaskDefinition",
'WORKFLOW.TASKINFO': "workflow.TaskInfo",
'WORKFLOW.TASKMETADATA': "workflow.TaskMetadata",
+ 'WORKFLOW.TASKNOTIFICATION': "workflow.TaskNotification",
'WORKFLOW.TEMPLATEEVALUATION': "workflow.TemplateEvaluation",
'WORKFLOW.TEMPLATEFUNCTIONMETA': "workflow.TemplateFunctionMeta",
'WORKFLOW.WORKFLOWDEFINITION': "workflow.WorkflowDefinition",
'WORKFLOW.WORKFLOWINFO': "workflow.WorkflowInfo",
'WORKFLOW.WORKFLOWMETA': "workflow.WorkflowMeta",
'WORKFLOW.WORKFLOWMETADATA': "workflow.WorkflowMetadata",
+ 'WORKFLOW.WORKFLOWNOTIFICATION': "workflow.WorkflowNotification",
},
}
diff --git a/intersight/model/appliance_app_status_response.py b/intersight/model/appliance_app_status_response.py
index 54194092b2..bb3b8ede2f 100644
--- a/intersight/model/appliance_app_status_response.py
+++ b/intersight/model/appliance_app_status_response.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/appliance_auto_rma_policy.py b/intersight/model/appliance_auto_rma_policy.py
index 932736d49d..e0ee607399 100644
--- a/intersight/model/appliance_auto_rma_policy.py
+++ b/intersight/model/appliance_auto_rma_policy.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/appliance_auto_rma_policy_all_of.py b/intersight/model/appliance_auto_rma_policy_all_of.py
index bf8665bb89..00805cc69f 100644
--- a/intersight/model/appliance_auto_rma_policy_all_of.py
+++ b/intersight/model/appliance_auto_rma_policy_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/appliance_auto_rma_policy_list.py b/intersight/model/appliance_auto_rma_policy_list.py
index 63bd12948a..ddc355e126 100644
--- a/intersight/model/appliance_auto_rma_policy_list.py
+++ b/intersight/model/appliance_auto_rma_policy_list.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/appliance_auto_rma_policy_list_all_of.py b/intersight/model/appliance_auto_rma_policy_list_all_of.py
index eb9c5b732f..7c32e0d062 100644
--- a/intersight/model/appliance_auto_rma_policy_list_all_of.py
+++ b/intersight/model/appliance_auto_rma_policy_list_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/appliance_auto_rma_policy_response.py b/intersight/model/appliance_auto_rma_policy_response.py
index 86037f3d39..e6be29b454 100644
--- a/intersight/model/appliance_auto_rma_policy_response.py
+++ b/intersight/model/appliance_auto_rma_policy_response.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/appliance_backup.py b/intersight/model/appliance_backup.py
index 9c4b287aca..7ea9584d1b 100644
--- a/intersight/model/appliance_backup.py
+++ b/intersight/model/appliance_backup.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/appliance_backup_all_of.py b/intersight/model/appliance_backup_all_of.py
index 7872ec78df..0897c81dfd 100644
--- a/intersight/model/appliance_backup_all_of.py
+++ b/intersight/model/appliance_backup_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/appliance_backup_base.py b/intersight/model/appliance_backup_base.py
index 92efb39cd1..6a161dad88 100644
--- a/intersight/model/appliance_backup_base.py
+++ b/intersight/model/appliance_backup_base.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/appliance_backup_base_all_of.py b/intersight/model/appliance_backup_base_all_of.py
index edd9811cbc..491c28c05e 100644
--- a/intersight/model/appliance_backup_base_all_of.py
+++ b/intersight/model/appliance_backup_base_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/appliance_backup_list.py b/intersight/model/appliance_backup_list.py
index a8b2094762..fe04c02f58 100644
--- a/intersight/model/appliance_backup_list.py
+++ b/intersight/model/appliance_backup_list.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/appliance_backup_list_all_of.py b/intersight/model/appliance_backup_list_all_of.py
index 822d21de4d..f3f02ba387 100644
--- a/intersight/model/appliance_backup_list_all_of.py
+++ b/intersight/model/appliance_backup_list_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/appliance_backup_policy.py b/intersight/model/appliance_backup_policy.py
index c592903bc7..72e53ac8b8 100644
--- a/intersight/model/appliance_backup_policy.py
+++ b/intersight/model/appliance_backup_policy.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/appliance_backup_policy_all_of.py b/intersight/model/appliance_backup_policy_all_of.py
index 4cf6c98a55..f6a6abf9a2 100644
--- a/intersight/model/appliance_backup_policy_all_of.py
+++ b/intersight/model/appliance_backup_policy_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/appliance_backup_policy_list.py b/intersight/model/appliance_backup_policy_list.py
index de6f7a0ad8..f0a8b3614c 100644
--- a/intersight/model/appliance_backup_policy_list.py
+++ b/intersight/model/appliance_backup_policy_list.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/appliance_backup_policy_list_all_of.py b/intersight/model/appliance_backup_policy_list_all_of.py
index 8e16a30d70..102ddd2c60 100644
--- a/intersight/model/appliance_backup_policy_list_all_of.py
+++ b/intersight/model/appliance_backup_policy_list_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/appliance_backup_policy_response.py b/intersight/model/appliance_backup_policy_response.py
index cc3fc250a8..aefe4f1d7d 100644
--- a/intersight/model/appliance_backup_policy_response.py
+++ b/intersight/model/appliance_backup_policy_response.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/appliance_backup_response.py b/intersight/model/appliance_backup_response.py
index 12b8890993..93501df250 100644
--- a/intersight/model/appliance_backup_response.py
+++ b/intersight/model/appliance_backup_response.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/appliance_cert_renewal_phase.py b/intersight/model/appliance_cert_renewal_phase.py
index bf41b96b3c..689da0f745 100644
--- a/intersight/model/appliance_cert_renewal_phase.py
+++ b/intersight/model/appliance_cert_renewal_phase.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/appliance_cert_renewal_phase_all_of.py b/intersight/model/appliance_cert_renewal_phase_all_of.py
index 125600da5a..5f36974f79 100644
--- a/intersight/model/appliance_cert_renewal_phase_all_of.py
+++ b/intersight/model/appliance_cert_renewal_phase_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/appliance_certificate_setting.py b/intersight/model/appliance_certificate_setting.py
index c7b15074aa..954deb07d5 100644
--- a/intersight/model/appliance_certificate_setting.py
+++ b/intersight/model/appliance_certificate_setting.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/appliance_certificate_setting_all_of.py b/intersight/model/appliance_certificate_setting_all_of.py
index 536adf7c8d..bdbe109e66 100644
--- a/intersight/model/appliance_certificate_setting_all_of.py
+++ b/intersight/model/appliance_certificate_setting_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/appliance_certificate_setting_list.py b/intersight/model/appliance_certificate_setting_list.py
index 3da0a53342..17eac3abfb 100644
--- a/intersight/model/appliance_certificate_setting_list.py
+++ b/intersight/model/appliance_certificate_setting_list.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/appliance_certificate_setting_list_all_of.py b/intersight/model/appliance_certificate_setting_list_all_of.py
index b9b33c879a..ae9262f1bb 100644
--- a/intersight/model/appliance_certificate_setting_list_all_of.py
+++ b/intersight/model/appliance_certificate_setting_list_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/appliance_certificate_setting_response.py b/intersight/model/appliance_certificate_setting_response.py
index e50bea3da7..70292f7924 100644
--- a/intersight/model/appliance_certificate_setting_response.py
+++ b/intersight/model/appliance_certificate_setting_response.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/appliance_data_export_policy.py b/intersight/model/appliance_data_export_policy.py
index fca7a587a9..86a9b7cc3c 100644
--- a/intersight/model/appliance_data_export_policy.py
+++ b/intersight/model/appliance_data_export_policy.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/appliance_data_export_policy_all_of.py b/intersight/model/appliance_data_export_policy_all_of.py
index e7dfca35af..69a4d54174 100644
--- a/intersight/model/appliance_data_export_policy_all_of.py
+++ b/intersight/model/appliance_data_export_policy_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/appliance_data_export_policy_list.py b/intersight/model/appliance_data_export_policy_list.py
index c06a57318f..7dd6786fb4 100644
--- a/intersight/model/appliance_data_export_policy_list.py
+++ b/intersight/model/appliance_data_export_policy_list.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/appliance_data_export_policy_list_all_of.py b/intersight/model/appliance_data_export_policy_list_all_of.py
index 961513fbb3..c1c20fd830 100644
--- a/intersight/model/appliance_data_export_policy_list_all_of.py
+++ b/intersight/model/appliance_data_export_policy_list_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/appliance_data_export_policy_relationship.py b/intersight/model/appliance_data_export_policy_relationship.py
index 1979559070..a75cdc7e4c 100644
--- a/intersight/model/appliance_data_export_policy_relationship.py
+++ b/intersight/model/appliance_data_export_policy_relationship.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
@@ -74,6 +74,8 @@ class ApplianceDataExportPolicyRelationship(ModelComposed):
},
('object_type',): {
'AAA.AUDITRECORD': "aaa.AuditRecord",
+ 'AAA.RETENTIONCONFIG': "aaa.RetentionConfig",
+ 'AAA.RETENTIONPOLICY': "aaa.RetentionPolicy",
'ACCESS.POLICY': "access.Policy",
'ADAPTER.CONFIGPOLICY': "adapter.ConfigPolicy",
'ADAPTER.EXTETHINTERFACE': "adapter.ExtEthInterface",
@@ -90,6 +92,7 @@ class ApplianceDataExportPolicyRelationship(ModelComposed):
'APPLIANCE.DATAEXPORTPOLICY': "appliance.DataExportPolicy",
'APPLIANCE.DEVICECERTIFICATE': "appliance.DeviceCertificate",
'APPLIANCE.DEVICECLAIM': "appliance.DeviceClaim",
+ 'APPLIANCE.DEVICEUPGRADEPOLICY': "appliance.DeviceUpgradePolicy",
'APPLIANCE.DIAGSETTING': "appliance.DiagSetting",
'APPLIANCE.EXTERNALSYSLOGSETTING': "appliance.ExternalSyslogSetting",
'APPLIANCE.FILESYSTEMSTATUS': "appliance.FileSystemStatus",
@@ -138,9 +141,12 @@ class ApplianceDataExportPolicyRelationship(ModelComposed):
'BOOT.UEFISHELLDEVICE': "boot.UefiShellDevice",
'BOOT.USBDEVICE': "boot.UsbDevice",
'BOOT.VMEDIADEVICE': "boot.VmediaDevice",
+ 'BULK.EXPORT': "bulk.Export",
+ 'BULK.EXPORTEDITEM': "bulk.ExportedItem",
'BULK.MOCLONER': "bulk.MoCloner",
'BULK.MOMERGER': "bulk.MoMerger",
'BULK.REQUEST': "bulk.Request",
+ 'BULK.SUBREQUESTOBJ': "bulk.SubRequestObj",
'CAPABILITY.ADAPTERUNITDESCRIPTOR': "capability.AdapterUnitDescriptor",
'CAPABILITY.CATALOG': "capability.Catalog",
'CAPABILITY.CHASSISDESCRIPTOR': "capability.ChassisDescriptor",
@@ -204,10 +210,6 @@ class ApplianceDataExportPolicyRelationship(ModelComposed):
'COND.HCLSTATUS': "cond.HclStatus",
'COND.HCLSTATUSDETAIL': "cond.HclStatusDetail",
'COND.HCLSTATUSJOB': "cond.HclStatusJob",
- 'CONFIG.EXPORTEDITEM': "config.ExportedItem",
- 'CONFIG.EXPORTER': "config.Exporter",
- 'CONFIG.IMPORTEDITEM': "config.ImportedItem",
- 'CONFIG.IMPORTER': "config.Importer",
'CONNECTORPACK.CONNECTORPACKUPGRADE': "connectorpack.ConnectorPackUpgrade",
'CONNECTORPACK.UPGRADEIMPACT': "connectorpack.UpgradeImpact",
'CRD.CUSTOMRESOURCE': "crd.CustomResource",
@@ -216,6 +218,7 @@ class ApplianceDataExportPolicyRelationship(ModelComposed):
'EQUIPMENT.CHASSISIDENTITY': "equipment.ChassisIdentity",
'EQUIPMENT.CHASSISOPERATION': "equipment.ChassisOperation",
'EQUIPMENT.DEVICESUMMARY': "equipment.DeviceSummary",
+ 'EQUIPMENT.EXPANDERMODULE': "equipment.ExpanderModule",
'EQUIPMENT.FAN': "equipment.Fan",
'EQUIPMENT.FANCONTROL': "equipment.FanControl",
'EQUIPMENT.FANMODULE': "equipment.FanModule",
@@ -464,6 +467,7 @@ class ApplianceDataExportPolicyRelationship(ModelComposed):
'KUBERNETES.ADDONDEFINITION': "kubernetes.AddonDefinition",
'KUBERNETES.ADDONPOLICY': "kubernetes.AddonPolicy",
'KUBERNETES.ADDONREPOSITORY': "kubernetes.AddonRepository",
+ 'KUBERNETES.BAREMETALNODEPROFILE': "kubernetes.BaremetalNodeProfile",
'KUBERNETES.CATALOG': "kubernetes.Catalog",
'KUBERNETES.CLUSTER': "kubernetes.Cluster",
'KUBERNETES.CLUSTERADDONPROFILE': "kubernetes.ClusterAddonProfile",
@@ -633,6 +637,11 @@ class ApplianceDataExportPolicyRelationship(ModelComposed):
'RESOURCE.LICENSERESOURCECOUNT': "resource.LicenseResourceCount",
'RESOURCE.MEMBERSHIP': "resource.Membership",
'RESOURCE.MEMBERSHIPHOLDER': "resource.MembershipHolder",
+ 'RESOURCEPOOL.LEASE': "resourcepool.Lease",
+ 'RESOURCEPOOL.LEASERESOURCE': "resourcepool.LeaseResource",
+ 'RESOURCEPOOL.POOL': "resourcepool.Pool",
+ 'RESOURCEPOOL.POOLMEMBER': "resourcepool.PoolMember",
+ 'RESOURCEPOOL.UNIVERSE': "resourcepool.Universe",
'RPROXY.REVERSEPROXY': "rproxy.ReverseProxy",
'SDCARD.POLICY': "sdcard.Policy",
'SDWAN.PROFILE': "sdwan.Profile",
@@ -748,6 +757,7 @@ class ApplianceDataExportPolicyRelationship(ModelComposed):
'TASK.NETAPPSCOPEDINVENTORY': "task.NetAppScopedInventory",
'TASK.PUBLICCLOUDSCOPEDINVENTORY': "task.PublicCloudScopedInventory",
'TASK.PURESCOPEDINVENTORY': "task.PureScopedInventory",
+ 'TASK.SERVERSCOPEDINVENTORY': "task.ServerScopedInventory",
'TECHSUPPORTMANAGEMENT.COLLECTIONCONTROLPOLICY': "techsupportmanagement.CollectionControlPolicy",
'TECHSUPPORTMANAGEMENT.DOWNLOAD': "techsupportmanagement.Download",
'TECHSUPPORTMANAGEMENT.TECHSUPPORTBUNDLE': "techsupportmanagement.TechSupportBundle",
@@ -779,6 +789,7 @@ class ApplianceDataExportPolicyRelationship(ModelComposed):
'VIRTUALIZATION.VMWAREVCENTER': "virtualization.VmwareVcenter",
'VIRTUALIZATION.VMWAREVIRTUALDISK': "virtualization.VmwareVirtualDisk",
'VIRTUALIZATION.VMWAREVIRTUALMACHINE': "virtualization.VmwareVirtualMachine",
+ 'VIRTUALIZATION.VMWAREVIRTUALMACHINESNAPSHOT': "virtualization.VmwareVirtualMachineSnapshot",
'VIRTUALIZATION.VMWAREVIRTUALNETWORKINTERFACE': "virtualization.VmwareVirtualNetworkInterface",
'VIRTUALIZATION.VMWAREVIRTUALSWITCH': "virtualization.VmwareVirtualSwitch",
'VMEDIA.POLICY': "vmedia.Policy",
@@ -811,12 +822,14 @@ class ApplianceDataExportPolicyRelationship(ModelComposed):
'WORKFLOW.TASKDEFINITION': "workflow.TaskDefinition",
'WORKFLOW.TASKINFO': "workflow.TaskInfo",
'WORKFLOW.TASKMETADATA': "workflow.TaskMetadata",
+ 'WORKFLOW.TASKNOTIFICATION': "workflow.TaskNotification",
'WORKFLOW.TEMPLATEEVALUATION': "workflow.TemplateEvaluation",
'WORKFLOW.TEMPLATEFUNCTIONMETA': "workflow.TemplateFunctionMeta",
'WORKFLOW.WORKFLOWDEFINITION': "workflow.WorkflowDefinition",
'WORKFLOW.WORKFLOWINFO': "workflow.WorkflowInfo",
'WORKFLOW.WORKFLOWMETA': "workflow.WorkflowMeta",
'WORKFLOW.WORKFLOWMETADATA': "workflow.WorkflowMetadata",
+ 'WORKFLOW.WORKFLOWNOTIFICATION': "workflow.WorkflowNotification",
},
}
diff --git a/intersight/model/appliance_data_export_policy_response.py b/intersight/model/appliance_data_export_policy_response.py
index 96921aa1a7..5b7e53fcc9 100644
--- a/intersight/model/appliance_data_export_policy_response.py
+++ b/intersight/model/appliance_data_export_policy_response.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/appliance_device_certificate.py b/intersight/model/appliance_device_certificate.py
index 8b9459a1d3..818a79750f 100644
--- a/intersight/model/appliance_device_certificate.py
+++ b/intersight/model/appliance_device_certificate.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/appliance_device_certificate_all_of.py b/intersight/model/appliance_device_certificate_all_of.py
index 6d57bf7bc5..1f8d2e9ce1 100644
--- a/intersight/model/appliance_device_certificate_all_of.py
+++ b/intersight/model/appliance_device_certificate_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/appliance_device_certificate_list.py b/intersight/model/appliance_device_certificate_list.py
index e6e686a6cf..6f990eb67e 100644
--- a/intersight/model/appliance_device_certificate_list.py
+++ b/intersight/model/appliance_device_certificate_list.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/appliance_device_certificate_list_all_of.py b/intersight/model/appliance_device_certificate_list_all_of.py
index eeaab6299d..a58bcbd883 100644
--- a/intersight/model/appliance_device_certificate_list_all_of.py
+++ b/intersight/model/appliance_device_certificate_list_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/appliance_device_certificate_response.py b/intersight/model/appliance_device_certificate_response.py
index d008f48225..543273a643 100644
--- a/intersight/model/appliance_device_certificate_response.py
+++ b/intersight/model/appliance_device_certificate_response.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/appliance_device_claim.py b/intersight/model/appliance_device_claim.py
index f802c7ca45..f44c39b1af 100644
--- a/intersight/model/appliance_device_claim.py
+++ b/intersight/model/appliance_device_claim.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/appliance_device_claim_all_of.py b/intersight/model/appliance_device_claim_all_of.py
index 56b8aa203d..3ff7d8e5d5 100644
--- a/intersight/model/appliance_device_claim_all_of.py
+++ b/intersight/model/appliance_device_claim_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/appliance_device_claim_list.py b/intersight/model/appliance_device_claim_list.py
index b8f2500df7..b96b7ce215 100644
--- a/intersight/model/appliance_device_claim_list.py
+++ b/intersight/model/appliance_device_claim_list.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/appliance_device_claim_list_all_of.py b/intersight/model/appliance_device_claim_list_all_of.py
index 54ee4bcffb..12e41deab1 100644
--- a/intersight/model/appliance_device_claim_list_all_of.py
+++ b/intersight/model/appliance_device_claim_list_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/appliance_device_claim_response.py b/intersight/model/appliance_device_claim_response.py
index 3922f2c806..5bda738e3f 100644
--- a/intersight/model/appliance_device_claim_response.py
+++ b/intersight/model/appliance_device_claim_response.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/appliance_device_upgrade_policy.py b/intersight/model/appliance_device_upgrade_policy.py
new file mode 100644
index 0000000000..ce9ddf0482
--- /dev/null
+++ b/intersight/model/appliance_device_upgrade_policy.py
@@ -0,0 +1,324 @@
+"""
+ Cisco Intersight
+
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
+
+ The version of the OpenAPI document: 1.0.9-4506
+ Contact: intersight@cisco.com
+ Generated by: https://openapi-generator.tech
+"""
+
+
+import re # noqa: F401
+import sys # noqa: F401
+
+from intersight.model_utils import ( # noqa: F401
+ ApiTypeError,
+ ModelComposed,
+ ModelNormal,
+ ModelSimple,
+ cached_property,
+ change_keys_js_to_python,
+ convert_js_args_to_python_args,
+ date,
+ datetime,
+ file_type,
+ none_type,
+ validate_get_composed_info,
+)
+
+def lazy_import():
+ from intersight.model.appliance_device_upgrade_policy_all_of import ApplianceDeviceUpgradePolicyAllOf
+ from intersight.model.asset_device_registration_relationship import AssetDeviceRegistrationRelationship
+ from intersight.model.display_names import DisplayNames
+ from intersight.model.mo_base_mo import MoBaseMo
+ from intersight.model.mo_base_mo_relationship import MoBaseMoRelationship
+ from intersight.model.mo_tag import MoTag
+ from intersight.model.mo_version_context import MoVersionContext
+ from intersight.model.onprem_schedule import OnpremSchedule
+ globals()['ApplianceDeviceUpgradePolicyAllOf'] = ApplianceDeviceUpgradePolicyAllOf
+ globals()['AssetDeviceRegistrationRelationship'] = AssetDeviceRegistrationRelationship
+ globals()['DisplayNames'] = DisplayNames
+ globals()['MoBaseMo'] = MoBaseMo
+ globals()['MoBaseMoRelationship'] = MoBaseMoRelationship
+ globals()['MoTag'] = MoTag
+ globals()['MoVersionContext'] = MoVersionContext
+ globals()['OnpremSchedule'] = OnpremSchedule
+
+
+class ApplianceDeviceUpgradePolicy(ModelComposed):
+ """NOTE: This class is auto generated by OpenAPI Generator.
+ Ref: https://openapi-generator.tech
+
+ Do not edit the class manually.
+
+ Attributes:
+ allowed_values (dict): The key is the tuple path to the attribute
+ and the for var_name this is (var_name,). The value is a dict
+ with a capitalized key describing the allowed value and an allowed
+ value. These dicts store the allowed enum values.
+ attribute_map (dict): The key is attribute name
+ and the value is json key in definition.
+ discriminator_value_class_map (dict): A dict to go from the discriminator
+ variable value to the discriminator class name.
+ validations (dict): The key is the tuple path to the attribute
+ and the for var_name this is (var_name,). The value is a dict
+ that stores validations for max_length, min_length, max_items,
+ min_items, exclusive_maximum, inclusive_maximum, exclusive_minimum,
+ inclusive_minimum, and regex.
+ additional_properties_type (tuple): A tuple of classes accepted
+ as additional properties values.
+ """
+
+ allowed_values = {
+ ('class_id',): {
+ 'APPLIANCE.DEVICEUPGRADEPOLICY': "appliance.DeviceUpgradePolicy",
+ },
+ ('object_type',): {
+ 'APPLIANCE.DEVICEUPGRADEPOLICY': "appliance.DeviceUpgradePolicy",
+ },
+ ('software_download_type',): {
+ 'CONNECTED': "connected",
+ 'MANUAL': "manual",
+ },
+ }
+
+ validations = {
+ }
+
+ @cached_property
+ def additional_properties_type():
+ """
+ This must be a method because a model may have properties that are
+ of type self, this must run after the class is loaded
+ """
+ lazy_import()
+ return (bool, date, datetime, dict, float, int, list, str, none_type,) # noqa: E501
+
+ _nullable = False
+
+ @cached_property
+ def openapi_types():
+ """
+ This must be a method because a model may have properties that are
+ of type self, this must run after the class is loaded
+
+ Returns
+ openapi_types (dict): The key is attribute name
+ and the value is attribute type.
+ """
+ lazy_import()
+ return {
+ 'class_id': (str,), # noqa: E501
+ 'object_type': (str,), # noqa: E501
+ 'auto_upgrade': (bool,), # noqa: E501
+ 'blackout_dates_enabled': (bool,), # noqa: E501
+ 'blackout_end_date': (datetime,), # noqa: E501
+ 'blackout_start_date': (datetime,), # noqa: E501
+ 'enable_meta_data_sync': (bool,), # noqa: E501
+ 'schedule': (OnpremSchedule,), # noqa: E501
+ 'serial_id': (str,), # noqa: E501
+ 'software_download_type': (str,), # noqa: E501
+ 'registered_device': (AssetDeviceRegistrationRelationship,), # noqa: E501
+ 'account_moid': (str,), # noqa: E501
+ 'create_time': (datetime,), # noqa: E501
+ 'domain_group_moid': (str,), # noqa: E501
+ 'mod_time': (datetime,), # noqa: E501
+ 'moid': (str,), # noqa: E501
+ 'owners': ([str], none_type,), # noqa: E501
+ 'shared_scope': (str,), # noqa: E501
+ 'tags': ([MoTag], none_type,), # noqa: E501
+ 'version_context': (MoVersionContext,), # noqa: E501
+ 'ancestors': ([MoBaseMoRelationship], none_type,), # noqa: E501
+ 'parent': (MoBaseMoRelationship,), # noqa: E501
+ 'permission_resources': ([MoBaseMoRelationship], none_type,), # noqa: E501
+ 'display_names': (DisplayNames,), # noqa: E501
+ }
+
+ @cached_property
+ def discriminator():
+ val = {
+ }
+ if not val:
+ return None
+ return {'class_id': val}
+
+ attribute_map = {
+ 'class_id': 'ClassId', # noqa: E501
+ 'object_type': 'ObjectType', # noqa: E501
+ 'auto_upgrade': 'AutoUpgrade', # noqa: E501
+ 'blackout_dates_enabled': 'BlackoutDatesEnabled', # noqa: E501
+ 'blackout_end_date': 'BlackoutEndDate', # noqa: E501
+ 'blackout_start_date': 'BlackoutStartDate', # noqa: E501
+ 'enable_meta_data_sync': 'EnableMetaDataSync', # noqa: E501
+ 'schedule': 'Schedule', # noqa: E501
+ 'serial_id': 'SerialId', # noqa: E501
+ 'software_download_type': 'SoftwareDownloadType', # noqa: E501
+ 'registered_device': 'RegisteredDevice', # noqa: E501
+ 'account_moid': 'AccountMoid', # noqa: E501
+ 'create_time': 'CreateTime', # noqa: E501
+ 'domain_group_moid': 'DomainGroupMoid', # noqa: E501
+ 'mod_time': 'ModTime', # noqa: E501
+ 'moid': 'Moid', # noqa: E501
+ 'owners': 'Owners', # noqa: E501
+ 'shared_scope': 'SharedScope', # noqa: E501
+ 'tags': 'Tags', # noqa: E501
+ 'version_context': 'VersionContext', # noqa: E501
+ 'ancestors': 'Ancestors', # noqa: E501
+ 'parent': 'Parent', # noqa: E501
+ 'permission_resources': 'PermissionResources', # noqa: E501
+ 'display_names': 'DisplayNames', # noqa: E501
+ }
+
+ required_properties = set([
+ '_data_store',
+ '_check_type',
+ '_spec_property_naming',
+ '_path_to_item',
+ '_configuration',
+ '_visited_composed_classes',
+ '_composed_instances',
+ '_var_name_to_model_instances',
+ '_additional_properties_model_instances',
+ ])
+
+ @convert_js_args_to_python_args
+ def __init__(self, *args, **kwargs): # noqa: E501
+ """ApplianceDeviceUpgradePolicy - a model defined in OpenAPI
+
+ Args:
+
+ Keyword Args:
+ class_id (str): The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.. defaults to "appliance.DeviceUpgradePolicy", must be one of ["appliance.DeviceUpgradePolicy", ] # noqa: E501
+ object_type (str): The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.. defaults to "appliance.DeviceUpgradePolicy", must be one of ["appliance.DeviceUpgradePolicy", ] # noqa: E501
+ _check_type (bool): if True, values for parameters in openapi_types
+ will be type checked and a TypeError will be
+ raised if the wrong type is input.
+ Defaults to True
+ _path_to_item (tuple/list): This is a list of keys or values to
+ drill down to the model in received_data
+ when deserializing a response
+ _spec_property_naming (bool): True if the variable names in the input data
+ are serialized names, as specified in the OpenAPI document.
+ False if the variable names in the input data
+ are pythonic names, e.g. snake case (default)
+ _configuration (Configuration): the instance to use when
+ deserializing a file_type parameter.
+ If passed, type conversion is attempted
+ If omitted no type conversion is done.
+ _visited_composed_classes (tuple): This stores a tuple of
+ classes that we have traveled through so that
+ if we see that class again we will not use its
+ discriminator again.
+ When traveling through a discriminator, the
+ composed schema that is
+ is traveled through is added to this set.
+ For example if Animal has a discriminator
+ petType and we pass in "Dog", and the class Dog
+ allOf includes Animal, we move through Animal
+ once using the discriminator, and pick Dog.
+ Then in Dog, we will make an instance of the
+ Animal class but this time we won't travel
+ through its discriminator because we passed in
+ _visited_composed_classes = (Animal,)
+ auto_upgrade (bool): Indicates if the upgrade service is set to automatically start the software upgrade or not. If autoUpgrade is true, then the value of the schedule field is ignored.. [optional] # noqa: E501
+ blackout_dates_enabled (bool): If enabled, allows the user to define a blackout period during which the appliance will not be upgraded.. [optional] # noqa: E501
+ blackout_end_date (datetime): End date of the black out period.. [optional] # noqa: E501
+ blackout_start_date (datetime): Start date of the black out period. The appliance will not be upgraded during this period.. [optional] # noqa: E501
+ enable_meta_data_sync (bool): Indicates if the updated metadata files should be synced immediately or at the next upgrade.. [optional] if omitted the server will use the default value of True # noqa: E501
+ schedule (OnpremSchedule): [optional] # noqa: E501
+ serial_id (str): SerialId of the Intersight Appliance. SerialId is generated when the Intersight Appliance is setup. It is a unique UUID string, and serialId will not change for the life time of the Intersight Appliance.. [optional] # noqa: E501
+ software_download_type (str): UpgradeType is used to indicate the kink of software upload to upgrade. * `connected` - Indicates if the upgrade service is set to upload software to latest version automatically. * `manual` - Indicates if the upgrade service is set to upload software to user picked verison manually .. [optional] if omitted the server will use the default value of "connected" # noqa: E501
+ registered_device (AssetDeviceRegistrationRelationship): [optional] # noqa: E501
+ account_moid (str): The Account ID for this managed object.. [optional] # noqa: E501
+ create_time (datetime): The time when this managed object was created.. [optional] # noqa: E501
+ domain_group_moid (str): The DomainGroup ID for this managed object.. [optional] # noqa: E501
+ mod_time (datetime): The time when this managed object was last modified.. [optional] # noqa: E501
+ moid (str): The unique identifier of this Managed Object instance.. [optional] # noqa: E501
+ owners ([str], none_type): [optional] # noqa: E501
+ shared_scope (str): Intersight provides pre-built workflows, tasks and policies to end users through global catalogs. Objects that are made available through global catalogs are said to have a 'shared' ownership. Shared objects are either made globally available to all end users or restricted to end users based on their license entitlement. Users can use this property to differentiate the scope (global or a specific license tier) to which a shared MO belongs.. [optional] # noqa: E501
+ tags ([MoTag], none_type): [optional] # noqa: E501
+ version_context (MoVersionContext): [optional] # noqa: E501
+ ancestors ([MoBaseMoRelationship], none_type): An array of relationships to moBaseMo resources.. [optional] # noqa: E501
+ parent (MoBaseMoRelationship): [optional] # noqa: E501
+ permission_resources ([MoBaseMoRelationship], none_type): An array of relationships to moBaseMo resources.. [optional] # noqa: E501
+ display_names (DisplayNames): [optional] # noqa: E501
+ """
+
+ class_id = kwargs.get('class_id', "appliance.DeviceUpgradePolicy")
+ object_type = kwargs.get('object_type', "appliance.DeviceUpgradePolicy")
+ _check_type = kwargs.pop('_check_type', True)
+ _spec_property_naming = kwargs.pop('_spec_property_naming', False)
+ _path_to_item = kwargs.pop('_path_to_item', ())
+ _configuration = kwargs.pop('_configuration', None)
+ _visited_composed_classes = kwargs.pop('_visited_composed_classes', ())
+
+ if args:
+ raise ApiTypeError(
+ "Invalid positional arguments=%s passed to %s. Remove those invalid positional arguments." % (
+ args,
+ self.__class__.__name__,
+ ),
+ path_to_item=_path_to_item,
+ valid_classes=(self.__class__,),
+ )
+
+ self._data_store = {}
+ self._check_type = _check_type
+ self._spec_property_naming = _spec_property_naming
+ self._path_to_item = _path_to_item
+ self._configuration = _configuration
+ self._visited_composed_classes = _visited_composed_classes + (self.__class__,)
+
+ constant_args = {
+ '_check_type': _check_type,
+ '_path_to_item': _path_to_item,
+ '_spec_property_naming': _spec_property_naming,
+ '_configuration': _configuration,
+ '_visited_composed_classes': self._visited_composed_classes,
+ }
+ required_args = {
+ 'class_id': class_id,
+ 'object_type': object_type,
+ }
+ model_args = {}
+ model_args.update(required_args)
+ model_args.update(kwargs)
+ composed_info = validate_get_composed_info(
+ constant_args, model_args, self)
+ self._composed_instances = composed_info[0]
+ self._var_name_to_model_instances = composed_info[1]
+ self._additional_properties_model_instances = composed_info[2]
+ unused_args = composed_info[3]
+
+ for var_name, var_value in required_args.items():
+ setattr(self, var_name, var_value)
+ for var_name, var_value in kwargs.items():
+ if var_name in unused_args and \
+ self._configuration is not None and \
+ self._configuration.discard_unknown_keys and \
+ not self._additional_properties_model_instances:
+ # discard variable.
+ continue
+ setattr(self, var_name, var_value)
+
+ @cached_property
+ def _composed_schemas():
+ # we need this here to make our import statements work
+ # we must store _composed_schemas in here so the code is only run
+ # when we invoke this method. If we kept this at the class
+ # level we would get an error beause the class level
+ # code would be run when this module is imported, and these composed
+ # classes don't exist yet because their module has not finished
+ # loading
+ lazy_import()
+ return {
+ 'anyOf': [
+ ],
+ 'allOf': [
+ ApplianceDeviceUpgradePolicyAllOf,
+ MoBaseMo,
+ ],
+ 'oneOf': [
+ ],
+ }
diff --git a/intersight/model/appliance_device_upgrade_policy_all_of.py b/intersight/model/appliance_device_upgrade_policy_all_of.py
new file mode 100644
index 0000000000..15aec194e3
--- /dev/null
+++ b/intersight/model/appliance_device_upgrade_policy_all_of.py
@@ -0,0 +1,220 @@
+"""
+ Cisco Intersight
+
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
+
+ The version of the OpenAPI document: 1.0.9-4506
+ Contact: intersight@cisco.com
+ Generated by: https://openapi-generator.tech
+"""
+
+
+import re # noqa: F401
+import sys # noqa: F401
+
+from intersight.model_utils import ( # noqa: F401
+ ApiTypeError,
+ ModelComposed,
+ ModelNormal,
+ ModelSimple,
+ cached_property,
+ change_keys_js_to_python,
+ convert_js_args_to_python_args,
+ date,
+ datetime,
+ file_type,
+ none_type,
+ validate_get_composed_info,
+)
+
+def lazy_import():
+ from intersight.model.asset_device_registration_relationship import AssetDeviceRegistrationRelationship
+ from intersight.model.onprem_schedule import OnpremSchedule
+ globals()['AssetDeviceRegistrationRelationship'] = AssetDeviceRegistrationRelationship
+ globals()['OnpremSchedule'] = OnpremSchedule
+
+
+class ApplianceDeviceUpgradePolicyAllOf(ModelNormal):
+ """NOTE: This class is auto generated by OpenAPI Generator.
+ Ref: https://openapi-generator.tech
+
+ Do not edit the class manually.
+
+ Attributes:
+ allowed_values (dict): The key is the tuple path to the attribute
+ and the for var_name this is (var_name,). The value is a dict
+ with a capitalized key describing the allowed value and an allowed
+ value. These dicts store the allowed enum values.
+ attribute_map (dict): The key is attribute name
+ and the value is json key in definition.
+ discriminator_value_class_map (dict): A dict to go from the discriminator
+ variable value to the discriminator class name.
+ validations (dict): The key is the tuple path to the attribute
+ and the for var_name this is (var_name,). The value is a dict
+ that stores validations for max_length, min_length, max_items,
+ min_items, exclusive_maximum, inclusive_maximum, exclusive_minimum,
+ inclusive_minimum, and regex.
+ additional_properties_type (tuple): A tuple of classes accepted
+ as additional properties values.
+ """
+
+ allowed_values = {
+ ('class_id',): {
+ 'APPLIANCE.DEVICEUPGRADEPOLICY': "appliance.DeviceUpgradePolicy",
+ },
+ ('object_type',): {
+ 'APPLIANCE.DEVICEUPGRADEPOLICY': "appliance.DeviceUpgradePolicy",
+ },
+ ('software_download_type',): {
+ 'CONNECTED': "connected",
+ 'MANUAL': "manual",
+ },
+ }
+
+ validations = {
+ }
+
+ additional_properties_type = None
+
+ _nullable = False
+
+ @cached_property
+ def openapi_types():
+ """
+ This must be a method because a model may have properties that are
+ of type self, this must run after the class is loaded
+
+ Returns
+ openapi_types (dict): The key is attribute name
+ and the value is attribute type.
+ """
+ lazy_import()
+ return {
+ 'class_id': (str,), # noqa: E501
+ 'object_type': (str,), # noqa: E501
+ 'auto_upgrade': (bool,), # noqa: E501
+ 'blackout_dates_enabled': (bool,), # noqa: E501
+ 'blackout_end_date': (datetime,), # noqa: E501
+ 'blackout_start_date': (datetime,), # noqa: E501
+ 'enable_meta_data_sync': (bool,), # noqa: E501
+ 'schedule': (OnpremSchedule,), # noqa: E501
+ 'serial_id': (str,), # noqa: E501
+ 'software_download_type': (str,), # noqa: E501
+ 'registered_device': (AssetDeviceRegistrationRelationship,), # noqa: E501
+ }
+
+ @cached_property
+ def discriminator():
+ return None
+
+
+ attribute_map = {
+ 'class_id': 'ClassId', # noqa: E501
+ 'object_type': 'ObjectType', # noqa: E501
+ 'auto_upgrade': 'AutoUpgrade', # noqa: E501
+ 'blackout_dates_enabled': 'BlackoutDatesEnabled', # noqa: E501
+ 'blackout_end_date': 'BlackoutEndDate', # noqa: E501
+ 'blackout_start_date': 'BlackoutStartDate', # noqa: E501
+ 'enable_meta_data_sync': 'EnableMetaDataSync', # noqa: E501
+ 'schedule': 'Schedule', # noqa: E501
+ 'serial_id': 'SerialId', # noqa: E501
+ 'software_download_type': 'SoftwareDownloadType', # noqa: E501
+ 'registered_device': 'RegisteredDevice', # noqa: E501
+ }
+
+ _composed_schemas = {}
+
+ required_properties = set([
+ '_data_store',
+ '_check_type',
+ '_spec_property_naming',
+ '_path_to_item',
+ '_configuration',
+ '_visited_composed_classes',
+ ])
+
+ @convert_js_args_to_python_args
+ def __init__(self, *args, **kwargs): # noqa: E501
+ """ApplianceDeviceUpgradePolicyAllOf - a model defined in OpenAPI
+
+ Args:
+
+ Keyword Args:
+ class_id (str): The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.. defaults to "appliance.DeviceUpgradePolicy", must be one of ["appliance.DeviceUpgradePolicy", ] # noqa: E501
+ object_type (str): The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.. defaults to "appliance.DeviceUpgradePolicy", must be one of ["appliance.DeviceUpgradePolicy", ] # noqa: E501
+ _check_type (bool): if True, values for parameters in openapi_types
+ will be type checked and a TypeError will be
+ raised if the wrong type is input.
+ Defaults to True
+ _path_to_item (tuple/list): This is a list of keys or values to
+ drill down to the model in received_data
+ when deserializing a response
+ _spec_property_naming (bool): True if the variable names in the input data
+ are serialized names, as specified in the OpenAPI document.
+ False if the variable names in the input data
+ are pythonic names, e.g. snake case (default)
+ _configuration (Configuration): the instance to use when
+ deserializing a file_type parameter.
+ If passed, type conversion is attempted
+ If omitted no type conversion is done.
+ _visited_composed_classes (tuple): This stores a tuple of
+ classes that we have traveled through so that
+ if we see that class again we will not use its
+ discriminator again.
+ When traveling through a discriminator, the
+ composed schema that is
+ is traveled through is added to this set.
+ For example if Animal has a discriminator
+ petType and we pass in "Dog", and the class Dog
+ allOf includes Animal, we move through Animal
+ once using the discriminator, and pick Dog.
+ Then in Dog, we will make an instance of the
+ Animal class but this time we won't travel
+ through its discriminator because we passed in
+ _visited_composed_classes = (Animal,)
+ auto_upgrade (bool): Indicates if the upgrade service is set to automatically start the software upgrade or not. If autoUpgrade is true, then the value of the schedule field is ignored.. [optional] # noqa: E501
+ blackout_dates_enabled (bool): If enabled, allows the user to define a blackout period during which the appliance will not be upgraded.. [optional] # noqa: E501
+ blackout_end_date (datetime): End date of the black out period.. [optional] # noqa: E501
+ blackout_start_date (datetime): Start date of the black out period. The appliance will not be upgraded during this period.. [optional] # noqa: E501
+ enable_meta_data_sync (bool): Indicates if the updated metadata files should be synced immediately or at the next upgrade.. [optional] if omitted the server will use the default value of True # noqa: E501
+ schedule (OnpremSchedule): [optional] # noqa: E501
+ serial_id (str): SerialId of the Intersight Appliance. SerialId is generated when the Intersight Appliance is setup. It is a unique UUID string, and serialId will not change for the life time of the Intersight Appliance.. [optional] # noqa: E501
+ software_download_type (str): UpgradeType is used to indicate the kink of software upload to upgrade. * `connected` - Indicates if the upgrade service is set to upload software to latest version automatically. * `manual` - Indicates if the upgrade service is set to upload software to user picked verison manually .. [optional] if omitted the server will use the default value of "connected" # noqa: E501
+ registered_device (AssetDeviceRegistrationRelationship): [optional] # noqa: E501
+ """
+
+ class_id = kwargs.get('class_id', "appliance.DeviceUpgradePolicy")
+ object_type = kwargs.get('object_type', "appliance.DeviceUpgradePolicy")
+ _check_type = kwargs.pop('_check_type', True)
+ _spec_property_naming = kwargs.pop('_spec_property_naming', False)
+ _path_to_item = kwargs.pop('_path_to_item', ())
+ _configuration = kwargs.pop('_configuration', None)
+ _visited_composed_classes = kwargs.pop('_visited_composed_classes', ())
+
+ if args:
+ raise ApiTypeError(
+ "Invalid positional arguments=%s passed to %s. Remove those invalid positional arguments." % (
+ args,
+ self.__class__.__name__,
+ ),
+ path_to_item=_path_to_item,
+ valid_classes=(self.__class__,),
+ )
+
+ self._data_store = {}
+ self._check_type = _check_type
+ self._spec_property_naming = _spec_property_naming
+ self._path_to_item = _path_to_item
+ self._configuration = _configuration
+ self._visited_composed_classes = _visited_composed_classes + (self.__class__,)
+
+ self.class_id = class_id
+ self.object_type = object_type
+ for var_name, var_value in kwargs.items():
+ if var_name not in self.attribute_map and \
+ self._configuration is not None and \
+ self._configuration.discard_unknown_keys and \
+ self.additional_properties_type is None:
+ # discard variable.
+ continue
+ setattr(self, var_name, var_value)
diff --git a/intersight/model/appliance_device_upgrade_policy_list.py b/intersight/model/appliance_device_upgrade_policy_list.py
new file mode 100644
index 0000000000..55cbfca64c
--- /dev/null
+++ b/intersight/model/appliance_device_upgrade_policy_list.py
@@ -0,0 +1,238 @@
+"""
+ Cisco Intersight
+
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
+
+ The version of the OpenAPI document: 1.0.9-4506
+ Contact: intersight@cisco.com
+ Generated by: https://openapi-generator.tech
+"""
+
+
+import re # noqa: F401
+import sys # noqa: F401
+
+from intersight.model_utils import ( # noqa: F401
+ ApiTypeError,
+ ModelComposed,
+ ModelNormal,
+ ModelSimple,
+ cached_property,
+ change_keys_js_to_python,
+ convert_js_args_to_python_args,
+ date,
+ datetime,
+ file_type,
+ none_type,
+ validate_get_composed_info,
+)
+
+def lazy_import():
+ from intersight.model.appliance_device_upgrade_policy import ApplianceDeviceUpgradePolicy
+ from intersight.model.appliance_device_upgrade_policy_list_all_of import ApplianceDeviceUpgradePolicyListAllOf
+ from intersight.model.mo_base_response import MoBaseResponse
+ globals()['ApplianceDeviceUpgradePolicy'] = ApplianceDeviceUpgradePolicy
+ globals()['ApplianceDeviceUpgradePolicyListAllOf'] = ApplianceDeviceUpgradePolicyListAllOf
+ globals()['MoBaseResponse'] = MoBaseResponse
+
+
+class ApplianceDeviceUpgradePolicyList(ModelComposed):
+ """NOTE: This class is auto generated by OpenAPI Generator.
+ Ref: https://openapi-generator.tech
+
+ Do not edit the class manually.
+
+ Attributes:
+ allowed_values (dict): The key is the tuple path to the attribute
+ and the for var_name this is (var_name,). The value is a dict
+ with a capitalized key describing the allowed value and an allowed
+ value. These dicts store the allowed enum values.
+ attribute_map (dict): The key is attribute name
+ and the value is json key in definition.
+ discriminator_value_class_map (dict): A dict to go from the discriminator
+ variable value to the discriminator class name.
+ validations (dict): The key is the tuple path to the attribute
+ and the for var_name this is (var_name,). The value is a dict
+ that stores validations for max_length, min_length, max_items,
+ min_items, exclusive_maximum, inclusive_maximum, exclusive_minimum,
+ inclusive_minimum, and regex.
+ additional_properties_type (tuple): A tuple of classes accepted
+ as additional properties values.
+ """
+
+ allowed_values = {
+ }
+
+ validations = {
+ }
+
+ @cached_property
+ def additional_properties_type():
+ """
+ This must be a method because a model may have properties that are
+ of type self, this must run after the class is loaded
+ """
+ lazy_import()
+ return (bool, date, datetime, dict, float, int, list, str, none_type,) # noqa: E501
+
+ _nullable = False
+
+ @cached_property
+ def openapi_types():
+ """
+ This must be a method because a model may have properties that are
+ of type self, this must run after the class is loaded
+
+ Returns
+ openapi_types (dict): The key is attribute name
+ and the value is attribute type.
+ """
+ lazy_import()
+ return {
+ 'object_type': (str,), # noqa: E501
+ 'count': (int,), # noqa: E501
+ 'results': ([ApplianceDeviceUpgradePolicy], none_type,), # noqa: E501
+ }
+
+ @cached_property
+ def discriminator():
+ val = {
+ }
+ if not val:
+ return None
+ return {'object_type': val}
+
+ attribute_map = {
+ 'object_type': 'ObjectType', # noqa: E501
+ 'count': 'Count', # noqa: E501
+ 'results': 'Results', # noqa: E501
+ }
+
+ required_properties = set([
+ '_data_store',
+ '_check_type',
+ '_spec_property_naming',
+ '_path_to_item',
+ '_configuration',
+ '_visited_composed_classes',
+ '_composed_instances',
+ '_var_name_to_model_instances',
+ '_additional_properties_model_instances',
+ ])
+
+ @convert_js_args_to_python_args
+ def __init__(self, object_type, *args, **kwargs): # noqa: E501
+ """ApplianceDeviceUpgradePolicyList - a model defined in OpenAPI
+
+ Args:
+ object_type (str): A discriminator value to disambiguate the schema of a HTTP GET response body.
+
+ Keyword Args:
+ _check_type (bool): if True, values for parameters in openapi_types
+ will be type checked and a TypeError will be
+ raised if the wrong type is input.
+ Defaults to True
+ _path_to_item (tuple/list): This is a list of keys or values to
+ drill down to the model in received_data
+ when deserializing a response
+ _spec_property_naming (bool): True if the variable names in the input data
+ are serialized names, as specified in the OpenAPI document.
+ False if the variable names in the input data
+ are pythonic names, e.g. snake case (default)
+ _configuration (Configuration): the instance to use when
+ deserializing a file_type parameter.
+ If passed, type conversion is attempted
+ If omitted no type conversion is done.
+ _visited_composed_classes (tuple): This stores a tuple of
+ classes that we have traveled through so that
+ if we see that class again we will not use its
+ discriminator again.
+ When traveling through a discriminator, the
+ composed schema that is
+ is traveled through is added to this set.
+ For example if Animal has a discriminator
+ petType and we pass in "Dog", and the class Dog
+ allOf includes Animal, we move through Animal
+ once using the discriminator, and pick Dog.
+ Then in Dog, we will make an instance of the
+ Animal class but this time we won't travel
+ through its discriminator because we passed in
+ _visited_composed_classes = (Animal,)
+ count (int): The total number of 'appliance.DeviceUpgradePolicy' resources matching the request, accross all pages. The 'Count' attribute is included when the HTTP GET request includes the '$inlinecount' parameter.. [optional] # noqa: E501
+ results ([ApplianceDeviceUpgradePolicy], none_type): The array of 'appliance.DeviceUpgradePolicy' resources matching the request.. [optional] # noqa: E501
+ """
+
+ _check_type = kwargs.pop('_check_type', True)
+ _spec_property_naming = kwargs.pop('_spec_property_naming', False)
+ _path_to_item = kwargs.pop('_path_to_item', ())
+ _configuration = kwargs.pop('_configuration', None)
+ _visited_composed_classes = kwargs.pop('_visited_composed_classes', ())
+
+ if args:
+ raise ApiTypeError(
+ "Invalid positional arguments=%s passed to %s. Remove those invalid positional arguments." % (
+ args,
+ self.__class__.__name__,
+ ),
+ path_to_item=_path_to_item,
+ valid_classes=(self.__class__,),
+ )
+
+ self._data_store = {}
+ self._check_type = _check_type
+ self._spec_property_naming = _spec_property_naming
+ self._path_to_item = _path_to_item
+ self._configuration = _configuration
+ self._visited_composed_classes = _visited_composed_classes + (self.__class__,)
+
+ constant_args = {
+ '_check_type': _check_type,
+ '_path_to_item': _path_to_item,
+ '_spec_property_naming': _spec_property_naming,
+ '_configuration': _configuration,
+ '_visited_composed_classes': self._visited_composed_classes,
+ }
+ required_args = {
+ 'object_type': object_type,
+ }
+ model_args = {}
+ model_args.update(required_args)
+ model_args.update(kwargs)
+ composed_info = validate_get_composed_info(
+ constant_args, model_args, self)
+ self._composed_instances = composed_info[0]
+ self._var_name_to_model_instances = composed_info[1]
+ self._additional_properties_model_instances = composed_info[2]
+ unused_args = composed_info[3]
+
+ for var_name, var_value in required_args.items():
+ setattr(self, var_name, var_value)
+ for var_name, var_value in kwargs.items():
+ if var_name in unused_args and \
+ self._configuration is not None and \
+ self._configuration.discard_unknown_keys and \
+ not self._additional_properties_model_instances:
+ # discard variable.
+ continue
+ setattr(self, var_name, var_value)
+
+ @cached_property
+ def _composed_schemas():
+ # we need this here to make our import statements work
+ # we must store _composed_schemas in here so the code is only run
+ # when we invoke this method. If we kept this at the class
+ # level we would get an error beause the class level
+ # code would be run when this module is imported, and these composed
+ # classes don't exist yet because their module has not finished
+ # loading
+ lazy_import()
+ return {
+ 'anyOf': [
+ ],
+ 'allOf': [
+ ApplianceDeviceUpgradePolicyListAllOf,
+ MoBaseResponse,
+ ],
+ 'oneOf': [
+ ],
+ }
diff --git a/intersight/model/appliance_device_upgrade_policy_list_all_of.py b/intersight/model/appliance_device_upgrade_policy_list_all_of.py
new file mode 100644
index 0000000000..edd204a670
--- /dev/null
+++ b/intersight/model/appliance_device_upgrade_policy_list_all_of.py
@@ -0,0 +1,175 @@
+"""
+ Cisco Intersight
+
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
+
+ The version of the OpenAPI document: 1.0.9-4506
+ Contact: intersight@cisco.com
+ Generated by: https://openapi-generator.tech
+"""
+
+
+import re # noqa: F401
+import sys # noqa: F401
+
+from intersight.model_utils import ( # noqa: F401
+ ApiTypeError,
+ ModelComposed,
+ ModelNormal,
+ ModelSimple,
+ cached_property,
+ change_keys_js_to_python,
+ convert_js_args_to_python_args,
+ date,
+ datetime,
+ file_type,
+ none_type,
+ validate_get_composed_info,
+)
+
+def lazy_import():
+ from intersight.model.appliance_device_upgrade_policy import ApplianceDeviceUpgradePolicy
+ globals()['ApplianceDeviceUpgradePolicy'] = ApplianceDeviceUpgradePolicy
+
+
+class ApplianceDeviceUpgradePolicyListAllOf(ModelNormal):
+ """NOTE: This class is auto generated by OpenAPI Generator.
+ Ref: https://openapi-generator.tech
+
+ Do not edit the class manually.
+
+ Attributes:
+ allowed_values (dict): The key is the tuple path to the attribute
+ and the for var_name this is (var_name,). The value is a dict
+ with a capitalized key describing the allowed value and an allowed
+ value. These dicts store the allowed enum values.
+ attribute_map (dict): The key is attribute name
+ and the value is json key in definition.
+ discriminator_value_class_map (dict): A dict to go from the discriminator
+ variable value to the discriminator class name.
+ validations (dict): The key is the tuple path to the attribute
+ and the for var_name this is (var_name,). The value is a dict
+ that stores validations for max_length, min_length, max_items,
+ min_items, exclusive_maximum, inclusive_maximum, exclusive_minimum,
+ inclusive_minimum, and regex.
+ additional_properties_type (tuple): A tuple of classes accepted
+ as additional properties values.
+ """
+
+ allowed_values = {
+ }
+
+ validations = {
+ }
+
+ additional_properties_type = None
+
+ _nullable = False
+
+ @cached_property
+ def openapi_types():
+ """
+ This must be a method because a model may have properties that are
+ of type self, this must run after the class is loaded
+
+ Returns
+ openapi_types (dict): The key is attribute name
+ and the value is attribute type.
+ """
+ lazy_import()
+ return {
+ 'count': (int,), # noqa: E501
+ 'results': ([ApplianceDeviceUpgradePolicy], none_type,), # noqa: E501
+ }
+
+ @cached_property
+ def discriminator():
+ return None
+
+
+ attribute_map = {
+ 'count': 'Count', # noqa: E501
+ 'results': 'Results', # noqa: E501
+ }
+
+ _composed_schemas = {}
+
+ required_properties = set([
+ '_data_store',
+ '_check_type',
+ '_spec_property_naming',
+ '_path_to_item',
+ '_configuration',
+ '_visited_composed_classes',
+ ])
+
+ @convert_js_args_to_python_args
+ def __init__(self, *args, **kwargs): # noqa: E501
+ """ApplianceDeviceUpgradePolicyListAllOf - a model defined in OpenAPI
+
+ Keyword Args:
+ _check_type (bool): if True, values for parameters in openapi_types
+ will be type checked and a TypeError will be
+ raised if the wrong type is input.
+ Defaults to True
+ _path_to_item (tuple/list): This is a list of keys or values to
+ drill down to the model in received_data
+ when deserializing a response
+ _spec_property_naming (bool): True if the variable names in the input data
+ are serialized names, as specified in the OpenAPI document.
+ False if the variable names in the input data
+ are pythonic names, e.g. snake case (default)
+ _configuration (Configuration): the instance to use when
+ deserializing a file_type parameter.
+ If passed, type conversion is attempted
+ If omitted no type conversion is done.
+ _visited_composed_classes (tuple): This stores a tuple of
+ classes that we have traveled through so that
+ if we see that class again we will not use its
+ discriminator again.
+ When traveling through a discriminator, the
+ composed schema that is
+ is traveled through is added to this set.
+ For example if Animal has a discriminator
+ petType and we pass in "Dog", and the class Dog
+ allOf includes Animal, we move through Animal
+ once using the discriminator, and pick Dog.
+ Then in Dog, we will make an instance of the
+ Animal class but this time we won't travel
+ through its discriminator because we passed in
+ _visited_composed_classes = (Animal,)
+ count (int): The total number of 'appliance.DeviceUpgradePolicy' resources matching the request, accross all pages. The 'Count' attribute is included when the HTTP GET request includes the '$inlinecount' parameter.. [optional] # noqa: E501
+ results ([ApplianceDeviceUpgradePolicy], none_type): The array of 'appliance.DeviceUpgradePolicy' resources matching the request.. [optional] # noqa: E501
+ """
+
+ _check_type = kwargs.pop('_check_type', True)
+ _spec_property_naming = kwargs.pop('_spec_property_naming', False)
+ _path_to_item = kwargs.pop('_path_to_item', ())
+ _configuration = kwargs.pop('_configuration', None)
+ _visited_composed_classes = kwargs.pop('_visited_composed_classes', ())
+
+ if args:
+ raise ApiTypeError(
+ "Invalid positional arguments=%s passed to %s. Remove those invalid positional arguments." % (
+ args,
+ self.__class__.__name__,
+ ),
+ path_to_item=_path_to_item,
+ valid_classes=(self.__class__,),
+ )
+
+ self._data_store = {}
+ self._check_type = _check_type
+ self._spec_property_naming = _spec_property_naming
+ self._path_to_item = _path_to_item
+ self._configuration = _configuration
+ self._visited_composed_classes = _visited_composed_classes + (self.__class__,)
+
+ for var_name, var_value in kwargs.items():
+ if var_name not in self.attribute_map and \
+ self._configuration is not None and \
+ self._configuration.discard_unknown_keys and \
+ self.additional_properties_type is None:
+ # discard variable.
+ continue
+ setattr(self, var_name, var_value)
diff --git a/intersight/model/appliance_device_upgrade_policy_response.py b/intersight/model/appliance_device_upgrade_policy_response.py
new file mode 100644
index 0000000000..d9c3240c7c
--- /dev/null
+++ b/intersight/model/appliance_device_upgrade_policy_response.py
@@ -0,0 +1,249 @@
+"""
+ Cisco Intersight
+
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
+
+ The version of the OpenAPI document: 1.0.9-4506
+ Contact: intersight@cisco.com
+ Generated by: https://openapi-generator.tech
+"""
+
+
+import re # noqa: F401
+import sys # noqa: F401
+
+from intersight.model_utils import ( # noqa: F401
+ ApiTypeError,
+ ModelComposed,
+ ModelNormal,
+ ModelSimple,
+ cached_property,
+ change_keys_js_to_python,
+ convert_js_args_to_python_args,
+ date,
+ datetime,
+ file_type,
+ none_type,
+ validate_get_composed_info,
+)
+
+def lazy_import():
+ from intersight.model.appliance_device_upgrade_policy_list import ApplianceDeviceUpgradePolicyList
+ from intersight.model.mo_aggregate_transform import MoAggregateTransform
+ from intersight.model.mo_document_count import MoDocumentCount
+ from intersight.model.mo_tag_key_summary import MoTagKeySummary
+ from intersight.model.mo_tag_summary import MoTagSummary
+ globals()['ApplianceDeviceUpgradePolicyList'] = ApplianceDeviceUpgradePolicyList
+ globals()['MoAggregateTransform'] = MoAggregateTransform
+ globals()['MoDocumentCount'] = MoDocumentCount
+ globals()['MoTagKeySummary'] = MoTagKeySummary
+ globals()['MoTagSummary'] = MoTagSummary
+
+
+class ApplianceDeviceUpgradePolicyResponse(ModelComposed):
+ """NOTE: This class is auto generated by OpenAPI Generator.
+ Ref: https://openapi-generator.tech
+
+ Do not edit the class manually.
+
+ Attributes:
+ allowed_values (dict): The key is the tuple path to the attribute
+ and the for var_name this is (var_name,). The value is a dict
+ with a capitalized key describing the allowed value and an allowed
+ value. These dicts store the allowed enum values.
+ attribute_map (dict): The key is attribute name
+ and the value is json key in definition.
+ discriminator_value_class_map (dict): A dict to go from the discriminator
+ variable value to the discriminator class name.
+ validations (dict): The key is the tuple path to the attribute
+ and the for var_name this is (var_name,). The value is a dict
+ that stores validations for max_length, min_length, max_items,
+ min_items, exclusive_maximum, inclusive_maximum, exclusive_minimum,
+ inclusive_minimum, and regex.
+ additional_properties_type (tuple): A tuple of classes accepted
+ as additional properties values.
+ """
+
+ allowed_values = {
+ }
+
+ validations = {
+ }
+
+ @cached_property
+ def additional_properties_type():
+ """
+ This must be a method because a model may have properties that are
+ of type self, this must run after the class is loaded
+ """
+ lazy_import()
+ return (bool, date, datetime, dict, float, int, list, str, none_type,) # noqa: E501
+
+ _nullable = False
+
+ @cached_property
+ def openapi_types():
+ """
+ This must be a method because a model may have properties that are
+ of type self, this must run after the class is loaded
+
+ Returns
+ openapi_types (dict): The key is attribute name
+ and the value is attribute type.
+ """
+ lazy_import()
+ return {
+ 'object_type': (str,), # noqa: E501
+ 'count': (int,), # noqa: E501
+ 'results': ([MoTagKeySummary], none_type,), # noqa: E501
+ }
+
+ @cached_property
+ def discriminator():
+ lazy_import()
+ val = {
+ 'appliance.DeviceUpgradePolicy.List': ApplianceDeviceUpgradePolicyList,
+ 'mo.AggregateTransform': MoAggregateTransform,
+ 'mo.DocumentCount': MoDocumentCount,
+ 'mo.TagSummary': MoTagSummary,
+ }
+ if not val:
+ return None
+ return {'object_type': val}
+
+ attribute_map = {
+ 'object_type': 'ObjectType', # noqa: E501
+ 'count': 'Count', # noqa: E501
+ 'results': 'Results', # noqa: E501
+ }
+
+ required_properties = set([
+ '_data_store',
+ '_check_type',
+ '_spec_property_naming',
+ '_path_to_item',
+ '_configuration',
+ '_visited_composed_classes',
+ '_composed_instances',
+ '_var_name_to_model_instances',
+ '_additional_properties_model_instances',
+ ])
+
+ @convert_js_args_to_python_args
+ def __init__(self, object_type, *args, **kwargs): # noqa: E501
+ """ApplianceDeviceUpgradePolicyResponse - a model defined in OpenAPI
+
+ Args:
+ object_type (str): A discriminator value to disambiguate the schema of a HTTP GET response body.
+
+ Keyword Args:
+ _check_type (bool): if True, values for parameters in openapi_types
+ will be type checked and a TypeError will be
+ raised if the wrong type is input.
+ Defaults to True
+ _path_to_item (tuple/list): This is a list of keys or values to
+ drill down to the model in received_data
+ when deserializing a response
+ _spec_property_naming (bool): True if the variable names in the input data
+ are serialized names, as specified in the OpenAPI document.
+ False if the variable names in the input data
+ are pythonic names, e.g. snake case (default)
+ _configuration (Configuration): the instance to use when
+ deserializing a file_type parameter.
+ If passed, type conversion is attempted
+ If omitted no type conversion is done.
+ _visited_composed_classes (tuple): This stores a tuple of
+ classes that we have traveled through so that
+ if we see that class again we will not use its
+ discriminator again.
+ When traveling through a discriminator, the
+ composed schema that is
+ is traveled through is added to this set.
+ For example if Animal has a discriminator
+ petType and we pass in "Dog", and the class Dog
+ allOf includes Animal, we move through Animal
+ once using the discriminator, and pick Dog.
+ Then in Dog, we will make an instance of the
+ Animal class but this time we won't travel
+ through its discriminator because we passed in
+ _visited_composed_classes = (Animal,)
+ count (int): The total number of 'appliance.DeviceUpgradePolicy' resources matching the request, accross all pages. The 'Count' attribute is included when the HTTP GET request includes the '$inlinecount' parameter.. [optional] # noqa: E501
+ results ([MoTagKeySummary], none_type): [optional] # noqa: E501
+ """
+
+ _check_type = kwargs.pop('_check_type', True)
+ _spec_property_naming = kwargs.pop('_spec_property_naming', False)
+ _path_to_item = kwargs.pop('_path_to_item', ())
+ _configuration = kwargs.pop('_configuration', None)
+ _visited_composed_classes = kwargs.pop('_visited_composed_classes', ())
+
+ if args:
+ raise ApiTypeError(
+ "Invalid positional arguments=%s passed to %s. Remove those invalid positional arguments." % (
+ args,
+ self.__class__.__name__,
+ ),
+ path_to_item=_path_to_item,
+ valid_classes=(self.__class__,),
+ )
+
+ self._data_store = {}
+ self._check_type = _check_type
+ self._spec_property_naming = _spec_property_naming
+ self._path_to_item = _path_to_item
+ self._configuration = _configuration
+ self._visited_composed_classes = _visited_composed_classes + (self.__class__,)
+
+ constant_args = {
+ '_check_type': _check_type,
+ '_path_to_item': _path_to_item,
+ '_spec_property_naming': _spec_property_naming,
+ '_configuration': _configuration,
+ '_visited_composed_classes': self._visited_composed_classes,
+ }
+ required_args = {
+ 'object_type': object_type,
+ }
+ model_args = {}
+ model_args.update(required_args)
+ model_args.update(kwargs)
+ composed_info = validate_get_composed_info(
+ constant_args, model_args, self)
+ self._composed_instances = composed_info[0]
+ self._var_name_to_model_instances = composed_info[1]
+ self._additional_properties_model_instances = composed_info[2]
+ unused_args = composed_info[3]
+
+ for var_name, var_value in required_args.items():
+ setattr(self, var_name, var_value)
+ for var_name, var_value in kwargs.items():
+ if var_name in unused_args and \
+ self._configuration is not None and \
+ self._configuration.discard_unknown_keys and \
+ not self._additional_properties_model_instances:
+ # discard variable.
+ continue
+ setattr(self, var_name, var_value)
+
+ @cached_property
+ def _composed_schemas():
+ # we need this here to make our import statements work
+ # we must store _composed_schemas in here so the code is only run
+ # when we invoke this method. If we kept this at the class
+ # level we would get an error beause the class level
+ # code would be run when this module is imported, and these composed
+ # classes don't exist yet because their module has not finished
+ # loading
+ lazy_import()
+ return {
+ 'anyOf': [
+ ],
+ 'allOf': [
+ ],
+ 'oneOf': [
+ ApplianceDeviceUpgradePolicyList,
+ MoAggregateTransform,
+ MoDocumentCount,
+ MoTagSummary,
+ ],
+ }
diff --git a/intersight/model/appliance_diag_setting.py b/intersight/model/appliance_diag_setting.py
index 68569c536b..be1405c2e4 100644
--- a/intersight/model/appliance_diag_setting.py
+++ b/intersight/model/appliance_diag_setting.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/appliance_diag_setting_all_of.py b/intersight/model/appliance_diag_setting_all_of.py
index 8223fe5d21..89b81f084e 100644
--- a/intersight/model/appliance_diag_setting_all_of.py
+++ b/intersight/model/appliance_diag_setting_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/appliance_diag_setting_list.py b/intersight/model/appliance_diag_setting_list.py
index 57449adeee..93a8ee919d 100644
--- a/intersight/model/appliance_diag_setting_list.py
+++ b/intersight/model/appliance_diag_setting_list.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/appliance_diag_setting_list_all_of.py b/intersight/model/appliance_diag_setting_list_all_of.py
index f1fb31ccb7..c8de19bc88 100644
--- a/intersight/model/appliance_diag_setting_list_all_of.py
+++ b/intersight/model/appliance_diag_setting_list_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/appliance_diag_setting_response.py b/intersight/model/appliance_diag_setting_response.py
index 22171a7c00..ce4ab30fa2 100644
--- a/intersight/model/appliance_diag_setting_response.py
+++ b/intersight/model/appliance_diag_setting_response.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/appliance_external_syslog_setting.py b/intersight/model/appliance_external_syslog_setting.py
index 26eecf378e..db33e1f460 100644
--- a/intersight/model/appliance_external_syslog_setting.py
+++ b/intersight/model/appliance_external_syslog_setting.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/appliance_external_syslog_setting_all_of.py b/intersight/model/appliance_external_syslog_setting_all_of.py
index 3f0d03b1bd..29112403c3 100644
--- a/intersight/model/appliance_external_syslog_setting_all_of.py
+++ b/intersight/model/appliance_external_syslog_setting_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/appliance_external_syslog_setting_list.py b/intersight/model/appliance_external_syslog_setting_list.py
index 932100888d..fb858b36a0 100644
--- a/intersight/model/appliance_external_syslog_setting_list.py
+++ b/intersight/model/appliance_external_syslog_setting_list.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/appliance_external_syslog_setting_list_all_of.py b/intersight/model/appliance_external_syslog_setting_list_all_of.py
index c20c441007..8858266614 100644
--- a/intersight/model/appliance_external_syslog_setting_list_all_of.py
+++ b/intersight/model/appliance_external_syslog_setting_list_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/appliance_external_syslog_setting_response.py b/intersight/model/appliance_external_syslog_setting_response.py
index b0d7388a4e..a0febf51f8 100644
--- a/intersight/model/appliance_external_syslog_setting_response.py
+++ b/intersight/model/appliance_external_syslog_setting_response.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/appliance_file_system_status.py b/intersight/model/appliance_file_system_status.py
index 8cc736babf..7faa5d529c 100644
--- a/intersight/model/appliance_file_system_status.py
+++ b/intersight/model/appliance_file_system_status.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/appliance_file_system_status_all_of.py b/intersight/model/appliance_file_system_status_all_of.py
index af305a9495..5e1eee1403 100644
--- a/intersight/model/appliance_file_system_status_all_of.py
+++ b/intersight/model/appliance_file_system_status_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/appliance_file_system_status_list.py b/intersight/model/appliance_file_system_status_list.py
index f609122059..67b545e3a1 100644
--- a/intersight/model/appliance_file_system_status_list.py
+++ b/intersight/model/appliance_file_system_status_list.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/appliance_file_system_status_list_all_of.py b/intersight/model/appliance_file_system_status_list_all_of.py
index 8bc478c611..2588e5980f 100644
--- a/intersight/model/appliance_file_system_status_list_all_of.py
+++ b/intersight/model/appliance_file_system_status_list_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/appliance_file_system_status_relationship.py b/intersight/model/appliance_file_system_status_relationship.py
index 123014d116..747d900043 100644
--- a/intersight/model/appliance_file_system_status_relationship.py
+++ b/intersight/model/appliance_file_system_status_relationship.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
@@ -82,6 +82,8 @@ class ApplianceFileSystemStatusRelationship(ModelComposed):
},
('object_type',): {
'AAA.AUDITRECORD': "aaa.AuditRecord",
+ 'AAA.RETENTIONCONFIG': "aaa.RetentionConfig",
+ 'AAA.RETENTIONPOLICY': "aaa.RetentionPolicy",
'ACCESS.POLICY': "access.Policy",
'ADAPTER.CONFIGPOLICY': "adapter.ConfigPolicy",
'ADAPTER.EXTETHINTERFACE': "adapter.ExtEthInterface",
@@ -98,6 +100,7 @@ class ApplianceFileSystemStatusRelationship(ModelComposed):
'APPLIANCE.DATAEXPORTPOLICY': "appliance.DataExportPolicy",
'APPLIANCE.DEVICECERTIFICATE': "appliance.DeviceCertificate",
'APPLIANCE.DEVICECLAIM': "appliance.DeviceClaim",
+ 'APPLIANCE.DEVICEUPGRADEPOLICY': "appliance.DeviceUpgradePolicy",
'APPLIANCE.DIAGSETTING': "appliance.DiagSetting",
'APPLIANCE.EXTERNALSYSLOGSETTING': "appliance.ExternalSyslogSetting",
'APPLIANCE.FILESYSTEMSTATUS': "appliance.FileSystemStatus",
@@ -146,9 +149,12 @@ class ApplianceFileSystemStatusRelationship(ModelComposed):
'BOOT.UEFISHELLDEVICE': "boot.UefiShellDevice",
'BOOT.USBDEVICE': "boot.UsbDevice",
'BOOT.VMEDIADEVICE': "boot.VmediaDevice",
+ 'BULK.EXPORT': "bulk.Export",
+ 'BULK.EXPORTEDITEM': "bulk.ExportedItem",
'BULK.MOCLONER': "bulk.MoCloner",
'BULK.MOMERGER': "bulk.MoMerger",
'BULK.REQUEST': "bulk.Request",
+ 'BULK.SUBREQUESTOBJ': "bulk.SubRequestObj",
'CAPABILITY.ADAPTERUNITDESCRIPTOR': "capability.AdapterUnitDescriptor",
'CAPABILITY.CATALOG': "capability.Catalog",
'CAPABILITY.CHASSISDESCRIPTOR': "capability.ChassisDescriptor",
@@ -212,10 +218,6 @@ class ApplianceFileSystemStatusRelationship(ModelComposed):
'COND.HCLSTATUS': "cond.HclStatus",
'COND.HCLSTATUSDETAIL': "cond.HclStatusDetail",
'COND.HCLSTATUSJOB': "cond.HclStatusJob",
- 'CONFIG.EXPORTEDITEM': "config.ExportedItem",
- 'CONFIG.EXPORTER': "config.Exporter",
- 'CONFIG.IMPORTEDITEM': "config.ImportedItem",
- 'CONFIG.IMPORTER': "config.Importer",
'CONNECTORPACK.CONNECTORPACKUPGRADE': "connectorpack.ConnectorPackUpgrade",
'CONNECTORPACK.UPGRADEIMPACT': "connectorpack.UpgradeImpact",
'CRD.CUSTOMRESOURCE': "crd.CustomResource",
@@ -224,6 +226,7 @@ class ApplianceFileSystemStatusRelationship(ModelComposed):
'EQUIPMENT.CHASSISIDENTITY': "equipment.ChassisIdentity",
'EQUIPMENT.CHASSISOPERATION': "equipment.ChassisOperation",
'EQUIPMENT.DEVICESUMMARY': "equipment.DeviceSummary",
+ 'EQUIPMENT.EXPANDERMODULE': "equipment.ExpanderModule",
'EQUIPMENT.FAN': "equipment.Fan",
'EQUIPMENT.FANCONTROL': "equipment.FanControl",
'EQUIPMENT.FANMODULE': "equipment.FanModule",
@@ -472,6 +475,7 @@ class ApplianceFileSystemStatusRelationship(ModelComposed):
'KUBERNETES.ADDONDEFINITION': "kubernetes.AddonDefinition",
'KUBERNETES.ADDONPOLICY': "kubernetes.AddonPolicy",
'KUBERNETES.ADDONREPOSITORY': "kubernetes.AddonRepository",
+ 'KUBERNETES.BAREMETALNODEPROFILE': "kubernetes.BaremetalNodeProfile",
'KUBERNETES.CATALOG': "kubernetes.Catalog",
'KUBERNETES.CLUSTER': "kubernetes.Cluster",
'KUBERNETES.CLUSTERADDONPROFILE': "kubernetes.ClusterAddonProfile",
@@ -641,6 +645,11 @@ class ApplianceFileSystemStatusRelationship(ModelComposed):
'RESOURCE.LICENSERESOURCECOUNT': "resource.LicenseResourceCount",
'RESOURCE.MEMBERSHIP': "resource.Membership",
'RESOURCE.MEMBERSHIPHOLDER': "resource.MembershipHolder",
+ 'RESOURCEPOOL.LEASE': "resourcepool.Lease",
+ 'RESOURCEPOOL.LEASERESOURCE': "resourcepool.LeaseResource",
+ 'RESOURCEPOOL.POOL': "resourcepool.Pool",
+ 'RESOURCEPOOL.POOLMEMBER': "resourcepool.PoolMember",
+ 'RESOURCEPOOL.UNIVERSE': "resourcepool.Universe",
'RPROXY.REVERSEPROXY': "rproxy.ReverseProxy",
'SDCARD.POLICY': "sdcard.Policy",
'SDWAN.PROFILE': "sdwan.Profile",
@@ -756,6 +765,7 @@ class ApplianceFileSystemStatusRelationship(ModelComposed):
'TASK.NETAPPSCOPEDINVENTORY': "task.NetAppScopedInventory",
'TASK.PUBLICCLOUDSCOPEDINVENTORY': "task.PublicCloudScopedInventory",
'TASK.PURESCOPEDINVENTORY': "task.PureScopedInventory",
+ 'TASK.SERVERSCOPEDINVENTORY': "task.ServerScopedInventory",
'TECHSUPPORTMANAGEMENT.COLLECTIONCONTROLPOLICY': "techsupportmanagement.CollectionControlPolicy",
'TECHSUPPORTMANAGEMENT.DOWNLOAD': "techsupportmanagement.Download",
'TECHSUPPORTMANAGEMENT.TECHSUPPORTBUNDLE': "techsupportmanagement.TechSupportBundle",
@@ -787,6 +797,7 @@ class ApplianceFileSystemStatusRelationship(ModelComposed):
'VIRTUALIZATION.VMWAREVCENTER': "virtualization.VmwareVcenter",
'VIRTUALIZATION.VMWAREVIRTUALDISK': "virtualization.VmwareVirtualDisk",
'VIRTUALIZATION.VMWAREVIRTUALMACHINE': "virtualization.VmwareVirtualMachine",
+ 'VIRTUALIZATION.VMWAREVIRTUALMACHINESNAPSHOT': "virtualization.VmwareVirtualMachineSnapshot",
'VIRTUALIZATION.VMWAREVIRTUALNETWORKINTERFACE': "virtualization.VmwareVirtualNetworkInterface",
'VIRTUALIZATION.VMWAREVIRTUALSWITCH': "virtualization.VmwareVirtualSwitch",
'VMEDIA.POLICY': "vmedia.Policy",
@@ -819,12 +830,14 @@ class ApplianceFileSystemStatusRelationship(ModelComposed):
'WORKFLOW.TASKDEFINITION': "workflow.TaskDefinition",
'WORKFLOW.TASKINFO': "workflow.TaskInfo",
'WORKFLOW.TASKMETADATA': "workflow.TaskMetadata",
+ 'WORKFLOW.TASKNOTIFICATION': "workflow.TaskNotification",
'WORKFLOW.TEMPLATEEVALUATION': "workflow.TemplateEvaluation",
'WORKFLOW.TEMPLATEFUNCTIONMETA': "workflow.TemplateFunctionMeta",
'WORKFLOW.WORKFLOWDEFINITION': "workflow.WorkflowDefinition",
'WORKFLOW.WORKFLOWINFO': "workflow.WorkflowInfo",
'WORKFLOW.WORKFLOWMETA': "workflow.WorkflowMeta",
'WORKFLOW.WORKFLOWMETADATA': "workflow.WorkflowMetadata",
+ 'WORKFLOW.WORKFLOWNOTIFICATION': "workflow.WorkflowNotification",
},
}
diff --git a/intersight/model/appliance_file_system_status_response.py b/intersight/model/appliance_file_system_status_response.py
index 11dd3d138d..120bd737e9 100644
--- a/intersight/model/appliance_file_system_status_response.py
+++ b/intersight/model/appliance_file_system_status_response.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/appliance_group_status.py b/intersight/model/appliance_group_status.py
index e82c39f83f..e3a2a77f45 100644
--- a/intersight/model/appliance_group_status.py
+++ b/intersight/model/appliance_group_status.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/appliance_group_status_all_of.py b/intersight/model/appliance_group_status_all_of.py
index d0e9bd4f6b..3340b6cdd8 100644
--- a/intersight/model/appliance_group_status_all_of.py
+++ b/intersight/model/appliance_group_status_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/appliance_group_status_list.py b/intersight/model/appliance_group_status_list.py
index 70b1845573..f39143c6c3 100644
--- a/intersight/model/appliance_group_status_list.py
+++ b/intersight/model/appliance_group_status_list.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/appliance_group_status_list_all_of.py b/intersight/model/appliance_group_status_list_all_of.py
index 5ce41ba83d..e48ac5f126 100644
--- a/intersight/model/appliance_group_status_list_all_of.py
+++ b/intersight/model/appliance_group_status_list_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/appliance_group_status_relationship.py b/intersight/model/appliance_group_status_relationship.py
index d46288fdd0..ac08afb773 100644
--- a/intersight/model/appliance_group_status_relationship.py
+++ b/intersight/model/appliance_group_status_relationship.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
@@ -76,6 +76,8 @@ class ApplianceGroupStatusRelationship(ModelComposed):
},
('object_type',): {
'AAA.AUDITRECORD': "aaa.AuditRecord",
+ 'AAA.RETENTIONCONFIG': "aaa.RetentionConfig",
+ 'AAA.RETENTIONPOLICY': "aaa.RetentionPolicy",
'ACCESS.POLICY': "access.Policy",
'ADAPTER.CONFIGPOLICY': "adapter.ConfigPolicy",
'ADAPTER.EXTETHINTERFACE': "adapter.ExtEthInterface",
@@ -92,6 +94,7 @@ class ApplianceGroupStatusRelationship(ModelComposed):
'APPLIANCE.DATAEXPORTPOLICY': "appliance.DataExportPolicy",
'APPLIANCE.DEVICECERTIFICATE': "appliance.DeviceCertificate",
'APPLIANCE.DEVICECLAIM': "appliance.DeviceClaim",
+ 'APPLIANCE.DEVICEUPGRADEPOLICY': "appliance.DeviceUpgradePolicy",
'APPLIANCE.DIAGSETTING': "appliance.DiagSetting",
'APPLIANCE.EXTERNALSYSLOGSETTING': "appliance.ExternalSyslogSetting",
'APPLIANCE.FILESYSTEMSTATUS': "appliance.FileSystemStatus",
@@ -140,9 +143,12 @@ class ApplianceGroupStatusRelationship(ModelComposed):
'BOOT.UEFISHELLDEVICE': "boot.UefiShellDevice",
'BOOT.USBDEVICE': "boot.UsbDevice",
'BOOT.VMEDIADEVICE': "boot.VmediaDevice",
+ 'BULK.EXPORT': "bulk.Export",
+ 'BULK.EXPORTEDITEM': "bulk.ExportedItem",
'BULK.MOCLONER': "bulk.MoCloner",
'BULK.MOMERGER': "bulk.MoMerger",
'BULK.REQUEST': "bulk.Request",
+ 'BULK.SUBREQUESTOBJ': "bulk.SubRequestObj",
'CAPABILITY.ADAPTERUNITDESCRIPTOR': "capability.AdapterUnitDescriptor",
'CAPABILITY.CATALOG': "capability.Catalog",
'CAPABILITY.CHASSISDESCRIPTOR': "capability.ChassisDescriptor",
@@ -206,10 +212,6 @@ class ApplianceGroupStatusRelationship(ModelComposed):
'COND.HCLSTATUS': "cond.HclStatus",
'COND.HCLSTATUSDETAIL': "cond.HclStatusDetail",
'COND.HCLSTATUSJOB': "cond.HclStatusJob",
- 'CONFIG.EXPORTEDITEM': "config.ExportedItem",
- 'CONFIG.EXPORTER': "config.Exporter",
- 'CONFIG.IMPORTEDITEM': "config.ImportedItem",
- 'CONFIG.IMPORTER': "config.Importer",
'CONNECTORPACK.CONNECTORPACKUPGRADE': "connectorpack.ConnectorPackUpgrade",
'CONNECTORPACK.UPGRADEIMPACT': "connectorpack.UpgradeImpact",
'CRD.CUSTOMRESOURCE': "crd.CustomResource",
@@ -218,6 +220,7 @@ class ApplianceGroupStatusRelationship(ModelComposed):
'EQUIPMENT.CHASSISIDENTITY': "equipment.ChassisIdentity",
'EQUIPMENT.CHASSISOPERATION': "equipment.ChassisOperation",
'EQUIPMENT.DEVICESUMMARY': "equipment.DeviceSummary",
+ 'EQUIPMENT.EXPANDERMODULE': "equipment.ExpanderModule",
'EQUIPMENT.FAN': "equipment.Fan",
'EQUIPMENT.FANCONTROL': "equipment.FanControl",
'EQUIPMENT.FANMODULE': "equipment.FanModule",
@@ -466,6 +469,7 @@ class ApplianceGroupStatusRelationship(ModelComposed):
'KUBERNETES.ADDONDEFINITION': "kubernetes.AddonDefinition",
'KUBERNETES.ADDONPOLICY': "kubernetes.AddonPolicy",
'KUBERNETES.ADDONREPOSITORY': "kubernetes.AddonRepository",
+ 'KUBERNETES.BAREMETALNODEPROFILE': "kubernetes.BaremetalNodeProfile",
'KUBERNETES.CATALOG': "kubernetes.Catalog",
'KUBERNETES.CLUSTER': "kubernetes.Cluster",
'KUBERNETES.CLUSTERADDONPROFILE': "kubernetes.ClusterAddonProfile",
@@ -635,6 +639,11 @@ class ApplianceGroupStatusRelationship(ModelComposed):
'RESOURCE.LICENSERESOURCECOUNT': "resource.LicenseResourceCount",
'RESOURCE.MEMBERSHIP': "resource.Membership",
'RESOURCE.MEMBERSHIPHOLDER': "resource.MembershipHolder",
+ 'RESOURCEPOOL.LEASE': "resourcepool.Lease",
+ 'RESOURCEPOOL.LEASERESOURCE': "resourcepool.LeaseResource",
+ 'RESOURCEPOOL.POOL': "resourcepool.Pool",
+ 'RESOURCEPOOL.POOLMEMBER': "resourcepool.PoolMember",
+ 'RESOURCEPOOL.UNIVERSE': "resourcepool.Universe",
'RPROXY.REVERSEPROXY': "rproxy.ReverseProxy",
'SDCARD.POLICY': "sdcard.Policy",
'SDWAN.PROFILE': "sdwan.Profile",
@@ -750,6 +759,7 @@ class ApplianceGroupStatusRelationship(ModelComposed):
'TASK.NETAPPSCOPEDINVENTORY': "task.NetAppScopedInventory",
'TASK.PUBLICCLOUDSCOPEDINVENTORY': "task.PublicCloudScopedInventory",
'TASK.PURESCOPEDINVENTORY': "task.PureScopedInventory",
+ 'TASK.SERVERSCOPEDINVENTORY': "task.ServerScopedInventory",
'TECHSUPPORTMANAGEMENT.COLLECTIONCONTROLPOLICY': "techsupportmanagement.CollectionControlPolicy",
'TECHSUPPORTMANAGEMENT.DOWNLOAD': "techsupportmanagement.Download",
'TECHSUPPORTMANAGEMENT.TECHSUPPORTBUNDLE': "techsupportmanagement.TechSupportBundle",
@@ -781,6 +791,7 @@ class ApplianceGroupStatusRelationship(ModelComposed):
'VIRTUALIZATION.VMWAREVCENTER': "virtualization.VmwareVcenter",
'VIRTUALIZATION.VMWAREVIRTUALDISK': "virtualization.VmwareVirtualDisk",
'VIRTUALIZATION.VMWAREVIRTUALMACHINE': "virtualization.VmwareVirtualMachine",
+ 'VIRTUALIZATION.VMWAREVIRTUALMACHINESNAPSHOT': "virtualization.VmwareVirtualMachineSnapshot",
'VIRTUALIZATION.VMWAREVIRTUALNETWORKINTERFACE': "virtualization.VmwareVirtualNetworkInterface",
'VIRTUALIZATION.VMWAREVIRTUALSWITCH': "virtualization.VmwareVirtualSwitch",
'VMEDIA.POLICY': "vmedia.Policy",
@@ -813,12 +824,14 @@ class ApplianceGroupStatusRelationship(ModelComposed):
'WORKFLOW.TASKDEFINITION': "workflow.TaskDefinition",
'WORKFLOW.TASKINFO': "workflow.TaskInfo",
'WORKFLOW.TASKMETADATA': "workflow.TaskMetadata",
+ 'WORKFLOW.TASKNOTIFICATION': "workflow.TaskNotification",
'WORKFLOW.TEMPLATEEVALUATION': "workflow.TemplateEvaluation",
'WORKFLOW.TEMPLATEFUNCTIONMETA': "workflow.TemplateFunctionMeta",
'WORKFLOW.WORKFLOWDEFINITION': "workflow.WorkflowDefinition",
'WORKFLOW.WORKFLOWINFO': "workflow.WorkflowInfo",
'WORKFLOW.WORKFLOWMETA': "workflow.WorkflowMeta",
'WORKFLOW.WORKFLOWMETADATA': "workflow.WorkflowMetadata",
+ 'WORKFLOW.WORKFLOWNOTIFICATION': "workflow.WorkflowNotification",
},
}
diff --git a/intersight/model/appliance_group_status_response.py b/intersight/model/appliance_group_status_response.py
index d9b2dca504..c0ff4bc7c2 100644
--- a/intersight/model/appliance_group_status_response.py
+++ b/intersight/model/appliance_group_status_response.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/appliance_image_bundle.py b/intersight/model/appliance_image_bundle.py
index 269db84af6..82549af6e7 100644
--- a/intersight/model/appliance_image_bundle.py
+++ b/intersight/model/appliance_image_bundle.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/appliance_image_bundle_all_of.py b/intersight/model/appliance_image_bundle_all_of.py
index cdd06ef23e..50fc3b3a79 100644
--- a/intersight/model/appliance_image_bundle_all_of.py
+++ b/intersight/model/appliance_image_bundle_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/appliance_image_bundle_list.py b/intersight/model/appliance_image_bundle_list.py
index 675fc6fd0e..8b311cb77c 100644
--- a/intersight/model/appliance_image_bundle_list.py
+++ b/intersight/model/appliance_image_bundle_list.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/appliance_image_bundle_list_all_of.py b/intersight/model/appliance_image_bundle_list_all_of.py
index 282a2be76d..67e0443a28 100644
--- a/intersight/model/appliance_image_bundle_list_all_of.py
+++ b/intersight/model/appliance_image_bundle_list_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/appliance_image_bundle_relationship.py b/intersight/model/appliance_image_bundle_relationship.py
index 68f0286128..3188b585bf 100644
--- a/intersight/model/appliance_image_bundle_relationship.py
+++ b/intersight/model/appliance_image_bundle_relationship.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
@@ -83,6 +83,8 @@ class ApplianceImageBundleRelationship(ModelComposed):
},
('object_type',): {
'AAA.AUDITRECORD': "aaa.AuditRecord",
+ 'AAA.RETENTIONCONFIG': "aaa.RetentionConfig",
+ 'AAA.RETENTIONPOLICY': "aaa.RetentionPolicy",
'ACCESS.POLICY': "access.Policy",
'ADAPTER.CONFIGPOLICY': "adapter.ConfigPolicy",
'ADAPTER.EXTETHINTERFACE': "adapter.ExtEthInterface",
@@ -99,6 +101,7 @@ class ApplianceImageBundleRelationship(ModelComposed):
'APPLIANCE.DATAEXPORTPOLICY': "appliance.DataExportPolicy",
'APPLIANCE.DEVICECERTIFICATE': "appliance.DeviceCertificate",
'APPLIANCE.DEVICECLAIM': "appliance.DeviceClaim",
+ 'APPLIANCE.DEVICEUPGRADEPOLICY': "appliance.DeviceUpgradePolicy",
'APPLIANCE.DIAGSETTING': "appliance.DiagSetting",
'APPLIANCE.EXTERNALSYSLOGSETTING': "appliance.ExternalSyslogSetting",
'APPLIANCE.FILESYSTEMSTATUS': "appliance.FileSystemStatus",
@@ -147,9 +150,12 @@ class ApplianceImageBundleRelationship(ModelComposed):
'BOOT.UEFISHELLDEVICE': "boot.UefiShellDevice",
'BOOT.USBDEVICE': "boot.UsbDevice",
'BOOT.VMEDIADEVICE': "boot.VmediaDevice",
+ 'BULK.EXPORT': "bulk.Export",
+ 'BULK.EXPORTEDITEM': "bulk.ExportedItem",
'BULK.MOCLONER': "bulk.MoCloner",
'BULK.MOMERGER': "bulk.MoMerger",
'BULK.REQUEST': "bulk.Request",
+ 'BULK.SUBREQUESTOBJ': "bulk.SubRequestObj",
'CAPABILITY.ADAPTERUNITDESCRIPTOR': "capability.AdapterUnitDescriptor",
'CAPABILITY.CATALOG': "capability.Catalog",
'CAPABILITY.CHASSISDESCRIPTOR': "capability.ChassisDescriptor",
@@ -213,10 +219,6 @@ class ApplianceImageBundleRelationship(ModelComposed):
'COND.HCLSTATUS': "cond.HclStatus",
'COND.HCLSTATUSDETAIL': "cond.HclStatusDetail",
'COND.HCLSTATUSJOB': "cond.HclStatusJob",
- 'CONFIG.EXPORTEDITEM': "config.ExportedItem",
- 'CONFIG.EXPORTER': "config.Exporter",
- 'CONFIG.IMPORTEDITEM': "config.ImportedItem",
- 'CONFIG.IMPORTER': "config.Importer",
'CONNECTORPACK.CONNECTORPACKUPGRADE': "connectorpack.ConnectorPackUpgrade",
'CONNECTORPACK.UPGRADEIMPACT': "connectorpack.UpgradeImpact",
'CRD.CUSTOMRESOURCE': "crd.CustomResource",
@@ -225,6 +227,7 @@ class ApplianceImageBundleRelationship(ModelComposed):
'EQUIPMENT.CHASSISIDENTITY': "equipment.ChassisIdentity",
'EQUIPMENT.CHASSISOPERATION': "equipment.ChassisOperation",
'EQUIPMENT.DEVICESUMMARY': "equipment.DeviceSummary",
+ 'EQUIPMENT.EXPANDERMODULE': "equipment.ExpanderModule",
'EQUIPMENT.FAN': "equipment.Fan",
'EQUIPMENT.FANCONTROL': "equipment.FanControl",
'EQUIPMENT.FANMODULE': "equipment.FanModule",
@@ -473,6 +476,7 @@ class ApplianceImageBundleRelationship(ModelComposed):
'KUBERNETES.ADDONDEFINITION': "kubernetes.AddonDefinition",
'KUBERNETES.ADDONPOLICY': "kubernetes.AddonPolicy",
'KUBERNETES.ADDONREPOSITORY': "kubernetes.AddonRepository",
+ 'KUBERNETES.BAREMETALNODEPROFILE': "kubernetes.BaremetalNodeProfile",
'KUBERNETES.CATALOG': "kubernetes.Catalog",
'KUBERNETES.CLUSTER': "kubernetes.Cluster",
'KUBERNETES.CLUSTERADDONPROFILE': "kubernetes.ClusterAddonProfile",
@@ -642,6 +646,11 @@ class ApplianceImageBundleRelationship(ModelComposed):
'RESOURCE.LICENSERESOURCECOUNT': "resource.LicenseResourceCount",
'RESOURCE.MEMBERSHIP': "resource.Membership",
'RESOURCE.MEMBERSHIPHOLDER': "resource.MembershipHolder",
+ 'RESOURCEPOOL.LEASE': "resourcepool.Lease",
+ 'RESOURCEPOOL.LEASERESOURCE': "resourcepool.LeaseResource",
+ 'RESOURCEPOOL.POOL': "resourcepool.Pool",
+ 'RESOURCEPOOL.POOLMEMBER': "resourcepool.PoolMember",
+ 'RESOURCEPOOL.UNIVERSE': "resourcepool.Universe",
'RPROXY.REVERSEPROXY': "rproxy.ReverseProxy",
'SDCARD.POLICY': "sdcard.Policy",
'SDWAN.PROFILE': "sdwan.Profile",
@@ -757,6 +766,7 @@ class ApplianceImageBundleRelationship(ModelComposed):
'TASK.NETAPPSCOPEDINVENTORY': "task.NetAppScopedInventory",
'TASK.PUBLICCLOUDSCOPEDINVENTORY': "task.PublicCloudScopedInventory",
'TASK.PURESCOPEDINVENTORY': "task.PureScopedInventory",
+ 'TASK.SERVERSCOPEDINVENTORY': "task.ServerScopedInventory",
'TECHSUPPORTMANAGEMENT.COLLECTIONCONTROLPOLICY': "techsupportmanagement.CollectionControlPolicy",
'TECHSUPPORTMANAGEMENT.DOWNLOAD': "techsupportmanagement.Download",
'TECHSUPPORTMANAGEMENT.TECHSUPPORTBUNDLE': "techsupportmanagement.TechSupportBundle",
@@ -788,6 +798,7 @@ class ApplianceImageBundleRelationship(ModelComposed):
'VIRTUALIZATION.VMWAREVCENTER': "virtualization.VmwareVcenter",
'VIRTUALIZATION.VMWAREVIRTUALDISK': "virtualization.VmwareVirtualDisk",
'VIRTUALIZATION.VMWAREVIRTUALMACHINE': "virtualization.VmwareVirtualMachine",
+ 'VIRTUALIZATION.VMWAREVIRTUALMACHINESNAPSHOT': "virtualization.VmwareVirtualMachineSnapshot",
'VIRTUALIZATION.VMWAREVIRTUALNETWORKINTERFACE': "virtualization.VmwareVirtualNetworkInterface",
'VIRTUALIZATION.VMWAREVIRTUALSWITCH': "virtualization.VmwareVirtualSwitch",
'VMEDIA.POLICY': "vmedia.Policy",
@@ -820,12 +831,14 @@ class ApplianceImageBundleRelationship(ModelComposed):
'WORKFLOW.TASKDEFINITION': "workflow.TaskDefinition",
'WORKFLOW.TASKINFO': "workflow.TaskInfo",
'WORKFLOW.TASKMETADATA': "workflow.TaskMetadata",
+ 'WORKFLOW.TASKNOTIFICATION': "workflow.TaskNotification",
'WORKFLOW.TEMPLATEEVALUATION': "workflow.TemplateEvaluation",
'WORKFLOW.TEMPLATEFUNCTIONMETA': "workflow.TemplateFunctionMeta",
'WORKFLOW.WORKFLOWDEFINITION': "workflow.WorkflowDefinition",
'WORKFLOW.WORKFLOWINFO': "workflow.WorkflowInfo",
'WORKFLOW.WORKFLOWMETA': "workflow.WorkflowMeta",
'WORKFLOW.WORKFLOWMETADATA': "workflow.WorkflowMetadata",
+ 'WORKFLOW.WORKFLOWNOTIFICATION': "workflow.WorkflowNotification",
},
}
diff --git a/intersight/model/appliance_image_bundle_response.py b/intersight/model/appliance_image_bundle_response.py
index 6e8f712a22..d93150ca5c 100644
--- a/intersight/model/appliance_image_bundle_response.py
+++ b/intersight/model/appliance_image_bundle_response.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/appliance_key_value_pair.py b/intersight/model/appliance_key_value_pair.py
index 2fe087418d..6c7050f785 100644
--- a/intersight/model/appliance_key_value_pair.py
+++ b/intersight/model/appliance_key_value_pair.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/appliance_key_value_pair_all_of.py b/intersight/model/appliance_key_value_pair_all_of.py
index b55918fe60..a5fde86eb2 100644
--- a/intersight/model/appliance_key_value_pair_all_of.py
+++ b/intersight/model/appliance_key_value_pair_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/appliance_node_info.py b/intersight/model/appliance_node_info.py
index d9a7436308..370018fdb6 100644
--- a/intersight/model/appliance_node_info.py
+++ b/intersight/model/appliance_node_info.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/appliance_node_info_all_of.py b/intersight/model/appliance_node_info_all_of.py
index 1dca8bb618..76af2216e0 100644
--- a/intersight/model/appliance_node_info_all_of.py
+++ b/intersight/model/appliance_node_info_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/appliance_node_info_list.py b/intersight/model/appliance_node_info_list.py
index e413004599..61905a8e54 100644
--- a/intersight/model/appliance_node_info_list.py
+++ b/intersight/model/appliance_node_info_list.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/appliance_node_info_list_all_of.py b/intersight/model/appliance_node_info_list_all_of.py
index ec9b732719..f74006cd57 100644
--- a/intersight/model/appliance_node_info_list_all_of.py
+++ b/intersight/model/appliance_node_info_list_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/appliance_node_info_relationship.py b/intersight/model/appliance_node_info_relationship.py
index f14f43216c..12b0936014 100644
--- a/intersight/model/appliance_node_info_relationship.py
+++ b/intersight/model/appliance_node_info_relationship.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
@@ -82,6 +82,8 @@ class ApplianceNodeInfoRelationship(ModelComposed):
},
('object_type',): {
'AAA.AUDITRECORD': "aaa.AuditRecord",
+ 'AAA.RETENTIONCONFIG': "aaa.RetentionConfig",
+ 'AAA.RETENTIONPOLICY': "aaa.RetentionPolicy",
'ACCESS.POLICY': "access.Policy",
'ADAPTER.CONFIGPOLICY': "adapter.ConfigPolicy",
'ADAPTER.EXTETHINTERFACE': "adapter.ExtEthInterface",
@@ -98,6 +100,7 @@ class ApplianceNodeInfoRelationship(ModelComposed):
'APPLIANCE.DATAEXPORTPOLICY': "appliance.DataExportPolicy",
'APPLIANCE.DEVICECERTIFICATE': "appliance.DeviceCertificate",
'APPLIANCE.DEVICECLAIM': "appliance.DeviceClaim",
+ 'APPLIANCE.DEVICEUPGRADEPOLICY': "appliance.DeviceUpgradePolicy",
'APPLIANCE.DIAGSETTING': "appliance.DiagSetting",
'APPLIANCE.EXTERNALSYSLOGSETTING': "appliance.ExternalSyslogSetting",
'APPLIANCE.FILESYSTEMSTATUS': "appliance.FileSystemStatus",
@@ -146,9 +149,12 @@ class ApplianceNodeInfoRelationship(ModelComposed):
'BOOT.UEFISHELLDEVICE': "boot.UefiShellDevice",
'BOOT.USBDEVICE': "boot.UsbDevice",
'BOOT.VMEDIADEVICE': "boot.VmediaDevice",
+ 'BULK.EXPORT': "bulk.Export",
+ 'BULK.EXPORTEDITEM': "bulk.ExportedItem",
'BULK.MOCLONER': "bulk.MoCloner",
'BULK.MOMERGER': "bulk.MoMerger",
'BULK.REQUEST': "bulk.Request",
+ 'BULK.SUBREQUESTOBJ': "bulk.SubRequestObj",
'CAPABILITY.ADAPTERUNITDESCRIPTOR': "capability.AdapterUnitDescriptor",
'CAPABILITY.CATALOG': "capability.Catalog",
'CAPABILITY.CHASSISDESCRIPTOR': "capability.ChassisDescriptor",
@@ -212,10 +218,6 @@ class ApplianceNodeInfoRelationship(ModelComposed):
'COND.HCLSTATUS': "cond.HclStatus",
'COND.HCLSTATUSDETAIL': "cond.HclStatusDetail",
'COND.HCLSTATUSJOB': "cond.HclStatusJob",
- 'CONFIG.EXPORTEDITEM': "config.ExportedItem",
- 'CONFIG.EXPORTER': "config.Exporter",
- 'CONFIG.IMPORTEDITEM': "config.ImportedItem",
- 'CONFIG.IMPORTER': "config.Importer",
'CONNECTORPACK.CONNECTORPACKUPGRADE': "connectorpack.ConnectorPackUpgrade",
'CONNECTORPACK.UPGRADEIMPACT': "connectorpack.UpgradeImpact",
'CRD.CUSTOMRESOURCE': "crd.CustomResource",
@@ -224,6 +226,7 @@ class ApplianceNodeInfoRelationship(ModelComposed):
'EQUIPMENT.CHASSISIDENTITY': "equipment.ChassisIdentity",
'EQUIPMENT.CHASSISOPERATION': "equipment.ChassisOperation",
'EQUIPMENT.DEVICESUMMARY': "equipment.DeviceSummary",
+ 'EQUIPMENT.EXPANDERMODULE': "equipment.ExpanderModule",
'EQUIPMENT.FAN': "equipment.Fan",
'EQUIPMENT.FANCONTROL': "equipment.FanControl",
'EQUIPMENT.FANMODULE': "equipment.FanModule",
@@ -472,6 +475,7 @@ class ApplianceNodeInfoRelationship(ModelComposed):
'KUBERNETES.ADDONDEFINITION': "kubernetes.AddonDefinition",
'KUBERNETES.ADDONPOLICY': "kubernetes.AddonPolicy",
'KUBERNETES.ADDONREPOSITORY': "kubernetes.AddonRepository",
+ 'KUBERNETES.BAREMETALNODEPROFILE': "kubernetes.BaremetalNodeProfile",
'KUBERNETES.CATALOG': "kubernetes.Catalog",
'KUBERNETES.CLUSTER': "kubernetes.Cluster",
'KUBERNETES.CLUSTERADDONPROFILE': "kubernetes.ClusterAddonProfile",
@@ -641,6 +645,11 @@ class ApplianceNodeInfoRelationship(ModelComposed):
'RESOURCE.LICENSERESOURCECOUNT': "resource.LicenseResourceCount",
'RESOURCE.MEMBERSHIP': "resource.Membership",
'RESOURCE.MEMBERSHIPHOLDER': "resource.MembershipHolder",
+ 'RESOURCEPOOL.LEASE': "resourcepool.Lease",
+ 'RESOURCEPOOL.LEASERESOURCE': "resourcepool.LeaseResource",
+ 'RESOURCEPOOL.POOL': "resourcepool.Pool",
+ 'RESOURCEPOOL.POOLMEMBER': "resourcepool.PoolMember",
+ 'RESOURCEPOOL.UNIVERSE': "resourcepool.Universe",
'RPROXY.REVERSEPROXY': "rproxy.ReverseProxy",
'SDCARD.POLICY': "sdcard.Policy",
'SDWAN.PROFILE': "sdwan.Profile",
@@ -756,6 +765,7 @@ class ApplianceNodeInfoRelationship(ModelComposed):
'TASK.NETAPPSCOPEDINVENTORY': "task.NetAppScopedInventory",
'TASK.PUBLICCLOUDSCOPEDINVENTORY': "task.PublicCloudScopedInventory",
'TASK.PURESCOPEDINVENTORY': "task.PureScopedInventory",
+ 'TASK.SERVERSCOPEDINVENTORY': "task.ServerScopedInventory",
'TECHSUPPORTMANAGEMENT.COLLECTIONCONTROLPOLICY': "techsupportmanagement.CollectionControlPolicy",
'TECHSUPPORTMANAGEMENT.DOWNLOAD': "techsupportmanagement.Download",
'TECHSUPPORTMANAGEMENT.TECHSUPPORTBUNDLE': "techsupportmanagement.TechSupportBundle",
@@ -787,6 +797,7 @@ class ApplianceNodeInfoRelationship(ModelComposed):
'VIRTUALIZATION.VMWAREVCENTER': "virtualization.VmwareVcenter",
'VIRTUALIZATION.VMWAREVIRTUALDISK': "virtualization.VmwareVirtualDisk",
'VIRTUALIZATION.VMWAREVIRTUALMACHINE': "virtualization.VmwareVirtualMachine",
+ 'VIRTUALIZATION.VMWAREVIRTUALMACHINESNAPSHOT': "virtualization.VmwareVirtualMachineSnapshot",
'VIRTUALIZATION.VMWAREVIRTUALNETWORKINTERFACE': "virtualization.VmwareVirtualNetworkInterface",
'VIRTUALIZATION.VMWAREVIRTUALSWITCH': "virtualization.VmwareVirtualSwitch",
'VMEDIA.POLICY': "vmedia.Policy",
@@ -819,12 +830,14 @@ class ApplianceNodeInfoRelationship(ModelComposed):
'WORKFLOW.TASKDEFINITION': "workflow.TaskDefinition",
'WORKFLOW.TASKINFO': "workflow.TaskInfo",
'WORKFLOW.TASKMETADATA': "workflow.TaskMetadata",
+ 'WORKFLOW.TASKNOTIFICATION': "workflow.TaskNotification",
'WORKFLOW.TEMPLATEEVALUATION': "workflow.TemplateEvaluation",
'WORKFLOW.TEMPLATEFUNCTIONMETA': "workflow.TemplateFunctionMeta",
'WORKFLOW.WORKFLOWDEFINITION': "workflow.WorkflowDefinition",
'WORKFLOW.WORKFLOWINFO': "workflow.WorkflowInfo",
'WORKFLOW.WORKFLOWMETA': "workflow.WorkflowMeta",
'WORKFLOW.WORKFLOWMETADATA': "workflow.WorkflowMetadata",
+ 'WORKFLOW.WORKFLOWNOTIFICATION': "workflow.WorkflowNotification",
},
}
diff --git a/intersight/model/appliance_node_info_response.py b/intersight/model/appliance_node_info_response.py
index 6fdb5969d7..fb1a84d3dc 100644
--- a/intersight/model/appliance_node_info_response.py
+++ b/intersight/model/appliance_node_info_response.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/appliance_node_status.py b/intersight/model/appliance_node_status.py
index 4c6c0dce4d..1d783dacc6 100644
--- a/intersight/model/appliance_node_status.py
+++ b/intersight/model/appliance_node_status.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/appliance_node_status_all_of.py b/intersight/model/appliance_node_status_all_of.py
index 3c8a85f8a2..8f9dc4ce93 100644
--- a/intersight/model/appliance_node_status_all_of.py
+++ b/intersight/model/appliance_node_status_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/appliance_node_status_list.py b/intersight/model/appliance_node_status_list.py
index d70da25f90..899f4b645d 100644
--- a/intersight/model/appliance_node_status_list.py
+++ b/intersight/model/appliance_node_status_list.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/appliance_node_status_list_all_of.py b/intersight/model/appliance_node_status_list_all_of.py
index 64e3e9aaf4..a4849da56d 100644
--- a/intersight/model/appliance_node_status_list_all_of.py
+++ b/intersight/model/appliance_node_status_list_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/appliance_node_status_relationship.py b/intersight/model/appliance_node_status_relationship.py
index 063a2ee14e..0bce8d196c 100644
--- a/intersight/model/appliance_node_status_relationship.py
+++ b/intersight/model/appliance_node_status_relationship.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
@@ -91,6 +91,8 @@ class ApplianceNodeStatusRelationship(ModelComposed):
},
('object_type',): {
'AAA.AUDITRECORD': "aaa.AuditRecord",
+ 'AAA.RETENTIONCONFIG': "aaa.RetentionConfig",
+ 'AAA.RETENTIONPOLICY': "aaa.RetentionPolicy",
'ACCESS.POLICY': "access.Policy",
'ADAPTER.CONFIGPOLICY': "adapter.ConfigPolicy",
'ADAPTER.EXTETHINTERFACE': "adapter.ExtEthInterface",
@@ -107,6 +109,7 @@ class ApplianceNodeStatusRelationship(ModelComposed):
'APPLIANCE.DATAEXPORTPOLICY': "appliance.DataExportPolicy",
'APPLIANCE.DEVICECERTIFICATE': "appliance.DeviceCertificate",
'APPLIANCE.DEVICECLAIM': "appliance.DeviceClaim",
+ 'APPLIANCE.DEVICEUPGRADEPOLICY': "appliance.DeviceUpgradePolicy",
'APPLIANCE.DIAGSETTING': "appliance.DiagSetting",
'APPLIANCE.EXTERNALSYSLOGSETTING': "appliance.ExternalSyslogSetting",
'APPLIANCE.FILESYSTEMSTATUS': "appliance.FileSystemStatus",
@@ -155,9 +158,12 @@ class ApplianceNodeStatusRelationship(ModelComposed):
'BOOT.UEFISHELLDEVICE': "boot.UefiShellDevice",
'BOOT.USBDEVICE': "boot.UsbDevice",
'BOOT.VMEDIADEVICE': "boot.VmediaDevice",
+ 'BULK.EXPORT': "bulk.Export",
+ 'BULK.EXPORTEDITEM': "bulk.ExportedItem",
'BULK.MOCLONER': "bulk.MoCloner",
'BULK.MOMERGER': "bulk.MoMerger",
'BULK.REQUEST': "bulk.Request",
+ 'BULK.SUBREQUESTOBJ': "bulk.SubRequestObj",
'CAPABILITY.ADAPTERUNITDESCRIPTOR': "capability.AdapterUnitDescriptor",
'CAPABILITY.CATALOG': "capability.Catalog",
'CAPABILITY.CHASSISDESCRIPTOR': "capability.ChassisDescriptor",
@@ -221,10 +227,6 @@ class ApplianceNodeStatusRelationship(ModelComposed):
'COND.HCLSTATUS': "cond.HclStatus",
'COND.HCLSTATUSDETAIL': "cond.HclStatusDetail",
'COND.HCLSTATUSJOB': "cond.HclStatusJob",
- 'CONFIG.EXPORTEDITEM': "config.ExportedItem",
- 'CONFIG.EXPORTER': "config.Exporter",
- 'CONFIG.IMPORTEDITEM': "config.ImportedItem",
- 'CONFIG.IMPORTER': "config.Importer",
'CONNECTORPACK.CONNECTORPACKUPGRADE': "connectorpack.ConnectorPackUpgrade",
'CONNECTORPACK.UPGRADEIMPACT': "connectorpack.UpgradeImpact",
'CRD.CUSTOMRESOURCE': "crd.CustomResource",
@@ -233,6 +235,7 @@ class ApplianceNodeStatusRelationship(ModelComposed):
'EQUIPMENT.CHASSISIDENTITY': "equipment.ChassisIdentity",
'EQUIPMENT.CHASSISOPERATION': "equipment.ChassisOperation",
'EQUIPMENT.DEVICESUMMARY': "equipment.DeviceSummary",
+ 'EQUIPMENT.EXPANDERMODULE': "equipment.ExpanderModule",
'EQUIPMENT.FAN': "equipment.Fan",
'EQUIPMENT.FANCONTROL': "equipment.FanControl",
'EQUIPMENT.FANMODULE': "equipment.FanModule",
@@ -481,6 +484,7 @@ class ApplianceNodeStatusRelationship(ModelComposed):
'KUBERNETES.ADDONDEFINITION': "kubernetes.AddonDefinition",
'KUBERNETES.ADDONPOLICY': "kubernetes.AddonPolicy",
'KUBERNETES.ADDONREPOSITORY': "kubernetes.AddonRepository",
+ 'KUBERNETES.BAREMETALNODEPROFILE': "kubernetes.BaremetalNodeProfile",
'KUBERNETES.CATALOG': "kubernetes.Catalog",
'KUBERNETES.CLUSTER': "kubernetes.Cluster",
'KUBERNETES.CLUSTERADDONPROFILE': "kubernetes.ClusterAddonProfile",
@@ -650,6 +654,11 @@ class ApplianceNodeStatusRelationship(ModelComposed):
'RESOURCE.LICENSERESOURCECOUNT': "resource.LicenseResourceCount",
'RESOURCE.MEMBERSHIP': "resource.Membership",
'RESOURCE.MEMBERSHIPHOLDER': "resource.MembershipHolder",
+ 'RESOURCEPOOL.LEASE': "resourcepool.Lease",
+ 'RESOURCEPOOL.LEASERESOURCE': "resourcepool.LeaseResource",
+ 'RESOURCEPOOL.POOL': "resourcepool.Pool",
+ 'RESOURCEPOOL.POOLMEMBER': "resourcepool.PoolMember",
+ 'RESOURCEPOOL.UNIVERSE': "resourcepool.Universe",
'RPROXY.REVERSEPROXY': "rproxy.ReverseProxy",
'SDCARD.POLICY': "sdcard.Policy",
'SDWAN.PROFILE': "sdwan.Profile",
@@ -765,6 +774,7 @@ class ApplianceNodeStatusRelationship(ModelComposed):
'TASK.NETAPPSCOPEDINVENTORY': "task.NetAppScopedInventory",
'TASK.PUBLICCLOUDSCOPEDINVENTORY': "task.PublicCloudScopedInventory",
'TASK.PURESCOPEDINVENTORY': "task.PureScopedInventory",
+ 'TASK.SERVERSCOPEDINVENTORY': "task.ServerScopedInventory",
'TECHSUPPORTMANAGEMENT.COLLECTIONCONTROLPOLICY': "techsupportmanagement.CollectionControlPolicy",
'TECHSUPPORTMANAGEMENT.DOWNLOAD': "techsupportmanagement.Download",
'TECHSUPPORTMANAGEMENT.TECHSUPPORTBUNDLE': "techsupportmanagement.TechSupportBundle",
@@ -796,6 +806,7 @@ class ApplianceNodeStatusRelationship(ModelComposed):
'VIRTUALIZATION.VMWAREVCENTER': "virtualization.VmwareVcenter",
'VIRTUALIZATION.VMWAREVIRTUALDISK': "virtualization.VmwareVirtualDisk",
'VIRTUALIZATION.VMWAREVIRTUALMACHINE': "virtualization.VmwareVirtualMachine",
+ 'VIRTUALIZATION.VMWAREVIRTUALMACHINESNAPSHOT': "virtualization.VmwareVirtualMachineSnapshot",
'VIRTUALIZATION.VMWAREVIRTUALNETWORKINTERFACE': "virtualization.VmwareVirtualNetworkInterface",
'VIRTUALIZATION.VMWAREVIRTUALSWITCH': "virtualization.VmwareVirtualSwitch",
'VMEDIA.POLICY': "vmedia.Policy",
@@ -828,12 +839,14 @@ class ApplianceNodeStatusRelationship(ModelComposed):
'WORKFLOW.TASKDEFINITION': "workflow.TaskDefinition",
'WORKFLOW.TASKINFO': "workflow.TaskInfo",
'WORKFLOW.TASKMETADATA': "workflow.TaskMetadata",
+ 'WORKFLOW.TASKNOTIFICATION': "workflow.TaskNotification",
'WORKFLOW.TEMPLATEEVALUATION': "workflow.TemplateEvaluation",
'WORKFLOW.TEMPLATEFUNCTIONMETA': "workflow.TemplateFunctionMeta",
'WORKFLOW.WORKFLOWDEFINITION': "workflow.WorkflowDefinition",
'WORKFLOW.WORKFLOWINFO': "workflow.WorkflowInfo",
'WORKFLOW.WORKFLOWMETA': "workflow.WorkflowMeta",
'WORKFLOW.WORKFLOWMETADATA': "workflow.WorkflowMetadata",
+ 'WORKFLOW.WORKFLOWNOTIFICATION': "workflow.WorkflowNotification",
},
}
diff --git a/intersight/model/appliance_node_status_response.py b/intersight/model/appliance_node_status_response.py
index 13c0d3fc7b..87fea9b13e 100644
--- a/intersight/model/appliance_node_status_response.py
+++ b/intersight/model/appliance_node_status_response.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/appliance_release_note.py b/intersight/model/appliance_release_note.py
index 03bb49a5b7..5b2812336c 100644
--- a/intersight/model/appliance_release_note.py
+++ b/intersight/model/appliance_release_note.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/appliance_release_note_all_of.py b/intersight/model/appliance_release_note_all_of.py
index 17627323d9..17e9eaaa62 100644
--- a/intersight/model/appliance_release_note_all_of.py
+++ b/intersight/model/appliance_release_note_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/appliance_release_note_list.py b/intersight/model/appliance_release_note_list.py
index 96e1d1b0f7..4b8624644f 100644
--- a/intersight/model/appliance_release_note_list.py
+++ b/intersight/model/appliance_release_note_list.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/appliance_release_note_list_all_of.py b/intersight/model/appliance_release_note_list_all_of.py
index 8a3feb1016..a36fe52a0b 100644
--- a/intersight/model/appliance_release_note_list_all_of.py
+++ b/intersight/model/appliance_release_note_list_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/appliance_release_note_response.py b/intersight/model/appliance_release_note_response.py
index c8af259f66..6eea8244e4 100644
--- a/intersight/model/appliance_release_note_response.py
+++ b/intersight/model/appliance_release_note_response.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/appliance_remote_file_import.py b/intersight/model/appliance_remote_file_import.py
index 37d167c122..8e0309894d 100644
--- a/intersight/model/appliance_remote_file_import.py
+++ b/intersight/model/appliance_remote_file_import.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/appliance_remote_file_import_all_of.py b/intersight/model/appliance_remote_file_import_all_of.py
index 2a767a17e2..4e32adbf07 100644
--- a/intersight/model/appliance_remote_file_import_all_of.py
+++ b/intersight/model/appliance_remote_file_import_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/appliance_remote_file_import_list.py b/intersight/model/appliance_remote_file_import_list.py
index 6385c7c629..fd99130187 100644
--- a/intersight/model/appliance_remote_file_import_list.py
+++ b/intersight/model/appliance_remote_file_import_list.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/appliance_remote_file_import_list_all_of.py b/intersight/model/appliance_remote_file_import_list_all_of.py
index d3d88d4e72..f9eb730021 100644
--- a/intersight/model/appliance_remote_file_import_list_all_of.py
+++ b/intersight/model/appliance_remote_file_import_list_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/appliance_remote_file_import_response.py b/intersight/model/appliance_remote_file_import_response.py
index 65385852f5..0a7588f1dd 100644
--- a/intersight/model/appliance_remote_file_import_response.py
+++ b/intersight/model/appliance_remote_file_import_response.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/appliance_restore.py b/intersight/model/appliance_restore.py
index a4dce60e49..9a6684c638 100644
--- a/intersight/model/appliance_restore.py
+++ b/intersight/model/appliance_restore.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/appliance_restore_all_of.py b/intersight/model/appliance_restore_all_of.py
index e8492277db..d4c14d58fc 100644
--- a/intersight/model/appliance_restore_all_of.py
+++ b/intersight/model/appliance_restore_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/appliance_restore_list.py b/intersight/model/appliance_restore_list.py
index d3888c7808..ef9768b9a0 100644
--- a/intersight/model/appliance_restore_list.py
+++ b/intersight/model/appliance_restore_list.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/appliance_restore_list_all_of.py b/intersight/model/appliance_restore_list_all_of.py
index 00b755a375..bd949d7c30 100644
--- a/intersight/model/appliance_restore_list_all_of.py
+++ b/intersight/model/appliance_restore_list_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/appliance_restore_response.py b/intersight/model/appliance_restore_response.py
index 8470a364c4..f1b000e1e3 100644
--- a/intersight/model/appliance_restore_response.py
+++ b/intersight/model/appliance_restore_response.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/appliance_setup_info.py b/intersight/model/appliance_setup_info.py
index a8b2d40570..28a469dc3e 100644
--- a/intersight/model/appliance_setup_info.py
+++ b/intersight/model/appliance_setup_info.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
@@ -111,11 +111,13 @@ def openapi_types():
return {
'class_id': (str,), # noqa: E501
'object_type': (str,), # noqa: E501
+ 'backup_version': (str,), # noqa: E501
'build_type': (str,), # noqa: E501
'capabilities': ([ApplianceKeyValuePair], none_type,), # noqa: E501
'cloud_url': (str,), # noqa: E501
'deployment_mode': (str,), # noqa: E501
'end_time': (datetime,), # noqa: E501
+ 'latest_version': (str,), # noqa: E501
'setup_states': ([str], none_type,), # noqa: E501
'start_time': (datetime,), # noqa: E501
'account': (IamAccountRelationship,), # noqa: E501
@@ -145,11 +147,13 @@ def discriminator():
attribute_map = {
'class_id': 'ClassId', # noqa: E501
'object_type': 'ObjectType', # noqa: E501
+ 'backup_version': 'BackupVersion', # noqa: E501
'build_type': 'BuildType', # noqa: E501
'capabilities': 'Capabilities', # noqa: E501
'cloud_url': 'CloudUrl', # noqa: E501
'deployment_mode': 'DeploymentMode', # noqa: E501
'end_time': 'EndTime', # noqa: E501
+ 'latest_version': 'LatestVersion', # noqa: E501
'setup_states': 'SetupStates', # noqa: E501
'start_time': 'StartTime', # noqa: E501
'account': 'Account', # noqa: E501
@@ -219,11 +223,13 @@ def __init__(self, *args, **kwargs): # noqa: E501
Animal class but this time we won't travel
through its discriminator because we passed in
_visited_composed_classes = (Animal,)
+ backup_version (str): The version of Intersight Appliance backup which can restore to.. [optional] # noqa: E501
build_type (str): Build type of the Intersight Appliance setup (e.g. release or debug).. [optional] # noqa: E501
capabilities ([ApplianceKeyValuePair], none_type): [optional] # noqa: E501
cloud_url (str): URL of the Intersight to which this Intersight Appliance is connected to.. [optional] # noqa: E501
deployment_mode (str): Indicates where Intersight Appliance is installed in air-gapped or connected mode. In connected mode, Intersight Appliance is claimed by Intesight SaaS. In air-gapped mode, Intersight Appliance does not connect to any Cisco services. * `Connected` - In connected mode, Intersight Appliance connects to Intersight SaaS and other cisco.com services. * `Private` - In private mode, Intersight Appliance does not connect to Intersight SaaS or any cisco.com services.. [optional] if omitted the server will use the default value of "Connected" # noqa: E501
end_time (datetime): End date of the Intersight Appliance's initial setup.. [optional] # noqa: E501
+ latest_version (str): The most recent version which Intersight Appliance can upgrade to.. [optional] # noqa: E501
setup_states ([str], none_type): [optional] # noqa: E501
start_time (datetime): Start date of the Intersight Appliance's initial setup.. [optional] # noqa: E501
account (IamAccountRelationship): [optional] # noqa: E501
diff --git a/intersight/model/appliance_setup_info_all_of.py b/intersight/model/appliance_setup_info_all_of.py
index 1972e1e536..590e1348d3 100644
--- a/intersight/model/appliance_setup_info_all_of.py
+++ b/intersight/model/appliance_setup_info_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
@@ -92,11 +92,13 @@ def openapi_types():
return {
'class_id': (str,), # noqa: E501
'object_type': (str,), # noqa: E501
+ 'backup_version': (str,), # noqa: E501
'build_type': (str,), # noqa: E501
'capabilities': ([ApplianceKeyValuePair], none_type,), # noqa: E501
'cloud_url': (str,), # noqa: E501
'deployment_mode': (str,), # noqa: E501
'end_time': (datetime,), # noqa: E501
+ 'latest_version': (str,), # noqa: E501
'setup_states': ([str], none_type,), # noqa: E501
'start_time': (datetime,), # noqa: E501
'account': (IamAccountRelationship,), # noqa: E501
@@ -110,11 +112,13 @@ def discriminator():
attribute_map = {
'class_id': 'ClassId', # noqa: E501
'object_type': 'ObjectType', # noqa: E501
+ 'backup_version': 'BackupVersion', # noqa: E501
'build_type': 'BuildType', # noqa: E501
'capabilities': 'Capabilities', # noqa: E501
'cloud_url': 'CloudUrl', # noqa: E501
'deployment_mode': 'DeploymentMode', # noqa: E501
'end_time': 'EndTime', # noqa: E501
+ 'latest_version': 'LatestVersion', # noqa: E501
'setup_states': 'SetupStates', # noqa: E501
'start_time': 'StartTime', # noqa: E501
'account': 'Account', # noqa: E501
@@ -170,11 +174,13 @@ def __init__(self, *args, **kwargs): # noqa: E501
Animal class but this time we won't travel
through its discriminator because we passed in
_visited_composed_classes = (Animal,)
+ backup_version (str): The version of Intersight Appliance backup which can restore to.. [optional] # noqa: E501
build_type (str): Build type of the Intersight Appliance setup (e.g. release or debug).. [optional] # noqa: E501
capabilities ([ApplianceKeyValuePair], none_type): [optional] # noqa: E501
cloud_url (str): URL of the Intersight to which this Intersight Appliance is connected to.. [optional] # noqa: E501
deployment_mode (str): Indicates where Intersight Appliance is installed in air-gapped or connected mode. In connected mode, Intersight Appliance is claimed by Intesight SaaS. In air-gapped mode, Intersight Appliance does not connect to any Cisco services. * `Connected` - In connected mode, Intersight Appliance connects to Intersight SaaS and other cisco.com services. * `Private` - In private mode, Intersight Appliance does not connect to Intersight SaaS or any cisco.com services.. [optional] if omitted the server will use the default value of "Connected" # noqa: E501
end_time (datetime): End date of the Intersight Appliance's initial setup.. [optional] # noqa: E501
+ latest_version (str): The most recent version which Intersight Appliance can upgrade to.. [optional] # noqa: E501
setup_states ([str], none_type): [optional] # noqa: E501
start_time (datetime): Start date of the Intersight Appliance's initial setup.. [optional] # noqa: E501
account (IamAccountRelationship): [optional] # noqa: E501
diff --git a/intersight/model/appliance_setup_info_list.py b/intersight/model/appliance_setup_info_list.py
index ecff0ce5f0..1a1d5da00f 100644
--- a/intersight/model/appliance_setup_info_list.py
+++ b/intersight/model/appliance_setup_info_list.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/appliance_setup_info_list_all_of.py b/intersight/model/appliance_setup_info_list_all_of.py
index 9d8fc39fa7..9bb2ec5153 100644
--- a/intersight/model/appliance_setup_info_list_all_of.py
+++ b/intersight/model/appliance_setup_info_list_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/appliance_setup_info_response.py b/intersight/model/appliance_setup_info_response.py
index 62e0524936..f60451b1e3 100644
--- a/intersight/model/appliance_setup_info_response.py
+++ b/intersight/model/appliance_setup_info_response.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/appliance_status_check.py b/intersight/model/appliance_status_check.py
index 4e66af9642..92635103af 100644
--- a/intersight/model/appliance_status_check.py
+++ b/intersight/model/appliance_status_check.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/appliance_status_check_all_of.py b/intersight/model/appliance_status_check_all_of.py
index 0182c7106a..81a067d895 100644
--- a/intersight/model/appliance_status_check_all_of.py
+++ b/intersight/model/appliance_status_check_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/appliance_system_info.py b/intersight/model/appliance_system_info.py
index 3ec8036aff..653eabb41f 100644
--- a/intersight/model/appliance_system_info.py
+++ b/intersight/model/appliance_system_info.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/appliance_system_info_all_of.py b/intersight/model/appliance_system_info_all_of.py
index 065de9aa45..29f004531b 100644
--- a/intersight/model/appliance_system_info_all_of.py
+++ b/intersight/model/appliance_system_info_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/appliance_system_info_list.py b/intersight/model/appliance_system_info_list.py
index 140ccc48f9..baaa22055f 100644
--- a/intersight/model/appliance_system_info_list.py
+++ b/intersight/model/appliance_system_info_list.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/appliance_system_info_list_all_of.py b/intersight/model/appliance_system_info_list_all_of.py
index 650a42ae50..556acc0b97 100644
--- a/intersight/model/appliance_system_info_list_all_of.py
+++ b/intersight/model/appliance_system_info_list_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/appliance_system_info_relationship.py b/intersight/model/appliance_system_info_relationship.py
index 4ceaacb27b..a3f79edf4a 100644
--- a/intersight/model/appliance_system_info_relationship.py
+++ b/intersight/model/appliance_system_info_relationship.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
@@ -339,6 +339,8 @@ class ApplianceSystemInfoRelationship(ModelComposed):
},
('object_type',): {
'AAA.AUDITRECORD': "aaa.AuditRecord",
+ 'AAA.RETENTIONCONFIG': "aaa.RetentionConfig",
+ 'AAA.RETENTIONPOLICY': "aaa.RetentionPolicy",
'ACCESS.POLICY': "access.Policy",
'ADAPTER.CONFIGPOLICY': "adapter.ConfigPolicy",
'ADAPTER.EXTETHINTERFACE': "adapter.ExtEthInterface",
@@ -355,6 +357,7 @@ class ApplianceSystemInfoRelationship(ModelComposed):
'APPLIANCE.DATAEXPORTPOLICY': "appliance.DataExportPolicy",
'APPLIANCE.DEVICECERTIFICATE': "appliance.DeviceCertificate",
'APPLIANCE.DEVICECLAIM': "appliance.DeviceClaim",
+ 'APPLIANCE.DEVICEUPGRADEPOLICY': "appliance.DeviceUpgradePolicy",
'APPLIANCE.DIAGSETTING': "appliance.DiagSetting",
'APPLIANCE.EXTERNALSYSLOGSETTING': "appliance.ExternalSyslogSetting",
'APPLIANCE.FILESYSTEMSTATUS': "appliance.FileSystemStatus",
@@ -403,9 +406,12 @@ class ApplianceSystemInfoRelationship(ModelComposed):
'BOOT.UEFISHELLDEVICE': "boot.UefiShellDevice",
'BOOT.USBDEVICE': "boot.UsbDevice",
'BOOT.VMEDIADEVICE': "boot.VmediaDevice",
+ 'BULK.EXPORT': "bulk.Export",
+ 'BULK.EXPORTEDITEM': "bulk.ExportedItem",
'BULK.MOCLONER': "bulk.MoCloner",
'BULK.MOMERGER': "bulk.MoMerger",
'BULK.REQUEST': "bulk.Request",
+ 'BULK.SUBREQUESTOBJ': "bulk.SubRequestObj",
'CAPABILITY.ADAPTERUNITDESCRIPTOR': "capability.AdapterUnitDescriptor",
'CAPABILITY.CATALOG': "capability.Catalog",
'CAPABILITY.CHASSISDESCRIPTOR': "capability.ChassisDescriptor",
@@ -469,10 +475,6 @@ class ApplianceSystemInfoRelationship(ModelComposed):
'COND.HCLSTATUS': "cond.HclStatus",
'COND.HCLSTATUSDETAIL': "cond.HclStatusDetail",
'COND.HCLSTATUSJOB': "cond.HclStatusJob",
- 'CONFIG.EXPORTEDITEM': "config.ExportedItem",
- 'CONFIG.EXPORTER': "config.Exporter",
- 'CONFIG.IMPORTEDITEM': "config.ImportedItem",
- 'CONFIG.IMPORTER': "config.Importer",
'CONNECTORPACK.CONNECTORPACKUPGRADE': "connectorpack.ConnectorPackUpgrade",
'CONNECTORPACK.UPGRADEIMPACT': "connectorpack.UpgradeImpact",
'CRD.CUSTOMRESOURCE': "crd.CustomResource",
@@ -481,6 +483,7 @@ class ApplianceSystemInfoRelationship(ModelComposed):
'EQUIPMENT.CHASSISIDENTITY': "equipment.ChassisIdentity",
'EQUIPMENT.CHASSISOPERATION': "equipment.ChassisOperation",
'EQUIPMENT.DEVICESUMMARY': "equipment.DeviceSummary",
+ 'EQUIPMENT.EXPANDERMODULE': "equipment.ExpanderModule",
'EQUIPMENT.FAN': "equipment.Fan",
'EQUIPMENT.FANCONTROL': "equipment.FanControl",
'EQUIPMENT.FANMODULE': "equipment.FanModule",
@@ -729,6 +732,7 @@ class ApplianceSystemInfoRelationship(ModelComposed):
'KUBERNETES.ADDONDEFINITION': "kubernetes.AddonDefinition",
'KUBERNETES.ADDONPOLICY': "kubernetes.AddonPolicy",
'KUBERNETES.ADDONREPOSITORY': "kubernetes.AddonRepository",
+ 'KUBERNETES.BAREMETALNODEPROFILE': "kubernetes.BaremetalNodeProfile",
'KUBERNETES.CATALOG': "kubernetes.Catalog",
'KUBERNETES.CLUSTER': "kubernetes.Cluster",
'KUBERNETES.CLUSTERADDONPROFILE': "kubernetes.ClusterAddonProfile",
@@ -898,6 +902,11 @@ class ApplianceSystemInfoRelationship(ModelComposed):
'RESOURCE.LICENSERESOURCECOUNT': "resource.LicenseResourceCount",
'RESOURCE.MEMBERSHIP': "resource.Membership",
'RESOURCE.MEMBERSHIPHOLDER': "resource.MembershipHolder",
+ 'RESOURCEPOOL.LEASE': "resourcepool.Lease",
+ 'RESOURCEPOOL.LEASERESOURCE': "resourcepool.LeaseResource",
+ 'RESOURCEPOOL.POOL': "resourcepool.Pool",
+ 'RESOURCEPOOL.POOLMEMBER': "resourcepool.PoolMember",
+ 'RESOURCEPOOL.UNIVERSE': "resourcepool.Universe",
'RPROXY.REVERSEPROXY': "rproxy.ReverseProxy",
'SDCARD.POLICY': "sdcard.Policy",
'SDWAN.PROFILE': "sdwan.Profile",
@@ -1013,6 +1022,7 @@ class ApplianceSystemInfoRelationship(ModelComposed):
'TASK.NETAPPSCOPEDINVENTORY': "task.NetAppScopedInventory",
'TASK.PUBLICCLOUDSCOPEDINVENTORY': "task.PublicCloudScopedInventory",
'TASK.PURESCOPEDINVENTORY': "task.PureScopedInventory",
+ 'TASK.SERVERSCOPEDINVENTORY': "task.ServerScopedInventory",
'TECHSUPPORTMANAGEMENT.COLLECTIONCONTROLPOLICY': "techsupportmanagement.CollectionControlPolicy",
'TECHSUPPORTMANAGEMENT.DOWNLOAD': "techsupportmanagement.Download",
'TECHSUPPORTMANAGEMENT.TECHSUPPORTBUNDLE': "techsupportmanagement.TechSupportBundle",
@@ -1044,6 +1054,7 @@ class ApplianceSystemInfoRelationship(ModelComposed):
'VIRTUALIZATION.VMWAREVCENTER': "virtualization.VmwareVcenter",
'VIRTUALIZATION.VMWAREVIRTUALDISK': "virtualization.VmwareVirtualDisk",
'VIRTUALIZATION.VMWAREVIRTUALMACHINE': "virtualization.VmwareVirtualMachine",
+ 'VIRTUALIZATION.VMWAREVIRTUALMACHINESNAPSHOT': "virtualization.VmwareVirtualMachineSnapshot",
'VIRTUALIZATION.VMWAREVIRTUALNETWORKINTERFACE': "virtualization.VmwareVirtualNetworkInterface",
'VIRTUALIZATION.VMWAREVIRTUALSWITCH': "virtualization.VmwareVirtualSwitch",
'VMEDIA.POLICY': "vmedia.Policy",
@@ -1076,12 +1087,14 @@ class ApplianceSystemInfoRelationship(ModelComposed):
'WORKFLOW.TASKDEFINITION': "workflow.TaskDefinition",
'WORKFLOW.TASKINFO': "workflow.TaskInfo",
'WORKFLOW.TASKMETADATA': "workflow.TaskMetadata",
+ 'WORKFLOW.TASKNOTIFICATION': "workflow.TaskNotification",
'WORKFLOW.TEMPLATEEVALUATION': "workflow.TemplateEvaluation",
'WORKFLOW.TEMPLATEFUNCTIONMETA': "workflow.TemplateFunctionMeta",
'WORKFLOW.WORKFLOWDEFINITION': "workflow.WorkflowDefinition",
'WORKFLOW.WORKFLOWINFO': "workflow.WorkflowInfo",
'WORKFLOW.WORKFLOWMETA': "workflow.WorkflowMeta",
'WORKFLOW.WORKFLOWMETADATA': "workflow.WorkflowMetadata",
+ 'WORKFLOW.WORKFLOWNOTIFICATION': "workflow.WorkflowNotification",
},
}
diff --git a/intersight/model/appliance_system_info_response.py b/intersight/model/appliance_system_info_response.py
index 79635bfd95..d2cf94aedb 100644
--- a/intersight/model/appliance_system_info_response.py
+++ b/intersight/model/appliance_system_info_response.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/appliance_system_status.py b/intersight/model/appliance_system_status.py
index 1e5a315915..8c9f71c164 100644
--- a/intersight/model/appliance_system_status.py
+++ b/intersight/model/appliance_system_status.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/appliance_system_status_all_of.py b/intersight/model/appliance_system_status_all_of.py
index c4cfa0014c..1a978c8468 100644
--- a/intersight/model/appliance_system_status_all_of.py
+++ b/intersight/model/appliance_system_status_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/appliance_system_status_list.py b/intersight/model/appliance_system_status_list.py
index d1c93c928d..c12d6cff7e 100644
--- a/intersight/model/appliance_system_status_list.py
+++ b/intersight/model/appliance_system_status_list.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/appliance_system_status_list_all_of.py b/intersight/model/appliance_system_status_list_all_of.py
index 3b7aebfe84..de06c42bca 100644
--- a/intersight/model/appliance_system_status_list_all_of.py
+++ b/intersight/model/appliance_system_status_list_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/appliance_system_status_relationship.py b/intersight/model/appliance_system_status_relationship.py
index caf1615b20..55a41db347 100644
--- a/intersight/model/appliance_system_status_relationship.py
+++ b/intersight/model/appliance_system_status_relationship.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
@@ -88,6 +88,8 @@ class ApplianceSystemStatusRelationship(ModelComposed):
},
('object_type',): {
'AAA.AUDITRECORD': "aaa.AuditRecord",
+ 'AAA.RETENTIONCONFIG': "aaa.RetentionConfig",
+ 'AAA.RETENTIONPOLICY': "aaa.RetentionPolicy",
'ACCESS.POLICY': "access.Policy",
'ADAPTER.CONFIGPOLICY': "adapter.ConfigPolicy",
'ADAPTER.EXTETHINTERFACE': "adapter.ExtEthInterface",
@@ -104,6 +106,7 @@ class ApplianceSystemStatusRelationship(ModelComposed):
'APPLIANCE.DATAEXPORTPOLICY': "appliance.DataExportPolicy",
'APPLIANCE.DEVICECERTIFICATE': "appliance.DeviceCertificate",
'APPLIANCE.DEVICECLAIM': "appliance.DeviceClaim",
+ 'APPLIANCE.DEVICEUPGRADEPOLICY': "appliance.DeviceUpgradePolicy",
'APPLIANCE.DIAGSETTING': "appliance.DiagSetting",
'APPLIANCE.EXTERNALSYSLOGSETTING': "appliance.ExternalSyslogSetting",
'APPLIANCE.FILESYSTEMSTATUS': "appliance.FileSystemStatus",
@@ -152,9 +155,12 @@ class ApplianceSystemStatusRelationship(ModelComposed):
'BOOT.UEFISHELLDEVICE': "boot.UefiShellDevice",
'BOOT.USBDEVICE': "boot.UsbDevice",
'BOOT.VMEDIADEVICE': "boot.VmediaDevice",
+ 'BULK.EXPORT': "bulk.Export",
+ 'BULK.EXPORTEDITEM': "bulk.ExportedItem",
'BULK.MOCLONER': "bulk.MoCloner",
'BULK.MOMERGER': "bulk.MoMerger",
'BULK.REQUEST': "bulk.Request",
+ 'BULK.SUBREQUESTOBJ': "bulk.SubRequestObj",
'CAPABILITY.ADAPTERUNITDESCRIPTOR': "capability.AdapterUnitDescriptor",
'CAPABILITY.CATALOG': "capability.Catalog",
'CAPABILITY.CHASSISDESCRIPTOR': "capability.ChassisDescriptor",
@@ -218,10 +224,6 @@ class ApplianceSystemStatusRelationship(ModelComposed):
'COND.HCLSTATUS': "cond.HclStatus",
'COND.HCLSTATUSDETAIL': "cond.HclStatusDetail",
'COND.HCLSTATUSJOB': "cond.HclStatusJob",
- 'CONFIG.EXPORTEDITEM': "config.ExportedItem",
- 'CONFIG.EXPORTER': "config.Exporter",
- 'CONFIG.IMPORTEDITEM': "config.ImportedItem",
- 'CONFIG.IMPORTER': "config.Importer",
'CONNECTORPACK.CONNECTORPACKUPGRADE': "connectorpack.ConnectorPackUpgrade",
'CONNECTORPACK.UPGRADEIMPACT': "connectorpack.UpgradeImpact",
'CRD.CUSTOMRESOURCE': "crd.CustomResource",
@@ -230,6 +232,7 @@ class ApplianceSystemStatusRelationship(ModelComposed):
'EQUIPMENT.CHASSISIDENTITY': "equipment.ChassisIdentity",
'EQUIPMENT.CHASSISOPERATION': "equipment.ChassisOperation",
'EQUIPMENT.DEVICESUMMARY': "equipment.DeviceSummary",
+ 'EQUIPMENT.EXPANDERMODULE': "equipment.ExpanderModule",
'EQUIPMENT.FAN': "equipment.Fan",
'EQUIPMENT.FANCONTROL': "equipment.FanControl",
'EQUIPMENT.FANMODULE': "equipment.FanModule",
@@ -478,6 +481,7 @@ class ApplianceSystemStatusRelationship(ModelComposed):
'KUBERNETES.ADDONDEFINITION': "kubernetes.AddonDefinition",
'KUBERNETES.ADDONPOLICY': "kubernetes.AddonPolicy",
'KUBERNETES.ADDONREPOSITORY': "kubernetes.AddonRepository",
+ 'KUBERNETES.BAREMETALNODEPROFILE': "kubernetes.BaremetalNodeProfile",
'KUBERNETES.CATALOG': "kubernetes.Catalog",
'KUBERNETES.CLUSTER': "kubernetes.Cluster",
'KUBERNETES.CLUSTERADDONPROFILE': "kubernetes.ClusterAddonProfile",
@@ -647,6 +651,11 @@ class ApplianceSystemStatusRelationship(ModelComposed):
'RESOURCE.LICENSERESOURCECOUNT': "resource.LicenseResourceCount",
'RESOURCE.MEMBERSHIP': "resource.Membership",
'RESOURCE.MEMBERSHIPHOLDER': "resource.MembershipHolder",
+ 'RESOURCEPOOL.LEASE': "resourcepool.Lease",
+ 'RESOURCEPOOL.LEASERESOURCE': "resourcepool.LeaseResource",
+ 'RESOURCEPOOL.POOL': "resourcepool.Pool",
+ 'RESOURCEPOOL.POOLMEMBER': "resourcepool.PoolMember",
+ 'RESOURCEPOOL.UNIVERSE': "resourcepool.Universe",
'RPROXY.REVERSEPROXY': "rproxy.ReverseProxy",
'SDCARD.POLICY': "sdcard.Policy",
'SDWAN.PROFILE': "sdwan.Profile",
@@ -762,6 +771,7 @@ class ApplianceSystemStatusRelationship(ModelComposed):
'TASK.NETAPPSCOPEDINVENTORY': "task.NetAppScopedInventory",
'TASK.PUBLICCLOUDSCOPEDINVENTORY': "task.PublicCloudScopedInventory",
'TASK.PURESCOPEDINVENTORY': "task.PureScopedInventory",
+ 'TASK.SERVERSCOPEDINVENTORY': "task.ServerScopedInventory",
'TECHSUPPORTMANAGEMENT.COLLECTIONCONTROLPOLICY': "techsupportmanagement.CollectionControlPolicy",
'TECHSUPPORTMANAGEMENT.DOWNLOAD': "techsupportmanagement.Download",
'TECHSUPPORTMANAGEMENT.TECHSUPPORTBUNDLE': "techsupportmanagement.TechSupportBundle",
@@ -793,6 +803,7 @@ class ApplianceSystemStatusRelationship(ModelComposed):
'VIRTUALIZATION.VMWAREVCENTER': "virtualization.VmwareVcenter",
'VIRTUALIZATION.VMWAREVIRTUALDISK': "virtualization.VmwareVirtualDisk",
'VIRTUALIZATION.VMWAREVIRTUALMACHINE': "virtualization.VmwareVirtualMachine",
+ 'VIRTUALIZATION.VMWAREVIRTUALMACHINESNAPSHOT': "virtualization.VmwareVirtualMachineSnapshot",
'VIRTUALIZATION.VMWAREVIRTUALNETWORKINTERFACE': "virtualization.VmwareVirtualNetworkInterface",
'VIRTUALIZATION.VMWAREVIRTUALSWITCH': "virtualization.VmwareVirtualSwitch",
'VMEDIA.POLICY': "vmedia.Policy",
@@ -825,12 +836,14 @@ class ApplianceSystemStatusRelationship(ModelComposed):
'WORKFLOW.TASKDEFINITION': "workflow.TaskDefinition",
'WORKFLOW.TASKINFO': "workflow.TaskInfo",
'WORKFLOW.TASKMETADATA': "workflow.TaskMetadata",
+ 'WORKFLOW.TASKNOTIFICATION': "workflow.TaskNotification",
'WORKFLOW.TEMPLATEEVALUATION': "workflow.TemplateEvaluation",
'WORKFLOW.TEMPLATEFUNCTIONMETA': "workflow.TemplateFunctionMeta",
'WORKFLOW.WORKFLOWDEFINITION': "workflow.WorkflowDefinition",
'WORKFLOW.WORKFLOWINFO': "workflow.WorkflowInfo",
'WORKFLOW.WORKFLOWMETA': "workflow.WorkflowMeta",
'WORKFLOW.WORKFLOWMETADATA': "workflow.WorkflowMetadata",
+ 'WORKFLOW.WORKFLOWNOTIFICATION': "workflow.WorkflowNotification",
},
}
diff --git a/intersight/model/appliance_system_status_response.py b/intersight/model/appliance_system_status_response.py
index e41fdc6cda..cabc426f1c 100644
--- a/intersight/model/appliance_system_status_response.py
+++ b/intersight/model/appliance_system_status_response.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/appliance_upgrade.py b/intersight/model/appliance_upgrade.py
index 78cb18bdad..1783edbc82 100644
--- a/intersight/model/appliance_upgrade.py
+++ b/intersight/model/appliance_upgrade.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/appliance_upgrade_all_of.py b/intersight/model/appliance_upgrade_all_of.py
index b7bab7bd31..e857866f6b 100644
--- a/intersight/model/appliance_upgrade_all_of.py
+++ b/intersight/model/appliance_upgrade_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/appliance_upgrade_list.py b/intersight/model/appliance_upgrade_list.py
index 8a5ba3bce9..1f00d386f4 100644
--- a/intersight/model/appliance_upgrade_list.py
+++ b/intersight/model/appliance_upgrade_list.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/appliance_upgrade_list_all_of.py b/intersight/model/appliance_upgrade_list_all_of.py
index 928e21dc76..d248643d4d 100644
--- a/intersight/model/appliance_upgrade_list_all_of.py
+++ b/intersight/model/appliance_upgrade_list_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/appliance_upgrade_policy.py b/intersight/model/appliance_upgrade_policy.py
index a92e36681c..07006d9af2 100644
--- a/intersight/model/appliance_upgrade_policy.py
+++ b/intersight/model/appliance_upgrade_policy.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
@@ -77,6 +77,10 @@ class ApplianceUpgradePolicy(ModelComposed):
('object_type',): {
'APPLIANCE.UPGRADEPOLICY': "appliance.UpgradePolicy",
},
+ ('software_download_type',): {
+ 'CONNECTED': "connected",
+ 'MANUAL': "manual",
+ },
}
validations = {
@@ -112,7 +116,10 @@ def openapi_types():
'blackout_end_date': (datetime,), # noqa: E501
'blackout_start_date': (datetime,), # noqa: E501
'enable_meta_data_sync': (bool,), # noqa: E501
+ 'is_synced': (bool,), # noqa: E501
+ 'manual_installation_start_time': (datetime,), # noqa: E501
'schedule': (OnpremSchedule,), # noqa: E501
+ 'software_download_type': (str,), # noqa: E501
'account': (IamAccountRelationship,), # noqa: E501
'account_moid': (str,), # noqa: E501
'create_time': (datetime,), # noqa: E501
@@ -145,7 +152,10 @@ def discriminator():
'blackout_end_date': 'BlackoutEndDate', # noqa: E501
'blackout_start_date': 'BlackoutStartDate', # noqa: E501
'enable_meta_data_sync': 'EnableMetaDataSync', # noqa: E501
+ 'is_synced': 'IsSynced', # noqa: E501
+ 'manual_installation_start_time': 'ManualInstallationStartTime', # noqa: E501
'schedule': 'Schedule', # noqa: E501
+ 'software_download_type': 'SoftwareDownloadType', # noqa: E501
'account': 'Account', # noqa: E501
'account_moid': 'AccountMoid', # noqa: E501
'create_time': 'CreateTime', # noqa: E501
@@ -218,7 +228,10 @@ def __init__(self, *args, **kwargs): # noqa: E501
blackout_end_date (datetime): End date of the black out period.. [optional] # noqa: E501
blackout_start_date (datetime): Start date of the black out period. The appliance will not be upgraded during this period.. [optional] # noqa: E501
enable_meta_data_sync (bool): Indicates if the updated metadata files should be synced immediately or at the next upgrade.. [optional] if omitted the server will use the default value of True # noqa: E501
+ is_synced (bool): Flag to indicate software upgrade setting is synchronized with Intersight SaaS.. [optional] # noqa: E501
+ manual_installation_start_time (datetime): Intersight Appliance manual upgrade start time.. [optional] # noqa: E501
schedule (OnpremSchedule): [optional] # noqa: E501
+ software_download_type (str): SoftwareDownloadType is used to indicate the kind of software download. * `connected` - Indicates if the upgrade service is set to upload software to latest version automatically. * `manual` - Indicates if the upgrade service is set to upload software to user picked verison manually .. [optional] if omitted the server will use the default value of "connected" # noqa: E501
account (IamAccountRelationship): [optional] # noqa: E501
account_moid (str): The Account ID for this managed object.. [optional] # noqa: E501
create_time (datetime): The time when this managed object was created.. [optional] # noqa: E501
diff --git a/intersight/model/appliance_upgrade_policy_all_of.py b/intersight/model/appliance_upgrade_policy_all_of.py
index c46ac48f79..6a203f6a62 100644
--- a/intersight/model/appliance_upgrade_policy_all_of.py
+++ b/intersight/model/appliance_upgrade_policy_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
@@ -65,6 +65,10 @@ class ApplianceUpgradePolicyAllOf(ModelNormal):
('object_type',): {
'APPLIANCE.UPGRADEPOLICY': "appliance.UpgradePolicy",
},
+ ('software_download_type',): {
+ 'CONNECTED': "connected",
+ 'MANUAL': "manual",
+ },
}
validations = {
@@ -93,7 +97,10 @@ def openapi_types():
'blackout_end_date': (datetime,), # noqa: E501
'blackout_start_date': (datetime,), # noqa: E501
'enable_meta_data_sync': (bool,), # noqa: E501
+ 'is_synced': (bool,), # noqa: E501
+ 'manual_installation_start_time': (datetime,), # noqa: E501
'schedule': (OnpremSchedule,), # noqa: E501
+ 'software_download_type': (str,), # noqa: E501
'account': (IamAccountRelationship,), # noqa: E501
}
@@ -110,7 +117,10 @@ def discriminator():
'blackout_end_date': 'BlackoutEndDate', # noqa: E501
'blackout_start_date': 'BlackoutStartDate', # noqa: E501
'enable_meta_data_sync': 'EnableMetaDataSync', # noqa: E501
+ 'is_synced': 'IsSynced', # noqa: E501
+ 'manual_installation_start_time': 'ManualInstallationStartTime', # noqa: E501
'schedule': 'Schedule', # noqa: E501
+ 'software_download_type': 'SoftwareDownloadType', # noqa: E501
'account': 'Account', # noqa: E501
}
@@ -169,7 +179,10 @@ def __init__(self, *args, **kwargs): # noqa: E501
blackout_end_date (datetime): End date of the black out period.. [optional] # noqa: E501
blackout_start_date (datetime): Start date of the black out period. The appliance will not be upgraded during this period.. [optional] # noqa: E501
enable_meta_data_sync (bool): Indicates if the updated metadata files should be synced immediately or at the next upgrade.. [optional] if omitted the server will use the default value of True # noqa: E501
+ is_synced (bool): Flag to indicate software upgrade setting is synchronized with Intersight SaaS.. [optional] # noqa: E501
+ manual_installation_start_time (datetime): Intersight Appliance manual upgrade start time.. [optional] # noqa: E501
schedule (OnpremSchedule): [optional] # noqa: E501
+ software_download_type (str): SoftwareDownloadType is used to indicate the kind of software download. * `connected` - Indicates if the upgrade service is set to upload software to latest version automatically. * `manual` - Indicates if the upgrade service is set to upload software to user picked verison manually .. [optional] if omitted the server will use the default value of "connected" # noqa: E501
account (IamAccountRelationship): [optional] # noqa: E501
"""
diff --git a/intersight/model/appliance_upgrade_policy_list.py b/intersight/model/appliance_upgrade_policy_list.py
index 836dfddc0e..3b57c60425 100644
--- a/intersight/model/appliance_upgrade_policy_list.py
+++ b/intersight/model/appliance_upgrade_policy_list.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/appliance_upgrade_policy_list_all_of.py b/intersight/model/appliance_upgrade_policy_list_all_of.py
index 6ad5b51e38..31a7620d6a 100644
--- a/intersight/model/appliance_upgrade_policy_list_all_of.py
+++ b/intersight/model/appliance_upgrade_policy_list_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/appliance_upgrade_policy_response.py b/intersight/model/appliance_upgrade_policy_response.py
index 677eb3fc6b..ecc3804ea7 100644
--- a/intersight/model/appliance_upgrade_policy_response.py
+++ b/intersight/model/appliance_upgrade_policy_response.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/appliance_upgrade_response.py b/intersight/model/appliance_upgrade_response.py
index dc0c188f2b..9ab446e20e 100644
--- a/intersight/model/appliance_upgrade_response.py
+++ b/intersight/model/appliance_upgrade_response.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/asset_address_information.py b/intersight/model/asset_address_information.py
index 64c0208eee..92b173da8e 100644
--- a/intersight/model/asset_address_information.py
+++ b/intersight/model/asset_address_information.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/asset_address_information_all_of.py b/intersight/model/asset_address_information_all_of.py
index 6fd36db90f..45b3180495 100644
--- a/intersight/model/asset_address_information_all_of.py
+++ b/intersight/model/asset_address_information_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/asset_api_key_credential.py b/intersight/model/asset_api_key_credential.py
index 1187f3430c..59f34a0a02 100644
--- a/intersight/model/asset_api_key_credential.py
+++ b/intersight/model/asset_api_key_credential.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/asset_api_key_credential_all_of.py b/intersight/model/asset_api_key_credential_all_of.py
index d973a5f2fa..10d1664d96 100644
--- a/intersight/model/asset_api_key_credential_all_of.py
+++ b/intersight/model/asset_api_key_credential_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/asset_claim_signature.py b/intersight/model/asset_claim_signature.py
index 3bb8dd1af3..66aad53f91 100644
--- a/intersight/model/asset_claim_signature.py
+++ b/intersight/model/asset_claim_signature.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/asset_claim_signature_all_of.py b/intersight/model/asset_claim_signature_all_of.py
index 97d9026466..24486daf80 100644
--- a/intersight/model/asset_claim_signature_all_of.py
+++ b/intersight/model/asset_claim_signature_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/asset_client_certificate_credential.py b/intersight/model/asset_client_certificate_credential.py
index c0753f375b..1fbffd77da 100644
--- a/intersight/model/asset_client_certificate_credential.py
+++ b/intersight/model/asset_client_certificate_credential.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/asset_client_certificate_credential_all_of.py b/intersight/model/asset_client_certificate_credential_all_of.py
index e6ccf7dc34..2240bf5aec 100644
--- a/intersight/model/asset_client_certificate_credential_all_of.py
+++ b/intersight/model/asset_client_certificate_credential_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/asset_cloud_connection.py b/intersight/model/asset_cloud_connection.py
index 4455069d44..0ff8a0af5f 100644
--- a/intersight/model/asset_cloud_connection.py
+++ b/intersight/model/asset_cloud_connection.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/asset_cluster_member.py b/intersight/model/asset_cluster_member.py
index 028ee24811..d555f6fe70 100644
--- a/intersight/model/asset_cluster_member.py
+++ b/intersight/model/asset_cluster_member.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/asset_cluster_member_all_of.py b/intersight/model/asset_cluster_member_all_of.py
index bad2a38f4e..323ead94c4 100644
--- a/intersight/model/asset_cluster_member_all_of.py
+++ b/intersight/model/asset_cluster_member_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/asset_cluster_member_list.py b/intersight/model/asset_cluster_member_list.py
index 7a298b7eac..e400994dd7 100644
--- a/intersight/model/asset_cluster_member_list.py
+++ b/intersight/model/asset_cluster_member_list.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/asset_cluster_member_list_all_of.py b/intersight/model/asset_cluster_member_list_all_of.py
index 4b7fb9ac3d..2a031055a3 100644
--- a/intersight/model/asset_cluster_member_list_all_of.py
+++ b/intersight/model/asset_cluster_member_list_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/asset_cluster_member_relationship.py b/intersight/model/asset_cluster_member_relationship.py
index 37bceccf84..55cf7f1666 100644
--- a/intersight/model/asset_cluster_member_relationship.py
+++ b/intersight/model/asset_cluster_member_relationship.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
@@ -89,6 +89,8 @@ class AssetClusterMemberRelationship(ModelComposed):
},
('object_type',): {
'AAA.AUDITRECORD': "aaa.AuditRecord",
+ 'AAA.RETENTIONCONFIG': "aaa.RetentionConfig",
+ 'AAA.RETENTIONPOLICY': "aaa.RetentionPolicy",
'ACCESS.POLICY': "access.Policy",
'ADAPTER.CONFIGPOLICY': "adapter.ConfigPolicy",
'ADAPTER.EXTETHINTERFACE': "adapter.ExtEthInterface",
@@ -105,6 +107,7 @@ class AssetClusterMemberRelationship(ModelComposed):
'APPLIANCE.DATAEXPORTPOLICY': "appliance.DataExportPolicy",
'APPLIANCE.DEVICECERTIFICATE': "appliance.DeviceCertificate",
'APPLIANCE.DEVICECLAIM': "appliance.DeviceClaim",
+ 'APPLIANCE.DEVICEUPGRADEPOLICY': "appliance.DeviceUpgradePolicy",
'APPLIANCE.DIAGSETTING': "appliance.DiagSetting",
'APPLIANCE.EXTERNALSYSLOGSETTING': "appliance.ExternalSyslogSetting",
'APPLIANCE.FILESYSTEMSTATUS': "appliance.FileSystemStatus",
@@ -153,9 +156,12 @@ class AssetClusterMemberRelationship(ModelComposed):
'BOOT.UEFISHELLDEVICE': "boot.UefiShellDevice",
'BOOT.USBDEVICE': "boot.UsbDevice",
'BOOT.VMEDIADEVICE': "boot.VmediaDevice",
+ 'BULK.EXPORT': "bulk.Export",
+ 'BULK.EXPORTEDITEM': "bulk.ExportedItem",
'BULK.MOCLONER': "bulk.MoCloner",
'BULK.MOMERGER': "bulk.MoMerger",
'BULK.REQUEST': "bulk.Request",
+ 'BULK.SUBREQUESTOBJ': "bulk.SubRequestObj",
'CAPABILITY.ADAPTERUNITDESCRIPTOR': "capability.AdapterUnitDescriptor",
'CAPABILITY.CATALOG': "capability.Catalog",
'CAPABILITY.CHASSISDESCRIPTOR': "capability.ChassisDescriptor",
@@ -219,10 +225,6 @@ class AssetClusterMemberRelationship(ModelComposed):
'COND.HCLSTATUS': "cond.HclStatus",
'COND.HCLSTATUSDETAIL': "cond.HclStatusDetail",
'COND.HCLSTATUSJOB': "cond.HclStatusJob",
- 'CONFIG.EXPORTEDITEM': "config.ExportedItem",
- 'CONFIG.EXPORTER': "config.Exporter",
- 'CONFIG.IMPORTEDITEM': "config.ImportedItem",
- 'CONFIG.IMPORTER': "config.Importer",
'CONNECTORPACK.CONNECTORPACKUPGRADE': "connectorpack.ConnectorPackUpgrade",
'CONNECTORPACK.UPGRADEIMPACT': "connectorpack.UpgradeImpact",
'CRD.CUSTOMRESOURCE': "crd.CustomResource",
@@ -231,6 +233,7 @@ class AssetClusterMemberRelationship(ModelComposed):
'EQUIPMENT.CHASSISIDENTITY': "equipment.ChassisIdentity",
'EQUIPMENT.CHASSISOPERATION': "equipment.ChassisOperation",
'EQUIPMENT.DEVICESUMMARY': "equipment.DeviceSummary",
+ 'EQUIPMENT.EXPANDERMODULE': "equipment.ExpanderModule",
'EQUIPMENT.FAN': "equipment.Fan",
'EQUIPMENT.FANCONTROL': "equipment.FanControl",
'EQUIPMENT.FANMODULE': "equipment.FanModule",
@@ -479,6 +482,7 @@ class AssetClusterMemberRelationship(ModelComposed):
'KUBERNETES.ADDONDEFINITION': "kubernetes.AddonDefinition",
'KUBERNETES.ADDONPOLICY': "kubernetes.AddonPolicy",
'KUBERNETES.ADDONREPOSITORY': "kubernetes.AddonRepository",
+ 'KUBERNETES.BAREMETALNODEPROFILE': "kubernetes.BaremetalNodeProfile",
'KUBERNETES.CATALOG': "kubernetes.Catalog",
'KUBERNETES.CLUSTER': "kubernetes.Cluster",
'KUBERNETES.CLUSTERADDONPROFILE': "kubernetes.ClusterAddonProfile",
@@ -648,6 +652,11 @@ class AssetClusterMemberRelationship(ModelComposed):
'RESOURCE.LICENSERESOURCECOUNT': "resource.LicenseResourceCount",
'RESOURCE.MEMBERSHIP': "resource.Membership",
'RESOURCE.MEMBERSHIPHOLDER': "resource.MembershipHolder",
+ 'RESOURCEPOOL.LEASE': "resourcepool.Lease",
+ 'RESOURCEPOOL.LEASERESOURCE': "resourcepool.LeaseResource",
+ 'RESOURCEPOOL.POOL': "resourcepool.Pool",
+ 'RESOURCEPOOL.POOLMEMBER': "resourcepool.PoolMember",
+ 'RESOURCEPOOL.UNIVERSE': "resourcepool.Universe",
'RPROXY.REVERSEPROXY': "rproxy.ReverseProxy",
'SDCARD.POLICY': "sdcard.Policy",
'SDWAN.PROFILE': "sdwan.Profile",
@@ -763,6 +772,7 @@ class AssetClusterMemberRelationship(ModelComposed):
'TASK.NETAPPSCOPEDINVENTORY': "task.NetAppScopedInventory",
'TASK.PUBLICCLOUDSCOPEDINVENTORY': "task.PublicCloudScopedInventory",
'TASK.PURESCOPEDINVENTORY': "task.PureScopedInventory",
+ 'TASK.SERVERSCOPEDINVENTORY': "task.ServerScopedInventory",
'TECHSUPPORTMANAGEMENT.COLLECTIONCONTROLPOLICY': "techsupportmanagement.CollectionControlPolicy",
'TECHSUPPORTMANAGEMENT.DOWNLOAD': "techsupportmanagement.Download",
'TECHSUPPORTMANAGEMENT.TECHSUPPORTBUNDLE': "techsupportmanagement.TechSupportBundle",
@@ -794,6 +804,7 @@ class AssetClusterMemberRelationship(ModelComposed):
'VIRTUALIZATION.VMWAREVCENTER': "virtualization.VmwareVcenter",
'VIRTUALIZATION.VMWAREVIRTUALDISK': "virtualization.VmwareVirtualDisk",
'VIRTUALIZATION.VMWAREVIRTUALMACHINE': "virtualization.VmwareVirtualMachine",
+ 'VIRTUALIZATION.VMWAREVIRTUALMACHINESNAPSHOT': "virtualization.VmwareVirtualMachineSnapshot",
'VIRTUALIZATION.VMWAREVIRTUALNETWORKINTERFACE': "virtualization.VmwareVirtualNetworkInterface",
'VIRTUALIZATION.VMWAREVIRTUALSWITCH': "virtualization.VmwareVirtualSwitch",
'VMEDIA.POLICY': "vmedia.Policy",
@@ -826,12 +837,14 @@ class AssetClusterMemberRelationship(ModelComposed):
'WORKFLOW.TASKDEFINITION': "workflow.TaskDefinition",
'WORKFLOW.TASKINFO': "workflow.TaskInfo",
'WORKFLOW.TASKMETADATA': "workflow.TaskMetadata",
+ 'WORKFLOW.TASKNOTIFICATION': "workflow.TaskNotification",
'WORKFLOW.TEMPLATEEVALUATION': "workflow.TemplateEvaluation",
'WORKFLOW.TEMPLATEFUNCTIONMETA': "workflow.TemplateFunctionMeta",
'WORKFLOW.WORKFLOWDEFINITION': "workflow.WorkflowDefinition",
'WORKFLOW.WORKFLOWINFO': "workflow.WorkflowInfo",
'WORKFLOW.WORKFLOWMETA': "workflow.WorkflowMeta",
'WORKFLOW.WORKFLOWMETADATA': "workflow.WorkflowMetadata",
+ 'WORKFLOW.WORKFLOWNOTIFICATION': "workflow.WorkflowNotification",
},
}
diff --git a/intersight/model/asset_cluster_member_response.py b/intersight/model/asset_cluster_member_response.py
index 1c6127a13e..ad6687caf3 100644
--- a/intersight/model/asset_cluster_member_response.py
+++ b/intersight/model/asset_cluster_member_response.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/asset_connection.py b/intersight/model/asset_connection.py
index 45fd4a8561..d0e29e3705 100644
--- a/intersight/model/asset_connection.py
+++ b/intersight/model/asset_connection.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/asset_connection_all_of.py b/intersight/model/asset_connection_all_of.py
index 2c46140aa2..8bf56bd956 100644
--- a/intersight/model/asset_connection_all_of.py
+++ b/intersight/model/asset_connection_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/asset_connection_control_message.py b/intersight/model/asset_connection_control_message.py
index a35aa10d74..1e3f6c3ea5 100644
--- a/intersight/model/asset_connection_control_message.py
+++ b/intersight/model/asset_connection_control_message.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/asset_connection_control_message_all_of.py b/intersight/model/asset_connection_control_message_all_of.py
index c90ee4367f..881c547928 100644
--- a/intersight/model/asset_connection_control_message_all_of.py
+++ b/intersight/model/asset_connection_control_message_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/asset_contract_information.py b/intersight/model/asset_contract_information.py
index 17b4716849..237a104bd1 100644
--- a/intersight/model/asset_contract_information.py
+++ b/intersight/model/asset_contract_information.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/asset_contract_information_all_of.py b/intersight/model/asset_contract_information_all_of.py
index 5b64149e8b..8a63f61845 100644
--- a/intersight/model/asset_contract_information_all_of.py
+++ b/intersight/model/asset_contract_information_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/asset_credential.py b/intersight/model/asset_credential.py
index f00c082c7d..133fff559d 100644
--- a/intersight/model/asset_credential.py
+++ b/intersight/model/asset_credential.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
@@ -134,6 +134,7 @@ class AssetCredential(ModelComposed):
'BOOT.UEFISHELL': "boot.UefiShell",
'BOOT.USB': "boot.Usb",
'BOOT.VIRTUALMEDIA': "boot.VirtualMedia",
+ 'BULK.HTTPHEADER': "bulk.HttpHeader",
'BULK.RESTRESULT': "bulk.RestResult",
'BULK.RESTSUBREQUEST': "bulk.RestSubRequest",
'CAPABILITY.PORTRANGE': "capability.PortRange",
@@ -174,7 +175,6 @@ class AssetCredential(ModelComposed):
'COMPUTE.STORAGEVIRTUALDRIVE': "compute.StorageVirtualDrive",
'COMPUTE.STORAGEVIRTUALDRIVEOPERATION': "compute.StorageVirtualDriveOperation",
'COND.ALARMSUMMARY': "cond.AlarmSummary",
- 'CONFIG.MOREF': "config.MoRef",
'CONNECTOR.CLOSESTREAMMESSAGE': "connector.CloseStreamMessage",
'CONNECTOR.COMMANDCONTROLMESSAGE': "connector.CommandControlMessage",
'CONNECTOR.COMMANDTERMINALSTREAM': "connector.CommandTerminalStream",
@@ -310,6 +310,7 @@ class AssetCredential(ModelComposed):
'KUBERNETES.ACTIONINFO': "kubernetes.ActionInfo",
'KUBERNETES.ADDON': "kubernetes.Addon",
'KUBERNETES.ADDONCONFIGURATION': "kubernetes.AddonConfiguration",
+ 'KUBERNETES.BAREMETALNETWORKINFO': "kubernetes.BaremetalNetworkInfo",
'KUBERNETES.CALICOCONFIG': "kubernetes.CalicoConfig",
'KUBERNETES.CLUSTERCERTIFICATECONFIGURATION': "kubernetes.ClusterCertificateConfiguration",
'KUBERNETES.CLUSTERMANAGEMENTCONFIG': "kubernetes.ClusterManagementConfig",
@@ -318,6 +319,8 @@ class AssetCredential(ModelComposed):
'KUBERNETES.DEPLOYMENTSTATUS': "kubernetes.DeploymentStatus",
'KUBERNETES.ESSENTIALADDON': "kubernetes.EssentialAddon",
'KUBERNETES.ESXIVIRTUALMACHINEINFRACONFIG': "kubernetes.EsxiVirtualMachineInfraConfig",
+ 'KUBERNETES.ETHERNET': "kubernetes.Ethernet",
+ 'KUBERNETES.ETHERNETMATCHER': "kubernetes.EthernetMatcher",
'KUBERNETES.HYPERFLEXAPVIRTUALMACHINEINFRACONFIG': "kubernetes.HyperFlexApVirtualMachineInfraConfig",
'KUBERNETES.INGRESSSTATUS': "kubernetes.IngressStatus",
'KUBERNETES.KEYVALUE': "kubernetes.KeyValue",
@@ -329,6 +332,7 @@ class AssetCredential(ModelComposed):
'KUBERNETES.NODESPEC': "kubernetes.NodeSpec",
'KUBERNETES.NODESTATUS': "kubernetes.NodeStatus",
'KUBERNETES.OBJECTMETA': "kubernetes.ObjectMeta",
+ 'KUBERNETES.OVSBOND': "kubernetes.OvsBond",
'KUBERNETES.PODSTATUS': "kubernetes.PodStatus",
'KUBERNETES.PROXYCONFIG': "kubernetes.ProxyConfig",
'KUBERNETES.SERVICESTATUS': "kubernetes.ServiceStatus",
@@ -340,6 +344,7 @@ class AssetCredential(ModelComposed):
'MEMORY.PERSISTENTMEMORYLOGICALNAMESPACE': "memory.PersistentMemoryLogicalNamespace",
'META.ACCESSPRIVILEGE': "meta.AccessPrivilege",
'META.DISPLAYNAMEDEFINITION': "meta.DisplayNameDefinition",
+ 'META.IDENTITYDEFINITION': "meta.IdentityDefinition",
'META.PROPDEFINITION': "meta.PropDefinition",
'META.RELATIONSHIPDEFINITION': "meta.RelationshipDefinition",
'MO.MOREF': "mo.MoRef",
@@ -397,6 +402,8 @@ class AssetCredential(ModelComposed):
'RESOURCE.SELECTOR': "resource.Selector",
'RESOURCE.SOURCETOPERMISSIONRESOURCES': "resource.SourceToPermissionResources",
'RESOURCE.SOURCETOPERMISSIONRESOURCESHOLDER': "resource.SourceToPermissionResourcesHolder",
+ 'RESOURCEPOOL.SERVERLEASEPARAMETERS': "resourcepool.ServerLeaseParameters",
+ 'RESOURCEPOOL.SERVERPOOLPARAMETERS': "resourcepool.ServerPoolParameters",
'SDCARD.DIAGNOSTICS': "sdcard.Diagnostics",
'SDCARD.DRIVERS': "sdcard.Drivers",
'SDCARD.HOSTUPGRADEUTILITY': "sdcard.HostUpgradeUtility",
@@ -406,6 +413,7 @@ class AssetCredential(ModelComposed):
'SDCARD.USERPARTITION': "sdcard.UserPartition",
'SDWAN.NETWORKCONFIGURATIONTYPE': "sdwan.NetworkConfigurationType",
'SDWAN.TEMPLATEINPUTSTYPE': "sdwan.TemplateInputsType",
+ 'SERVER.PENDINGWORKFLOWTRIGGER': "server.PendingWorkflowTrigger",
'SNMP.TRAP': "snmp.Trap",
'SNMP.USER': "snmp.User",
'SOFTWAREREPOSITORY.APPLIANCEUPLOAD': "softwarerepository.ApplianceUpload",
@@ -641,6 +649,7 @@ class AssetCredential(ModelComposed):
'BOOT.UEFISHELL': "boot.UefiShell",
'BOOT.USB': "boot.Usb",
'BOOT.VIRTUALMEDIA': "boot.VirtualMedia",
+ 'BULK.HTTPHEADER': "bulk.HttpHeader",
'BULK.RESTRESULT': "bulk.RestResult",
'BULK.RESTSUBREQUEST': "bulk.RestSubRequest",
'CAPABILITY.PORTRANGE': "capability.PortRange",
@@ -681,7 +690,6 @@ class AssetCredential(ModelComposed):
'COMPUTE.STORAGEVIRTUALDRIVE': "compute.StorageVirtualDrive",
'COMPUTE.STORAGEVIRTUALDRIVEOPERATION': "compute.StorageVirtualDriveOperation",
'COND.ALARMSUMMARY': "cond.AlarmSummary",
- 'CONFIG.MOREF': "config.MoRef",
'CONNECTOR.CLOSESTREAMMESSAGE': "connector.CloseStreamMessage",
'CONNECTOR.COMMANDCONTROLMESSAGE': "connector.CommandControlMessage",
'CONNECTOR.COMMANDTERMINALSTREAM': "connector.CommandTerminalStream",
@@ -817,6 +825,7 @@ class AssetCredential(ModelComposed):
'KUBERNETES.ACTIONINFO': "kubernetes.ActionInfo",
'KUBERNETES.ADDON': "kubernetes.Addon",
'KUBERNETES.ADDONCONFIGURATION': "kubernetes.AddonConfiguration",
+ 'KUBERNETES.BAREMETALNETWORKINFO': "kubernetes.BaremetalNetworkInfo",
'KUBERNETES.CALICOCONFIG': "kubernetes.CalicoConfig",
'KUBERNETES.CLUSTERCERTIFICATECONFIGURATION': "kubernetes.ClusterCertificateConfiguration",
'KUBERNETES.CLUSTERMANAGEMENTCONFIG': "kubernetes.ClusterManagementConfig",
@@ -825,6 +834,8 @@ class AssetCredential(ModelComposed):
'KUBERNETES.DEPLOYMENTSTATUS': "kubernetes.DeploymentStatus",
'KUBERNETES.ESSENTIALADDON': "kubernetes.EssentialAddon",
'KUBERNETES.ESXIVIRTUALMACHINEINFRACONFIG': "kubernetes.EsxiVirtualMachineInfraConfig",
+ 'KUBERNETES.ETHERNET': "kubernetes.Ethernet",
+ 'KUBERNETES.ETHERNETMATCHER': "kubernetes.EthernetMatcher",
'KUBERNETES.HYPERFLEXAPVIRTUALMACHINEINFRACONFIG': "kubernetes.HyperFlexApVirtualMachineInfraConfig",
'KUBERNETES.INGRESSSTATUS': "kubernetes.IngressStatus",
'KUBERNETES.KEYVALUE': "kubernetes.KeyValue",
@@ -836,6 +847,7 @@ class AssetCredential(ModelComposed):
'KUBERNETES.NODESPEC': "kubernetes.NodeSpec",
'KUBERNETES.NODESTATUS': "kubernetes.NodeStatus",
'KUBERNETES.OBJECTMETA': "kubernetes.ObjectMeta",
+ 'KUBERNETES.OVSBOND': "kubernetes.OvsBond",
'KUBERNETES.PODSTATUS': "kubernetes.PodStatus",
'KUBERNETES.PROXYCONFIG': "kubernetes.ProxyConfig",
'KUBERNETES.SERVICESTATUS': "kubernetes.ServiceStatus",
@@ -847,6 +859,7 @@ class AssetCredential(ModelComposed):
'MEMORY.PERSISTENTMEMORYLOGICALNAMESPACE': "memory.PersistentMemoryLogicalNamespace",
'META.ACCESSPRIVILEGE': "meta.AccessPrivilege",
'META.DISPLAYNAMEDEFINITION': "meta.DisplayNameDefinition",
+ 'META.IDENTITYDEFINITION': "meta.IdentityDefinition",
'META.PROPDEFINITION': "meta.PropDefinition",
'META.RELATIONSHIPDEFINITION': "meta.RelationshipDefinition",
'MO.MOREF': "mo.MoRef",
@@ -904,6 +917,8 @@ class AssetCredential(ModelComposed):
'RESOURCE.SELECTOR': "resource.Selector",
'RESOURCE.SOURCETOPERMISSIONRESOURCES': "resource.SourceToPermissionResources",
'RESOURCE.SOURCETOPERMISSIONRESOURCESHOLDER': "resource.SourceToPermissionResourcesHolder",
+ 'RESOURCEPOOL.SERVERLEASEPARAMETERS': "resourcepool.ServerLeaseParameters",
+ 'RESOURCEPOOL.SERVERPOOLPARAMETERS': "resourcepool.ServerPoolParameters",
'SDCARD.DIAGNOSTICS': "sdcard.Diagnostics",
'SDCARD.DRIVERS': "sdcard.Drivers",
'SDCARD.HOSTUPGRADEUTILITY': "sdcard.HostUpgradeUtility",
@@ -913,6 +928,7 @@ class AssetCredential(ModelComposed):
'SDCARD.USERPARTITION': "sdcard.UserPartition",
'SDWAN.NETWORKCONFIGURATIONTYPE': "sdwan.NetworkConfigurationType",
'SDWAN.TEMPLATEINPUTSTYPE': "sdwan.TemplateInputsType",
+ 'SERVER.PENDINGWORKFLOWTRIGGER': "server.PendingWorkflowTrigger",
'SNMP.TRAP': "snmp.Trap",
'SNMP.USER': "snmp.User",
'SOFTWAREREPOSITORY.APPLIANCEUPLOAD': "softwarerepository.ApplianceUpload",
diff --git a/intersight/model/asset_customer_information.py b/intersight/model/asset_customer_information.py
index 25b2cb020e..f553916c03 100644
--- a/intersight/model/asset_customer_information.py
+++ b/intersight/model/asset_customer_information.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/asset_customer_information_all_of.py b/intersight/model/asset_customer_information_all_of.py
index 84a8e4b8ed..ea9052dc08 100644
--- a/intersight/model/asset_customer_information_all_of.py
+++ b/intersight/model/asset_customer_information_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/asset_deployment.py b/intersight/model/asset_deployment.py
index ce761230a9..018384c0cb 100644
--- a/intersight/model/asset_deployment.py
+++ b/intersight/model/asset_deployment.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/asset_deployment_all_of.py b/intersight/model/asset_deployment_all_of.py
index 2dd0a0a8bd..d38b6bbc3a 100644
--- a/intersight/model/asset_deployment_all_of.py
+++ b/intersight/model/asset_deployment_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/asset_deployment_device.py b/intersight/model/asset_deployment_device.py
index 7b9472ce6e..003b9991aa 100644
--- a/intersight/model/asset_deployment_device.py
+++ b/intersight/model/asset_deployment_device.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/asset_deployment_device_all_of.py b/intersight/model/asset_deployment_device_all_of.py
index 54f49c26fe..737e45e78c 100644
--- a/intersight/model/asset_deployment_device_all_of.py
+++ b/intersight/model/asset_deployment_device_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/asset_deployment_device_information.py b/intersight/model/asset_deployment_device_information.py
index d14635cf3f..14be20bbcf 100644
--- a/intersight/model/asset_deployment_device_information.py
+++ b/intersight/model/asset_deployment_device_information.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/asset_deployment_device_information_all_of.py b/intersight/model/asset_deployment_device_information_all_of.py
index 4ac3b16f5d..7b128c1b55 100644
--- a/intersight/model/asset_deployment_device_information_all_of.py
+++ b/intersight/model/asset_deployment_device_information_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/asset_deployment_device_list.py b/intersight/model/asset_deployment_device_list.py
index 3cc7cb62b3..6fb4268441 100644
--- a/intersight/model/asset_deployment_device_list.py
+++ b/intersight/model/asset_deployment_device_list.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/asset_deployment_device_list_all_of.py b/intersight/model/asset_deployment_device_list_all_of.py
index 5584d5c7d5..24805ba9e7 100644
--- a/intersight/model/asset_deployment_device_list_all_of.py
+++ b/intersight/model/asset_deployment_device_list_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/asset_deployment_device_relationship.py b/intersight/model/asset_deployment_device_relationship.py
index 3c91012520..770274ad6e 100644
--- a/intersight/model/asset_deployment_device_relationship.py
+++ b/intersight/model/asset_deployment_device_relationship.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
@@ -88,6 +88,8 @@ class AssetDeploymentDeviceRelationship(ModelComposed):
},
('object_type',): {
'AAA.AUDITRECORD': "aaa.AuditRecord",
+ 'AAA.RETENTIONCONFIG': "aaa.RetentionConfig",
+ 'AAA.RETENTIONPOLICY': "aaa.RetentionPolicy",
'ACCESS.POLICY': "access.Policy",
'ADAPTER.CONFIGPOLICY': "adapter.ConfigPolicy",
'ADAPTER.EXTETHINTERFACE': "adapter.ExtEthInterface",
@@ -104,6 +106,7 @@ class AssetDeploymentDeviceRelationship(ModelComposed):
'APPLIANCE.DATAEXPORTPOLICY': "appliance.DataExportPolicy",
'APPLIANCE.DEVICECERTIFICATE': "appliance.DeviceCertificate",
'APPLIANCE.DEVICECLAIM': "appliance.DeviceClaim",
+ 'APPLIANCE.DEVICEUPGRADEPOLICY': "appliance.DeviceUpgradePolicy",
'APPLIANCE.DIAGSETTING': "appliance.DiagSetting",
'APPLIANCE.EXTERNALSYSLOGSETTING': "appliance.ExternalSyslogSetting",
'APPLIANCE.FILESYSTEMSTATUS': "appliance.FileSystemStatus",
@@ -152,9 +155,12 @@ class AssetDeploymentDeviceRelationship(ModelComposed):
'BOOT.UEFISHELLDEVICE': "boot.UefiShellDevice",
'BOOT.USBDEVICE': "boot.UsbDevice",
'BOOT.VMEDIADEVICE': "boot.VmediaDevice",
+ 'BULK.EXPORT': "bulk.Export",
+ 'BULK.EXPORTEDITEM': "bulk.ExportedItem",
'BULK.MOCLONER': "bulk.MoCloner",
'BULK.MOMERGER': "bulk.MoMerger",
'BULK.REQUEST': "bulk.Request",
+ 'BULK.SUBREQUESTOBJ': "bulk.SubRequestObj",
'CAPABILITY.ADAPTERUNITDESCRIPTOR': "capability.AdapterUnitDescriptor",
'CAPABILITY.CATALOG': "capability.Catalog",
'CAPABILITY.CHASSISDESCRIPTOR': "capability.ChassisDescriptor",
@@ -218,10 +224,6 @@ class AssetDeploymentDeviceRelationship(ModelComposed):
'COND.HCLSTATUS': "cond.HclStatus",
'COND.HCLSTATUSDETAIL': "cond.HclStatusDetail",
'COND.HCLSTATUSJOB': "cond.HclStatusJob",
- 'CONFIG.EXPORTEDITEM': "config.ExportedItem",
- 'CONFIG.EXPORTER': "config.Exporter",
- 'CONFIG.IMPORTEDITEM': "config.ImportedItem",
- 'CONFIG.IMPORTER': "config.Importer",
'CONNECTORPACK.CONNECTORPACKUPGRADE': "connectorpack.ConnectorPackUpgrade",
'CONNECTORPACK.UPGRADEIMPACT': "connectorpack.UpgradeImpact",
'CRD.CUSTOMRESOURCE': "crd.CustomResource",
@@ -230,6 +232,7 @@ class AssetDeploymentDeviceRelationship(ModelComposed):
'EQUIPMENT.CHASSISIDENTITY': "equipment.ChassisIdentity",
'EQUIPMENT.CHASSISOPERATION': "equipment.ChassisOperation",
'EQUIPMENT.DEVICESUMMARY': "equipment.DeviceSummary",
+ 'EQUIPMENT.EXPANDERMODULE': "equipment.ExpanderModule",
'EQUIPMENT.FAN': "equipment.Fan",
'EQUIPMENT.FANCONTROL': "equipment.FanControl",
'EQUIPMENT.FANMODULE': "equipment.FanModule",
@@ -478,6 +481,7 @@ class AssetDeploymentDeviceRelationship(ModelComposed):
'KUBERNETES.ADDONDEFINITION': "kubernetes.AddonDefinition",
'KUBERNETES.ADDONPOLICY': "kubernetes.AddonPolicy",
'KUBERNETES.ADDONREPOSITORY': "kubernetes.AddonRepository",
+ 'KUBERNETES.BAREMETALNODEPROFILE': "kubernetes.BaremetalNodeProfile",
'KUBERNETES.CATALOG': "kubernetes.Catalog",
'KUBERNETES.CLUSTER': "kubernetes.Cluster",
'KUBERNETES.CLUSTERADDONPROFILE': "kubernetes.ClusterAddonProfile",
@@ -647,6 +651,11 @@ class AssetDeploymentDeviceRelationship(ModelComposed):
'RESOURCE.LICENSERESOURCECOUNT': "resource.LicenseResourceCount",
'RESOURCE.MEMBERSHIP': "resource.Membership",
'RESOURCE.MEMBERSHIPHOLDER': "resource.MembershipHolder",
+ 'RESOURCEPOOL.LEASE': "resourcepool.Lease",
+ 'RESOURCEPOOL.LEASERESOURCE': "resourcepool.LeaseResource",
+ 'RESOURCEPOOL.POOL': "resourcepool.Pool",
+ 'RESOURCEPOOL.POOLMEMBER': "resourcepool.PoolMember",
+ 'RESOURCEPOOL.UNIVERSE': "resourcepool.Universe",
'RPROXY.REVERSEPROXY': "rproxy.ReverseProxy",
'SDCARD.POLICY': "sdcard.Policy",
'SDWAN.PROFILE': "sdwan.Profile",
@@ -762,6 +771,7 @@ class AssetDeploymentDeviceRelationship(ModelComposed):
'TASK.NETAPPSCOPEDINVENTORY': "task.NetAppScopedInventory",
'TASK.PUBLICCLOUDSCOPEDINVENTORY': "task.PublicCloudScopedInventory",
'TASK.PURESCOPEDINVENTORY': "task.PureScopedInventory",
+ 'TASK.SERVERSCOPEDINVENTORY': "task.ServerScopedInventory",
'TECHSUPPORTMANAGEMENT.COLLECTIONCONTROLPOLICY': "techsupportmanagement.CollectionControlPolicy",
'TECHSUPPORTMANAGEMENT.DOWNLOAD': "techsupportmanagement.Download",
'TECHSUPPORTMANAGEMENT.TECHSUPPORTBUNDLE': "techsupportmanagement.TechSupportBundle",
@@ -793,6 +803,7 @@ class AssetDeploymentDeviceRelationship(ModelComposed):
'VIRTUALIZATION.VMWAREVCENTER': "virtualization.VmwareVcenter",
'VIRTUALIZATION.VMWAREVIRTUALDISK': "virtualization.VmwareVirtualDisk",
'VIRTUALIZATION.VMWAREVIRTUALMACHINE': "virtualization.VmwareVirtualMachine",
+ 'VIRTUALIZATION.VMWAREVIRTUALMACHINESNAPSHOT': "virtualization.VmwareVirtualMachineSnapshot",
'VIRTUALIZATION.VMWAREVIRTUALNETWORKINTERFACE': "virtualization.VmwareVirtualNetworkInterface",
'VIRTUALIZATION.VMWAREVIRTUALSWITCH': "virtualization.VmwareVirtualSwitch",
'VMEDIA.POLICY': "vmedia.Policy",
@@ -825,12 +836,14 @@ class AssetDeploymentDeviceRelationship(ModelComposed):
'WORKFLOW.TASKDEFINITION': "workflow.TaskDefinition",
'WORKFLOW.TASKINFO': "workflow.TaskInfo",
'WORKFLOW.TASKMETADATA': "workflow.TaskMetadata",
+ 'WORKFLOW.TASKNOTIFICATION': "workflow.TaskNotification",
'WORKFLOW.TEMPLATEEVALUATION': "workflow.TemplateEvaluation",
'WORKFLOW.TEMPLATEFUNCTIONMETA': "workflow.TemplateFunctionMeta",
'WORKFLOW.WORKFLOWDEFINITION': "workflow.WorkflowDefinition",
'WORKFLOW.WORKFLOWINFO': "workflow.WorkflowInfo",
'WORKFLOW.WORKFLOWMETA': "workflow.WorkflowMeta",
'WORKFLOW.WORKFLOWMETADATA': "workflow.WorkflowMetadata",
+ 'WORKFLOW.WORKFLOWNOTIFICATION': "workflow.WorkflowNotification",
},
}
diff --git a/intersight/model/asset_deployment_device_response.py b/intersight/model/asset_deployment_device_response.py
index ac18184396..8b7b82254d 100644
--- a/intersight/model/asset_deployment_device_response.py
+++ b/intersight/model/asset_deployment_device_response.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/asset_deployment_list.py b/intersight/model/asset_deployment_list.py
index 3beafc9dc8..10503b6cd0 100644
--- a/intersight/model/asset_deployment_list.py
+++ b/intersight/model/asset_deployment_list.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/asset_deployment_list_all_of.py b/intersight/model/asset_deployment_list_all_of.py
index 7af3b46924..08441582be 100644
--- a/intersight/model/asset_deployment_list_all_of.py
+++ b/intersight/model/asset_deployment_list_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/asset_deployment_relationship.py b/intersight/model/asset_deployment_relationship.py
index d506461f33..79a897e5c9 100644
--- a/intersight/model/asset_deployment_relationship.py
+++ b/intersight/model/asset_deployment_relationship.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
@@ -90,6 +90,8 @@ class AssetDeploymentRelationship(ModelComposed):
},
('object_type',): {
'AAA.AUDITRECORD': "aaa.AuditRecord",
+ 'AAA.RETENTIONCONFIG': "aaa.RetentionConfig",
+ 'AAA.RETENTIONPOLICY': "aaa.RetentionPolicy",
'ACCESS.POLICY': "access.Policy",
'ADAPTER.CONFIGPOLICY': "adapter.ConfigPolicy",
'ADAPTER.EXTETHINTERFACE': "adapter.ExtEthInterface",
@@ -106,6 +108,7 @@ class AssetDeploymentRelationship(ModelComposed):
'APPLIANCE.DATAEXPORTPOLICY': "appliance.DataExportPolicy",
'APPLIANCE.DEVICECERTIFICATE': "appliance.DeviceCertificate",
'APPLIANCE.DEVICECLAIM': "appliance.DeviceClaim",
+ 'APPLIANCE.DEVICEUPGRADEPOLICY': "appliance.DeviceUpgradePolicy",
'APPLIANCE.DIAGSETTING': "appliance.DiagSetting",
'APPLIANCE.EXTERNALSYSLOGSETTING': "appliance.ExternalSyslogSetting",
'APPLIANCE.FILESYSTEMSTATUS': "appliance.FileSystemStatus",
@@ -154,9 +157,12 @@ class AssetDeploymentRelationship(ModelComposed):
'BOOT.UEFISHELLDEVICE': "boot.UefiShellDevice",
'BOOT.USBDEVICE': "boot.UsbDevice",
'BOOT.VMEDIADEVICE': "boot.VmediaDevice",
+ 'BULK.EXPORT': "bulk.Export",
+ 'BULK.EXPORTEDITEM': "bulk.ExportedItem",
'BULK.MOCLONER': "bulk.MoCloner",
'BULK.MOMERGER': "bulk.MoMerger",
'BULK.REQUEST': "bulk.Request",
+ 'BULK.SUBREQUESTOBJ': "bulk.SubRequestObj",
'CAPABILITY.ADAPTERUNITDESCRIPTOR': "capability.AdapterUnitDescriptor",
'CAPABILITY.CATALOG': "capability.Catalog",
'CAPABILITY.CHASSISDESCRIPTOR': "capability.ChassisDescriptor",
@@ -220,10 +226,6 @@ class AssetDeploymentRelationship(ModelComposed):
'COND.HCLSTATUS': "cond.HclStatus",
'COND.HCLSTATUSDETAIL': "cond.HclStatusDetail",
'COND.HCLSTATUSJOB': "cond.HclStatusJob",
- 'CONFIG.EXPORTEDITEM': "config.ExportedItem",
- 'CONFIG.EXPORTER': "config.Exporter",
- 'CONFIG.IMPORTEDITEM': "config.ImportedItem",
- 'CONFIG.IMPORTER': "config.Importer",
'CONNECTORPACK.CONNECTORPACKUPGRADE': "connectorpack.ConnectorPackUpgrade",
'CONNECTORPACK.UPGRADEIMPACT': "connectorpack.UpgradeImpact",
'CRD.CUSTOMRESOURCE': "crd.CustomResource",
@@ -232,6 +234,7 @@ class AssetDeploymentRelationship(ModelComposed):
'EQUIPMENT.CHASSISIDENTITY': "equipment.ChassisIdentity",
'EQUIPMENT.CHASSISOPERATION': "equipment.ChassisOperation",
'EQUIPMENT.DEVICESUMMARY': "equipment.DeviceSummary",
+ 'EQUIPMENT.EXPANDERMODULE': "equipment.ExpanderModule",
'EQUIPMENT.FAN': "equipment.Fan",
'EQUIPMENT.FANCONTROL': "equipment.FanControl",
'EQUIPMENT.FANMODULE': "equipment.FanModule",
@@ -480,6 +483,7 @@ class AssetDeploymentRelationship(ModelComposed):
'KUBERNETES.ADDONDEFINITION': "kubernetes.AddonDefinition",
'KUBERNETES.ADDONPOLICY': "kubernetes.AddonPolicy",
'KUBERNETES.ADDONREPOSITORY': "kubernetes.AddonRepository",
+ 'KUBERNETES.BAREMETALNODEPROFILE': "kubernetes.BaremetalNodeProfile",
'KUBERNETES.CATALOG': "kubernetes.Catalog",
'KUBERNETES.CLUSTER': "kubernetes.Cluster",
'KUBERNETES.CLUSTERADDONPROFILE': "kubernetes.ClusterAddonProfile",
@@ -649,6 +653,11 @@ class AssetDeploymentRelationship(ModelComposed):
'RESOURCE.LICENSERESOURCECOUNT': "resource.LicenseResourceCount",
'RESOURCE.MEMBERSHIP': "resource.Membership",
'RESOURCE.MEMBERSHIPHOLDER': "resource.MembershipHolder",
+ 'RESOURCEPOOL.LEASE': "resourcepool.Lease",
+ 'RESOURCEPOOL.LEASERESOURCE': "resourcepool.LeaseResource",
+ 'RESOURCEPOOL.POOL': "resourcepool.Pool",
+ 'RESOURCEPOOL.POOLMEMBER': "resourcepool.PoolMember",
+ 'RESOURCEPOOL.UNIVERSE': "resourcepool.Universe",
'RPROXY.REVERSEPROXY': "rproxy.ReverseProxy",
'SDCARD.POLICY': "sdcard.Policy",
'SDWAN.PROFILE': "sdwan.Profile",
@@ -764,6 +773,7 @@ class AssetDeploymentRelationship(ModelComposed):
'TASK.NETAPPSCOPEDINVENTORY': "task.NetAppScopedInventory",
'TASK.PUBLICCLOUDSCOPEDINVENTORY': "task.PublicCloudScopedInventory",
'TASK.PURESCOPEDINVENTORY': "task.PureScopedInventory",
+ 'TASK.SERVERSCOPEDINVENTORY': "task.ServerScopedInventory",
'TECHSUPPORTMANAGEMENT.COLLECTIONCONTROLPOLICY': "techsupportmanagement.CollectionControlPolicy",
'TECHSUPPORTMANAGEMENT.DOWNLOAD': "techsupportmanagement.Download",
'TECHSUPPORTMANAGEMENT.TECHSUPPORTBUNDLE': "techsupportmanagement.TechSupportBundle",
@@ -795,6 +805,7 @@ class AssetDeploymentRelationship(ModelComposed):
'VIRTUALIZATION.VMWAREVCENTER': "virtualization.VmwareVcenter",
'VIRTUALIZATION.VMWAREVIRTUALDISK': "virtualization.VmwareVirtualDisk",
'VIRTUALIZATION.VMWAREVIRTUALMACHINE': "virtualization.VmwareVirtualMachine",
+ 'VIRTUALIZATION.VMWAREVIRTUALMACHINESNAPSHOT': "virtualization.VmwareVirtualMachineSnapshot",
'VIRTUALIZATION.VMWAREVIRTUALNETWORKINTERFACE': "virtualization.VmwareVirtualNetworkInterface",
'VIRTUALIZATION.VMWAREVIRTUALSWITCH': "virtualization.VmwareVirtualSwitch",
'VMEDIA.POLICY': "vmedia.Policy",
@@ -827,12 +838,14 @@ class AssetDeploymentRelationship(ModelComposed):
'WORKFLOW.TASKDEFINITION': "workflow.TaskDefinition",
'WORKFLOW.TASKINFO': "workflow.TaskInfo",
'WORKFLOW.TASKMETADATA': "workflow.TaskMetadata",
+ 'WORKFLOW.TASKNOTIFICATION': "workflow.TaskNotification",
'WORKFLOW.TEMPLATEEVALUATION': "workflow.TemplateEvaluation",
'WORKFLOW.TEMPLATEFUNCTIONMETA': "workflow.TemplateFunctionMeta",
'WORKFLOW.WORKFLOWDEFINITION': "workflow.WorkflowDefinition",
'WORKFLOW.WORKFLOWINFO': "workflow.WorkflowInfo",
'WORKFLOW.WORKFLOWMETA': "workflow.WorkflowMeta",
'WORKFLOW.WORKFLOWMETADATA': "workflow.WorkflowMetadata",
+ 'WORKFLOW.WORKFLOWNOTIFICATION': "workflow.WorkflowNotification",
},
}
diff --git a/intersight/model/asset_deployment_response.py b/intersight/model/asset_deployment_response.py
index 6bf2cbdc42..1fd33f7fa8 100644
--- a/intersight/model/asset_deployment_response.py
+++ b/intersight/model/asset_deployment_response.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/asset_device_claim.py b/intersight/model/asset_device_claim.py
index cb81cd565c..92cc585550 100644
--- a/intersight/model/asset_device_claim.py
+++ b/intersight/model/asset_device_claim.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/asset_device_claim_all_of.py b/intersight/model/asset_device_claim_all_of.py
index 8cdc064dcf..bb12a134dc 100644
--- a/intersight/model/asset_device_claim_all_of.py
+++ b/intersight/model/asset_device_claim_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/asset_device_claim_relationship.py b/intersight/model/asset_device_claim_relationship.py
index d08f04713e..b41e92cdda 100644
--- a/intersight/model/asset_device_claim_relationship.py
+++ b/intersight/model/asset_device_claim_relationship.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
@@ -78,6 +78,8 @@ class AssetDeviceClaimRelationship(ModelComposed):
},
('object_type',): {
'AAA.AUDITRECORD': "aaa.AuditRecord",
+ 'AAA.RETENTIONCONFIG': "aaa.RetentionConfig",
+ 'AAA.RETENTIONPOLICY': "aaa.RetentionPolicy",
'ACCESS.POLICY': "access.Policy",
'ADAPTER.CONFIGPOLICY': "adapter.ConfigPolicy",
'ADAPTER.EXTETHINTERFACE': "adapter.ExtEthInterface",
@@ -94,6 +96,7 @@ class AssetDeviceClaimRelationship(ModelComposed):
'APPLIANCE.DATAEXPORTPOLICY': "appliance.DataExportPolicy",
'APPLIANCE.DEVICECERTIFICATE': "appliance.DeviceCertificate",
'APPLIANCE.DEVICECLAIM': "appliance.DeviceClaim",
+ 'APPLIANCE.DEVICEUPGRADEPOLICY': "appliance.DeviceUpgradePolicy",
'APPLIANCE.DIAGSETTING': "appliance.DiagSetting",
'APPLIANCE.EXTERNALSYSLOGSETTING': "appliance.ExternalSyslogSetting",
'APPLIANCE.FILESYSTEMSTATUS': "appliance.FileSystemStatus",
@@ -142,9 +145,12 @@ class AssetDeviceClaimRelationship(ModelComposed):
'BOOT.UEFISHELLDEVICE': "boot.UefiShellDevice",
'BOOT.USBDEVICE': "boot.UsbDevice",
'BOOT.VMEDIADEVICE': "boot.VmediaDevice",
+ 'BULK.EXPORT': "bulk.Export",
+ 'BULK.EXPORTEDITEM': "bulk.ExportedItem",
'BULK.MOCLONER': "bulk.MoCloner",
'BULK.MOMERGER': "bulk.MoMerger",
'BULK.REQUEST': "bulk.Request",
+ 'BULK.SUBREQUESTOBJ': "bulk.SubRequestObj",
'CAPABILITY.ADAPTERUNITDESCRIPTOR': "capability.AdapterUnitDescriptor",
'CAPABILITY.CATALOG': "capability.Catalog",
'CAPABILITY.CHASSISDESCRIPTOR': "capability.ChassisDescriptor",
@@ -208,10 +214,6 @@ class AssetDeviceClaimRelationship(ModelComposed):
'COND.HCLSTATUS': "cond.HclStatus",
'COND.HCLSTATUSDETAIL': "cond.HclStatusDetail",
'COND.HCLSTATUSJOB': "cond.HclStatusJob",
- 'CONFIG.EXPORTEDITEM': "config.ExportedItem",
- 'CONFIG.EXPORTER': "config.Exporter",
- 'CONFIG.IMPORTEDITEM': "config.ImportedItem",
- 'CONFIG.IMPORTER': "config.Importer",
'CONNECTORPACK.CONNECTORPACKUPGRADE': "connectorpack.ConnectorPackUpgrade",
'CONNECTORPACK.UPGRADEIMPACT': "connectorpack.UpgradeImpact",
'CRD.CUSTOMRESOURCE': "crd.CustomResource",
@@ -220,6 +222,7 @@ class AssetDeviceClaimRelationship(ModelComposed):
'EQUIPMENT.CHASSISIDENTITY': "equipment.ChassisIdentity",
'EQUIPMENT.CHASSISOPERATION': "equipment.ChassisOperation",
'EQUIPMENT.DEVICESUMMARY': "equipment.DeviceSummary",
+ 'EQUIPMENT.EXPANDERMODULE': "equipment.ExpanderModule",
'EQUIPMENT.FAN': "equipment.Fan",
'EQUIPMENT.FANCONTROL': "equipment.FanControl",
'EQUIPMENT.FANMODULE': "equipment.FanModule",
@@ -468,6 +471,7 @@ class AssetDeviceClaimRelationship(ModelComposed):
'KUBERNETES.ADDONDEFINITION': "kubernetes.AddonDefinition",
'KUBERNETES.ADDONPOLICY': "kubernetes.AddonPolicy",
'KUBERNETES.ADDONREPOSITORY': "kubernetes.AddonRepository",
+ 'KUBERNETES.BAREMETALNODEPROFILE': "kubernetes.BaremetalNodeProfile",
'KUBERNETES.CATALOG': "kubernetes.Catalog",
'KUBERNETES.CLUSTER': "kubernetes.Cluster",
'KUBERNETES.CLUSTERADDONPROFILE': "kubernetes.ClusterAddonProfile",
@@ -637,6 +641,11 @@ class AssetDeviceClaimRelationship(ModelComposed):
'RESOURCE.LICENSERESOURCECOUNT': "resource.LicenseResourceCount",
'RESOURCE.MEMBERSHIP': "resource.Membership",
'RESOURCE.MEMBERSHIPHOLDER': "resource.MembershipHolder",
+ 'RESOURCEPOOL.LEASE': "resourcepool.Lease",
+ 'RESOURCEPOOL.LEASERESOURCE': "resourcepool.LeaseResource",
+ 'RESOURCEPOOL.POOL': "resourcepool.Pool",
+ 'RESOURCEPOOL.POOLMEMBER': "resourcepool.PoolMember",
+ 'RESOURCEPOOL.UNIVERSE': "resourcepool.Universe",
'RPROXY.REVERSEPROXY': "rproxy.ReverseProxy",
'SDCARD.POLICY': "sdcard.Policy",
'SDWAN.PROFILE': "sdwan.Profile",
@@ -752,6 +761,7 @@ class AssetDeviceClaimRelationship(ModelComposed):
'TASK.NETAPPSCOPEDINVENTORY': "task.NetAppScopedInventory",
'TASK.PUBLICCLOUDSCOPEDINVENTORY': "task.PublicCloudScopedInventory",
'TASK.PURESCOPEDINVENTORY': "task.PureScopedInventory",
+ 'TASK.SERVERSCOPEDINVENTORY': "task.ServerScopedInventory",
'TECHSUPPORTMANAGEMENT.COLLECTIONCONTROLPOLICY': "techsupportmanagement.CollectionControlPolicy",
'TECHSUPPORTMANAGEMENT.DOWNLOAD': "techsupportmanagement.Download",
'TECHSUPPORTMANAGEMENT.TECHSUPPORTBUNDLE': "techsupportmanagement.TechSupportBundle",
@@ -783,6 +793,7 @@ class AssetDeviceClaimRelationship(ModelComposed):
'VIRTUALIZATION.VMWAREVCENTER': "virtualization.VmwareVcenter",
'VIRTUALIZATION.VMWAREVIRTUALDISK': "virtualization.VmwareVirtualDisk",
'VIRTUALIZATION.VMWAREVIRTUALMACHINE': "virtualization.VmwareVirtualMachine",
+ 'VIRTUALIZATION.VMWAREVIRTUALMACHINESNAPSHOT': "virtualization.VmwareVirtualMachineSnapshot",
'VIRTUALIZATION.VMWAREVIRTUALNETWORKINTERFACE': "virtualization.VmwareVirtualNetworkInterface",
'VIRTUALIZATION.VMWAREVIRTUALSWITCH': "virtualization.VmwareVirtualSwitch",
'VMEDIA.POLICY': "vmedia.Policy",
@@ -815,12 +826,14 @@ class AssetDeviceClaimRelationship(ModelComposed):
'WORKFLOW.TASKDEFINITION': "workflow.TaskDefinition",
'WORKFLOW.TASKINFO': "workflow.TaskInfo",
'WORKFLOW.TASKMETADATA': "workflow.TaskMetadata",
+ 'WORKFLOW.TASKNOTIFICATION': "workflow.TaskNotification",
'WORKFLOW.TEMPLATEEVALUATION': "workflow.TemplateEvaluation",
'WORKFLOW.TEMPLATEFUNCTIONMETA': "workflow.TemplateFunctionMeta",
'WORKFLOW.WORKFLOWDEFINITION': "workflow.WorkflowDefinition",
'WORKFLOW.WORKFLOWINFO': "workflow.WorkflowInfo",
'WORKFLOW.WORKFLOWMETA': "workflow.WorkflowMeta",
'WORKFLOW.WORKFLOWMETADATA': "workflow.WorkflowMetadata",
+ 'WORKFLOW.WORKFLOWNOTIFICATION': "workflow.WorkflowNotification",
},
}
diff --git a/intersight/model/asset_device_configuration.py b/intersight/model/asset_device_configuration.py
index ff89810247..1ebc7ca6f0 100644
--- a/intersight/model/asset_device_configuration.py
+++ b/intersight/model/asset_device_configuration.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/asset_device_configuration_all_of.py b/intersight/model/asset_device_configuration_all_of.py
index 96cb0b2f9d..7bd11e339c 100644
--- a/intersight/model/asset_device_configuration_all_of.py
+++ b/intersight/model/asset_device_configuration_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/asset_device_configuration_list.py b/intersight/model/asset_device_configuration_list.py
index 831e80962f..77be1d1d06 100644
--- a/intersight/model/asset_device_configuration_list.py
+++ b/intersight/model/asset_device_configuration_list.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/asset_device_configuration_list_all_of.py b/intersight/model/asset_device_configuration_list_all_of.py
index c079882555..6bb6dd12da 100644
--- a/intersight/model/asset_device_configuration_list_all_of.py
+++ b/intersight/model/asset_device_configuration_list_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/asset_device_configuration_relationship.py b/intersight/model/asset_device_configuration_relationship.py
index 22f05f83c9..fd8a104d30 100644
--- a/intersight/model/asset_device_configuration_relationship.py
+++ b/intersight/model/asset_device_configuration_relationship.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
@@ -74,6 +74,8 @@ class AssetDeviceConfigurationRelationship(ModelComposed):
},
('object_type',): {
'AAA.AUDITRECORD': "aaa.AuditRecord",
+ 'AAA.RETENTIONCONFIG': "aaa.RetentionConfig",
+ 'AAA.RETENTIONPOLICY': "aaa.RetentionPolicy",
'ACCESS.POLICY': "access.Policy",
'ADAPTER.CONFIGPOLICY': "adapter.ConfigPolicy",
'ADAPTER.EXTETHINTERFACE': "adapter.ExtEthInterface",
@@ -90,6 +92,7 @@ class AssetDeviceConfigurationRelationship(ModelComposed):
'APPLIANCE.DATAEXPORTPOLICY': "appliance.DataExportPolicy",
'APPLIANCE.DEVICECERTIFICATE': "appliance.DeviceCertificate",
'APPLIANCE.DEVICECLAIM': "appliance.DeviceClaim",
+ 'APPLIANCE.DEVICEUPGRADEPOLICY': "appliance.DeviceUpgradePolicy",
'APPLIANCE.DIAGSETTING': "appliance.DiagSetting",
'APPLIANCE.EXTERNALSYSLOGSETTING': "appliance.ExternalSyslogSetting",
'APPLIANCE.FILESYSTEMSTATUS': "appliance.FileSystemStatus",
@@ -138,9 +141,12 @@ class AssetDeviceConfigurationRelationship(ModelComposed):
'BOOT.UEFISHELLDEVICE': "boot.UefiShellDevice",
'BOOT.USBDEVICE': "boot.UsbDevice",
'BOOT.VMEDIADEVICE': "boot.VmediaDevice",
+ 'BULK.EXPORT': "bulk.Export",
+ 'BULK.EXPORTEDITEM': "bulk.ExportedItem",
'BULK.MOCLONER': "bulk.MoCloner",
'BULK.MOMERGER': "bulk.MoMerger",
'BULK.REQUEST': "bulk.Request",
+ 'BULK.SUBREQUESTOBJ': "bulk.SubRequestObj",
'CAPABILITY.ADAPTERUNITDESCRIPTOR': "capability.AdapterUnitDescriptor",
'CAPABILITY.CATALOG': "capability.Catalog",
'CAPABILITY.CHASSISDESCRIPTOR': "capability.ChassisDescriptor",
@@ -204,10 +210,6 @@ class AssetDeviceConfigurationRelationship(ModelComposed):
'COND.HCLSTATUS': "cond.HclStatus",
'COND.HCLSTATUSDETAIL': "cond.HclStatusDetail",
'COND.HCLSTATUSJOB': "cond.HclStatusJob",
- 'CONFIG.EXPORTEDITEM': "config.ExportedItem",
- 'CONFIG.EXPORTER': "config.Exporter",
- 'CONFIG.IMPORTEDITEM': "config.ImportedItem",
- 'CONFIG.IMPORTER': "config.Importer",
'CONNECTORPACK.CONNECTORPACKUPGRADE': "connectorpack.ConnectorPackUpgrade",
'CONNECTORPACK.UPGRADEIMPACT': "connectorpack.UpgradeImpact",
'CRD.CUSTOMRESOURCE': "crd.CustomResource",
@@ -216,6 +218,7 @@ class AssetDeviceConfigurationRelationship(ModelComposed):
'EQUIPMENT.CHASSISIDENTITY': "equipment.ChassisIdentity",
'EQUIPMENT.CHASSISOPERATION': "equipment.ChassisOperation",
'EQUIPMENT.DEVICESUMMARY': "equipment.DeviceSummary",
+ 'EQUIPMENT.EXPANDERMODULE': "equipment.ExpanderModule",
'EQUIPMENT.FAN': "equipment.Fan",
'EQUIPMENT.FANCONTROL': "equipment.FanControl",
'EQUIPMENT.FANMODULE': "equipment.FanModule",
@@ -464,6 +467,7 @@ class AssetDeviceConfigurationRelationship(ModelComposed):
'KUBERNETES.ADDONDEFINITION': "kubernetes.AddonDefinition",
'KUBERNETES.ADDONPOLICY': "kubernetes.AddonPolicy",
'KUBERNETES.ADDONREPOSITORY': "kubernetes.AddonRepository",
+ 'KUBERNETES.BAREMETALNODEPROFILE': "kubernetes.BaremetalNodeProfile",
'KUBERNETES.CATALOG': "kubernetes.Catalog",
'KUBERNETES.CLUSTER': "kubernetes.Cluster",
'KUBERNETES.CLUSTERADDONPROFILE': "kubernetes.ClusterAddonProfile",
@@ -633,6 +637,11 @@ class AssetDeviceConfigurationRelationship(ModelComposed):
'RESOURCE.LICENSERESOURCECOUNT': "resource.LicenseResourceCount",
'RESOURCE.MEMBERSHIP': "resource.Membership",
'RESOURCE.MEMBERSHIPHOLDER': "resource.MembershipHolder",
+ 'RESOURCEPOOL.LEASE': "resourcepool.Lease",
+ 'RESOURCEPOOL.LEASERESOURCE': "resourcepool.LeaseResource",
+ 'RESOURCEPOOL.POOL': "resourcepool.Pool",
+ 'RESOURCEPOOL.POOLMEMBER': "resourcepool.PoolMember",
+ 'RESOURCEPOOL.UNIVERSE': "resourcepool.Universe",
'RPROXY.REVERSEPROXY': "rproxy.ReverseProxy",
'SDCARD.POLICY': "sdcard.Policy",
'SDWAN.PROFILE': "sdwan.Profile",
@@ -748,6 +757,7 @@ class AssetDeviceConfigurationRelationship(ModelComposed):
'TASK.NETAPPSCOPEDINVENTORY': "task.NetAppScopedInventory",
'TASK.PUBLICCLOUDSCOPEDINVENTORY': "task.PublicCloudScopedInventory",
'TASK.PURESCOPEDINVENTORY': "task.PureScopedInventory",
+ 'TASK.SERVERSCOPEDINVENTORY': "task.ServerScopedInventory",
'TECHSUPPORTMANAGEMENT.COLLECTIONCONTROLPOLICY': "techsupportmanagement.CollectionControlPolicy",
'TECHSUPPORTMANAGEMENT.DOWNLOAD': "techsupportmanagement.Download",
'TECHSUPPORTMANAGEMENT.TECHSUPPORTBUNDLE': "techsupportmanagement.TechSupportBundle",
@@ -779,6 +789,7 @@ class AssetDeviceConfigurationRelationship(ModelComposed):
'VIRTUALIZATION.VMWAREVCENTER': "virtualization.VmwareVcenter",
'VIRTUALIZATION.VMWAREVIRTUALDISK': "virtualization.VmwareVirtualDisk",
'VIRTUALIZATION.VMWAREVIRTUALMACHINE': "virtualization.VmwareVirtualMachine",
+ 'VIRTUALIZATION.VMWAREVIRTUALMACHINESNAPSHOT': "virtualization.VmwareVirtualMachineSnapshot",
'VIRTUALIZATION.VMWAREVIRTUALNETWORKINTERFACE': "virtualization.VmwareVirtualNetworkInterface",
'VIRTUALIZATION.VMWAREVIRTUALSWITCH': "virtualization.VmwareVirtualSwitch",
'VMEDIA.POLICY': "vmedia.Policy",
@@ -811,12 +822,14 @@ class AssetDeviceConfigurationRelationship(ModelComposed):
'WORKFLOW.TASKDEFINITION': "workflow.TaskDefinition",
'WORKFLOW.TASKINFO': "workflow.TaskInfo",
'WORKFLOW.TASKMETADATA': "workflow.TaskMetadata",
+ 'WORKFLOW.TASKNOTIFICATION': "workflow.TaskNotification",
'WORKFLOW.TEMPLATEEVALUATION': "workflow.TemplateEvaluation",
'WORKFLOW.TEMPLATEFUNCTIONMETA': "workflow.TemplateFunctionMeta",
'WORKFLOW.WORKFLOWDEFINITION': "workflow.WorkflowDefinition",
'WORKFLOW.WORKFLOWINFO': "workflow.WorkflowInfo",
'WORKFLOW.WORKFLOWMETA': "workflow.WorkflowMeta",
'WORKFLOW.WORKFLOWMETADATA': "workflow.WorkflowMetadata",
+ 'WORKFLOW.WORKFLOWNOTIFICATION': "workflow.WorkflowNotification",
},
}
diff --git a/intersight/model/asset_device_configuration_response.py b/intersight/model/asset_device_configuration_response.py
index 5967c3138d..9be0457135 100644
--- a/intersight/model/asset_device_configuration_response.py
+++ b/intersight/model/asset_device_configuration_response.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/asset_device_connection.py b/intersight/model/asset_device_connection.py
index 3e48e9fa79..079c3bf422 100644
--- a/intersight/model/asset_device_connection.py
+++ b/intersight/model/asset_device_connection.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/asset_device_connection_all_of.py b/intersight/model/asset_device_connection_all_of.py
index 20ba52defc..f939e9bf64 100644
--- a/intersight/model/asset_device_connection_all_of.py
+++ b/intersight/model/asset_device_connection_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/asset_device_connection_relationship.py b/intersight/model/asset_device_connection_relationship.py
index fdd662b614..0973fdfd6c 100644
--- a/intersight/model/asset_device_connection_relationship.py
+++ b/intersight/model/asset_device_connection_relationship.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
@@ -80,6 +80,8 @@ class AssetDeviceConnectionRelationship(ModelComposed):
},
('object_type',): {
'AAA.AUDITRECORD': "aaa.AuditRecord",
+ 'AAA.RETENTIONCONFIG': "aaa.RetentionConfig",
+ 'AAA.RETENTIONPOLICY': "aaa.RetentionPolicy",
'ACCESS.POLICY': "access.Policy",
'ADAPTER.CONFIGPOLICY': "adapter.ConfigPolicy",
'ADAPTER.EXTETHINTERFACE': "adapter.ExtEthInterface",
@@ -96,6 +98,7 @@ class AssetDeviceConnectionRelationship(ModelComposed):
'APPLIANCE.DATAEXPORTPOLICY': "appliance.DataExportPolicy",
'APPLIANCE.DEVICECERTIFICATE': "appliance.DeviceCertificate",
'APPLIANCE.DEVICECLAIM': "appliance.DeviceClaim",
+ 'APPLIANCE.DEVICEUPGRADEPOLICY': "appliance.DeviceUpgradePolicy",
'APPLIANCE.DIAGSETTING': "appliance.DiagSetting",
'APPLIANCE.EXTERNALSYSLOGSETTING': "appliance.ExternalSyslogSetting",
'APPLIANCE.FILESYSTEMSTATUS': "appliance.FileSystemStatus",
@@ -144,9 +147,12 @@ class AssetDeviceConnectionRelationship(ModelComposed):
'BOOT.UEFISHELLDEVICE': "boot.UefiShellDevice",
'BOOT.USBDEVICE': "boot.UsbDevice",
'BOOT.VMEDIADEVICE': "boot.VmediaDevice",
+ 'BULK.EXPORT': "bulk.Export",
+ 'BULK.EXPORTEDITEM': "bulk.ExportedItem",
'BULK.MOCLONER': "bulk.MoCloner",
'BULK.MOMERGER': "bulk.MoMerger",
'BULK.REQUEST': "bulk.Request",
+ 'BULK.SUBREQUESTOBJ': "bulk.SubRequestObj",
'CAPABILITY.ADAPTERUNITDESCRIPTOR': "capability.AdapterUnitDescriptor",
'CAPABILITY.CATALOG': "capability.Catalog",
'CAPABILITY.CHASSISDESCRIPTOR': "capability.ChassisDescriptor",
@@ -210,10 +216,6 @@ class AssetDeviceConnectionRelationship(ModelComposed):
'COND.HCLSTATUS': "cond.HclStatus",
'COND.HCLSTATUSDETAIL': "cond.HclStatusDetail",
'COND.HCLSTATUSJOB': "cond.HclStatusJob",
- 'CONFIG.EXPORTEDITEM': "config.ExportedItem",
- 'CONFIG.EXPORTER': "config.Exporter",
- 'CONFIG.IMPORTEDITEM': "config.ImportedItem",
- 'CONFIG.IMPORTER': "config.Importer",
'CONNECTORPACK.CONNECTORPACKUPGRADE': "connectorpack.ConnectorPackUpgrade",
'CONNECTORPACK.UPGRADEIMPACT': "connectorpack.UpgradeImpact",
'CRD.CUSTOMRESOURCE': "crd.CustomResource",
@@ -222,6 +224,7 @@ class AssetDeviceConnectionRelationship(ModelComposed):
'EQUIPMENT.CHASSISIDENTITY': "equipment.ChassisIdentity",
'EQUIPMENT.CHASSISOPERATION': "equipment.ChassisOperation",
'EQUIPMENT.DEVICESUMMARY': "equipment.DeviceSummary",
+ 'EQUIPMENT.EXPANDERMODULE': "equipment.ExpanderModule",
'EQUIPMENT.FAN': "equipment.Fan",
'EQUIPMENT.FANCONTROL': "equipment.FanControl",
'EQUIPMENT.FANMODULE': "equipment.FanModule",
@@ -470,6 +473,7 @@ class AssetDeviceConnectionRelationship(ModelComposed):
'KUBERNETES.ADDONDEFINITION': "kubernetes.AddonDefinition",
'KUBERNETES.ADDONPOLICY': "kubernetes.AddonPolicy",
'KUBERNETES.ADDONREPOSITORY': "kubernetes.AddonRepository",
+ 'KUBERNETES.BAREMETALNODEPROFILE': "kubernetes.BaremetalNodeProfile",
'KUBERNETES.CATALOG': "kubernetes.Catalog",
'KUBERNETES.CLUSTER': "kubernetes.Cluster",
'KUBERNETES.CLUSTERADDONPROFILE': "kubernetes.ClusterAddonProfile",
@@ -639,6 +643,11 @@ class AssetDeviceConnectionRelationship(ModelComposed):
'RESOURCE.LICENSERESOURCECOUNT': "resource.LicenseResourceCount",
'RESOURCE.MEMBERSHIP': "resource.Membership",
'RESOURCE.MEMBERSHIPHOLDER': "resource.MembershipHolder",
+ 'RESOURCEPOOL.LEASE': "resourcepool.Lease",
+ 'RESOURCEPOOL.LEASERESOURCE': "resourcepool.LeaseResource",
+ 'RESOURCEPOOL.POOL': "resourcepool.Pool",
+ 'RESOURCEPOOL.POOLMEMBER': "resourcepool.PoolMember",
+ 'RESOURCEPOOL.UNIVERSE': "resourcepool.Universe",
'RPROXY.REVERSEPROXY': "rproxy.ReverseProxy",
'SDCARD.POLICY': "sdcard.Policy",
'SDWAN.PROFILE': "sdwan.Profile",
@@ -754,6 +763,7 @@ class AssetDeviceConnectionRelationship(ModelComposed):
'TASK.NETAPPSCOPEDINVENTORY': "task.NetAppScopedInventory",
'TASK.PUBLICCLOUDSCOPEDINVENTORY': "task.PublicCloudScopedInventory",
'TASK.PURESCOPEDINVENTORY': "task.PureScopedInventory",
+ 'TASK.SERVERSCOPEDINVENTORY': "task.ServerScopedInventory",
'TECHSUPPORTMANAGEMENT.COLLECTIONCONTROLPOLICY': "techsupportmanagement.CollectionControlPolicy",
'TECHSUPPORTMANAGEMENT.DOWNLOAD': "techsupportmanagement.Download",
'TECHSUPPORTMANAGEMENT.TECHSUPPORTBUNDLE': "techsupportmanagement.TechSupportBundle",
@@ -785,6 +795,7 @@ class AssetDeviceConnectionRelationship(ModelComposed):
'VIRTUALIZATION.VMWAREVCENTER': "virtualization.VmwareVcenter",
'VIRTUALIZATION.VMWAREVIRTUALDISK': "virtualization.VmwareVirtualDisk",
'VIRTUALIZATION.VMWAREVIRTUALMACHINE': "virtualization.VmwareVirtualMachine",
+ 'VIRTUALIZATION.VMWAREVIRTUALMACHINESNAPSHOT': "virtualization.VmwareVirtualMachineSnapshot",
'VIRTUALIZATION.VMWAREVIRTUALNETWORKINTERFACE': "virtualization.VmwareVirtualNetworkInterface",
'VIRTUALIZATION.VMWAREVIRTUALSWITCH': "virtualization.VmwareVirtualSwitch",
'VMEDIA.POLICY': "vmedia.Policy",
@@ -817,12 +828,14 @@ class AssetDeviceConnectionRelationship(ModelComposed):
'WORKFLOW.TASKDEFINITION': "workflow.TaskDefinition",
'WORKFLOW.TASKINFO': "workflow.TaskInfo",
'WORKFLOW.TASKMETADATA': "workflow.TaskMetadata",
+ 'WORKFLOW.TASKNOTIFICATION': "workflow.TaskNotification",
'WORKFLOW.TEMPLATEEVALUATION': "workflow.TemplateEvaluation",
'WORKFLOW.TEMPLATEFUNCTIONMETA': "workflow.TemplateFunctionMeta",
'WORKFLOW.WORKFLOWDEFINITION': "workflow.WorkflowDefinition",
'WORKFLOW.WORKFLOWINFO': "workflow.WorkflowInfo",
'WORKFLOW.WORKFLOWMETA': "workflow.WorkflowMeta",
'WORKFLOW.WORKFLOWMETADATA': "workflow.WorkflowMetadata",
+ 'WORKFLOW.WORKFLOWNOTIFICATION': "workflow.WorkflowNotification",
},
}
diff --git a/intersight/model/asset_device_connector_manager.py b/intersight/model/asset_device_connector_manager.py
index f86a6f5cfd..3f5eadabb0 100644
--- a/intersight/model/asset_device_connector_manager.py
+++ b/intersight/model/asset_device_connector_manager.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/asset_device_connector_manager_all_of.py b/intersight/model/asset_device_connector_manager_all_of.py
index c4559e81c3..a57abdcb78 100644
--- a/intersight/model/asset_device_connector_manager_all_of.py
+++ b/intersight/model/asset_device_connector_manager_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/asset_device_connector_manager_list.py b/intersight/model/asset_device_connector_manager_list.py
index a151cc1909..b9f95686f8 100644
--- a/intersight/model/asset_device_connector_manager_list.py
+++ b/intersight/model/asset_device_connector_manager_list.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/asset_device_connector_manager_list_all_of.py b/intersight/model/asset_device_connector_manager_list_all_of.py
index b0866e1f33..fd7736be19 100644
--- a/intersight/model/asset_device_connector_manager_list_all_of.py
+++ b/intersight/model/asset_device_connector_manager_list_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/asset_device_connector_manager_response.py b/intersight/model/asset_device_connector_manager_response.py
index efd036798e..53cca276c4 100644
--- a/intersight/model/asset_device_connector_manager_response.py
+++ b/intersight/model/asset_device_connector_manager_response.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/asset_device_contract_information.py b/intersight/model/asset_device_contract_information.py
index af61169ebc..c0ecd21dd4 100644
--- a/intersight/model/asset_device_contract_information.py
+++ b/intersight/model/asset_device_contract_information.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/asset_device_contract_information_all_of.py b/intersight/model/asset_device_contract_information_all_of.py
index 77dab4d67f..6bc2159328 100644
--- a/intersight/model/asset_device_contract_information_all_of.py
+++ b/intersight/model/asset_device_contract_information_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/asset_device_contract_information_list.py b/intersight/model/asset_device_contract_information_list.py
index 24d9a705ac..a57e134f19 100644
--- a/intersight/model/asset_device_contract_information_list.py
+++ b/intersight/model/asset_device_contract_information_list.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/asset_device_contract_information_list_all_of.py b/intersight/model/asset_device_contract_information_list_all_of.py
index 1ab8667cb7..37c6d4bef6 100644
--- a/intersight/model/asset_device_contract_information_list_all_of.py
+++ b/intersight/model/asset_device_contract_information_list_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/asset_device_contract_information_relationship.py b/intersight/model/asset_device_contract_information_relationship.py
index 2e023e9855..68c46e6b7b 100644
--- a/intersight/model/asset_device_contract_information_relationship.py
+++ b/intersight/model/asset_device_contract_information_relationship.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
@@ -158,6 +158,8 @@ class AssetDeviceContractInformationRelationship(ModelComposed):
},
('object_type',): {
'AAA.AUDITRECORD': "aaa.AuditRecord",
+ 'AAA.RETENTIONCONFIG': "aaa.RetentionConfig",
+ 'AAA.RETENTIONPOLICY': "aaa.RetentionPolicy",
'ACCESS.POLICY': "access.Policy",
'ADAPTER.CONFIGPOLICY': "adapter.ConfigPolicy",
'ADAPTER.EXTETHINTERFACE': "adapter.ExtEthInterface",
@@ -174,6 +176,7 @@ class AssetDeviceContractInformationRelationship(ModelComposed):
'APPLIANCE.DATAEXPORTPOLICY': "appliance.DataExportPolicy",
'APPLIANCE.DEVICECERTIFICATE': "appliance.DeviceCertificate",
'APPLIANCE.DEVICECLAIM': "appliance.DeviceClaim",
+ 'APPLIANCE.DEVICEUPGRADEPOLICY': "appliance.DeviceUpgradePolicy",
'APPLIANCE.DIAGSETTING': "appliance.DiagSetting",
'APPLIANCE.EXTERNALSYSLOGSETTING': "appliance.ExternalSyslogSetting",
'APPLIANCE.FILESYSTEMSTATUS': "appliance.FileSystemStatus",
@@ -222,9 +225,12 @@ class AssetDeviceContractInformationRelationship(ModelComposed):
'BOOT.UEFISHELLDEVICE': "boot.UefiShellDevice",
'BOOT.USBDEVICE': "boot.UsbDevice",
'BOOT.VMEDIADEVICE': "boot.VmediaDevice",
+ 'BULK.EXPORT': "bulk.Export",
+ 'BULK.EXPORTEDITEM': "bulk.ExportedItem",
'BULK.MOCLONER': "bulk.MoCloner",
'BULK.MOMERGER': "bulk.MoMerger",
'BULK.REQUEST': "bulk.Request",
+ 'BULK.SUBREQUESTOBJ': "bulk.SubRequestObj",
'CAPABILITY.ADAPTERUNITDESCRIPTOR': "capability.AdapterUnitDescriptor",
'CAPABILITY.CATALOG': "capability.Catalog",
'CAPABILITY.CHASSISDESCRIPTOR': "capability.ChassisDescriptor",
@@ -288,10 +294,6 @@ class AssetDeviceContractInformationRelationship(ModelComposed):
'COND.HCLSTATUS': "cond.HclStatus",
'COND.HCLSTATUSDETAIL': "cond.HclStatusDetail",
'COND.HCLSTATUSJOB': "cond.HclStatusJob",
- 'CONFIG.EXPORTEDITEM': "config.ExportedItem",
- 'CONFIG.EXPORTER': "config.Exporter",
- 'CONFIG.IMPORTEDITEM': "config.ImportedItem",
- 'CONFIG.IMPORTER': "config.Importer",
'CONNECTORPACK.CONNECTORPACKUPGRADE': "connectorpack.ConnectorPackUpgrade",
'CONNECTORPACK.UPGRADEIMPACT': "connectorpack.UpgradeImpact",
'CRD.CUSTOMRESOURCE': "crd.CustomResource",
@@ -300,6 +302,7 @@ class AssetDeviceContractInformationRelationship(ModelComposed):
'EQUIPMENT.CHASSISIDENTITY': "equipment.ChassisIdentity",
'EQUIPMENT.CHASSISOPERATION': "equipment.ChassisOperation",
'EQUIPMENT.DEVICESUMMARY': "equipment.DeviceSummary",
+ 'EQUIPMENT.EXPANDERMODULE': "equipment.ExpanderModule",
'EQUIPMENT.FAN': "equipment.Fan",
'EQUIPMENT.FANCONTROL': "equipment.FanControl",
'EQUIPMENT.FANMODULE': "equipment.FanModule",
@@ -548,6 +551,7 @@ class AssetDeviceContractInformationRelationship(ModelComposed):
'KUBERNETES.ADDONDEFINITION': "kubernetes.AddonDefinition",
'KUBERNETES.ADDONPOLICY': "kubernetes.AddonPolicy",
'KUBERNETES.ADDONREPOSITORY': "kubernetes.AddonRepository",
+ 'KUBERNETES.BAREMETALNODEPROFILE': "kubernetes.BaremetalNodeProfile",
'KUBERNETES.CATALOG': "kubernetes.Catalog",
'KUBERNETES.CLUSTER': "kubernetes.Cluster",
'KUBERNETES.CLUSTERADDONPROFILE': "kubernetes.ClusterAddonProfile",
@@ -717,6 +721,11 @@ class AssetDeviceContractInformationRelationship(ModelComposed):
'RESOURCE.LICENSERESOURCECOUNT': "resource.LicenseResourceCount",
'RESOURCE.MEMBERSHIP': "resource.Membership",
'RESOURCE.MEMBERSHIPHOLDER': "resource.MembershipHolder",
+ 'RESOURCEPOOL.LEASE': "resourcepool.Lease",
+ 'RESOURCEPOOL.LEASERESOURCE': "resourcepool.LeaseResource",
+ 'RESOURCEPOOL.POOL': "resourcepool.Pool",
+ 'RESOURCEPOOL.POOLMEMBER': "resourcepool.PoolMember",
+ 'RESOURCEPOOL.UNIVERSE': "resourcepool.Universe",
'RPROXY.REVERSEPROXY': "rproxy.ReverseProxy",
'SDCARD.POLICY': "sdcard.Policy",
'SDWAN.PROFILE': "sdwan.Profile",
@@ -832,6 +841,7 @@ class AssetDeviceContractInformationRelationship(ModelComposed):
'TASK.NETAPPSCOPEDINVENTORY': "task.NetAppScopedInventory",
'TASK.PUBLICCLOUDSCOPEDINVENTORY': "task.PublicCloudScopedInventory",
'TASK.PURESCOPEDINVENTORY': "task.PureScopedInventory",
+ 'TASK.SERVERSCOPEDINVENTORY': "task.ServerScopedInventory",
'TECHSUPPORTMANAGEMENT.COLLECTIONCONTROLPOLICY': "techsupportmanagement.CollectionControlPolicy",
'TECHSUPPORTMANAGEMENT.DOWNLOAD': "techsupportmanagement.Download",
'TECHSUPPORTMANAGEMENT.TECHSUPPORTBUNDLE': "techsupportmanagement.TechSupportBundle",
@@ -863,6 +873,7 @@ class AssetDeviceContractInformationRelationship(ModelComposed):
'VIRTUALIZATION.VMWAREVCENTER': "virtualization.VmwareVcenter",
'VIRTUALIZATION.VMWAREVIRTUALDISK': "virtualization.VmwareVirtualDisk",
'VIRTUALIZATION.VMWAREVIRTUALMACHINE': "virtualization.VmwareVirtualMachine",
+ 'VIRTUALIZATION.VMWAREVIRTUALMACHINESNAPSHOT': "virtualization.VmwareVirtualMachineSnapshot",
'VIRTUALIZATION.VMWAREVIRTUALNETWORKINTERFACE': "virtualization.VmwareVirtualNetworkInterface",
'VIRTUALIZATION.VMWAREVIRTUALSWITCH': "virtualization.VmwareVirtualSwitch",
'VMEDIA.POLICY': "vmedia.Policy",
@@ -895,12 +906,14 @@ class AssetDeviceContractInformationRelationship(ModelComposed):
'WORKFLOW.TASKDEFINITION': "workflow.TaskDefinition",
'WORKFLOW.TASKINFO': "workflow.TaskInfo",
'WORKFLOW.TASKMETADATA': "workflow.TaskMetadata",
+ 'WORKFLOW.TASKNOTIFICATION': "workflow.TaskNotification",
'WORKFLOW.TEMPLATEEVALUATION': "workflow.TemplateEvaluation",
'WORKFLOW.TEMPLATEFUNCTIONMETA': "workflow.TemplateFunctionMeta",
'WORKFLOW.WORKFLOWDEFINITION': "workflow.WorkflowDefinition",
'WORKFLOW.WORKFLOWINFO': "workflow.WorkflowInfo",
'WORKFLOW.WORKFLOWMETA': "workflow.WorkflowMeta",
'WORKFLOW.WORKFLOWMETADATA': "workflow.WorkflowMetadata",
+ 'WORKFLOW.WORKFLOWNOTIFICATION': "workflow.WorkflowNotification",
},
}
diff --git a/intersight/model/asset_device_contract_information_response.py b/intersight/model/asset_device_contract_information_response.py
index abfb6c9460..4dca64d73e 100644
--- a/intersight/model/asset_device_contract_information_response.py
+++ b/intersight/model/asset_device_contract_information_response.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/asset_device_information.py b/intersight/model/asset_device_information.py
index 2c87e4e9b0..603560264e 100644
--- a/intersight/model/asset_device_information.py
+++ b/intersight/model/asset_device_information.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/asset_device_information_all_of.py b/intersight/model/asset_device_information_all_of.py
index c9bb11ec64..6d277ca55a 100644
--- a/intersight/model/asset_device_information_all_of.py
+++ b/intersight/model/asset_device_information_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/asset_device_registration.py b/intersight/model/asset_device_registration.py
index aa0581b77a..256989a911 100644
--- a/intersight/model/asset_device_registration.py
+++ b/intersight/model/asset_device_registration.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/asset_device_registration_all_of.py b/intersight/model/asset_device_registration_all_of.py
index 3be33a149c..3ff9a3ebb5 100644
--- a/intersight/model/asset_device_registration_all_of.py
+++ b/intersight/model/asset_device_registration_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/asset_device_registration_list.py b/intersight/model/asset_device_registration_list.py
index fda4bd2410..d132aebbb3 100644
--- a/intersight/model/asset_device_registration_list.py
+++ b/intersight/model/asset_device_registration_list.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/asset_device_registration_list_all_of.py b/intersight/model/asset_device_registration_list_all_of.py
index e67966aa6a..2a39c0b267 100644
--- a/intersight/model/asset_device_registration_list_all_of.py
+++ b/intersight/model/asset_device_registration_list_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/asset_device_registration_relationship.py b/intersight/model/asset_device_registration_relationship.py
index b30e1a148d..5005cb08a7 100644
--- a/intersight/model/asset_device_registration_relationship.py
+++ b/intersight/model/asset_device_registration_relationship.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
@@ -152,6 +152,8 @@ class AssetDeviceRegistrationRelationship(ModelComposed):
},
('object_type',): {
'AAA.AUDITRECORD': "aaa.AuditRecord",
+ 'AAA.RETENTIONCONFIG': "aaa.RetentionConfig",
+ 'AAA.RETENTIONPOLICY': "aaa.RetentionPolicy",
'ACCESS.POLICY': "access.Policy",
'ADAPTER.CONFIGPOLICY': "adapter.ConfigPolicy",
'ADAPTER.EXTETHINTERFACE': "adapter.ExtEthInterface",
@@ -168,6 +170,7 @@ class AssetDeviceRegistrationRelationship(ModelComposed):
'APPLIANCE.DATAEXPORTPOLICY': "appliance.DataExportPolicy",
'APPLIANCE.DEVICECERTIFICATE': "appliance.DeviceCertificate",
'APPLIANCE.DEVICECLAIM': "appliance.DeviceClaim",
+ 'APPLIANCE.DEVICEUPGRADEPOLICY': "appliance.DeviceUpgradePolicy",
'APPLIANCE.DIAGSETTING': "appliance.DiagSetting",
'APPLIANCE.EXTERNALSYSLOGSETTING': "appliance.ExternalSyslogSetting",
'APPLIANCE.FILESYSTEMSTATUS': "appliance.FileSystemStatus",
@@ -216,9 +219,12 @@ class AssetDeviceRegistrationRelationship(ModelComposed):
'BOOT.UEFISHELLDEVICE': "boot.UefiShellDevice",
'BOOT.USBDEVICE': "boot.UsbDevice",
'BOOT.VMEDIADEVICE': "boot.VmediaDevice",
+ 'BULK.EXPORT': "bulk.Export",
+ 'BULK.EXPORTEDITEM': "bulk.ExportedItem",
'BULK.MOCLONER': "bulk.MoCloner",
'BULK.MOMERGER': "bulk.MoMerger",
'BULK.REQUEST': "bulk.Request",
+ 'BULK.SUBREQUESTOBJ': "bulk.SubRequestObj",
'CAPABILITY.ADAPTERUNITDESCRIPTOR': "capability.AdapterUnitDescriptor",
'CAPABILITY.CATALOG': "capability.Catalog",
'CAPABILITY.CHASSISDESCRIPTOR': "capability.ChassisDescriptor",
@@ -282,10 +288,6 @@ class AssetDeviceRegistrationRelationship(ModelComposed):
'COND.HCLSTATUS': "cond.HclStatus",
'COND.HCLSTATUSDETAIL': "cond.HclStatusDetail",
'COND.HCLSTATUSJOB': "cond.HclStatusJob",
- 'CONFIG.EXPORTEDITEM': "config.ExportedItem",
- 'CONFIG.EXPORTER': "config.Exporter",
- 'CONFIG.IMPORTEDITEM': "config.ImportedItem",
- 'CONFIG.IMPORTER': "config.Importer",
'CONNECTORPACK.CONNECTORPACKUPGRADE': "connectorpack.ConnectorPackUpgrade",
'CONNECTORPACK.UPGRADEIMPACT': "connectorpack.UpgradeImpact",
'CRD.CUSTOMRESOURCE': "crd.CustomResource",
@@ -294,6 +296,7 @@ class AssetDeviceRegistrationRelationship(ModelComposed):
'EQUIPMENT.CHASSISIDENTITY': "equipment.ChassisIdentity",
'EQUIPMENT.CHASSISOPERATION': "equipment.ChassisOperation",
'EQUIPMENT.DEVICESUMMARY': "equipment.DeviceSummary",
+ 'EQUIPMENT.EXPANDERMODULE': "equipment.ExpanderModule",
'EQUIPMENT.FAN': "equipment.Fan",
'EQUIPMENT.FANCONTROL': "equipment.FanControl",
'EQUIPMENT.FANMODULE': "equipment.FanModule",
@@ -542,6 +545,7 @@ class AssetDeviceRegistrationRelationship(ModelComposed):
'KUBERNETES.ADDONDEFINITION': "kubernetes.AddonDefinition",
'KUBERNETES.ADDONPOLICY': "kubernetes.AddonPolicy",
'KUBERNETES.ADDONREPOSITORY': "kubernetes.AddonRepository",
+ 'KUBERNETES.BAREMETALNODEPROFILE': "kubernetes.BaremetalNodeProfile",
'KUBERNETES.CATALOG': "kubernetes.Catalog",
'KUBERNETES.CLUSTER': "kubernetes.Cluster",
'KUBERNETES.CLUSTERADDONPROFILE': "kubernetes.ClusterAddonProfile",
@@ -711,6 +715,11 @@ class AssetDeviceRegistrationRelationship(ModelComposed):
'RESOURCE.LICENSERESOURCECOUNT': "resource.LicenseResourceCount",
'RESOURCE.MEMBERSHIP': "resource.Membership",
'RESOURCE.MEMBERSHIPHOLDER': "resource.MembershipHolder",
+ 'RESOURCEPOOL.LEASE': "resourcepool.Lease",
+ 'RESOURCEPOOL.LEASERESOURCE': "resourcepool.LeaseResource",
+ 'RESOURCEPOOL.POOL': "resourcepool.Pool",
+ 'RESOURCEPOOL.POOLMEMBER': "resourcepool.PoolMember",
+ 'RESOURCEPOOL.UNIVERSE': "resourcepool.Universe",
'RPROXY.REVERSEPROXY': "rproxy.ReverseProxy",
'SDCARD.POLICY': "sdcard.Policy",
'SDWAN.PROFILE': "sdwan.Profile",
@@ -826,6 +835,7 @@ class AssetDeviceRegistrationRelationship(ModelComposed):
'TASK.NETAPPSCOPEDINVENTORY': "task.NetAppScopedInventory",
'TASK.PUBLICCLOUDSCOPEDINVENTORY': "task.PublicCloudScopedInventory",
'TASK.PURESCOPEDINVENTORY': "task.PureScopedInventory",
+ 'TASK.SERVERSCOPEDINVENTORY': "task.ServerScopedInventory",
'TECHSUPPORTMANAGEMENT.COLLECTIONCONTROLPOLICY': "techsupportmanagement.CollectionControlPolicy",
'TECHSUPPORTMANAGEMENT.DOWNLOAD': "techsupportmanagement.Download",
'TECHSUPPORTMANAGEMENT.TECHSUPPORTBUNDLE': "techsupportmanagement.TechSupportBundle",
@@ -857,6 +867,7 @@ class AssetDeviceRegistrationRelationship(ModelComposed):
'VIRTUALIZATION.VMWAREVCENTER': "virtualization.VmwareVcenter",
'VIRTUALIZATION.VMWAREVIRTUALDISK': "virtualization.VmwareVirtualDisk",
'VIRTUALIZATION.VMWAREVIRTUALMACHINE': "virtualization.VmwareVirtualMachine",
+ 'VIRTUALIZATION.VMWAREVIRTUALMACHINESNAPSHOT': "virtualization.VmwareVirtualMachineSnapshot",
'VIRTUALIZATION.VMWAREVIRTUALNETWORKINTERFACE': "virtualization.VmwareVirtualNetworkInterface",
'VIRTUALIZATION.VMWAREVIRTUALSWITCH': "virtualization.VmwareVirtualSwitch",
'VMEDIA.POLICY': "vmedia.Policy",
@@ -889,12 +900,14 @@ class AssetDeviceRegistrationRelationship(ModelComposed):
'WORKFLOW.TASKDEFINITION': "workflow.TaskDefinition",
'WORKFLOW.TASKINFO': "workflow.TaskInfo",
'WORKFLOW.TASKMETADATA': "workflow.TaskMetadata",
+ 'WORKFLOW.TASKNOTIFICATION': "workflow.TaskNotification",
'WORKFLOW.TEMPLATEEVALUATION': "workflow.TemplateEvaluation",
'WORKFLOW.TEMPLATEFUNCTIONMETA': "workflow.TemplateFunctionMeta",
'WORKFLOW.WORKFLOWDEFINITION': "workflow.WorkflowDefinition",
'WORKFLOW.WORKFLOWINFO': "workflow.WorkflowInfo",
'WORKFLOW.WORKFLOWMETA': "workflow.WorkflowMeta",
'WORKFLOW.WORKFLOWMETADATA': "workflow.WorkflowMetadata",
+ 'WORKFLOW.WORKFLOWNOTIFICATION': "workflow.WorkflowNotification",
},
}
diff --git a/intersight/model/asset_device_registration_response.py b/intersight/model/asset_device_registration_response.py
index 7f9f8954b8..251226eeff 100644
--- a/intersight/model/asset_device_registration_response.py
+++ b/intersight/model/asset_device_registration_response.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/asset_device_statistics.py b/intersight/model/asset_device_statistics.py
index 1f21f6eadf..236158aa38 100644
--- a/intersight/model/asset_device_statistics.py
+++ b/intersight/model/asset_device_statistics.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/asset_device_statistics_all_of.py b/intersight/model/asset_device_statistics_all_of.py
index 527e25b7d1..bcc8bb8eef 100644
--- a/intersight/model/asset_device_statistics_all_of.py
+++ b/intersight/model/asset_device_statistics_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/asset_device_transaction.py b/intersight/model/asset_device_transaction.py
index a88ee150d2..d4a4347b6b 100644
--- a/intersight/model/asset_device_transaction.py
+++ b/intersight/model/asset_device_transaction.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/asset_device_transaction_all_of.py b/intersight/model/asset_device_transaction_all_of.py
index f13245a9dd..10e0fc29eb 100644
--- a/intersight/model/asset_device_transaction_all_of.py
+++ b/intersight/model/asset_device_transaction_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/asset_global_ultimate.py b/intersight/model/asset_global_ultimate.py
index ddaf0d9d7b..1d966e4951 100644
--- a/intersight/model/asset_global_ultimate.py
+++ b/intersight/model/asset_global_ultimate.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/asset_global_ultimate_all_of.py b/intersight/model/asset_global_ultimate_all_of.py
index ffc8c7766e..d197f84603 100644
--- a/intersight/model/asset_global_ultimate_all_of.py
+++ b/intersight/model/asset_global_ultimate_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/asset_http_connection.py b/intersight/model/asset_http_connection.py
index 766c924d71..ee078d5d55 100644
--- a/intersight/model/asset_http_connection.py
+++ b/intersight/model/asset_http_connection.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/asset_http_connection_all_of.py b/intersight/model/asset_http_connection_all_of.py
index 6e76d96012..efb5f9933e 100644
--- a/intersight/model/asset_http_connection_all_of.py
+++ b/intersight/model/asset_http_connection_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/asset_intersight_device_connector_connection.py b/intersight/model/asset_intersight_device_connector_connection.py
index 0e846a666c..da885fdfb1 100644
--- a/intersight/model/asset_intersight_device_connector_connection.py
+++ b/intersight/model/asset_intersight_device_connector_connection.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/asset_metering_type.py b/intersight/model/asset_metering_type.py
index 4ef8b53bff..7c9f6fe180 100644
--- a/intersight/model/asset_metering_type.py
+++ b/intersight/model/asset_metering_type.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/asset_metering_type_all_of.py b/intersight/model/asset_metering_type_all_of.py
index 8729b1d043..8fb8b6cde5 100644
--- a/intersight/model/asset_metering_type_all_of.py
+++ b/intersight/model/asset_metering_type_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/asset_no_authentication_credential.py b/intersight/model/asset_no_authentication_credential.py
index f914bab3d7..9ff40e786f 100644
--- a/intersight/model/asset_no_authentication_credential.py
+++ b/intersight/model/asset_no_authentication_credential.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
@@ -122,6 +122,7 @@ class AssetNoAuthenticationCredential(ModelComposed):
'BOOT.UEFISHELL': "boot.UefiShell",
'BOOT.USB': "boot.Usb",
'BOOT.VIRTUALMEDIA': "boot.VirtualMedia",
+ 'BULK.HTTPHEADER': "bulk.HttpHeader",
'BULK.RESTRESULT': "bulk.RestResult",
'BULK.RESTSUBREQUEST': "bulk.RestSubRequest",
'CAPABILITY.PORTRANGE': "capability.PortRange",
@@ -162,7 +163,6 @@ class AssetNoAuthenticationCredential(ModelComposed):
'COMPUTE.STORAGEVIRTUALDRIVE': "compute.StorageVirtualDrive",
'COMPUTE.STORAGEVIRTUALDRIVEOPERATION': "compute.StorageVirtualDriveOperation",
'COND.ALARMSUMMARY': "cond.AlarmSummary",
- 'CONFIG.MOREF': "config.MoRef",
'CONNECTOR.CLOSESTREAMMESSAGE': "connector.CloseStreamMessage",
'CONNECTOR.COMMANDCONTROLMESSAGE': "connector.CommandControlMessage",
'CONNECTOR.COMMANDTERMINALSTREAM': "connector.CommandTerminalStream",
@@ -298,6 +298,7 @@ class AssetNoAuthenticationCredential(ModelComposed):
'KUBERNETES.ACTIONINFO': "kubernetes.ActionInfo",
'KUBERNETES.ADDON': "kubernetes.Addon",
'KUBERNETES.ADDONCONFIGURATION': "kubernetes.AddonConfiguration",
+ 'KUBERNETES.BAREMETALNETWORKINFO': "kubernetes.BaremetalNetworkInfo",
'KUBERNETES.CALICOCONFIG': "kubernetes.CalicoConfig",
'KUBERNETES.CLUSTERCERTIFICATECONFIGURATION': "kubernetes.ClusterCertificateConfiguration",
'KUBERNETES.CLUSTERMANAGEMENTCONFIG': "kubernetes.ClusterManagementConfig",
@@ -306,6 +307,8 @@ class AssetNoAuthenticationCredential(ModelComposed):
'KUBERNETES.DEPLOYMENTSTATUS': "kubernetes.DeploymentStatus",
'KUBERNETES.ESSENTIALADDON': "kubernetes.EssentialAddon",
'KUBERNETES.ESXIVIRTUALMACHINEINFRACONFIG': "kubernetes.EsxiVirtualMachineInfraConfig",
+ 'KUBERNETES.ETHERNET': "kubernetes.Ethernet",
+ 'KUBERNETES.ETHERNETMATCHER': "kubernetes.EthernetMatcher",
'KUBERNETES.HYPERFLEXAPVIRTUALMACHINEINFRACONFIG': "kubernetes.HyperFlexApVirtualMachineInfraConfig",
'KUBERNETES.INGRESSSTATUS': "kubernetes.IngressStatus",
'KUBERNETES.KEYVALUE': "kubernetes.KeyValue",
@@ -317,6 +320,7 @@ class AssetNoAuthenticationCredential(ModelComposed):
'KUBERNETES.NODESPEC': "kubernetes.NodeSpec",
'KUBERNETES.NODESTATUS': "kubernetes.NodeStatus",
'KUBERNETES.OBJECTMETA': "kubernetes.ObjectMeta",
+ 'KUBERNETES.OVSBOND': "kubernetes.OvsBond",
'KUBERNETES.PODSTATUS': "kubernetes.PodStatus",
'KUBERNETES.PROXYCONFIG': "kubernetes.ProxyConfig",
'KUBERNETES.SERVICESTATUS': "kubernetes.ServiceStatus",
@@ -328,6 +332,7 @@ class AssetNoAuthenticationCredential(ModelComposed):
'MEMORY.PERSISTENTMEMORYLOGICALNAMESPACE': "memory.PersistentMemoryLogicalNamespace",
'META.ACCESSPRIVILEGE': "meta.AccessPrivilege",
'META.DISPLAYNAMEDEFINITION': "meta.DisplayNameDefinition",
+ 'META.IDENTITYDEFINITION': "meta.IdentityDefinition",
'META.PROPDEFINITION': "meta.PropDefinition",
'META.RELATIONSHIPDEFINITION': "meta.RelationshipDefinition",
'MO.MOREF': "mo.MoRef",
@@ -385,6 +390,8 @@ class AssetNoAuthenticationCredential(ModelComposed):
'RESOURCE.SELECTOR': "resource.Selector",
'RESOURCE.SOURCETOPERMISSIONRESOURCES': "resource.SourceToPermissionResources",
'RESOURCE.SOURCETOPERMISSIONRESOURCESHOLDER': "resource.SourceToPermissionResourcesHolder",
+ 'RESOURCEPOOL.SERVERLEASEPARAMETERS': "resourcepool.ServerLeaseParameters",
+ 'RESOURCEPOOL.SERVERPOOLPARAMETERS': "resourcepool.ServerPoolParameters",
'SDCARD.DIAGNOSTICS': "sdcard.Diagnostics",
'SDCARD.DRIVERS': "sdcard.Drivers",
'SDCARD.HOSTUPGRADEUTILITY': "sdcard.HostUpgradeUtility",
@@ -394,6 +401,7 @@ class AssetNoAuthenticationCredential(ModelComposed):
'SDCARD.USERPARTITION': "sdcard.UserPartition",
'SDWAN.NETWORKCONFIGURATIONTYPE': "sdwan.NetworkConfigurationType",
'SDWAN.TEMPLATEINPUTSTYPE': "sdwan.TemplateInputsType",
+ 'SERVER.PENDINGWORKFLOWTRIGGER': "server.PendingWorkflowTrigger",
'SNMP.TRAP': "snmp.Trap",
'SNMP.USER': "snmp.User",
'SOFTWAREREPOSITORY.APPLIANCEUPLOAD': "softwarerepository.ApplianceUpload",
@@ -629,6 +637,7 @@ class AssetNoAuthenticationCredential(ModelComposed):
'BOOT.UEFISHELL': "boot.UefiShell",
'BOOT.USB': "boot.Usb",
'BOOT.VIRTUALMEDIA': "boot.VirtualMedia",
+ 'BULK.HTTPHEADER': "bulk.HttpHeader",
'BULK.RESTRESULT': "bulk.RestResult",
'BULK.RESTSUBREQUEST': "bulk.RestSubRequest",
'CAPABILITY.PORTRANGE': "capability.PortRange",
@@ -669,7 +678,6 @@ class AssetNoAuthenticationCredential(ModelComposed):
'COMPUTE.STORAGEVIRTUALDRIVE': "compute.StorageVirtualDrive",
'COMPUTE.STORAGEVIRTUALDRIVEOPERATION': "compute.StorageVirtualDriveOperation",
'COND.ALARMSUMMARY': "cond.AlarmSummary",
- 'CONFIG.MOREF': "config.MoRef",
'CONNECTOR.CLOSESTREAMMESSAGE': "connector.CloseStreamMessage",
'CONNECTOR.COMMANDCONTROLMESSAGE': "connector.CommandControlMessage",
'CONNECTOR.COMMANDTERMINALSTREAM': "connector.CommandTerminalStream",
@@ -805,6 +813,7 @@ class AssetNoAuthenticationCredential(ModelComposed):
'KUBERNETES.ACTIONINFO': "kubernetes.ActionInfo",
'KUBERNETES.ADDON': "kubernetes.Addon",
'KUBERNETES.ADDONCONFIGURATION': "kubernetes.AddonConfiguration",
+ 'KUBERNETES.BAREMETALNETWORKINFO': "kubernetes.BaremetalNetworkInfo",
'KUBERNETES.CALICOCONFIG': "kubernetes.CalicoConfig",
'KUBERNETES.CLUSTERCERTIFICATECONFIGURATION': "kubernetes.ClusterCertificateConfiguration",
'KUBERNETES.CLUSTERMANAGEMENTCONFIG': "kubernetes.ClusterManagementConfig",
@@ -813,6 +822,8 @@ class AssetNoAuthenticationCredential(ModelComposed):
'KUBERNETES.DEPLOYMENTSTATUS': "kubernetes.DeploymentStatus",
'KUBERNETES.ESSENTIALADDON': "kubernetes.EssentialAddon",
'KUBERNETES.ESXIVIRTUALMACHINEINFRACONFIG': "kubernetes.EsxiVirtualMachineInfraConfig",
+ 'KUBERNETES.ETHERNET': "kubernetes.Ethernet",
+ 'KUBERNETES.ETHERNETMATCHER': "kubernetes.EthernetMatcher",
'KUBERNETES.HYPERFLEXAPVIRTUALMACHINEINFRACONFIG': "kubernetes.HyperFlexApVirtualMachineInfraConfig",
'KUBERNETES.INGRESSSTATUS': "kubernetes.IngressStatus",
'KUBERNETES.KEYVALUE': "kubernetes.KeyValue",
@@ -824,6 +835,7 @@ class AssetNoAuthenticationCredential(ModelComposed):
'KUBERNETES.NODESPEC': "kubernetes.NodeSpec",
'KUBERNETES.NODESTATUS': "kubernetes.NodeStatus",
'KUBERNETES.OBJECTMETA': "kubernetes.ObjectMeta",
+ 'KUBERNETES.OVSBOND': "kubernetes.OvsBond",
'KUBERNETES.PODSTATUS': "kubernetes.PodStatus",
'KUBERNETES.PROXYCONFIG': "kubernetes.ProxyConfig",
'KUBERNETES.SERVICESTATUS': "kubernetes.ServiceStatus",
@@ -835,6 +847,7 @@ class AssetNoAuthenticationCredential(ModelComposed):
'MEMORY.PERSISTENTMEMORYLOGICALNAMESPACE': "memory.PersistentMemoryLogicalNamespace",
'META.ACCESSPRIVILEGE': "meta.AccessPrivilege",
'META.DISPLAYNAMEDEFINITION': "meta.DisplayNameDefinition",
+ 'META.IDENTITYDEFINITION': "meta.IdentityDefinition",
'META.PROPDEFINITION': "meta.PropDefinition",
'META.RELATIONSHIPDEFINITION': "meta.RelationshipDefinition",
'MO.MOREF': "mo.MoRef",
@@ -892,6 +905,8 @@ class AssetNoAuthenticationCredential(ModelComposed):
'RESOURCE.SELECTOR': "resource.Selector",
'RESOURCE.SOURCETOPERMISSIONRESOURCES': "resource.SourceToPermissionResources",
'RESOURCE.SOURCETOPERMISSIONRESOURCESHOLDER': "resource.SourceToPermissionResourcesHolder",
+ 'RESOURCEPOOL.SERVERLEASEPARAMETERS': "resourcepool.ServerLeaseParameters",
+ 'RESOURCEPOOL.SERVERPOOLPARAMETERS': "resourcepool.ServerPoolParameters",
'SDCARD.DIAGNOSTICS': "sdcard.Diagnostics",
'SDCARD.DRIVERS': "sdcard.Drivers",
'SDCARD.HOSTUPGRADEUTILITY': "sdcard.HostUpgradeUtility",
@@ -901,6 +916,7 @@ class AssetNoAuthenticationCredential(ModelComposed):
'SDCARD.USERPARTITION': "sdcard.UserPartition",
'SDWAN.NETWORKCONFIGURATIONTYPE': "sdwan.NetworkConfigurationType",
'SDWAN.TEMPLATEINPUTSTYPE': "sdwan.TemplateInputsType",
+ 'SERVER.PENDINGWORKFLOWTRIGGER': "server.PendingWorkflowTrigger",
'SNMP.TRAP': "snmp.Trap",
'SNMP.USER': "snmp.User",
'SOFTWAREREPOSITORY.APPLIANCEUPLOAD': "softwarerepository.ApplianceUpload",
diff --git a/intersight/model/asset_oauth_bearer_token_credential.py b/intersight/model/asset_oauth_bearer_token_credential.py
index 9e8bc3b6b8..bd55750979 100644
--- a/intersight/model/asset_oauth_bearer_token_credential.py
+++ b/intersight/model/asset_oauth_bearer_token_credential.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/asset_oauth_bearer_token_credential_all_of.py b/intersight/model/asset_oauth_bearer_token_credential_all_of.py
index d6d93de386..58480792b1 100644
--- a/intersight/model/asset_oauth_bearer_token_credential_all_of.py
+++ b/intersight/model/asset_oauth_bearer_token_credential_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/asset_oauth_client_id_secret_credential.py b/intersight/model/asset_oauth_client_id_secret_credential.py
index 24db3810a3..9397028aeb 100644
--- a/intersight/model/asset_oauth_client_id_secret_credential.py
+++ b/intersight/model/asset_oauth_client_id_secret_credential.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/asset_oauth_client_id_secret_credential_all_of.py b/intersight/model/asset_oauth_client_id_secret_credential_all_of.py
index a99304b90e..46f35613b9 100644
--- a/intersight/model/asset_oauth_client_id_secret_credential_all_of.py
+++ b/intersight/model/asset_oauth_client_id_secret_credential_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/asset_orchestration_hitachi_virtual_storage_platform_options.py b/intersight/model/asset_orchestration_hitachi_virtual_storage_platform_options.py
index e6cab61527..04e467b733 100644
--- a/intersight/model/asset_orchestration_hitachi_virtual_storage_platform_options.py
+++ b/intersight/model/asset_orchestration_hitachi_virtual_storage_platform_options.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/asset_orchestration_hitachi_virtual_storage_platform_options_all_of.py b/intersight/model/asset_orchestration_hitachi_virtual_storage_platform_options_all_of.py
index 9b8c4d57aa..83e8de0561 100644
--- a/intersight/model/asset_orchestration_hitachi_virtual_storage_platform_options_all_of.py
+++ b/intersight/model/asset_orchestration_hitachi_virtual_storage_platform_options_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/asset_orchestration_service.py b/intersight/model/asset_orchestration_service.py
index 84ec64be25..7c74cbe00d 100644
--- a/intersight/model/asset_orchestration_service.py
+++ b/intersight/model/asset_orchestration_service.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/asset_parent_connection_signature.py b/intersight/model/asset_parent_connection_signature.py
index d7e368bb9b..b13d23c103 100644
--- a/intersight/model/asset_parent_connection_signature.py
+++ b/intersight/model/asset_parent_connection_signature.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/asset_parent_connection_signature_all_of.py b/intersight/model/asset_parent_connection_signature_all_of.py
index 00cacd4fb7..514f735511 100644
--- a/intersight/model/asset_parent_connection_signature_all_of.py
+++ b/intersight/model/asset_parent_connection_signature_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/asset_product_information.py b/intersight/model/asset_product_information.py
index 21fb5bf66e..d87e16900f 100644
--- a/intersight/model/asset_product_information.py
+++ b/intersight/model/asset_product_information.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/asset_product_information_all_of.py b/intersight/model/asset_product_information_all_of.py
index 5665b1b661..e297ae2010 100644
--- a/intersight/model/asset_product_information_all_of.py
+++ b/intersight/model/asset_product_information_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/asset_service.py b/intersight/model/asset_service.py
index 8f569a1dd2..032c0e095b 100644
--- a/intersight/model/asset_service.py
+++ b/intersight/model/asset_service.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/asset_service_all_of.py b/intersight/model/asset_service_all_of.py
index 39369d3495..83f378f7c9 100644
--- a/intersight/model/asset_service_all_of.py
+++ b/intersight/model/asset_service_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/asset_service_options.py b/intersight/model/asset_service_options.py
index 6bba2dcc11..36e1dbd039 100644
--- a/intersight/model/asset_service_options.py
+++ b/intersight/model/asset_service_options.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
@@ -148,6 +148,7 @@ class AssetServiceOptions(ModelComposed):
'BOOT.UEFISHELL': "boot.UefiShell",
'BOOT.USB': "boot.Usb",
'BOOT.VIRTUALMEDIA': "boot.VirtualMedia",
+ 'BULK.HTTPHEADER': "bulk.HttpHeader",
'BULK.RESTRESULT': "bulk.RestResult",
'BULK.RESTSUBREQUEST': "bulk.RestSubRequest",
'CAPABILITY.PORTRANGE': "capability.PortRange",
@@ -188,7 +189,6 @@ class AssetServiceOptions(ModelComposed):
'COMPUTE.STORAGEVIRTUALDRIVE': "compute.StorageVirtualDrive",
'COMPUTE.STORAGEVIRTUALDRIVEOPERATION': "compute.StorageVirtualDriveOperation",
'COND.ALARMSUMMARY': "cond.AlarmSummary",
- 'CONFIG.MOREF': "config.MoRef",
'CONNECTOR.CLOSESTREAMMESSAGE': "connector.CloseStreamMessage",
'CONNECTOR.COMMANDCONTROLMESSAGE': "connector.CommandControlMessage",
'CONNECTOR.COMMANDTERMINALSTREAM': "connector.CommandTerminalStream",
@@ -324,6 +324,7 @@ class AssetServiceOptions(ModelComposed):
'KUBERNETES.ACTIONINFO': "kubernetes.ActionInfo",
'KUBERNETES.ADDON': "kubernetes.Addon",
'KUBERNETES.ADDONCONFIGURATION': "kubernetes.AddonConfiguration",
+ 'KUBERNETES.BAREMETALNETWORKINFO': "kubernetes.BaremetalNetworkInfo",
'KUBERNETES.CALICOCONFIG': "kubernetes.CalicoConfig",
'KUBERNETES.CLUSTERCERTIFICATECONFIGURATION': "kubernetes.ClusterCertificateConfiguration",
'KUBERNETES.CLUSTERMANAGEMENTCONFIG': "kubernetes.ClusterManagementConfig",
@@ -332,6 +333,8 @@ class AssetServiceOptions(ModelComposed):
'KUBERNETES.DEPLOYMENTSTATUS': "kubernetes.DeploymentStatus",
'KUBERNETES.ESSENTIALADDON': "kubernetes.EssentialAddon",
'KUBERNETES.ESXIVIRTUALMACHINEINFRACONFIG': "kubernetes.EsxiVirtualMachineInfraConfig",
+ 'KUBERNETES.ETHERNET': "kubernetes.Ethernet",
+ 'KUBERNETES.ETHERNETMATCHER': "kubernetes.EthernetMatcher",
'KUBERNETES.HYPERFLEXAPVIRTUALMACHINEINFRACONFIG': "kubernetes.HyperFlexApVirtualMachineInfraConfig",
'KUBERNETES.INGRESSSTATUS': "kubernetes.IngressStatus",
'KUBERNETES.KEYVALUE': "kubernetes.KeyValue",
@@ -343,6 +346,7 @@ class AssetServiceOptions(ModelComposed):
'KUBERNETES.NODESPEC': "kubernetes.NodeSpec",
'KUBERNETES.NODESTATUS': "kubernetes.NodeStatus",
'KUBERNETES.OBJECTMETA': "kubernetes.ObjectMeta",
+ 'KUBERNETES.OVSBOND': "kubernetes.OvsBond",
'KUBERNETES.PODSTATUS': "kubernetes.PodStatus",
'KUBERNETES.PROXYCONFIG': "kubernetes.ProxyConfig",
'KUBERNETES.SERVICESTATUS': "kubernetes.ServiceStatus",
@@ -354,6 +358,7 @@ class AssetServiceOptions(ModelComposed):
'MEMORY.PERSISTENTMEMORYLOGICALNAMESPACE': "memory.PersistentMemoryLogicalNamespace",
'META.ACCESSPRIVILEGE': "meta.AccessPrivilege",
'META.DISPLAYNAMEDEFINITION': "meta.DisplayNameDefinition",
+ 'META.IDENTITYDEFINITION': "meta.IdentityDefinition",
'META.PROPDEFINITION': "meta.PropDefinition",
'META.RELATIONSHIPDEFINITION': "meta.RelationshipDefinition",
'MO.MOREF': "mo.MoRef",
@@ -411,6 +416,8 @@ class AssetServiceOptions(ModelComposed):
'RESOURCE.SELECTOR': "resource.Selector",
'RESOURCE.SOURCETOPERMISSIONRESOURCES': "resource.SourceToPermissionResources",
'RESOURCE.SOURCETOPERMISSIONRESOURCESHOLDER': "resource.SourceToPermissionResourcesHolder",
+ 'RESOURCEPOOL.SERVERLEASEPARAMETERS': "resourcepool.ServerLeaseParameters",
+ 'RESOURCEPOOL.SERVERPOOLPARAMETERS': "resourcepool.ServerPoolParameters",
'SDCARD.DIAGNOSTICS': "sdcard.Diagnostics",
'SDCARD.DRIVERS': "sdcard.Drivers",
'SDCARD.HOSTUPGRADEUTILITY': "sdcard.HostUpgradeUtility",
@@ -420,6 +427,7 @@ class AssetServiceOptions(ModelComposed):
'SDCARD.USERPARTITION': "sdcard.UserPartition",
'SDWAN.NETWORKCONFIGURATIONTYPE': "sdwan.NetworkConfigurationType",
'SDWAN.TEMPLATEINPUTSTYPE': "sdwan.TemplateInputsType",
+ 'SERVER.PENDINGWORKFLOWTRIGGER': "server.PendingWorkflowTrigger",
'SNMP.TRAP': "snmp.Trap",
'SNMP.USER': "snmp.User",
'SOFTWAREREPOSITORY.APPLIANCEUPLOAD': "softwarerepository.ApplianceUpload",
@@ -655,6 +663,7 @@ class AssetServiceOptions(ModelComposed):
'BOOT.UEFISHELL': "boot.UefiShell",
'BOOT.USB': "boot.Usb",
'BOOT.VIRTUALMEDIA': "boot.VirtualMedia",
+ 'BULK.HTTPHEADER': "bulk.HttpHeader",
'BULK.RESTRESULT': "bulk.RestResult",
'BULK.RESTSUBREQUEST': "bulk.RestSubRequest",
'CAPABILITY.PORTRANGE': "capability.PortRange",
@@ -695,7 +704,6 @@ class AssetServiceOptions(ModelComposed):
'COMPUTE.STORAGEVIRTUALDRIVE': "compute.StorageVirtualDrive",
'COMPUTE.STORAGEVIRTUALDRIVEOPERATION': "compute.StorageVirtualDriveOperation",
'COND.ALARMSUMMARY': "cond.AlarmSummary",
- 'CONFIG.MOREF': "config.MoRef",
'CONNECTOR.CLOSESTREAMMESSAGE': "connector.CloseStreamMessage",
'CONNECTOR.COMMANDCONTROLMESSAGE': "connector.CommandControlMessage",
'CONNECTOR.COMMANDTERMINALSTREAM': "connector.CommandTerminalStream",
@@ -831,6 +839,7 @@ class AssetServiceOptions(ModelComposed):
'KUBERNETES.ACTIONINFO': "kubernetes.ActionInfo",
'KUBERNETES.ADDON': "kubernetes.Addon",
'KUBERNETES.ADDONCONFIGURATION': "kubernetes.AddonConfiguration",
+ 'KUBERNETES.BAREMETALNETWORKINFO': "kubernetes.BaremetalNetworkInfo",
'KUBERNETES.CALICOCONFIG': "kubernetes.CalicoConfig",
'KUBERNETES.CLUSTERCERTIFICATECONFIGURATION': "kubernetes.ClusterCertificateConfiguration",
'KUBERNETES.CLUSTERMANAGEMENTCONFIG': "kubernetes.ClusterManagementConfig",
@@ -839,6 +848,8 @@ class AssetServiceOptions(ModelComposed):
'KUBERNETES.DEPLOYMENTSTATUS': "kubernetes.DeploymentStatus",
'KUBERNETES.ESSENTIALADDON': "kubernetes.EssentialAddon",
'KUBERNETES.ESXIVIRTUALMACHINEINFRACONFIG': "kubernetes.EsxiVirtualMachineInfraConfig",
+ 'KUBERNETES.ETHERNET': "kubernetes.Ethernet",
+ 'KUBERNETES.ETHERNETMATCHER': "kubernetes.EthernetMatcher",
'KUBERNETES.HYPERFLEXAPVIRTUALMACHINEINFRACONFIG': "kubernetes.HyperFlexApVirtualMachineInfraConfig",
'KUBERNETES.INGRESSSTATUS': "kubernetes.IngressStatus",
'KUBERNETES.KEYVALUE': "kubernetes.KeyValue",
@@ -850,6 +861,7 @@ class AssetServiceOptions(ModelComposed):
'KUBERNETES.NODESPEC': "kubernetes.NodeSpec",
'KUBERNETES.NODESTATUS': "kubernetes.NodeStatus",
'KUBERNETES.OBJECTMETA': "kubernetes.ObjectMeta",
+ 'KUBERNETES.OVSBOND': "kubernetes.OvsBond",
'KUBERNETES.PODSTATUS': "kubernetes.PodStatus",
'KUBERNETES.PROXYCONFIG': "kubernetes.ProxyConfig",
'KUBERNETES.SERVICESTATUS': "kubernetes.ServiceStatus",
@@ -861,6 +873,7 @@ class AssetServiceOptions(ModelComposed):
'MEMORY.PERSISTENTMEMORYLOGICALNAMESPACE': "memory.PersistentMemoryLogicalNamespace",
'META.ACCESSPRIVILEGE': "meta.AccessPrivilege",
'META.DISPLAYNAMEDEFINITION': "meta.DisplayNameDefinition",
+ 'META.IDENTITYDEFINITION': "meta.IdentityDefinition",
'META.PROPDEFINITION': "meta.PropDefinition",
'META.RELATIONSHIPDEFINITION': "meta.RelationshipDefinition",
'MO.MOREF': "mo.MoRef",
@@ -918,6 +931,8 @@ class AssetServiceOptions(ModelComposed):
'RESOURCE.SELECTOR': "resource.Selector",
'RESOURCE.SOURCETOPERMISSIONRESOURCES': "resource.SourceToPermissionResources",
'RESOURCE.SOURCETOPERMISSIONRESOURCESHOLDER': "resource.SourceToPermissionResourcesHolder",
+ 'RESOURCEPOOL.SERVERLEASEPARAMETERS': "resourcepool.ServerLeaseParameters",
+ 'RESOURCEPOOL.SERVERPOOLPARAMETERS': "resourcepool.ServerPoolParameters",
'SDCARD.DIAGNOSTICS': "sdcard.Diagnostics",
'SDCARD.DRIVERS': "sdcard.Drivers",
'SDCARD.HOSTUPGRADEUTILITY': "sdcard.HostUpgradeUtility",
@@ -927,6 +942,7 @@ class AssetServiceOptions(ModelComposed):
'SDCARD.USERPARTITION': "sdcard.UserPartition",
'SDWAN.NETWORKCONFIGURATIONTYPE': "sdwan.NetworkConfigurationType",
'SDWAN.TEMPLATEINPUTSTYPE': "sdwan.TemplateInputsType",
+ 'SERVER.PENDINGWORKFLOWTRIGGER': "server.PendingWorkflowTrigger",
'SNMP.TRAP': "snmp.Trap",
'SNMP.USER': "snmp.User",
'SOFTWAREREPOSITORY.APPLIANCEUPLOAD': "softwarerepository.ApplianceUpload",
diff --git a/intersight/model/asset_subscription.py b/intersight/model/asset_subscription.py
index a369296330..08933af2c2 100644
--- a/intersight/model/asset_subscription.py
+++ b/intersight/model/asset_subscription.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/asset_subscription_account.py b/intersight/model/asset_subscription_account.py
index cca369d662..ddf4aa7c42 100644
--- a/intersight/model/asset_subscription_account.py
+++ b/intersight/model/asset_subscription_account.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/asset_subscription_account_all_of.py b/intersight/model/asset_subscription_account_all_of.py
index fb222e6e1e..bec5cd2820 100644
--- a/intersight/model/asset_subscription_account_all_of.py
+++ b/intersight/model/asset_subscription_account_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/asset_subscription_account_list.py b/intersight/model/asset_subscription_account_list.py
index a6481692ad..52f770fce4 100644
--- a/intersight/model/asset_subscription_account_list.py
+++ b/intersight/model/asset_subscription_account_list.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/asset_subscription_account_list_all_of.py b/intersight/model/asset_subscription_account_list_all_of.py
index 064f0712bc..78c4d8ab31 100644
--- a/intersight/model/asset_subscription_account_list_all_of.py
+++ b/intersight/model/asset_subscription_account_list_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/asset_subscription_account_relationship.py b/intersight/model/asset_subscription_account_relationship.py
index a95ba24dc9..b97a143d18 100644
--- a/intersight/model/asset_subscription_account_relationship.py
+++ b/intersight/model/asset_subscription_account_relationship.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
@@ -74,6 +74,8 @@ class AssetSubscriptionAccountRelationship(ModelComposed):
},
('object_type',): {
'AAA.AUDITRECORD': "aaa.AuditRecord",
+ 'AAA.RETENTIONCONFIG': "aaa.RetentionConfig",
+ 'AAA.RETENTIONPOLICY': "aaa.RetentionPolicy",
'ACCESS.POLICY': "access.Policy",
'ADAPTER.CONFIGPOLICY': "adapter.ConfigPolicy",
'ADAPTER.EXTETHINTERFACE': "adapter.ExtEthInterface",
@@ -90,6 +92,7 @@ class AssetSubscriptionAccountRelationship(ModelComposed):
'APPLIANCE.DATAEXPORTPOLICY': "appliance.DataExportPolicy",
'APPLIANCE.DEVICECERTIFICATE': "appliance.DeviceCertificate",
'APPLIANCE.DEVICECLAIM': "appliance.DeviceClaim",
+ 'APPLIANCE.DEVICEUPGRADEPOLICY': "appliance.DeviceUpgradePolicy",
'APPLIANCE.DIAGSETTING': "appliance.DiagSetting",
'APPLIANCE.EXTERNALSYSLOGSETTING': "appliance.ExternalSyslogSetting",
'APPLIANCE.FILESYSTEMSTATUS': "appliance.FileSystemStatus",
@@ -138,9 +141,12 @@ class AssetSubscriptionAccountRelationship(ModelComposed):
'BOOT.UEFISHELLDEVICE': "boot.UefiShellDevice",
'BOOT.USBDEVICE': "boot.UsbDevice",
'BOOT.VMEDIADEVICE': "boot.VmediaDevice",
+ 'BULK.EXPORT': "bulk.Export",
+ 'BULK.EXPORTEDITEM': "bulk.ExportedItem",
'BULK.MOCLONER': "bulk.MoCloner",
'BULK.MOMERGER': "bulk.MoMerger",
'BULK.REQUEST': "bulk.Request",
+ 'BULK.SUBREQUESTOBJ': "bulk.SubRequestObj",
'CAPABILITY.ADAPTERUNITDESCRIPTOR': "capability.AdapterUnitDescriptor",
'CAPABILITY.CATALOG': "capability.Catalog",
'CAPABILITY.CHASSISDESCRIPTOR': "capability.ChassisDescriptor",
@@ -204,10 +210,6 @@ class AssetSubscriptionAccountRelationship(ModelComposed):
'COND.HCLSTATUS': "cond.HclStatus",
'COND.HCLSTATUSDETAIL': "cond.HclStatusDetail",
'COND.HCLSTATUSJOB': "cond.HclStatusJob",
- 'CONFIG.EXPORTEDITEM': "config.ExportedItem",
- 'CONFIG.EXPORTER': "config.Exporter",
- 'CONFIG.IMPORTEDITEM': "config.ImportedItem",
- 'CONFIG.IMPORTER': "config.Importer",
'CONNECTORPACK.CONNECTORPACKUPGRADE': "connectorpack.ConnectorPackUpgrade",
'CONNECTORPACK.UPGRADEIMPACT': "connectorpack.UpgradeImpact",
'CRD.CUSTOMRESOURCE': "crd.CustomResource",
@@ -216,6 +218,7 @@ class AssetSubscriptionAccountRelationship(ModelComposed):
'EQUIPMENT.CHASSISIDENTITY': "equipment.ChassisIdentity",
'EQUIPMENT.CHASSISOPERATION': "equipment.ChassisOperation",
'EQUIPMENT.DEVICESUMMARY': "equipment.DeviceSummary",
+ 'EQUIPMENT.EXPANDERMODULE': "equipment.ExpanderModule",
'EQUIPMENT.FAN': "equipment.Fan",
'EQUIPMENT.FANCONTROL': "equipment.FanControl",
'EQUIPMENT.FANMODULE': "equipment.FanModule",
@@ -464,6 +467,7 @@ class AssetSubscriptionAccountRelationship(ModelComposed):
'KUBERNETES.ADDONDEFINITION': "kubernetes.AddonDefinition",
'KUBERNETES.ADDONPOLICY': "kubernetes.AddonPolicy",
'KUBERNETES.ADDONREPOSITORY': "kubernetes.AddonRepository",
+ 'KUBERNETES.BAREMETALNODEPROFILE': "kubernetes.BaremetalNodeProfile",
'KUBERNETES.CATALOG': "kubernetes.Catalog",
'KUBERNETES.CLUSTER': "kubernetes.Cluster",
'KUBERNETES.CLUSTERADDONPROFILE': "kubernetes.ClusterAddonProfile",
@@ -633,6 +637,11 @@ class AssetSubscriptionAccountRelationship(ModelComposed):
'RESOURCE.LICENSERESOURCECOUNT': "resource.LicenseResourceCount",
'RESOURCE.MEMBERSHIP': "resource.Membership",
'RESOURCE.MEMBERSHIPHOLDER': "resource.MembershipHolder",
+ 'RESOURCEPOOL.LEASE': "resourcepool.Lease",
+ 'RESOURCEPOOL.LEASERESOURCE': "resourcepool.LeaseResource",
+ 'RESOURCEPOOL.POOL': "resourcepool.Pool",
+ 'RESOURCEPOOL.POOLMEMBER': "resourcepool.PoolMember",
+ 'RESOURCEPOOL.UNIVERSE': "resourcepool.Universe",
'RPROXY.REVERSEPROXY': "rproxy.ReverseProxy",
'SDCARD.POLICY': "sdcard.Policy",
'SDWAN.PROFILE': "sdwan.Profile",
@@ -748,6 +757,7 @@ class AssetSubscriptionAccountRelationship(ModelComposed):
'TASK.NETAPPSCOPEDINVENTORY': "task.NetAppScopedInventory",
'TASK.PUBLICCLOUDSCOPEDINVENTORY': "task.PublicCloudScopedInventory",
'TASK.PURESCOPEDINVENTORY': "task.PureScopedInventory",
+ 'TASK.SERVERSCOPEDINVENTORY': "task.ServerScopedInventory",
'TECHSUPPORTMANAGEMENT.COLLECTIONCONTROLPOLICY': "techsupportmanagement.CollectionControlPolicy",
'TECHSUPPORTMANAGEMENT.DOWNLOAD': "techsupportmanagement.Download",
'TECHSUPPORTMANAGEMENT.TECHSUPPORTBUNDLE': "techsupportmanagement.TechSupportBundle",
@@ -779,6 +789,7 @@ class AssetSubscriptionAccountRelationship(ModelComposed):
'VIRTUALIZATION.VMWAREVCENTER': "virtualization.VmwareVcenter",
'VIRTUALIZATION.VMWAREVIRTUALDISK': "virtualization.VmwareVirtualDisk",
'VIRTUALIZATION.VMWAREVIRTUALMACHINE': "virtualization.VmwareVirtualMachine",
+ 'VIRTUALIZATION.VMWAREVIRTUALMACHINESNAPSHOT': "virtualization.VmwareVirtualMachineSnapshot",
'VIRTUALIZATION.VMWAREVIRTUALNETWORKINTERFACE': "virtualization.VmwareVirtualNetworkInterface",
'VIRTUALIZATION.VMWAREVIRTUALSWITCH': "virtualization.VmwareVirtualSwitch",
'VMEDIA.POLICY': "vmedia.Policy",
@@ -811,12 +822,14 @@ class AssetSubscriptionAccountRelationship(ModelComposed):
'WORKFLOW.TASKDEFINITION': "workflow.TaskDefinition",
'WORKFLOW.TASKINFO': "workflow.TaskInfo",
'WORKFLOW.TASKMETADATA': "workflow.TaskMetadata",
+ 'WORKFLOW.TASKNOTIFICATION': "workflow.TaskNotification",
'WORKFLOW.TEMPLATEEVALUATION': "workflow.TemplateEvaluation",
'WORKFLOW.TEMPLATEFUNCTIONMETA': "workflow.TemplateFunctionMeta",
'WORKFLOW.WORKFLOWDEFINITION': "workflow.WorkflowDefinition",
'WORKFLOW.WORKFLOWINFO': "workflow.WorkflowInfo",
'WORKFLOW.WORKFLOWMETA': "workflow.WorkflowMeta",
'WORKFLOW.WORKFLOWMETADATA': "workflow.WorkflowMetadata",
+ 'WORKFLOW.WORKFLOWNOTIFICATION': "workflow.WorkflowNotification",
},
}
diff --git a/intersight/model/asset_subscription_account_response.py b/intersight/model/asset_subscription_account_response.py
index 45fd1233a6..c376ba6e0d 100644
--- a/intersight/model/asset_subscription_account_response.py
+++ b/intersight/model/asset_subscription_account_response.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/asset_subscription_all_of.py b/intersight/model/asset_subscription_all_of.py
index 376677acda..27f7e0a1dd 100644
--- a/intersight/model/asset_subscription_all_of.py
+++ b/intersight/model/asset_subscription_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/asset_subscription_device_contract_information.py b/intersight/model/asset_subscription_device_contract_information.py
index b30fff4e5a..e1c60a76a4 100644
--- a/intersight/model/asset_subscription_device_contract_information.py
+++ b/intersight/model/asset_subscription_device_contract_information.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/asset_subscription_device_contract_information_all_of.py b/intersight/model/asset_subscription_device_contract_information_all_of.py
index aa5582a794..754b1898b3 100644
--- a/intersight/model/asset_subscription_device_contract_information_all_of.py
+++ b/intersight/model/asset_subscription_device_contract_information_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/asset_subscription_device_contract_information_list.py b/intersight/model/asset_subscription_device_contract_information_list.py
index 3b8263f6d5..f0376bd7f0 100644
--- a/intersight/model/asset_subscription_device_contract_information_list.py
+++ b/intersight/model/asset_subscription_device_contract_information_list.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/asset_subscription_device_contract_information_list_all_of.py b/intersight/model/asset_subscription_device_contract_information_list_all_of.py
index 400c8d7c11..206e794e7e 100644
--- a/intersight/model/asset_subscription_device_contract_information_list_all_of.py
+++ b/intersight/model/asset_subscription_device_contract_information_list_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/asset_subscription_device_contract_information_response.py b/intersight/model/asset_subscription_device_contract_information_response.py
index 365a20260c..7a10d35f3b 100644
--- a/intersight/model/asset_subscription_device_contract_information_response.py
+++ b/intersight/model/asset_subscription_device_contract_information_response.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/asset_subscription_list.py b/intersight/model/asset_subscription_list.py
index 91dfd17eb1..0edfeb1807 100644
--- a/intersight/model/asset_subscription_list.py
+++ b/intersight/model/asset_subscription_list.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/asset_subscription_list_all_of.py b/intersight/model/asset_subscription_list_all_of.py
index f7e282f926..dc0b0bcb4d 100644
--- a/intersight/model/asset_subscription_list_all_of.py
+++ b/intersight/model/asset_subscription_list_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/asset_subscription_relationship.py b/intersight/model/asset_subscription_relationship.py
index 45b3f8b16f..26f80e1d98 100644
--- a/intersight/model/asset_subscription_relationship.py
+++ b/intersight/model/asset_subscription_relationship.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
@@ -76,6 +76,8 @@ class AssetSubscriptionRelationship(ModelComposed):
},
('object_type',): {
'AAA.AUDITRECORD': "aaa.AuditRecord",
+ 'AAA.RETENTIONCONFIG': "aaa.RetentionConfig",
+ 'AAA.RETENTIONPOLICY': "aaa.RetentionPolicy",
'ACCESS.POLICY': "access.Policy",
'ADAPTER.CONFIGPOLICY': "adapter.ConfigPolicy",
'ADAPTER.EXTETHINTERFACE': "adapter.ExtEthInterface",
@@ -92,6 +94,7 @@ class AssetSubscriptionRelationship(ModelComposed):
'APPLIANCE.DATAEXPORTPOLICY': "appliance.DataExportPolicy",
'APPLIANCE.DEVICECERTIFICATE': "appliance.DeviceCertificate",
'APPLIANCE.DEVICECLAIM': "appliance.DeviceClaim",
+ 'APPLIANCE.DEVICEUPGRADEPOLICY': "appliance.DeviceUpgradePolicy",
'APPLIANCE.DIAGSETTING': "appliance.DiagSetting",
'APPLIANCE.EXTERNALSYSLOGSETTING': "appliance.ExternalSyslogSetting",
'APPLIANCE.FILESYSTEMSTATUS': "appliance.FileSystemStatus",
@@ -140,9 +143,12 @@ class AssetSubscriptionRelationship(ModelComposed):
'BOOT.UEFISHELLDEVICE': "boot.UefiShellDevice",
'BOOT.USBDEVICE': "boot.UsbDevice",
'BOOT.VMEDIADEVICE': "boot.VmediaDevice",
+ 'BULK.EXPORT': "bulk.Export",
+ 'BULK.EXPORTEDITEM': "bulk.ExportedItem",
'BULK.MOCLONER': "bulk.MoCloner",
'BULK.MOMERGER': "bulk.MoMerger",
'BULK.REQUEST': "bulk.Request",
+ 'BULK.SUBREQUESTOBJ': "bulk.SubRequestObj",
'CAPABILITY.ADAPTERUNITDESCRIPTOR': "capability.AdapterUnitDescriptor",
'CAPABILITY.CATALOG': "capability.Catalog",
'CAPABILITY.CHASSISDESCRIPTOR': "capability.ChassisDescriptor",
@@ -206,10 +212,6 @@ class AssetSubscriptionRelationship(ModelComposed):
'COND.HCLSTATUS': "cond.HclStatus",
'COND.HCLSTATUSDETAIL': "cond.HclStatusDetail",
'COND.HCLSTATUSJOB': "cond.HclStatusJob",
- 'CONFIG.EXPORTEDITEM': "config.ExportedItem",
- 'CONFIG.EXPORTER': "config.Exporter",
- 'CONFIG.IMPORTEDITEM': "config.ImportedItem",
- 'CONFIG.IMPORTER': "config.Importer",
'CONNECTORPACK.CONNECTORPACKUPGRADE': "connectorpack.ConnectorPackUpgrade",
'CONNECTORPACK.UPGRADEIMPACT': "connectorpack.UpgradeImpact",
'CRD.CUSTOMRESOURCE': "crd.CustomResource",
@@ -218,6 +220,7 @@ class AssetSubscriptionRelationship(ModelComposed):
'EQUIPMENT.CHASSISIDENTITY': "equipment.ChassisIdentity",
'EQUIPMENT.CHASSISOPERATION': "equipment.ChassisOperation",
'EQUIPMENT.DEVICESUMMARY': "equipment.DeviceSummary",
+ 'EQUIPMENT.EXPANDERMODULE': "equipment.ExpanderModule",
'EQUIPMENT.FAN': "equipment.Fan",
'EQUIPMENT.FANCONTROL': "equipment.FanControl",
'EQUIPMENT.FANMODULE': "equipment.FanModule",
@@ -466,6 +469,7 @@ class AssetSubscriptionRelationship(ModelComposed):
'KUBERNETES.ADDONDEFINITION': "kubernetes.AddonDefinition",
'KUBERNETES.ADDONPOLICY': "kubernetes.AddonPolicy",
'KUBERNETES.ADDONREPOSITORY': "kubernetes.AddonRepository",
+ 'KUBERNETES.BAREMETALNODEPROFILE': "kubernetes.BaremetalNodeProfile",
'KUBERNETES.CATALOG': "kubernetes.Catalog",
'KUBERNETES.CLUSTER': "kubernetes.Cluster",
'KUBERNETES.CLUSTERADDONPROFILE': "kubernetes.ClusterAddonProfile",
@@ -635,6 +639,11 @@ class AssetSubscriptionRelationship(ModelComposed):
'RESOURCE.LICENSERESOURCECOUNT': "resource.LicenseResourceCount",
'RESOURCE.MEMBERSHIP': "resource.Membership",
'RESOURCE.MEMBERSHIPHOLDER': "resource.MembershipHolder",
+ 'RESOURCEPOOL.LEASE': "resourcepool.Lease",
+ 'RESOURCEPOOL.LEASERESOURCE': "resourcepool.LeaseResource",
+ 'RESOURCEPOOL.POOL': "resourcepool.Pool",
+ 'RESOURCEPOOL.POOLMEMBER': "resourcepool.PoolMember",
+ 'RESOURCEPOOL.UNIVERSE': "resourcepool.Universe",
'RPROXY.REVERSEPROXY': "rproxy.ReverseProxy",
'SDCARD.POLICY': "sdcard.Policy",
'SDWAN.PROFILE': "sdwan.Profile",
@@ -750,6 +759,7 @@ class AssetSubscriptionRelationship(ModelComposed):
'TASK.NETAPPSCOPEDINVENTORY': "task.NetAppScopedInventory",
'TASK.PUBLICCLOUDSCOPEDINVENTORY': "task.PublicCloudScopedInventory",
'TASK.PURESCOPEDINVENTORY': "task.PureScopedInventory",
+ 'TASK.SERVERSCOPEDINVENTORY': "task.ServerScopedInventory",
'TECHSUPPORTMANAGEMENT.COLLECTIONCONTROLPOLICY': "techsupportmanagement.CollectionControlPolicy",
'TECHSUPPORTMANAGEMENT.DOWNLOAD': "techsupportmanagement.Download",
'TECHSUPPORTMANAGEMENT.TECHSUPPORTBUNDLE': "techsupportmanagement.TechSupportBundle",
@@ -781,6 +791,7 @@ class AssetSubscriptionRelationship(ModelComposed):
'VIRTUALIZATION.VMWAREVCENTER': "virtualization.VmwareVcenter",
'VIRTUALIZATION.VMWAREVIRTUALDISK': "virtualization.VmwareVirtualDisk",
'VIRTUALIZATION.VMWAREVIRTUALMACHINE': "virtualization.VmwareVirtualMachine",
+ 'VIRTUALIZATION.VMWAREVIRTUALMACHINESNAPSHOT': "virtualization.VmwareVirtualMachineSnapshot",
'VIRTUALIZATION.VMWAREVIRTUALNETWORKINTERFACE': "virtualization.VmwareVirtualNetworkInterface",
'VIRTUALIZATION.VMWAREVIRTUALSWITCH': "virtualization.VmwareVirtualSwitch",
'VMEDIA.POLICY': "vmedia.Policy",
@@ -813,12 +824,14 @@ class AssetSubscriptionRelationship(ModelComposed):
'WORKFLOW.TASKDEFINITION': "workflow.TaskDefinition",
'WORKFLOW.TASKINFO': "workflow.TaskInfo",
'WORKFLOW.TASKMETADATA': "workflow.TaskMetadata",
+ 'WORKFLOW.TASKNOTIFICATION': "workflow.TaskNotification",
'WORKFLOW.TEMPLATEEVALUATION': "workflow.TemplateEvaluation",
'WORKFLOW.TEMPLATEFUNCTIONMETA': "workflow.TemplateFunctionMeta",
'WORKFLOW.WORKFLOWDEFINITION': "workflow.WorkflowDefinition",
'WORKFLOW.WORKFLOWINFO': "workflow.WorkflowInfo",
'WORKFLOW.WORKFLOWMETA': "workflow.WorkflowMeta",
'WORKFLOW.WORKFLOWMETADATA': "workflow.WorkflowMetadata",
+ 'WORKFLOW.WORKFLOWNOTIFICATION': "workflow.WorkflowNotification",
},
}
diff --git a/intersight/model/asset_subscription_response.py b/intersight/model/asset_subscription_response.py
index ec39d1debc..ab14ec5dc8 100644
--- a/intersight/model/asset_subscription_response.py
+++ b/intersight/model/asset_subscription_response.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/asset_sudi_info.py b/intersight/model/asset_sudi_info.py
index 8aa5c9e086..8edfdc18b7 100644
--- a/intersight/model/asset_sudi_info.py
+++ b/intersight/model/asset_sudi_info.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/asset_sudi_info_all_of.py b/intersight/model/asset_sudi_info_all_of.py
index c64a6d76f0..6aa1312b6b 100644
--- a/intersight/model/asset_sudi_info_all_of.py
+++ b/intersight/model/asset_sudi_info_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/asset_target.py b/intersight/model/asset_target.py
index 373e13fbd6..1c513900f5 100644
--- a/intersight/model/asset_target.py
+++ b/intersight/model/asset_target.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/asset_target_all_of.py b/intersight/model/asset_target_all_of.py
index 1c63b653b2..ebf4656f2a 100644
--- a/intersight/model/asset_target_all_of.py
+++ b/intersight/model/asset_target_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/asset_target_key.py b/intersight/model/asset_target_key.py
index 1ff58609ae..c7b16b2b53 100644
--- a/intersight/model/asset_target_key.py
+++ b/intersight/model/asset_target_key.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/asset_target_key_all_of.py b/intersight/model/asset_target_key_all_of.py
index 61b71c2875..3e848869c7 100644
--- a/intersight/model/asset_target_key_all_of.py
+++ b/intersight/model/asset_target_key_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/asset_target_list.py b/intersight/model/asset_target_list.py
index 2473f3a66d..7fd2c16b2d 100644
--- a/intersight/model/asset_target_list.py
+++ b/intersight/model/asset_target_list.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/asset_target_list_all_of.py b/intersight/model/asset_target_list_all_of.py
index d1217a163d..06a326bd12 100644
--- a/intersight/model/asset_target_list_all_of.py
+++ b/intersight/model/asset_target_list_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/asset_target_relationship.py b/intersight/model/asset_target_relationship.py
index 50810a2e21..cced344942 100644
--- a/intersight/model/asset_target_relationship.py
+++ b/intersight/model/asset_target_relationship.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
@@ -146,6 +146,8 @@ class AssetTargetRelationship(ModelComposed):
},
('object_type',): {
'AAA.AUDITRECORD': "aaa.AuditRecord",
+ 'AAA.RETENTIONCONFIG': "aaa.RetentionConfig",
+ 'AAA.RETENTIONPOLICY': "aaa.RetentionPolicy",
'ACCESS.POLICY': "access.Policy",
'ADAPTER.CONFIGPOLICY': "adapter.ConfigPolicy",
'ADAPTER.EXTETHINTERFACE': "adapter.ExtEthInterface",
@@ -162,6 +164,7 @@ class AssetTargetRelationship(ModelComposed):
'APPLIANCE.DATAEXPORTPOLICY': "appliance.DataExportPolicy",
'APPLIANCE.DEVICECERTIFICATE': "appliance.DeviceCertificate",
'APPLIANCE.DEVICECLAIM': "appliance.DeviceClaim",
+ 'APPLIANCE.DEVICEUPGRADEPOLICY': "appliance.DeviceUpgradePolicy",
'APPLIANCE.DIAGSETTING': "appliance.DiagSetting",
'APPLIANCE.EXTERNALSYSLOGSETTING': "appliance.ExternalSyslogSetting",
'APPLIANCE.FILESYSTEMSTATUS': "appliance.FileSystemStatus",
@@ -210,9 +213,12 @@ class AssetTargetRelationship(ModelComposed):
'BOOT.UEFISHELLDEVICE': "boot.UefiShellDevice",
'BOOT.USBDEVICE': "boot.UsbDevice",
'BOOT.VMEDIADEVICE': "boot.VmediaDevice",
+ 'BULK.EXPORT': "bulk.Export",
+ 'BULK.EXPORTEDITEM': "bulk.ExportedItem",
'BULK.MOCLONER': "bulk.MoCloner",
'BULK.MOMERGER': "bulk.MoMerger",
'BULK.REQUEST': "bulk.Request",
+ 'BULK.SUBREQUESTOBJ': "bulk.SubRequestObj",
'CAPABILITY.ADAPTERUNITDESCRIPTOR': "capability.AdapterUnitDescriptor",
'CAPABILITY.CATALOG': "capability.Catalog",
'CAPABILITY.CHASSISDESCRIPTOR': "capability.ChassisDescriptor",
@@ -276,10 +282,6 @@ class AssetTargetRelationship(ModelComposed):
'COND.HCLSTATUS': "cond.HclStatus",
'COND.HCLSTATUSDETAIL': "cond.HclStatusDetail",
'COND.HCLSTATUSJOB': "cond.HclStatusJob",
- 'CONFIG.EXPORTEDITEM': "config.ExportedItem",
- 'CONFIG.EXPORTER': "config.Exporter",
- 'CONFIG.IMPORTEDITEM': "config.ImportedItem",
- 'CONFIG.IMPORTER': "config.Importer",
'CONNECTORPACK.CONNECTORPACKUPGRADE': "connectorpack.ConnectorPackUpgrade",
'CONNECTORPACK.UPGRADEIMPACT': "connectorpack.UpgradeImpact",
'CRD.CUSTOMRESOURCE': "crd.CustomResource",
@@ -288,6 +290,7 @@ class AssetTargetRelationship(ModelComposed):
'EQUIPMENT.CHASSISIDENTITY': "equipment.ChassisIdentity",
'EQUIPMENT.CHASSISOPERATION': "equipment.ChassisOperation",
'EQUIPMENT.DEVICESUMMARY': "equipment.DeviceSummary",
+ 'EQUIPMENT.EXPANDERMODULE': "equipment.ExpanderModule",
'EQUIPMENT.FAN': "equipment.Fan",
'EQUIPMENT.FANCONTROL': "equipment.FanControl",
'EQUIPMENT.FANMODULE': "equipment.FanModule",
@@ -536,6 +539,7 @@ class AssetTargetRelationship(ModelComposed):
'KUBERNETES.ADDONDEFINITION': "kubernetes.AddonDefinition",
'KUBERNETES.ADDONPOLICY': "kubernetes.AddonPolicy",
'KUBERNETES.ADDONREPOSITORY': "kubernetes.AddonRepository",
+ 'KUBERNETES.BAREMETALNODEPROFILE': "kubernetes.BaremetalNodeProfile",
'KUBERNETES.CATALOG': "kubernetes.Catalog",
'KUBERNETES.CLUSTER': "kubernetes.Cluster",
'KUBERNETES.CLUSTERADDONPROFILE': "kubernetes.ClusterAddonProfile",
@@ -705,6 +709,11 @@ class AssetTargetRelationship(ModelComposed):
'RESOURCE.LICENSERESOURCECOUNT': "resource.LicenseResourceCount",
'RESOURCE.MEMBERSHIP': "resource.Membership",
'RESOURCE.MEMBERSHIPHOLDER': "resource.MembershipHolder",
+ 'RESOURCEPOOL.LEASE': "resourcepool.Lease",
+ 'RESOURCEPOOL.LEASERESOURCE': "resourcepool.LeaseResource",
+ 'RESOURCEPOOL.POOL': "resourcepool.Pool",
+ 'RESOURCEPOOL.POOLMEMBER': "resourcepool.PoolMember",
+ 'RESOURCEPOOL.UNIVERSE': "resourcepool.Universe",
'RPROXY.REVERSEPROXY': "rproxy.ReverseProxy",
'SDCARD.POLICY': "sdcard.Policy",
'SDWAN.PROFILE': "sdwan.Profile",
@@ -820,6 +829,7 @@ class AssetTargetRelationship(ModelComposed):
'TASK.NETAPPSCOPEDINVENTORY': "task.NetAppScopedInventory",
'TASK.PUBLICCLOUDSCOPEDINVENTORY': "task.PublicCloudScopedInventory",
'TASK.PURESCOPEDINVENTORY': "task.PureScopedInventory",
+ 'TASK.SERVERSCOPEDINVENTORY': "task.ServerScopedInventory",
'TECHSUPPORTMANAGEMENT.COLLECTIONCONTROLPOLICY': "techsupportmanagement.CollectionControlPolicy",
'TECHSUPPORTMANAGEMENT.DOWNLOAD': "techsupportmanagement.Download",
'TECHSUPPORTMANAGEMENT.TECHSUPPORTBUNDLE': "techsupportmanagement.TechSupportBundle",
@@ -851,6 +861,7 @@ class AssetTargetRelationship(ModelComposed):
'VIRTUALIZATION.VMWAREVCENTER': "virtualization.VmwareVcenter",
'VIRTUALIZATION.VMWAREVIRTUALDISK': "virtualization.VmwareVirtualDisk",
'VIRTUALIZATION.VMWAREVIRTUALMACHINE': "virtualization.VmwareVirtualMachine",
+ 'VIRTUALIZATION.VMWAREVIRTUALMACHINESNAPSHOT': "virtualization.VmwareVirtualMachineSnapshot",
'VIRTUALIZATION.VMWAREVIRTUALNETWORKINTERFACE': "virtualization.VmwareVirtualNetworkInterface",
'VIRTUALIZATION.VMWAREVIRTUALSWITCH': "virtualization.VmwareVirtualSwitch",
'VMEDIA.POLICY': "vmedia.Policy",
@@ -883,12 +894,14 @@ class AssetTargetRelationship(ModelComposed):
'WORKFLOW.TASKDEFINITION': "workflow.TaskDefinition",
'WORKFLOW.TASKINFO': "workflow.TaskInfo",
'WORKFLOW.TASKMETADATA': "workflow.TaskMetadata",
+ 'WORKFLOW.TASKNOTIFICATION': "workflow.TaskNotification",
'WORKFLOW.TEMPLATEEVALUATION': "workflow.TemplateEvaluation",
'WORKFLOW.TEMPLATEFUNCTIONMETA': "workflow.TemplateFunctionMeta",
'WORKFLOW.WORKFLOWDEFINITION': "workflow.WorkflowDefinition",
'WORKFLOW.WORKFLOWINFO': "workflow.WorkflowInfo",
'WORKFLOW.WORKFLOWMETA': "workflow.WorkflowMeta",
'WORKFLOW.WORKFLOWMETADATA': "workflow.WorkflowMetadata",
+ 'WORKFLOW.WORKFLOWNOTIFICATION': "workflow.WorkflowNotification",
},
}
diff --git a/intersight/model/asset_target_response.py b/intersight/model/asset_target_response.py
index 36ee428221..f9de525e9e 100644
--- a/intersight/model/asset_target_response.py
+++ b/intersight/model/asset_target_response.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/asset_target_signature.py b/intersight/model/asset_target_signature.py
index f828be5e1f..51d9d97687 100644
--- a/intersight/model/asset_target_signature.py
+++ b/intersight/model/asset_target_signature.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/asset_target_signature_all_of.py b/intersight/model/asset_target_signature_all_of.py
index 4090fc8624..332be4f258 100644
--- a/intersight/model/asset_target_signature_all_of.py
+++ b/intersight/model/asset_target_signature_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/asset_target_status_details.py b/intersight/model/asset_target_status_details.py
index d34d6c24fa..b824986702 100644
--- a/intersight/model/asset_target_status_details.py
+++ b/intersight/model/asset_target_status_details.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
@@ -122,6 +122,7 @@ class AssetTargetStatusDetails(ModelComposed):
'BOOT.UEFISHELL': "boot.UefiShell",
'BOOT.USB': "boot.Usb",
'BOOT.VIRTUALMEDIA': "boot.VirtualMedia",
+ 'BULK.HTTPHEADER': "bulk.HttpHeader",
'BULK.RESTRESULT': "bulk.RestResult",
'BULK.RESTSUBREQUEST': "bulk.RestSubRequest",
'CAPABILITY.PORTRANGE': "capability.PortRange",
@@ -162,7 +163,6 @@ class AssetTargetStatusDetails(ModelComposed):
'COMPUTE.STORAGEVIRTUALDRIVE': "compute.StorageVirtualDrive",
'COMPUTE.STORAGEVIRTUALDRIVEOPERATION': "compute.StorageVirtualDriveOperation",
'COND.ALARMSUMMARY': "cond.AlarmSummary",
- 'CONFIG.MOREF': "config.MoRef",
'CONNECTOR.CLOSESTREAMMESSAGE': "connector.CloseStreamMessage",
'CONNECTOR.COMMANDCONTROLMESSAGE': "connector.CommandControlMessage",
'CONNECTOR.COMMANDTERMINALSTREAM': "connector.CommandTerminalStream",
@@ -298,6 +298,7 @@ class AssetTargetStatusDetails(ModelComposed):
'KUBERNETES.ACTIONINFO': "kubernetes.ActionInfo",
'KUBERNETES.ADDON': "kubernetes.Addon",
'KUBERNETES.ADDONCONFIGURATION': "kubernetes.AddonConfiguration",
+ 'KUBERNETES.BAREMETALNETWORKINFO': "kubernetes.BaremetalNetworkInfo",
'KUBERNETES.CALICOCONFIG': "kubernetes.CalicoConfig",
'KUBERNETES.CLUSTERCERTIFICATECONFIGURATION': "kubernetes.ClusterCertificateConfiguration",
'KUBERNETES.CLUSTERMANAGEMENTCONFIG': "kubernetes.ClusterManagementConfig",
@@ -306,6 +307,8 @@ class AssetTargetStatusDetails(ModelComposed):
'KUBERNETES.DEPLOYMENTSTATUS': "kubernetes.DeploymentStatus",
'KUBERNETES.ESSENTIALADDON': "kubernetes.EssentialAddon",
'KUBERNETES.ESXIVIRTUALMACHINEINFRACONFIG': "kubernetes.EsxiVirtualMachineInfraConfig",
+ 'KUBERNETES.ETHERNET': "kubernetes.Ethernet",
+ 'KUBERNETES.ETHERNETMATCHER': "kubernetes.EthernetMatcher",
'KUBERNETES.HYPERFLEXAPVIRTUALMACHINEINFRACONFIG': "kubernetes.HyperFlexApVirtualMachineInfraConfig",
'KUBERNETES.INGRESSSTATUS': "kubernetes.IngressStatus",
'KUBERNETES.KEYVALUE': "kubernetes.KeyValue",
@@ -317,6 +320,7 @@ class AssetTargetStatusDetails(ModelComposed):
'KUBERNETES.NODESPEC': "kubernetes.NodeSpec",
'KUBERNETES.NODESTATUS': "kubernetes.NodeStatus",
'KUBERNETES.OBJECTMETA': "kubernetes.ObjectMeta",
+ 'KUBERNETES.OVSBOND': "kubernetes.OvsBond",
'KUBERNETES.PODSTATUS': "kubernetes.PodStatus",
'KUBERNETES.PROXYCONFIG': "kubernetes.ProxyConfig",
'KUBERNETES.SERVICESTATUS': "kubernetes.ServiceStatus",
@@ -328,6 +332,7 @@ class AssetTargetStatusDetails(ModelComposed):
'MEMORY.PERSISTENTMEMORYLOGICALNAMESPACE': "memory.PersistentMemoryLogicalNamespace",
'META.ACCESSPRIVILEGE': "meta.AccessPrivilege",
'META.DISPLAYNAMEDEFINITION': "meta.DisplayNameDefinition",
+ 'META.IDENTITYDEFINITION': "meta.IdentityDefinition",
'META.PROPDEFINITION': "meta.PropDefinition",
'META.RELATIONSHIPDEFINITION': "meta.RelationshipDefinition",
'MO.MOREF': "mo.MoRef",
@@ -385,6 +390,8 @@ class AssetTargetStatusDetails(ModelComposed):
'RESOURCE.SELECTOR': "resource.Selector",
'RESOURCE.SOURCETOPERMISSIONRESOURCES': "resource.SourceToPermissionResources",
'RESOURCE.SOURCETOPERMISSIONRESOURCESHOLDER': "resource.SourceToPermissionResourcesHolder",
+ 'RESOURCEPOOL.SERVERLEASEPARAMETERS': "resourcepool.ServerLeaseParameters",
+ 'RESOURCEPOOL.SERVERPOOLPARAMETERS': "resourcepool.ServerPoolParameters",
'SDCARD.DIAGNOSTICS': "sdcard.Diagnostics",
'SDCARD.DRIVERS': "sdcard.Drivers",
'SDCARD.HOSTUPGRADEUTILITY': "sdcard.HostUpgradeUtility",
@@ -394,6 +401,7 @@ class AssetTargetStatusDetails(ModelComposed):
'SDCARD.USERPARTITION': "sdcard.UserPartition",
'SDWAN.NETWORKCONFIGURATIONTYPE': "sdwan.NetworkConfigurationType",
'SDWAN.TEMPLATEINPUTSTYPE': "sdwan.TemplateInputsType",
+ 'SERVER.PENDINGWORKFLOWTRIGGER': "server.PendingWorkflowTrigger",
'SNMP.TRAP': "snmp.Trap",
'SNMP.USER': "snmp.User",
'SOFTWAREREPOSITORY.APPLIANCEUPLOAD': "softwarerepository.ApplianceUpload",
@@ -629,6 +637,7 @@ class AssetTargetStatusDetails(ModelComposed):
'BOOT.UEFISHELL': "boot.UefiShell",
'BOOT.USB': "boot.Usb",
'BOOT.VIRTUALMEDIA': "boot.VirtualMedia",
+ 'BULK.HTTPHEADER': "bulk.HttpHeader",
'BULK.RESTRESULT': "bulk.RestResult",
'BULK.RESTSUBREQUEST': "bulk.RestSubRequest",
'CAPABILITY.PORTRANGE': "capability.PortRange",
@@ -669,7 +678,6 @@ class AssetTargetStatusDetails(ModelComposed):
'COMPUTE.STORAGEVIRTUALDRIVE': "compute.StorageVirtualDrive",
'COMPUTE.STORAGEVIRTUALDRIVEOPERATION': "compute.StorageVirtualDriveOperation",
'COND.ALARMSUMMARY': "cond.AlarmSummary",
- 'CONFIG.MOREF': "config.MoRef",
'CONNECTOR.CLOSESTREAMMESSAGE': "connector.CloseStreamMessage",
'CONNECTOR.COMMANDCONTROLMESSAGE': "connector.CommandControlMessage",
'CONNECTOR.COMMANDTERMINALSTREAM': "connector.CommandTerminalStream",
@@ -805,6 +813,7 @@ class AssetTargetStatusDetails(ModelComposed):
'KUBERNETES.ACTIONINFO': "kubernetes.ActionInfo",
'KUBERNETES.ADDON': "kubernetes.Addon",
'KUBERNETES.ADDONCONFIGURATION': "kubernetes.AddonConfiguration",
+ 'KUBERNETES.BAREMETALNETWORKINFO': "kubernetes.BaremetalNetworkInfo",
'KUBERNETES.CALICOCONFIG': "kubernetes.CalicoConfig",
'KUBERNETES.CLUSTERCERTIFICATECONFIGURATION': "kubernetes.ClusterCertificateConfiguration",
'KUBERNETES.CLUSTERMANAGEMENTCONFIG': "kubernetes.ClusterManagementConfig",
@@ -813,6 +822,8 @@ class AssetTargetStatusDetails(ModelComposed):
'KUBERNETES.DEPLOYMENTSTATUS': "kubernetes.DeploymentStatus",
'KUBERNETES.ESSENTIALADDON': "kubernetes.EssentialAddon",
'KUBERNETES.ESXIVIRTUALMACHINEINFRACONFIG': "kubernetes.EsxiVirtualMachineInfraConfig",
+ 'KUBERNETES.ETHERNET': "kubernetes.Ethernet",
+ 'KUBERNETES.ETHERNETMATCHER': "kubernetes.EthernetMatcher",
'KUBERNETES.HYPERFLEXAPVIRTUALMACHINEINFRACONFIG': "kubernetes.HyperFlexApVirtualMachineInfraConfig",
'KUBERNETES.INGRESSSTATUS': "kubernetes.IngressStatus",
'KUBERNETES.KEYVALUE': "kubernetes.KeyValue",
@@ -824,6 +835,7 @@ class AssetTargetStatusDetails(ModelComposed):
'KUBERNETES.NODESPEC': "kubernetes.NodeSpec",
'KUBERNETES.NODESTATUS': "kubernetes.NodeStatus",
'KUBERNETES.OBJECTMETA': "kubernetes.ObjectMeta",
+ 'KUBERNETES.OVSBOND': "kubernetes.OvsBond",
'KUBERNETES.PODSTATUS': "kubernetes.PodStatus",
'KUBERNETES.PROXYCONFIG': "kubernetes.ProxyConfig",
'KUBERNETES.SERVICESTATUS': "kubernetes.ServiceStatus",
@@ -835,6 +847,7 @@ class AssetTargetStatusDetails(ModelComposed):
'MEMORY.PERSISTENTMEMORYLOGICALNAMESPACE': "memory.PersistentMemoryLogicalNamespace",
'META.ACCESSPRIVILEGE': "meta.AccessPrivilege",
'META.DISPLAYNAMEDEFINITION': "meta.DisplayNameDefinition",
+ 'META.IDENTITYDEFINITION': "meta.IdentityDefinition",
'META.PROPDEFINITION': "meta.PropDefinition",
'META.RELATIONSHIPDEFINITION': "meta.RelationshipDefinition",
'MO.MOREF': "mo.MoRef",
@@ -892,6 +905,8 @@ class AssetTargetStatusDetails(ModelComposed):
'RESOURCE.SELECTOR': "resource.Selector",
'RESOURCE.SOURCETOPERMISSIONRESOURCES': "resource.SourceToPermissionResources",
'RESOURCE.SOURCETOPERMISSIONRESOURCESHOLDER': "resource.SourceToPermissionResourcesHolder",
+ 'RESOURCEPOOL.SERVERLEASEPARAMETERS': "resourcepool.ServerLeaseParameters",
+ 'RESOURCEPOOL.SERVERPOOLPARAMETERS': "resourcepool.ServerPoolParameters",
'SDCARD.DIAGNOSTICS': "sdcard.Diagnostics",
'SDCARD.DRIVERS': "sdcard.Drivers",
'SDCARD.HOSTUPGRADEUTILITY': "sdcard.HostUpgradeUtility",
@@ -901,6 +916,7 @@ class AssetTargetStatusDetails(ModelComposed):
'SDCARD.USERPARTITION': "sdcard.UserPartition",
'SDWAN.NETWORKCONFIGURATIONTYPE': "sdwan.NetworkConfigurationType",
'SDWAN.TEMPLATEINPUTSTYPE': "sdwan.TemplateInputsType",
+ 'SERVER.PENDINGWORKFLOWTRIGGER': "server.PendingWorkflowTrigger",
'SNMP.TRAP': "snmp.Trap",
'SNMP.USER': "snmp.User",
'SOFTWAREREPOSITORY.APPLIANCEUPLOAD': "softwarerepository.ApplianceUpload",
diff --git a/intersight/model/asset_terraform_integration_service.py b/intersight/model/asset_terraform_integration_service.py
index 599c6fbedd..20ee6850c2 100644
--- a/intersight/model/asset_terraform_integration_service.py
+++ b/intersight/model/asset_terraform_integration_service.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/asset_terraform_integration_terraform_agent_options.py b/intersight/model/asset_terraform_integration_terraform_agent_options.py
index 4d0a7b355d..9171f9479e 100644
--- a/intersight/model/asset_terraform_integration_terraform_agent_options.py
+++ b/intersight/model/asset_terraform_integration_terraform_agent_options.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/asset_terraform_integration_terraform_agent_options_all_of.py b/intersight/model/asset_terraform_integration_terraform_agent_options_all_of.py
index 791fdcd027..9f4e738419 100644
--- a/intersight/model/asset_terraform_integration_terraform_agent_options_all_of.py
+++ b/intersight/model/asset_terraform_integration_terraform_agent_options_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/asset_terraform_integration_terraform_cloud_options.py b/intersight/model/asset_terraform_integration_terraform_cloud_options.py
index 09099214b5..7dd2685fc8 100644
--- a/intersight/model/asset_terraform_integration_terraform_cloud_options.py
+++ b/intersight/model/asset_terraform_integration_terraform_cloud_options.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/asset_terraform_integration_terraform_cloud_options_all_of.py b/intersight/model/asset_terraform_integration_terraform_cloud_options_all_of.py
index 13b545a4d9..feb5be2c2e 100644
--- a/intersight/model/asset_terraform_integration_terraform_cloud_options_all_of.py
+++ b/intersight/model/asset_terraform_integration_terraform_cloud_options_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/asset_username_password_credential.py b/intersight/model/asset_username_password_credential.py
index 0a67b50e05..3ddd67acf0 100644
--- a/intersight/model/asset_username_password_credential.py
+++ b/intersight/model/asset_username_password_credential.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/asset_username_password_credential_all_of.py b/intersight/model/asset_username_password_credential_all_of.py
index a7572e4cd0..6aefb41c98 100644
--- a/intersight/model/asset_username_password_credential_all_of.py
+++ b/intersight/model/asset_username_password_credential_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/asset_virtualization_amazon_web_service_options.py b/intersight/model/asset_virtualization_amazon_web_service_options.py
index bdc6c79f77..36e89e22f2 100644
--- a/intersight/model/asset_virtualization_amazon_web_service_options.py
+++ b/intersight/model/asset_virtualization_amazon_web_service_options.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/asset_virtualization_cloud_options.py b/intersight/model/asset_virtualization_cloud_options.py
index 42b816a07f..fcfcea0b80 100644
--- a/intersight/model/asset_virtualization_cloud_options.py
+++ b/intersight/model/asset_virtualization_cloud_options.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/asset_virtualization_cloud_options_all_of.py b/intersight/model/asset_virtualization_cloud_options_all_of.py
index bf70886778..ae74f1cf8f 100644
--- a/intersight/model/asset_virtualization_cloud_options_all_of.py
+++ b/intersight/model/asset_virtualization_cloud_options_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/asset_virtualization_service.py b/intersight/model/asset_virtualization_service.py
index 03fafa1f71..a3f18bccf5 100644
--- a/intersight/model/asset_virtualization_service.py
+++ b/intersight/model/asset_virtualization_service.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/asset_vm_host.py b/intersight/model/asset_vm_host.py
index da548a2637..ce258cd766 100644
--- a/intersight/model/asset_vm_host.py
+++ b/intersight/model/asset_vm_host.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/asset_vm_host_all_of.py b/intersight/model/asset_vm_host_all_of.py
index 15efb2c2af..22b75dd475 100644
--- a/intersight/model/asset_vm_host_all_of.py
+++ b/intersight/model/asset_vm_host_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/asset_workload_optimizer_amazon_web_services_billing_options.py b/intersight/model/asset_workload_optimizer_amazon_web_services_billing_options.py
index b68dc9acf0..2bcc748790 100644
--- a/intersight/model/asset_workload_optimizer_amazon_web_services_billing_options.py
+++ b/intersight/model/asset_workload_optimizer_amazon_web_services_billing_options.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/asset_workload_optimizer_amazon_web_services_billing_options_all_of.py b/intersight/model/asset_workload_optimizer_amazon_web_services_billing_options_all_of.py
index 7882e37e98..3f3c568cf8 100644
--- a/intersight/model/asset_workload_optimizer_amazon_web_services_billing_options_all_of.py
+++ b/intersight/model/asset_workload_optimizer_amazon_web_services_billing_options_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/asset_workload_optimizer_hyperv_options.py b/intersight/model/asset_workload_optimizer_hyperv_options.py
index 756694486f..ba70dfbc17 100644
--- a/intersight/model/asset_workload_optimizer_hyperv_options.py
+++ b/intersight/model/asset_workload_optimizer_hyperv_options.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/asset_workload_optimizer_hyperv_options_all_of.py b/intersight/model/asset_workload_optimizer_hyperv_options_all_of.py
index ed9ed9a7e7..6490e54a96 100644
--- a/intersight/model/asset_workload_optimizer_hyperv_options_all_of.py
+++ b/intersight/model/asset_workload_optimizer_hyperv_options_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/asset_workload_optimizer_microsoft_azure_application_insights_options.py b/intersight/model/asset_workload_optimizer_microsoft_azure_application_insights_options.py
index ba8c604189..c91c791389 100644
--- a/intersight/model/asset_workload_optimizer_microsoft_azure_application_insights_options.py
+++ b/intersight/model/asset_workload_optimizer_microsoft_azure_application_insights_options.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/asset_workload_optimizer_microsoft_azure_application_insights_options_all_of.py b/intersight/model/asset_workload_optimizer_microsoft_azure_application_insights_options_all_of.py
index 904b42e21e..d1adb16fff 100644
--- a/intersight/model/asset_workload_optimizer_microsoft_azure_application_insights_options_all_of.py
+++ b/intersight/model/asset_workload_optimizer_microsoft_azure_application_insights_options_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/asset_workload_optimizer_microsoft_azure_enterprise_agreement_options.py b/intersight/model/asset_workload_optimizer_microsoft_azure_enterprise_agreement_options.py
index 6106cf2d75..86e8aac371 100644
--- a/intersight/model/asset_workload_optimizer_microsoft_azure_enterprise_agreement_options.py
+++ b/intersight/model/asset_workload_optimizer_microsoft_azure_enterprise_agreement_options.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/asset_workload_optimizer_microsoft_azure_enterprise_agreement_options_all_of.py b/intersight/model/asset_workload_optimizer_microsoft_azure_enterprise_agreement_options_all_of.py
index 9be74e4a7b..e50338b7fa 100644
--- a/intersight/model/asset_workload_optimizer_microsoft_azure_enterprise_agreement_options_all_of.py
+++ b/intersight/model/asset_workload_optimizer_microsoft_azure_enterprise_agreement_options_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/asset_workload_optimizer_microsoft_azure_service_principal_options.py b/intersight/model/asset_workload_optimizer_microsoft_azure_service_principal_options.py
index a7a7eeb1dc..86e3b207e9 100644
--- a/intersight/model/asset_workload_optimizer_microsoft_azure_service_principal_options.py
+++ b/intersight/model/asset_workload_optimizer_microsoft_azure_service_principal_options.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/asset_workload_optimizer_microsoft_azure_service_principal_options_all_of.py b/intersight/model/asset_workload_optimizer_microsoft_azure_service_principal_options_all_of.py
index c064851cdd..2e6dc437b6 100644
--- a/intersight/model/asset_workload_optimizer_microsoft_azure_service_principal_options_all_of.py
+++ b/intersight/model/asset_workload_optimizer_microsoft_azure_service_principal_options_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/asset_workload_optimizer_open_stack_options.py b/intersight/model/asset_workload_optimizer_open_stack_options.py
index f475c0848e..7de1fc7abb 100644
--- a/intersight/model/asset_workload_optimizer_open_stack_options.py
+++ b/intersight/model/asset_workload_optimizer_open_stack_options.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/asset_workload_optimizer_open_stack_options_all_of.py b/intersight/model/asset_workload_optimizer_open_stack_options_all_of.py
index 6eade45faf..e842b8f4e8 100644
--- a/intersight/model/asset_workload_optimizer_open_stack_options_all_of.py
+++ b/intersight/model/asset_workload_optimizer_open_stack_options_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/asset_workload_optimizer_red_hat_open_stack_options.py b/intersight/model/asset_workload_optimizer_red_hat_open_stack_options.py
index 137f2aa883..e9a47c8c7f 100644
--- a/intersight/model/asset_workload_optimizer_red_hat_open_stack_options.py
+++ b/intersight/model/asset_workload_optimizer_red_hat_open_stack_options.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/asset_workload_optimizer_red_hat_open_stack_options_all_of.py b/intersight/model/asset_workload_optimizer_red_hat_open_stack_options_all_of.py
index e7cc613968..4e37d485a0 100644
--- a/intersight/model/asset_workload_optimizer_red_hat_open_stack_options_all_of.py
+++ b/intersight/model/asset_workload_optimizer_red_hat_open_stack_options_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/asset_workload_optimizer_service.py b/intersight/model/asset_workload_optimizer_service.py
index 2f22218e81..ab871dd583 100644
--- a/intersight/model/asset_workload_optimizer_service.py
+++ b/intersight/model/asset_workload_optimizer_service.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/asset_workload_optimizer_vmware_vcenter_options.py b/intersight/model/asset_workload_optimizer_vmware_vcenter_options.py
index f9166db2f9..12d72c4f0c 100644
--- a/intersight/model/asset_workload_optimizer_vmware_vcenter_options.py
+++ b/intersight/model/asset_workload_optimizer_vmware_vcenter_options.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
@@ -96,6 +96,7 @@ def openapi_types():
'class_id': (str,), # noqa: E501
'object_type': (str,), # noqa: E501
'datastore_browsing_enabled': (bool,), # noqa: E501
+ 'guest_metrics_enabled': (bool,), # noqa: E501
}
@cached_property
@@ -110,6 +111,7 @@ def discriminator():
'class_id': 'ClassId', # noqa: E501
'object_type': 'ObjectType', # noqa: E501
'datastore_browsing_enabled': 'DatastoreBrowsingEnabled', # noqa: E501
+ 'guest_metrics_enabled': 'GuestMetricsEnabled', # noqa: E501
}
required_properties = set([
@@ -164,6 +166,7 @@ def __init__(self, *args, **kwargs): # noqa: E501
through its discriminator because we passed in
_visited_composed_classes = (Animal,)
datastore_browsing_enabled (bool): DatastoreBrowsingEnabled controls whether Workload Optimizer scans vCenter datastores to identify files which are not used and can be deleted to reclaim space and improve actual disk utilization. For example orphaned VMDK files.. [optional] # noqa: E501
+ guest_metrics_enabled (bool): Enable retrieval of advanced memory metrics. Only supported on vCenter Server version 6.5U3 or later. Guest VMs must run VMWare Tools 10.3.2 Build 10338 or later.. [optional] # noqa: E501
"""
class_id = kwargs.get('class_id', "asset.WorkloadOptimizerVmwareVcenterOptions")
diff --git a/intersight/model/asset_workload_optimizer_vmware_vcenter_options_all_of.py b/intersight/model/asset_workload_optimizer_vmware_vcenter_options_all_of.py
index ae232c79d3..872ae462a2 100644
--- a/intersight/model/asset_workload_optimizer_vmware_vcenter_options_all_of.py
+++ b/intersight/model/asset_workload_optimizer_vmware_vcenter_options_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
@@ -82,6 +82,7 @@ def openapi_types():
'class_id': (str,), # noqa: E501
'object_type': (str,), # noqa: E501
'datastore_browsing_enabled': (bool,), # noqa: E501
+ 'guest_metrics_enabled': (bool,), # noqa: E501
}
@cached_property
@@ -93,6 +94,7 @@ def discriminator():
'class_id': 'ClassId', # noqa: E501
'object_type': 'ObjectType', # noqa: E501
'datastore_browsing_enabled': 'DatastoreBrowsingEnabled', # noqa: E501
+ 'guest_metrics_enabled': 'GuestMetricsEnabled', # noqa: E501
}
_composed_schemas = {}
@@ -146,6 +148,7 @@ def __init__(self, *args, **kwargs): # noqa: E501
through its discriminator because we passed in
_visited_composed_classes = (Animal,)
datastore_browsing_enabled (bool): DatastoreBrowsingEnabled controls whether Workload Optimizer scans vCenter datastores to identify files which are not used and can be deleted to reclaim space and improve actual disk utilization. For example orphaned VMDK files.. [optional] # noqa: E501
+ guest_metrics_enabled (bool): Enable retrieval of advanced memory metrics. Only supported on vCenter Server version 6.5U3 or later. Guest VMs must run VMWare Tools 10.3.2 Build 10338 or later.. [optional] # noqa: E501
"""
class_id = kwargs.get('class_id', "asset.WorkloadOptimizerVmwareVcenterOptions")
diff --git a/intersight/model/bios_boot_device.py b/intersight/model/bios_boot_device.py
index 65ed322a26..77a485651f 100644
--- a/intersight/model/bios_boot_device.py
+++ b/intersight/model/bios_boot_device.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/bios_boot_device_all_of.py b/intersight/model/bios_boot_device_all_of.py
index acd1ad5da2..68a4df9fad 100644
--- a/intersight/model/bios_boot_device_all_of.py
+++ b/intersight/model/bios_boot_device_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/bios_boot_device_list.py b/intersight/model/bios_boot_device_list.py
index 2c8c33902e..41a4ced0c9 100644
--- a/intersight/model/bios_boot_device_list.py
+++ b/intersight/model/bios_boot_device_list.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/bios_boot_device_list_all_of.py b/intersight/model/bios_boot_device_list_all_of.py
index e36a41fe69..548df0ca74 100644
--- a/intersight/model/bios_boot_device_list_all_of.py
+++ b/intersight/model/bios_boot_device_list_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/bios_boot_device_relationship.py b/intersight/model/bios_boot_device_relationship.py
index e55706a24b..a256aec929 100644
--- a/intersight/model/bios_boot_device_relationship.py
+++ b/intersight/model/bios_boot_device_relationship.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
@@ -76,6 +76,8 @@ class BiosBootDeviceRelationship(ModelComposed):
},
('object_type',): {
'AAA.AUDITRECORD': "aaa.AuditRecord",
+ 'AAA.RETENTIONCONFIG': "aaa.RetentionConfig",
+ 'AAA.RETENTIONPOLICY': "aaa.RetentionPolicy",
'ACCESS.POLICY': "access.Policy",
'ADAPTER.CONFIGPOLICY': "adapter.ConfigPolicy",
'ADAPTER.EXTETHINTERFACE': "adapter.ExtEthInterface",
@@ -92,6 +94,7 @@ class BiosBootDeviceRelationship(ModelComposed):
'APPLIANCE.DATAEXPORTPOLICY': "appliance.DataExportPolicy",
'APPLIANCE.DEVICECERTIFICATE': "appliance.DeviceCertificate",
'APPLIANCE.DEVICECLAIM': "appliance.DeviceClaim",
+ 'APPLIANCE.DEVICEUPGRADEPOLICY': "appliance.DeviceUpgradePolicy",
'APPLIANCE.DIAGSETTING': "appliance.DiagSetting",
'APPLIANCE.EXTERNALSYSLOGSETTING': "appliance.ExternalSyslogSetting",
'APPLIANCE.FILESYSTEMSTATUS': "appliance.FileSystemStatus",
@@ -140,9 +143,12 @@ class BiosBootDeviceRelationship(ModelComposed):
'BOOT.UEFISHELLDEVICE': "boot.UefiShellDevice",
'BOOT.USBDEVICE': "boot.UsbDevice",
'BOOT.VMEDIADEVICE': "boot.VmediaDevice",
+ 'BULK.EXPORT': "bulk.Export",
+ 'BULK.EXPORTEDITEM': "bulk.ExportedItem",
'BULK.MOCLONER': "bulk.MoCloner",
'BULK.MOMERGER': "bulk.MoMerger",
'BULK.REQUEST': "bulk.Request",
+ 'BULK.SUBREQUESTOBJ': "bulk.SubRequestObj",
'CAPABILITY.ADAPTERUNITDESCRIPTOR': "capability.AdapterUnitDescriptor",
'CAPABILITY.CATALOG': "capability.Catalog",
'CAPABILITY.CHASSISDESCRIPTOR': "capability.ChassisDescriptor",
@@ -206,10 +212,6 @@ class BiosBootDeviceRelationship(ModelComposed):
'COND.HCLSTATUS': "cond.HclStatus",
'COND.HCLSTATUSDETAIL': "cond.HclStatusDetail",
'COND.HCLSTATUSJOB': "cond.HclStatusJob",
- 'CONFIG.EXPORTEDITEM': "config.ExportedItem",
- 'CONFIG.EXPORTER': "config.Exporter",
- 'CONFIG.IMPORTEDITEM': "config.ImportedItem",
- 'CONFIG.IMPORTER': "config.Importer",
'CONNECTORPACK.CONNECTORPACKUPGRADE': "connectorpack.ConnectorPackUpgrade",
'CONNECTORPACK.UPGRADEIMPACT': "connectorpack.UpgradeImpact",
'CRD.CUSTOMRESOURCE': "crd.CustomResource",
@@ -218,6 +220,7 @@ class BiosBootDeviceRelationship(ModelComposed):
'EQUIPMENT.CHASSISIDENTITY': "equipment.ChassisIdentity",
'EQUIPMENT.CHASSISOPERATION': "equipment.ChassisOperation",
'EQUIPMENT.DEVICESUMMARY': "equipment.DeviceSummary",
+ 'EQUIPMENT.EXPANDERMODULE': "equipment.ExpanderModule",
'EQUIPMENT.FAN': "equipment.Fan",
'EQUIPMENT.FANCONTROL': "equipment.FanControl",
'EQUIPMENT.FANMODULE': "equipment.FanModule",
@@ -466,6 +469,7 @@ class BiosBootDeviceRelationship(ModelComposed):
'KUBERNETES.ADDONDEFINITION': "kubernetes.AddonDefinition",
'KUBERNETES.ADDONPOLICY': "kubernetes.AddonPolicy",
'KUBERNETES.ADDONREPOSITORY': "kubernetes.AddonRepository",
+ 'KUBERNETES.BAREMETALNODEPROFILE': "kubernetes.BaremetalNodeProfile",
'KUBERNETES.CATALOG': "kubernetes.Catalog",
'KUBERNETES.CLUSTER': "kubernetes.Cluster",
'KUBERNETES.CLUSTERADDONPROFILE': "kubernetes.ClusterAddonProfile",
@@ -635,6 +639,11 @@ class BiosBootDeviceRelationship(ModelComposed):
'RESOURCE.LICENSERESOURCECOUNT': "resource.LicenseResourceCount",
'RESOURCE.MEMBERSHIP': "resource.Membership",
'RESOURCE.MEMBERSHIPHOLDER': "resource.MembershipHolder",
+ 'RESOURCEPOOL.LEASE': "resourcepool.Lease",
+ 'RESOURCEPOOL.LEASERESOURCE': "resourcepool.LeaseResource",
+ 'RESOURCEPOOL.POOL': "resourcepool.Pool",
+ 'RESOURCEPOOL.POOLMEMBER': "resourcepool.PoolMember",
+ 'RESOURCEPOOL.UNIVERSE': "resourcepool.Universe",
'RPROXY.REVERSEPROXY': "rproxy.ReverseProxy",
'SDCARD.POLICY': "sdcard.Policy",
'SDWAN.PROFILE': "sdwan.Profile",
@@ -750,6 +759,7 @@ class BiosBootDeviceRelationship(ModelComposed):
'TASK.NETAPPSCOPEDINVENTORY': "task.NetAppScopedInventory",
'TASK.PUBLICCLOUDSCOPEDINVENTORY': "task.PublicCloudScopedInventory",
'TASK.PURESCOPEDINVENTORY': "task.PureScopedInventory",
+ 'TASK.SERVERSCOPEDINVENTORY': "task.ServerScopedInventory",
'TECHSUPPORTMANAGEMENT.COLLECTIONCONTROLPOLICY': "techsupportmanagement.CollectionControlPolicy",
'TECHSUPPORTMANAGEMENT.DOWNLOAD': "techsupportmanagement.Download",
'TECHSUPPORTMANAGEMENT.TECHSUPPORTBUNDLE': "techsupportmanagement.TechSupportBundle",
@@ -781,6 +791,7 @@ class BiosBootDeviceRelationship(ModelComposed):
'VIRTUALIZATION.VMWAREVCENTER': "virtualization.VmwareVcenter",
'VIRTUALIZATION.VMWAREVIRTUALDISK': "virtualization.VmwareVirtualDisk",
'VIRTUALIZATION.VMWAREVIRTUALMACHINE': "virtualization.VmwareVirtualMachine",
+ 'VIRTUALIZATION.VMWAREVIRTUALMACHINESNAPSHOT': "virtualization.VmwareVirtualMachineSnapshot",
'VIRTUALIZATION.VMWAREVIRTUALNETWORKINTERFACE': "virtualization.VmwareVirtualNetworkInterface",
'VIRTUALIZATION.VMWAREVIRTUALSWITCH': "virtualization.VmwareVirtualSwitch",
'VMEDIA.POLICY': "vmedia.Policy",
@@ -813,12 +824,14 @@ class BiosBootDeviceRelationship(ModelComposed):
'WORKFLOW.TASKDEFINITION': "workflow.TaskDefinition",
'WORKFLOW.TASKINFO': "workflow.TaskInfo",
'WORKFLOW.TASKMETADATA': "workflow.TaskMetadata",
+ 'WORKFLOW.TASKNOTIFICATION': "workflow.TaskNotification",
'WORKFLOW.TEMPLATEEVALUATION': "workflow.TemplateEvaluation",
'WORKFLOW.TEMPLATEFUNCTIONMETA': "workflow.TemplateFunctionMeta",
'WORKFLOW.WORKFLOWDEFINITION': "workflow.WorkflowDefinition",
'WORKFLOW.WORKFLOWINFO': "workflow.WorkflowInfo",
'WORKFLOW.WORKFLOWMETA': "workflow.WorkflowMeta",
'WORKFLOW.WORKFLOWMETADATA': "workflow.WorkflowMetadata",
+ 'WORKFLOW.WORKFLOWNOTIFICATION': "workflow.WorkflowNotification",
},
}
diff --git a/intersight/model/bios_boot_device_response.py b/intersight/model/bios_boot_device_response.py
index a28b4d3216..42adf5274a 100644
--- a/intersight/model/bios_boot_device_response.py
+++ b/intersight/model/bios_boot_device_response.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/bios_boot_mode.py b/intersight/model/bios_boot_mode.py
index 31f573d642..f8d9448eff 100644
--- a/intersight/model/bios_boot_mode.py
+++ b/intersight/model/bios_boot_mode.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/bios_boot_mode_all_of.py b/intersight/model/bios_boot_mode_all_of.py
index f30890987e..891b8f6326 100644
--- a/intersight/model/bios_boot_mode_all_of.py
+++ b/intersight/model/bios_boot_mode_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/bios_boot_mode_list.py b/intersight/model/bios_boot_mode_list.py
index bfb7b92f54..e433089527 100644
--- a/intersight/model/bios_boot_mode_list.py
+++ b/intersight/model/bios_boot_mode_list.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/bios_boot_mode_list_all_of.py b/intersight/model/bios_boot_mode_list_all_of.py
index 76342e81ba..b86845133d 100644
--- a/intersight/model/bios_boot_mode_list_all_of.py
+++ b/intersight/model/bios_boot_mode_list_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/bios_boot_mode_relationship.py b/intersight/model/bios_boot_mode_relationship.py
index 5d55d5629a..e6840216ca 100644
--- a/intersight/model/bios_boot_mode_relationship.py
+++ b/intersight/model/bios_boot_mode_relationship.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
@@ -80,6 +80,8 @@ class BiosBootModeRelationship(ModelComposed):
},
('object_type',): {
'AAA.AUDITRECORD': "aaa.AuditRecord",
+ 'AAA.RETENTIONCONFIG': "aaa.RetentionConfig",
+ 'AAA.RETENTIONPOLICY': "aaa.RetentionPolicy",
'ACCESS.POLICY': "access.Policy",
'ADAPTER.CONFIGPOLICY': "adapter.ConfigPolicy",
'ADAPTER.EXTETHINTERFACE': "adapter.ExtEthInterface",
@@ -96,6 +98,7 @@ class BiosBootModeRelationship(ModelComposed):
'APPLIANCE.DATAEXPORTPOLICY': "appliance.DataExportPolicy",
'APPLIANCE.DEVICECERTIFICATE': "appliance.DeviceCertificate",
'APPLIANCE.DEVICECLAIM': "appliance.DeviceClaim",
+ 'APPLIANCE.DEVICEUPGRADEPOLICY': "appliance.DeviceUpgradePolicy",
'APPLIANCE.DIAGSETTING': "appliance.DiagSetting",
'APPLIANCE.EXTERNALSYSLOGSETTING': "appliance.ExternalSyslogSetting",
'APPLIANCE.FILESYSTEMSTATUS': "appliance.FileSystemStatus",
@@ -144,9 +147,12 @@ class BiosBootModeRelationship(ModelComposed):
'BOOT.UEFISHELLDEVICE': "boot.UefiShellDevice",
'BOOT.USBDEVICE': "boot.UsbDevice",
'BOOT.VMEDIADEVICE': "boot.VmediaDevice",
+ 'BULK.EXPORT': "bulk.Export",
+ 'BULK.EXPORTEDITEM': "bulk.ExportedItem",
'BULK.MOCLONER': "bulk.MoCloner",
'BULK.MOMERGER': "bulk.MoMerger",
'BULK.REQUEST': "bulk.Request",
+ 'BULK.SUBREQUESTOBJ': "bulk.SubRequestObj",
'CAPABILITY.ADAPTERUNITDESCRIPTOR': "capability.AdapterUnitDescriptor",
'CAPABILITY.CATALOG': "capability.Catalog",
'CAPABILITY.CHASSISDESCRIPTOR': "capability.ChassisDescriptor",
@@ -210,10 +216,6 @@ class BiosBootModeRelationship(ModelComposed):
'COND.HCLSTATUS': "cond.HclStatus",
'COND.HCLSTATUSDETAIL': "cond.HclStatusDetail",
'COND.HCLSTATUSJOB': "cond.HclStatusJob",
- 'CONFIG.EXPORTEDITEM': "config.ExportedItem",
- 'CONFIG.EXPORTER': "config.Exporter",
- 'CONFIG.IMPORTEDITEM': "config.ImportedItem",
- 'CONFIG.IMPORTER': "config.Importer",
'CONNECTORPACK.CONNECTORPACKUPGRADE': "connectorpack.ConnectorPackUpgrade",
'CONNECTORPACK.UPGRADEIMPACT': "connectorpack.UpgradeImpact",
'CRD.CUSTOMRESOURCE': "crd.CustomResource",
@@ -222,6 +224,7 @@ class BiosBootModeRelationship(ModelComposed):
'EQUIPMENT.CHASSISIDENTITY': "equipment.ChassisIdentity",
'EQUIPMENT.CHASSISOPERATION': "equipment.ChassisOperation",
'EQUIPMENT.DEVICESUMMARY': "equipment.DeviceSummary",
+ 'EQUIPMENT.EXPANDERMODULE': "equipment.ExpanderModule",
'EQUIPMENT.FAN': "equipment.Fan",
'EQUIPMENT.FANCONTROL': "equipment.FanControl",
'EQUIPMENT.FANMODULE': "equipment.FanModule",
@@ -470,6 +473,7 @@ class BiosBootModeRelationship(ModelComposed):
'KUBERNETES.ADDONDEFINITION': "kubernetes.AddonDefinition",
'KUBERNETES.ADDONPOLICY': "kubernetes.AddonPolicy",
'KUBERNETES.ADDONREPOSITORY': "kubernetes.AddonRepository",
+ 'KUBERNETES.BAREMETALNODEPROFILE': "kubernetes.BaremetalNodeProfile",
'KUBERNETES.CATALOG': "kubernetes.Catalog",
'KUBERNETES.CLUSTER': "kubernetes.Cluster",
'KUBERNETES.CLUSTERADDONPROFILE': "kubernetes.ClusterAddonProfile",
@@ -639,6 +643,11 @@ class BiosBootModeRelationship(ModelComposed):
'RESOURCE.LICENSERESOURCECOUNT': "resource.LicenseResourceCount",
'RESOURCE.MEMBERSHIP': "resource.Membership",
'RESOURCE.MEMBERSHIPHOLDER': "resource.MembershipHolder",
+ 'RESOURCEPOOL.LEASE': "resourcepool.Lease",
+ 'RESOURCEPOOL.LEASERESOURCE': "resourcepool.LeaseResource",
+ 'RESOURCEPOOL.POOL': "resourcepool.Pool",
+ 'RESOURCEPOOL.POOLMEMBER': "resourcepool.PoolMember",
+ 'RESOURCEPOOL.UNIVERSE': "resourcepool.Universe",
'RPROXY.REVERSEPROXY': "rproxy.ReverseProxy",
'SDCARD.POLICY': "sdcard.Policy",
'SDWAN.PROFILE': "sdwan.Profile",
@@ -754,6 +763,7 @@ class BiosBootModeRelationship(ModelComposed):
'TASK.NETAPPSCOPEDINVENTORY': "task.NetAppScopedInventory",
'TASK.PUBLICCLOUDSCOPEDINVENTORY': "task.PublicCloudScopedInventory",
'TASK.PURESCOPEDINVENTORY': "task.PureScopedInventory",
+ 'TASK.SERVERSCOPEDINVENTORY': "task.ServerScopedInventory",
'TECHSUPPORTMANAGEMENT.COLLECTIONCONTROLPOLICY': "techsupportmanagement.CollectionControlPolicy",
'TECHSUPPORTMANAGEMENT.DOWNLOAD': "techsupportmanagement.Download",
'TECHSUPPORTMANAGEMENT.TECHSUPPORTBUNDLE': "techsupportmanagement.TechSupportBundle",
@@ -785,6 +795,7 @@ class BiosBootModeRelationship(ModelComposed):
'VIRTUALIZATION.VMWAREVCENTER': "virtualization.VmwareVcenter",
'VIRTUALIZATION.VMWAREVIRTUALDISK': "virtualization.VmwareVirtualDisk",
'VIRTUALIZATION.VMWAREVIRTUALMACHINE': "virtualization.VmwareVirtualMachine",
+ 'VIRTUALIZATION.VMWAREVIRTUALMACHINESNAPSHOT': "virtualization.VmwareVirtualMachineSnapshot",
'VIRTUALIZATION.VMWAREVIRTUALNETWORKINTERFACE': "virtualization.VmwareVirtualNetworkInterface",
'VIRTUALIZATION.VMWAREVIRTUALSWITCH': "virtualization.VmwareVirtualSwitch",
'VMEDIA.POLICY': "vmedia.Policy",
@@ -817,12 +828,14 @@ class BiosBootModeRelationship(ModelComposed):
'WORKFLOW.TASKDEFINITION': "workflow.TaskDefinition",
'WORKFLOW.TASKINFO': "workflow.TaskInfo",
'WORKFLOW.TASKMETADATA': "workflow.TaskMetadata",
+ 'WORKFLOW.TASKNOTIFICATION': "workflow.TaskNotification",
'WORKFLOW.TEMPLATEEVALUATION': "workflow.TemplateEvaluation",
'WORKFLOW.TEMPLATEFUNCTIONMETA': "workflow.TemplateFunctionMeta",
'WORKFLOW.WORKFLOWDEFINITION': "workflow.WorkflowDefinition",
'WORKFLOW.WORKFLOWINFO': "workflow.WorkflowInfo",
'WORKFLOW.WORKFLOWMETA': "workflow.WorkflowMeta",
'WORKFLOW.WORKFLOWMETADATA': "workflow.WorkflowMetadata",
+ 'WORKFLOW.WORKFLOWNOTIFICATION': "workflow.WorkflowNotification",
},
}
diff --git a/intersight/model/bios_boot_mode_response.py b/intersight/model/bios_boot_mode_response.py
index a4c2647659..d6dce96369 100644
--- a/intersight/model/bios_boot_mode_response.py
+++ b/intersight/model/bios_boot_mode_response.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/bios_policy.py b/intersight/model/bios_policy.py
index e71a02fc72..047370eff6 100644
--- a/intersight/model/bios_policy.py
+++ b/intersight/model/bios_policy.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/bios_policy_all_of.py b/intersight/model/bios_policy_all_of.py
index ecb56de802..6592e6bcf6 100644
--- a/intersight/model/bios_policy_all_of.py
+++ b/intersight/model/bios_policy_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/bios_policy_list.py b/intersight/model/bios_policy_list.py
index 87e06e14ac..8b98b85080 100644
--- a/intersight/model/bios_policy_list.py
+++ b/intersight/model/bios_policy_list.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/bios_policy_list_all_of.py b/intersight/model/bios_policy_list_all_of.py
index c729281963..759aac6c1f 100644
--- a/intersight/model/bios_policy_list_all_of.py
+++ b/intersight/model/bios_policy_list_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/bios_policy_response.py b/intersight/model/bios_policy_response.py
index 5783773498..55d4c9db6d 100644
--- a/intersight/model/bios_policy_response.py
+++ b/intersight/model/bios_policy_response.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/bios_system_boot_order.py b/intersight/model/bios_system_boot_order.py
index e37be7307f..77bb9e39a4 100644
--- a/intersight/model/bios_system_boot_order.py
+++ b/intersight/model/bios_system_boot_order.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/bios_system_boot_order_all_of.py b/intersight/model/bios_system_boot_order_all_of.py
index a9f42d05ed..5e0f17314b 100644
--- a/intersight/model/bios_system_boot_order_all_of.py
+++ b/intersight/model/bios_system_boot_order_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/bios_system_boot_order_list.py b/intersight/model/bios_system_boot_order_list.py
index 29f2c2b372..d08ebbbd50 100644
--- a/intersight/model/bios_system_boot_order_list.py
+++ b/intersight/model/bios_system_boot_order_list.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/bios_system_boot_order_list_all_of.py b/intersight/model/bios_system_boot_order_list_all_of.py
index 79ca08032e..0cd55e819e 100644
--- a/intersight/model/bios_system_boot_order_list_all_of.py
+++ b/intersight/model/bios_system_boot_order_list_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/bios_system_boot_order_relationship.py b/intersight/model/bios_system_boot_order_relationship.py
index 66b24ed939..c17d782b70 100644
--- a/intersight/model/bios_system_boot_order_relationship.py
+++ b/intersight/model/bios_system_boot_order_relationship.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
@@ -87,6 +87,8 @@ class BiosSystemBootOrderRelationship(ModelComposed):
},
('object_type',): {
'AAA.AUDITRECORD': "aaa.AuditRecord",
+ 'AAA.RETENTIONCONFIG': "aaa.RetentionConfig",
+ 'AAA.RETENTIONPOLICY': "aaa.RetentionPolicy",
'ACCESS.POLICY': "access.Policy",
'ADAPTER.CONFIGPOLICY': "adapter.ConfigPolicy",
'ADAPTER.EXTETHINTERFACE': "adapter.ExtEthInterface",
@@ -103,6 +105,7 @@ class BiosSystemBootOrderRelationship(ModelComposed):
'APPLIANCE.DATAEXPORTPOLICY': "appliance.DataExportPolicy",
'APPLIANCE.DEVICECERTIFICATE': "appliance.DeviceCertificate",
'APPLIANCE.DEVICECLAIM': "appliance.DeviceClaim",
+ 'APPLIANCE.DEVICEUPGRADEPOLICY': "appliance.DeviceUpgradePolicy",
'APPLIANCE.DIAGSETTING': "appliance.DiagSetting",
'APPLIANCE.EXTERNALSYSLOGSETTING': "appliance.ExternalSyslogSetting",
'APPLIANCE.FILESYSTEMSTATUS': "appliance.FileSystemStatus",
@@ -151,9 +154,12 @@ class BiosSystemBootOrderRelationship(ModelComposed):
'BOOT.UEFISHELLDEVICE': "boot.UefiShellDevice",
'BOOT.USBDEVICE': "boot.UsbDevice",
'BOOT.VMEDIADEVICE': "boot.VmediaDevice",
+ 'BULK.EXPORT': "bulk.Export",
+ 'BULK.EXPORTEDITEM': "bulk.ExportedItem",
'BULK.MOCLONER': "bulk.MoCloner",
'BULK.MOMERGER': "bulk.MoMerger",
'BULK.REQUEST': "bulk.Request",
+ 'BULK.SUBREQUESTOBJ': "bulk.SubRequestObj",
'CAPABILITY.ADAPTERUNITDESCRIPTOR': "capability.AdapterUnitDescriptor",
'CAPABILITY.CATALOG': "capability.Catalog",
'CAPABILITY.CHASSISDESCRIPTOR': "capability.ChassisDescriptor",
@@ -217,10 +223,6 @@ class BiosSystemBootOrderRelationship(ModelComposed):
'COND.HCLSTATUS': "cond.HclStatus",
'COND.HCLSTATUSDETAIL': "cond.HclStatusDetail",
'COND.HCLSTATUSJOB': "cond.HclStatusJob",
- 'CONFIG.EXPORTEDITEM': "config.ExportedItem",
- 'CONFIG.EXPORTER': "config.Exporter",
- 'CONFIG.IMPORTEDITEM': "config.ImportedItem",
- 'CONFIG.IMPORTER': "config.Importer",
'CONNECTORPACK.CONNECTORPACKUPGRADE': "connectorpack.ConnectorPackUpgrade",
'CONNECTORPACK.UPGRADEIMPACT': "connectorpack.UpgradeImpact",
'CRD.CUSTOMRESOURCE': "crd.CustomResource",
@@ -229,6 +231,7 @@ class BiosSystemBootOrderRelationship(ModelComposed):
'EQUIPMENT.CHASSISIDENTITY': "equipment.ChassisIdentity",
'EQUIPMENT.CHASSISOPERATION': "equipment.ChassisOperation",
'EQUIPMENT.DEVICESUMMARY': "equipment.DeviceSummary",
+ 'EQUIPMENT.EXPANDERMODULE': "equipment.ExpanderModule",
'EQUIPMENT.FAN': "equipment.Fan",
'EQUIPMENT.FANCONTROL': "equipment.FanControl",
'EQUIPMENT.FANMODULE': "equipment.FanModule",
@@ -477,6 +480,7 @@ class BiosSystemBootOrderRelationship(ModelComposed):
'KUBERNETES.ADDONDEFINITION': "kubernetes.AddonDefinition",
'KUBERNETES.ADDONPOLICY': "kubernetes.AddonPolicy",
'KUBERNETES.ADDONREPOSITORY': "kubernetes.AddonRepository",
+ 'KUBERNETES.BAREMETALNODEPROFILE': "kubernetes.BaremetalNodeProfile",
'KUBERNETES.CATALOG': "kubernetes.Catalog",
'KUBERNETES.CLUSTER': "kubernetes.Cluster",
'KUBERNETES.CLUSTERADDONPROFILE': "kubernetes.ClusterAddonProfile",
@@ -646,6 +650,11 @@ class BiosSystemBootOrderRelationship(ModelComposed):
'RESOURCE.LICENSERESOURCECOUNT': "resource.LicenseResourceCount",
'RESOURCE.MEMBERSHIP': "resource.Membership",
'RESOURCE.MEMBERSHIPHOLDER': "resource.MembershipHolder",
+ 'RESOURCEPOOL.LEASE': "resourcepool.Lease",
+ 'RESOURCEPOOL.LEASERESOURCE': "resourcepool.LeaseResource",
+ 'RESOURCEPOOL.POOL': "resourcepool.Pool",
+ 'RESOURCEPOOL.POOLMEMBER': "resourcepool.PoolMember",
+ 'RESOURCEPOOL.UNIVERSE': "resourcepool.Universe",
'RPROXY.REVERSEPROXY': "rproxy.ReverseProxy",
'SDCARD.POLICY': "sdcard.Policy",
'SDWAN.PROFILE': "sdwan.Profile",
@@ -761,6 +770,7 @@ class BiosSystemBootOrderRelationship(ModelComposed):
'TASK.NETAPPSCOPEDINVENTORY': "task.NetAppScopedInventory",
'TASK.PUBLICCLOUDSCOPEDINVENTORY': "task.PublicCloudScopedInventory",
'TASK.PURESCOPEDINVENTORY': "task.PureScopedInventory",
+ 'TASK.SERVERSCOPEDINVENTORY': "task.ServerScopedInventory",
'TECHSUPPORTMANAGEMENT.COLLECTIONCONTROLPOLICY': "techsupportmanagement.CollectionControlPolicy",
'TECHSUPPORTMANAGEMENT.DOWNLOAD': "techsupportmanagement.Download",
'TECHSUPPORTMANAGEMENT.TECHSUPPORTBUNDLE': "techsupportmanagement.TechSupportBundle",
@@ -792,6 +802,7 @@ class BiosSystemBootOrderRelationship(ModelComposed):
'VIRTUALIZATION.VMWAREVCENTER': "virtualization.VmwareVcenter",
'VIRTUALIZATION.VMWAREVIRTUALDISK': "virtualization.VmwareVirtualDisk",
'VIRTUALIZATION.VMWAREVIRTUALMACHINE': "virtualization.VmwareVirtualMachine",
+ 'VIRTUALIZATION.VMWAREVIRTUALMACHINESNAPSHOT': "virtualization.VmwareVirtualMachineSnapshot",
'VIRTUALIZATION.VMWAREVIRTUALNETWORKINTERFACE': "virtualization.VmwareVirtualNetworkInterface",
'VIRTUALIZATION.VMWAREVIRTUALSWITCH': "virtualization.VmwareVirtualSwitch",
'VMEDIA.POLICY': "vmedia.Policy",
@@ -824,12 +835,14 @@ class BiosSystemBootOrderRelationship(ModelComposed):
'WORKFLOW.TASKDEFINITION': "workflow.TaskDefinition",
'WORKFLOW.TASKINFO': "workflow.TaskInfo",
'WORKFLOW.TASKMETADATA': "workflow.TaskMetadata",
+ 'WORKFLOW.TASKNOTIFICATION': "workflow.TaskNotification",
'WORKFLOW.TEMPLATEEVALUATION': "workflow.TemplateEvaluation",
'WORKFLOW.TEMPLATEFUNCTIONMETA': "workflow.TemplateFunctionMeta",
'WORKFLOW.WORKFLOWDEFINITION': "workflow.WorkflowDefinition",
'WORKFLOW.WORKFLOWINFO': "workflow.WorkflowInfo",
'WORKFLOW.WORKFLOWMETA': "workflow.WorkflowMeta",
'WORKFLOW.WORKFLOWMETADATA': "workflow.WorkflowMetadata",
+ 'WORKFLOW.WORKFLOWNOTIFICATION': "workflow.WorkflowNotification",
},
}
diff --git a/intersight/model/bios_system_boot_order_response.py b/intersight/model/bios_system_boot_order_response.py
index fe0172d764..848119a301 100644
--- a/intersight/model/bios_system_boot_order_response.py
+++ b/intersight/model/bios_system_boot_order_response.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/bios_token_settings.py b/intersight/model/bios_token_settings.py
index c11e99b8ab..e0aa95d808 100644
--- a/intersight/model/bios_token_settings.py
+++ b/intersight/model/bios_token_settings.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/bios_token_settings_all_of.py b/intersight/model/bios_token_settings_all_of.py
index cb4bffe774..e76ef70921 100644
--- a/intersight/model/bios_token_settings_all_of.py
+++ b/intersight/model/bios_token_settings_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/bios_token_settings_list.py b/intersight/model/bios_token_settings_list.py
index 2646203adc..dbce8f5fc5 100644
--- a/intersight/model/bios_token_settings_list.py
+++ b/intersight/model/bios_token_settings_list.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/bios_token_settings_list_all_of.py b/intersight/model/bios_token_settings_list_all_of.py
index 28db80f4ef..91adc6ddf7 100644
--- a/intersight/model/bios_token_settings_list_all_of.py
+++ b/intersight/model/bios_token_settings_list_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/bios_token_settings_relationship.py b/intersight/model/bios_token_settings_relationship.py
index 8b3dafed13..2185f5e91d 100644
--- a/intersight/model/bios_token_settings_relationship.py
+++ b/intersight/model/bios_token_settings_relationship.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
@@ -80,6 +80,8 @@ class BiosTokenSettingsRelationship(ModelComposed):
},
('object_type',): {
'AAA.AUDITRECORD': "aaa.AuditRecord",
+ 'AAA.RETENTIONCONFIG': "aaa.RetentionConfig",
+ 'AAA.RETENTIONPOLICY': "aaa.RetentionPolicy",
'ACCESS.POLICY': "access.Policy",
'ADAPTER.CONFIGPOLICY': "adapter.ConfigPolicy",
'ADAPTER.EXTETHINTERFACE': "adapter.ExtEthInterface",
@@ -96,6 +98,7 @@ class BiosTokenSettingsRelationship(ModelComposed):
'APPLIANCE.DATAEXPORTPOLICY': "appliance.DataExportPolicy",
'APPLIANCE.DEVICECERTIFICATE': "appliance.DeviceCertificate",
'APPLIANCE.DEVICECLAIM': "appliance.DeviceClaim",
+ 'APPLIANCE.DEVICEUPGRADEPOLICY': "appliance.DeviceUpgradePolicy",
'APPLIANCE.DIAGSETTING': "appliance.DiagSetting",
'APPLIANCE.EXTERNALSYSLOGSETTING': "appliance.ExternalSyslogSetting",
'APPLIANCE.FILESYSTEMSTATUS': "appliance.FileSystemStatus",
@@ -144,9 +147,12 @@ class BiosTokenSettingsRelationship(ModelComposed):
'BOOT.UEFISHELLDEVICE': "boot.UefiShellDevice",
'BOOT.USBDEVICE': "boot.UsbDevice",
'BOOT.VMEDIADEVICE': "boot.VmediaDevice",
+ 'BULK.EXPORT': "bulk.Export",
+ 'BULK.EXPORTEDITEM': "bulk.ExportedItem",
'BULK.MOCLONER': "bulk.MoCloner",
'BULK.MOMERGER': "bulk.MoMerger",
'BULK.REQUEST': "bulk.Request",
+ 'BULK.SUBREQUESTOBJ': "bulk.SubRequestObj",
'CAPABILITY.ADAPTERUNITDESCRIPTOR': "capability.AdapterUnitDescriptor",
'CAPABILITY.CATALOG': "capability.Catalog",
'CAPABILITY.CHASSISDESCRIPTOR': "capability.ChassisDescriptor",
@@ -210,10 +216,6 @@ class BiosTokenSettingsRelationship(ModelComposed):
'COND.HCLSTATUS': "cond.HclStatus",
'COND.HCLSTATUSDETAIL': "cond.HclStatusDetail",
'COND.HCLSTATUSJOB': "cond.HclStatusJob",
- 'CONFIG.EXPORTEDITEM': "config.ExportedItem",
- 'CONFIG.EXPORTER': "config.Exporter",
- 'CONFIG.IMPORTEDITEM': "config.ImportedItem",
- 'CONFIG.IMPORTER': "config.Importer",
'CONNECTORPACK.CONNECTORPACKUPGRADE': "connectorpack.ConnectorPackUpgrade",
'CONNECTORPACK.UPGRADEIMPACT': "connectorpack.UpgradeImpact",
'CRD.CUSTOMRESOURCE': "crd.CustomResource",
@@ -222,6 +224,7 @@ class BiosTokenSettingsRelationship(ModelComposed):
'EQUIPMENT.CHASSISIDENTITY': "equipment.ChassisIdentity",
'EQUIPMENT.CHASSISOPERATION': "equipment.ChassisOperation",
'EQUIPMENT.DEVICESUMMARY': "equipment.DeviceSummary",
+ 'EQUIPMENT.EXPANDERMODULE': "equipment.ExpanderModule",
'EQUIPMENT.FAN': "equipment.Fan",
'EQUIPMENT.FANCONTROL': "equipment.FanControl",
'EQUIPMENT.FANMODULE': "equipment.FanModule",
@@ -470,6 +473,7 @@ class BiosTokenSettingsRelationship(ModelComposed):
'KUBERNETES.ADDONDEFINITION': "kubernetes.AddonDefinition",
'KUBERNETES.ADDONPOLICY': "kubernetes.AddonPolicy",
'KUBERNETES.ADDONREPOSITORY': "kubernetes.AddonRepository",
+ 'KUBERNETES.BAREMETALNODEPROFILE': "kubernetes.BaremetalNodeProfile",
'KUBERNETES.CATALOG': "kubernetes.Catalog",
'KUBERNETES.CLUSTER': "kubernetes.Cluster",
'KUBERNETES.CLUSTERADDONPROFILE': "kubernetes.ClusterAddonProfile",
@@ -639,6 +643,11 @@ class BiosTokenSettingsRelationship(ModelComposed):
'RESOURCE.LICENSERESOURCECOUNT': "resource.LicenseResourceCount",
'RESOURCE.MEMBERSHIP': "resource.Membership",
'RESOURCE.MEMBERSHIPHOLDER': "resource.MembershipHolder",
+ 'RESOURCEPOOL.LEASE': "resourcepool.Lease",
+ 'RESOURCEPOOL.LEASERESOURCE': "resourcepool.LeaseResource",
+ 'RESOURCEPOOL.POOL': "resourcepool.Pool",
+ 'RESOURCEPOOL.POOLMEMBER': "resourcepool.PoolMember",
+ 'RESOURCEPOOL.UNIVERSE': "resourcepool.Universe",
'RPROXY.REVERSEPROXY': "rproxy.ReverseProxy",
'SDCARD.POLICY': "sdcard.Policy",
'SDWAN.PROFILE': "sdwan.Profile",
@@ -754,6 +763,7 @@ class BiosTokenSettingsRelationship(ModelComposed):
'TASK.NETAPPSCOPEDINVENTORY': "task.NetAppScopedInventory",
'TASK.PUBLICCLOUDSCOPEDINVENTORY': "task.PublicCloudScopedInventory",
'TASK.PURESCOPEDINVENTORY': "task.PureScopedInventory",
+ 'TASK.SERVERSCOPEDINVENTORY': "task.ServerScopedInventory",
'TECHSUPPORTMANAGEMENT.COLLECTIONCONTROLPOLICY': "techsupportmanagement.CollectionControlPolicy",
'TECHSUPPORTMANAGEMENT.DOWNLOAD': "techsupportmanagement.Download",
'TECHSUPPORTMANAGEMENT.TECHSUPPORTBUNDLE': "techsupportmanagement.TechSupportBundle",
@@ -785,6 +795,7 @@ class BiosTokenSettingsRelationship(ModelComposed):
'VIRTUALIZATION.VMWAREVCENTER': "virtualization.VmwareVcenter",
'VIRTUALIZATION.VMWAREVIRTUALDISK': "virtualization.VmwareVirtualDisk",
'VIRTUALIZATION.VMWAREVIRTUALMACHINE': "virtualization.VmwareVirtualMachine",
+ 'VIRTUALIZATION.VMWAREVIRTUALMACHINESNAPSHOT': "virtualization.VmwareVirtualMachineSnapshot",
'VIRTUALIZATION.VMWAREVIRTUALNETWORKINTERFACE': "virtualization.VmwareVirtualNetworkInterface",
'VIRTUALIZATION.VMWAREVIRTUALSWITCH': "virtualization.VmwareVirtualSwitch",
'VMEDIA.POLICY': "vmedia.Policy",
@@ -817,12 +828,14 @@ class BiosTokenSettingsRelationship(ModelComposed):
'WORKFLOW.TASKDEFINITION': "workflow.TaskDefinition",
'WORKFLOW.TASKINFO': "workflow.TaskInfo",
'WORKFLOW.TASKMETADATA': "workflow.TaskMetadata",
+ 'WORKFLOW.TASKNOTIFICATION': "workflow.TaskNotification",
'WORKFLOW.TEMPLATEEVALUATION': "workflow.TemplateEvaluation",
'WORKFLOW.TEMPLATEFUNCTIONMETA': "workflow.TemplateFunctionMeta",
'WORKFLOW.WORKFLOWDEFINITION': "workflow.WorkflowDefinition",
'WORKFLOW.WORKFLOWINFO': "workflow.WorkflowInfo",
'WORKFLOW.WORKFLOWMETA': "workflow.WorkflowMeta",
'WORKFLOW.WORKFLOWMETADATA': "workflow.WorkflowMetadata",
+ 'WORKFLOW.WORKFLOWNOTIFICATION': "workflow.WorkflowNotification",
},
}
diff --git a/intersight/model/bios_token_settings_response.py b/intersight/model/bios_token_settings_response.py
index f3bbe37c10..2a088ce4ea 100644
--- a/intersight/model/bios_token_settings_response.py
+++ b/intersight/model/bios_token_settings_response.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/bios_unit.py b/intersight/model/bios_unit.py
index 0cfceea46b..ace3f432e5 100644
--- a/intersight/model/bios_unit.py
+++ b/intersight/model/bios_unit.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/bios_unit_all_of.py b/intersight/model/bios_unit_all_of.py
index a925a0234b..89772b1467 100644
--- a/intersight/model/bios_unit_all_of.py
+++ b/intersight/model/bios_unit_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/bios_unit_list.py b/intersight/model/bios_unit_list.py
index 5195151c14..3d4aaa986c 100644
--- a/intersight/model/bios_unit_list.py
+++ b/intersight/model/bios_unit_list.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/bios_unit_list_all_of.py b/intersight/model/bios_unit_list_all_of.py
index 61b7d1a0f3..5eed4f46c5 100644
--- a/intersight/model/bios_unit_list_all_of.py
+++ b/intersight/model/bios_unit_list_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/bios_unit_relationship.py b/intersight/model/bios_unit_relationship.py
index d41b4f3e86..60681b0768 100644
--- a/intersight/model/bios_unit_relationship.py
+++ b/intersight/model/bios_unit_relationship.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
@@ -86,6 +86,8 @@ class BiosUnitRelationship(ModelComposed):
},
('object_type',): {
'AAA.AUDITRECORD': "aaa.AuditRecord",
+ 'AAA.RETENTIONCONFIG': "aaa.RetentionConfig",
+ 'AAA.RETENTIONPOLICY': "aaa.RetentionPolicy",
'ACCESS.POLICY': "access.Policy",
'ADAPTER.CONFIGPOLICY': "adapter.ConfigPolicy",
'ADAPTER.EXTETHINTERFACE': "adapter.ExtEthInterface",
@@ -102,6 +104,7 @@ class BiosUnitRelationship(ModelComposed):
'APPLIANCE.DATAEXPORTPOLICY': "appliance.DataExportPolicy",
'APPLIANCE.DEVICECERTIFICATE': "appliance.DeviceCertificate",
'APPLIANCE.DEVICECLAIM': "appliance.DeviceClaim",
+ 'APPLIANCE.DEVICEUPGRADEPOLICY': "appliance.DeviceUpgradePolicy",
'APPLIANCE.DIAGSETTING': "appliance.DiagSetting",
'APPLIANCE.EXTERNALSYSLOGSETTING': "appliance.ExternalSyslogSetting",
'APPLIANCE.FILESYSTEMSTATUS': "appliance.FileSystemStatus",
@@ -150,9 +153,12 @@ class BiosUnitRelationship(ModelComposed):
'BOOT.UEFISHELLDEVICE': "boot.UefiShellDevice",
'BOOT.USBDEVICE': "boot.UsbDevice",
'BOOT.VMEDIADEVICE': "boot.VmediaDevice",
+ 'BULK.EXPORT': "bulk.Export",
+ 'BULK.EXPORTEDITEM': "bulk.ExportedItem",
'BULK.MOCLONER': "bulk.MoCloner",
'BULK.MOMERGER': "bulk.MoMerger",
'BULK.REQUEST': "bulk.Request",
+ 'BULK.SUBREQUESTOBJ': "bulk.SubRequestObj",
'CAPABILITY.ADAPTERUNITDESCRIPTOR': "capability.AdapterUnitDescriptor",
'CAPABILITY.CATALOG': "capability.Catalog",
'CAPABILITY.CHASSISDESCRIPTOR': "capability.ChassisDescriptor",
@@ -216,10 +222,6 @@ class BiosUnitRelationship(ModelComposed):
'COND.HCLSTATUS': "cond.HclStatus",
'COND.HCLSTATUSDETAIL': "cond.HclStatusDetail",
'COND.HCLSTATUSJOB': "cond.HclStatusJob",
- 'CONFIG.EXPORTEDITEM': "config.ExportedItem",
- 'CONFIG.EXPORTER': "config.Exporter",
- 'CONFIG.IMPORTEDITEM': "config.ImportedItem",
- 'CONFIG.IMPORTER': "config.Importer",
'CONNECTORPACK.CONNECTORPACKUPGRADE': "connectorpack.ConnectorPackUpgrade",
'CONNECTORPACK.UPGRADEIMPACT': "connectorpack.UpgradeImpact",
'CRD.CUSTOMRESOURCE': "crd.CustomResource",
@@ -228,6 +230,7 @@ class BiosUnitRelationship(ModelComposed):
'EQUIPMENT.CHASSISIDENTITY': "equipment.ChassisIdentity",
'EQUIPMENT.CHASSISOPERATION': "equipment.ChassisOperation",
'EQUIPMENT.DEVICESUMMARY': "equipment.DeviceSummary",
+ 'EQUIPMENT.EXPANDERMODULE': "equipment.ExpanderModule",
'EQUIPMENT.FAN': "equipment.Fan",
'EQUIPMENT.FANCONTROL': "equipment.FanControl",
'EQUIPMENT.FANMODULE': "equipment.FanModule",
@@ -476,6 +479,7 @@ class BiosUnitRelationship(ModelComposed):
'KUBERNETES.ADDONDEFINITION': "kubernetes.AddonDefinition",
'KUBERNETES.ADDONPOLICY': "kubernetes.AddonPolicy",
'KUBERNETES.ADDONREPOSITORY': "kubernetes.AddonRepository",
+ 'KUBERNETES.BAREMETALNODEPROFILE': "kubernetes.BaremetalNodeProfile",
'KUBERNETES.CATALOG': "kubernetes.Catalog",
'KUBERNETES.CLUSTER': "kubernetes.Cluster",
'KUBERNETES.CLUSTERADDONPROFILE': "kubernetes.ClusterAddonProfile",
@@ -645,6 +649,11 @@ class BiosUnitRelationship(ModelComposed):
'RESOURCE.LICENSERESOURCECOUNT': "resource.LicenseResourceCount",
'RESOURCE.MEMBERSHIP': "resource.Membership",
'RESOURCE.MEMBERSHIPHOLDER': "resource.MembershipHolder",
+ 'RESOURCEPOOL.LEASE': "resourcepool.Lease",
+ 'RESOURCEPOOL.LEASERESOURCE': "resourcepool.LeaseResource",
+ 'RESOURCEPOOL.POOL': "resourcepool.Pool",
+ 'RESOURCEPOOL.POOLMEMBER': "resourcepool.PoolMember",
+ 'RESOURCEPOOL.UNIVERSE': "resourcepool.Universe",
'RPROXY.REVERSEPROXY': "rproxy.ReverseProxy",
'SDCARD.POLICY': "sdcard.Policy",
'SDWAN.PROFILE': "sdwan.Profile",
@@ -760,6 +769,7 @@ class BiosUnitRelationship(ModelComposed):
'TASK.NETAPPSCOPEDINVENTORY': "task.NetAppScopedInventory",
'TASK.PUBLICCLOUDSCOPEDINVENTORY': "task.PublicCloudScopedInventory",
'TASK.PURESCOPEDINVENTORY': "task.PureScopedInventory",
+ 'TASK.SERVERSCOPEDINVENTORY': "task.ServerScopedInventory",
'TECHSUPPORTMANAGEMENT.COLLECTIONCONTROLPOLICY': "techsupportmanagement.CollectionControlPolicy",
'TECHSUPPORTMANAGEMENT.DOWNLOAD': "techsupportmanagement.Download",
'TECHSUPPORTMANAGEMENT.TECHSUPPORTBUNDLE': "techsupportmanagement.TechSupportBundle",
@@ -791,6 +801,7 @@ class BiosUnitRelationship(ModelComposed):
'VIRTUALIZATION.VMWAREVCENTER': "virtualization.VmwareVcenter",
'VIRTUALIZATION.VMWAREVIRTUALDISK': "virtualization.VmwareVirtualDisk",
'VIRTUALIZATION.VMWAREVIRTUALMACHINE': "virtualization.VmwareVirtualMachine",
+ 'VIRTUALIZATION.VMWAREVIRTUALMACHINESNAPSHOT': "virtualization.VmwareVirtualMachineSnapshot",
'VIRTUALIZATION.VMWAREVIRTUALNETWORKINTERFACE': "virtualization.VmwareVirtualNetworkInterface",
'VIRTUALIZATION.VMWAREVIRTUALSWITCH': "virtualization.VmwareVirtualSwitch",
'VMEDIA.POLICY': "vmedia.Policy",
@@ -823,12 +834,14 @@ class BiosUnitRelationship(ModelComposed):
'WORKFLOW.TASKDEFINITION': "workflow.TaskDefinition",
'WORKFLOW.TASKINFO': "workflow.TaskInfo",
'WORKFLOW.TASKMETADATA': "workflow.TaskMetadata",
+ 'WORKFLOW.TASKNOTIFICATION': "workflow.TaskNotification",
'WORKFLOW.TEMPLATEEVALUATION': "workflow.TemplateEvaluation",
'WORKFLOW.TEMPLATEFUNCTIONMETA': "workflow.TemplateFunctionMeta",
'WORKFLOW.WORKFLOWDEFINITION': "workflow.WorkflowDefinition",
'WORKFLOW.WORKFLOWINFO': "workflow.WorkflowInfo",
'WORKFLOW.WORKFLOWMETA': "workflow.WorkflowMeta",
'WORKFLOW.WORKFLOWMETADATA': "workflow.WorkflowMetadata",
+ 'WORKFLOW.WORKFLOWNOTIFICATION': "workflow.WorkflowNotification",
},
}
diff --git a/intersight/model/bios_unit_response.py b/intersight/model/bios_unit_response.py
index 5d33ccd3d2..2af2342223 100644
--- a/intersight/model/bios_unit_response.py
+++ b/intersight/model/bios_unit_response.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/bios_vf_select_memory_ras_configuration.py b/intersight/model/bios_vf_select_memory_ras_configuration.py
index 84e951c721..2c96c449de 100644
--- a/intersight/model/bios_vf_select_memory_ras_configuration.py
+++ b/intersight/model/bios_vf_select_memory_ras_configuration.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/bios_vf_select_memory_ras_configuration_all_of.py b/intersight/model/bios_vf_select_memory_ras_configuration_all_of.py
index f7f5512d56..96a7ea4cc2 100644
--- a/intersight/model/bios_vf_select_memory_ras_configuration_all_of.py
+++ b/intersight/model/bios_vf_select_memory_ras_configuration_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/bios_vf_select_memory_ras_configuration_list.py b/intersight/model/bios_vf_select_memory_ras_configuration_list.py
index 74c739025b..222a53c4c9 100644
--- a/intersight/model/bios_vf_select_memory_ras_configuration_list.py
+++ b/intersight/model/bios_vf_select_memory_ras_configuration_list.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/bios_vf_select_memory_ras_configuration_list_all_of.py b/intersight/model/bios_vf_select_memory_ras_configuration_list_all_of.py
index 56db489962..6d14f3cffd 100644
--- a/intersight/model/bios_vf_select_memory_ras_configuration_list_all_of.py
+++ b/intersight/model/bios_vf_select_memory_ras_configuration_list_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/bios_vf_select_memory_ras_configuration_relationship.py b/intersight/model/bios_vf_select_memory_ras_configuration_relationship.py
index 10ae4fb751..0857c30d7b 100644
--- a/intersight/model/bios_vf_select_memory_ras_configuration_relationship.py
+++ b/intersight/model/bios_vf_select_memory_ras_configuration_relationship.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
@@ -80,6 +80,8 @@ class BiosVfSelectMemoryRasConfigurationRelationship(ModelComposed):
},
('object_type',): {
'AAA.AUDITRECORD': "aaa.AuditRecord",
+ 'AAA.RETENTIONCONFIG': "aaa.RetentionConfig",
+ 'AAA.RETENTIONPOLICY': "aaa.RetentionPolicy",
'ACCESS.POLICY': "access.Policy",
'ADAPTER.CONFIGPOLICY': "adapter.ConfigPolicy",
'ADAPTER.EXTETHINTERFACE': "adapter.ExtEthInterface",
@@ -96,6 +98,7 @@ class BiosVfSelectMemoryRasConfigurationRelationship(ModelComposed):
'APPLIANCE.DATAEXPORTPOLICY': "appliance.DataExportPolicy",
'APPLIANCE.DEVICECERTIFICATE': "appliance.DeviceCertificate",
'APPLIANCE.DEVICECLAIM': "appliance.DeviceClaim",
+ 'APPLIANCE.DEVICEUPGRADEPOLICY': "appliance.DeviceUpgradePolicy",
'APPLIANCE.DIAGSETTING': "appliance.DiagSetting",
'APPLIANCE.EXTERNALSYSLOGSETTING': "appliance.ExternalSyslogSetting",
'APPLIANCE.FILESYSTEMSTATUS': "appliance.FileSystemStatus",
@@ -144,9 +147,12 @@ class BiosVfSelectMemoryRasConfigurationRelationship(ModelComposed):
'BOOT.UEFISHELLDEVICE': "boot.UefiShellDevice",
'BOOT.USBDEVICE': "boot.UsbDevice",
'BOOT.VMEDIADEVICE': "boot.VmediaDevice",
+ 'BULK.EXPORT': "bulk.Export",
+ 'BULK.EXPORTEDITEM': "bulk.ExportedItem",
'BULK.MOCLONER': "bulk.MoCloner",
'BULK.MOMERGER': "bulk.MoMerger",
'BULK.REQUEST': "bulk.Request",
+ 'BULK.SUBREQUESTOBJ': "bulk.SubRequestObj",
'CAPABILITY.ADAPTERUNITDESCRIPTOR': "capability.AdapterUnitDescriptor",
'CAPABILITY.CATALOG': "capability.Catalog",
'CAPABILITY.CHASSISDESCRIPTOR': "capability.ChassisDescriptor",
@@ -210,10 +216,6 @@ class BiosVfSelectMemoryRasConfigurationRelationship(ModelComposed):
'COND.HCLSTATUS': "cond.HclStatus",
'COND.HCLSTATUSDETAIL': "cond.HclStatusDetail",
'COND.HCLSTATUSJOB': "cond.HclStatusJob",
- 'CONFIG.EXPORTEDITEM': "config.ExportedItem",
- 'CONFIG.EXPORTER': "config.Exporter",
- 'CONFIG.IMPORTEDITEM': "config.ImportedItem",
- 'CONFIG.IMPORTER': "config.Importer",
'CONNECTORPACK.CONNECTORPACKUPGRADE': "connectorpack.ConnectorPackUpgrade",
'CONNECTORPACK.UPGRADEIMPACT': "connectorpack.UpgradeImpact",
'CRD.CUSTOMRESOURCE': "crd.CustomResource",
@@ -222,6 +224,7 @@ class BiosVfSelectMemoryRasConfigurationRelationship(ModelComposed):
'EQUIPMENT.CHASSISIDENTITY': "equipment.ChassisIdentity",
'EQUIPMENT.CHASSISOPERATION': "equipment.ChassisOperation",
'EQUIPMENT.DEVICESUMMARY': "equipment.DeviceSummary",
+ 'EQUIPMENT.EXPANDERMODULE': "equipment.ExpanderModule",
'EQUIPMENT.FAN': "equipment.Fan",
'EQUIPMENT.FANCONTROL': "equipment.FanControl",
'EQUIPMENT.FANMODULE': "equipment.FanModule",
@@ -470,6 +473,7 @@ class BiosVfSelectMemoryRasConfigurationRelationship(ModelComposed):
'KUBERNETES.ADDONDEFINITION': "kubernetes.AddonDefinition",
'KUBERNETES.ADDONPOLICY': "kubernetes.AddonPolicy",
'KUBERNETES.ADDONREPOSITORY': "kubernetes.AddonRepository",
+ 'KUBERNETES.BAREMETALNODEPROFILE': "kubernetes.BaremetalNodeProfile",
'KUBERNETES.CATALOG': "kubernetes.Catalog",
'KUBERNETES.CLUSTER': "kubernetes.Cluster",
'KUBERNETES.CLUSTERADDONPROFILE': "kubernetes.ClusterAddonProfile",
@@ -639,6 +643,11 @@ class BiosVfSelectMemoryRasConfigurationRelationship(ModelComposed):
'RESOURCE.LICENSERESOURCECOUNT': "resource.LicenseResourceCount",
'RESOURCE.MEMBERSHIP': "resource.Membership",
'RESOURCE.MEMBERSHIPHOLDER': "resource.MembershipHolder",
+ 'RESOURCEPOOL.LEASE': "resourcepool.Lease",
+ 'RESOURCEPOOL.LEASERESOURCE': "resourcepool.LeaseResource",
+ 'RESOURCEPOOL.POOL': "resourcepool.Pool",
+ 'RESOURCEPOOL.POOLMEMBER': "resourcepool.PoolMember",
+ 'RESOURCEPOOL.UNIVERSE': "resourcepool.Universe",
'RPROXY.REVERSEPROXY': "rproxy.ReverseProxy",
'SDCARD.POLICY': "sdcard.Policy",
'SDWAN.PROFILE': "sdwan.Profile",
@@ -754,6 +763,7 @@ class BiosVfSelectMemoryRasConfigurationRelationship(ModelComposed):
'TASK.NETAPPSCOPEDINVENTORY': "task.NetAppScopedInventory",
'TASK.PUBLICCLOUDSCOPEDINVENTORY': "task.PublicCloudScopedInventory",
'TASK.PURESCOPEDINVENTORY': "task.PureScopedInventory",
+ 'TASK.SERVERSCOPEDINVENTORY': "task.ServerScopedInventory",
'TECHSUPPORTMANAGEMENT.COLLECTIONCONTROLPOLICY': "techsupportmanagement.CollectionControlPolicy",
'TECHSUPPORTMANAGEMENT.DOWNLOAD': "techsupportmanagement.Download",
'TECHSUPPORTMANAGEMENT.TECHSUPPORTBUNDLE': "techsupportmanagement.TechSupportBundle",
@@ -785,6 +795,7 @@ class BiosVfSelectMemoryRasConfigurationRelationship(ModelComposed):
'VIRTUALIZATION.VMWAREVCENTER': "virtualization.VmwareVcenter",
'VIRTUALIZATION.VMWAREVIRTUALDISK': "virtualization.VmwareVirtualDisk",
'VIRTUALIZATION.VMWAREVIRTUALMACHINE': "virtualization.VmwareVirtualMachine",
+ 'VIRTUALIZATION.VMWAREVIRTUALMACHINESNAPSHOT': "virtualization.VmwareVirtualMachineSnapshot",
'VIRTUALIZATION.VMWAREVIRTUALNETWORKINTERFACE': "virtualization.VmwareVirtualNetworkInterface",
'VIRTUALIZATION.VMWAREVIRTUALSWITCH': "virtualization.VmwareVirtualSwitch",
'VMEDIA.POLICY': "vmedia.Policy",
@@ -817,12 +828,14 @@ class BiosVfSelectMemoryRasConfigurationRelationship(ModelComposed):
'WORKFLOW.TASKDEFINITION': "workflow.TaskDefinition",
'WORKFLOW.TASKINFO': "workflow.TaskInfo",
'WORKFLOW.TASKMETADATA': "workflow.TaskMetadata",
+ 'WORKFLOW.TASKNOTIFICATION': "workflow.TaskNotification",
'WORKFLOW.TEMPLATEEVALUATION': "workflow.TemplateEvaluation",
'WORKFLOW.TEMPLATEFUNCTIONMETA': "workflow.TemplateFunctionMeta",
'WORKFLOW.WORKFLOWDEFINITION': "workflow.WorkflowDefinition",
'WORKFLOW.WORKFLOWINFO': "workflow.WorkflowInfo",
'WORKFLOW.WORKFLOWMETA': "workflow.WorkflowMeta",
'WORKFLOW.WORKFLOWMETADATA': "workflow.WorkflowMetadata",
+ 'WORKFLOW.WORKFLOWNOTIFICATION': "workflow.WorkflowNotification",
},
}
diff --git a/intersight/model/bios_vf_select_memory_ras_configuration_response.py b/intersight/model/bios_vf_select_memory_ras_configuration_response.py
index 4f97e24530..749394bd3c 100644
--- a/intersight/model/bios_vf_select_memory_ras_configuration_response.py
+++ b/intersight/model/bios_vf_select_memory_ras_configuration_response.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/boot_bootloader.py b/intersight/model/boot_bootloader.py
index 4280535f32..a5c9d14a5d 100644
--- a/intersight/model/boot_bootloader.py
+++ b/intersight/model/boot_bootloader.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/boot_bootloader_all_of.py b/intersight/model/boot_bootloader_all_of.py
index ac55b6e521..f148172700 100644
--- a/intersight/model/boot_bootloader_all_of.py
+++ b/intersight/model/boot_bootloader_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/boot_cdd_device.py b/intersight/model/boot_cdd_device.py
index 2af7dd8dc2..fddc4dba50 100644
--- a/intersight/model/boot_cdd_device.py
+++ b/intersight/model/boot_cdd_device.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/boot_cdd_device_all_of.py b/intersight/model/boot_cdd_device_all_of.py
index 9cb780c452..825be5fd99 100644
--- a/intersight/model/boot_cdd_device_all_of.py
+++ b/intersight/model/boot_cdd_device_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/boot_cdd_device_list.py b/intersight/model/boot_cdd_device_list.py
index a98124c390..1ea42efefb 100644
--- a/intersight/model/boot_cdd_device_list.py
+++ b/intersight/model/boot_cdd_device_list.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/boot_cdd_device_list_all_of.py b/intersight/model/boot_cdd_device_list_all_of.py
index 5ebbe308cd..a3c6405a9b 100644
--- a/intersight/model/boot_cdd_device_list_all_of.py
+++ b/intersight/model/boot_cdd_device_list_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/boot_cdd_device_relationship.py b/intersight/model/boot_cdd_device_relationship.py
index a8e2442714..eb450e8e3d 100644
--- a/intersight/model/boot_cdd_device_relationship.py
+++ b/intersight/model/boot_cdd_device_relationship.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
@@ -80,6 +80,8 @@ class BootCddDeviceRelationship(ModelComposed):
},
('object_type',): {
'AAA.AUDITRECORD': "aaa.AuditRecord",
+ 'AAA.RETENTIONCONFIG': "aaa.RetentionConfig",
+ 'AAA.RETENTIONPOLICY': "aaa.RetentionPolicy",
'ACCESS.POLICY': "access.Policy",
'ADAPTER.CONFIGPOLICY': "adapter.ConfigPolicy",
'ADAPTER.EXTETHINTERFACE': "adapter.ExtEthInterface",
@@ -96,6 +98,7 @@ class BootCddDeviceRelationship(ModelComposed):
'APPLIANCE.DATAEXPORTPOLICY': "appliance.DataExportPolicy",
'APPLIANCE.DEVICECERTIFICATE': "appliance.DeviceCertificate",
'APPLIANCE.DEVICECLAIM': "appliance.DeviceClaim",
+ 'APPLIANCE.DEVICEUPGRADEPOLICY': "appliance.DeviceUpgradePolicy",
'APPLIANCE.DIAGSETTING': "appliance.DiagSetting",
'APPLIANCE.EXTERNALSYSLOGSETTING': "appliance.ExternalSyslogSetting",
'APPLIANCE.FILESYSTEMSTATUS': "appliance.FileSystemStatus",
@@ -144,9 +147,12 @@ class BootCddDeviceRelationship(ModelComposed):
'BOOT.UEFISHELLDEVICE': "boot.UefiShellDevice",
'BOOT.USBDEVICE': "boot.UsbDevice",
'BOOT.VMEDIADEVICE': "boot.VmediaDevice",
+ 'BULK.EXPORT': "bulk.Export",
+ 'BULK.EXPORTEDITEM': "bulk.ExportedItem",
'BULK.MOCLONER': "bulk.MoCloner",
'BULK.MOMERGER': "bulk.MoMerger",
'BULK.REQUEST': "bulk.Request",
+ 'BULK.SUBREQUESTOBJ': "bulk.SubRequestObj",
'CAPABILITY.ADAPTERUNITDESCRIPTOR': "capability.AdapterUnitDescriptor",
'CAPABILITY.CATALOG': "capability.Catalog",
'CAPABILITY.CHASSISDESCRIPTOR': "capability.ChassisDescriptor",
@@ -210,10 +216,6 @@ class BootCddDeviceRelationship(ModelComposed):
'COND.HCLSTATUS': "cond.HclStatus",
'COND.HCLSTATUSDETAIL': "cond.HclStatusDetail",
'COND.HCLSTATUSJOB': "cond.HclStatusJob",
- 'CONFIG.EXPORTEDITEM': "config.ExportedItem",
- 'CONFIG.EXPORTER': "config.Exporter",
- 'CONFIG.IMPORTEDITEM': "config.ImportedItem",
- 'CONFIG.IMPORTER': "config.Importer",
'CONNECTORPACK.CONNECTORPACKUPGRADE': "connectorpack.ConnectorPackUpgrade",
'CONNECTORPACK.UPGRADEIMPACT': "connectorpack.UpgradeImpact",
'CRD.CUSTOMRESOURCE': "crd.CustomResource",
@@ -222,6 +224,7 @@ class BootCddDeviceRelationship(ModelComposed):
'EQUIPMENT.CHASSISIDENTITY': "equipment.ChassisIdentity",
'EQUIPMENT.CHASSISOPERATION': "equipment.ChassisOperation",
'EQUIPMENT.DEVICESUMMARY': "equipment.DeviceSummary",
+ 'EQUIPMENT.EXPANDERMODULE': "equipment.ExpanderModule",
'EQUIPMENT.FAN': "equipment.Fan",
'EQUIPMENT.FANCONTROL': "equipment.FanControl",
'EQUIPMENT.FANMODULE': "equipment.FanModule",
@@ -470,6 +473,7 @@ class BootCddDeviceRelationship(ModelComposed):
'KUBERNETES.ADDONDEFINITION': "kubernetes.AddonDefinition",
'KUBERNETES.ADDONPOLICY': "kubernetes.AddonPolicy",
'KUBERNETES.ADDONREPOSITORY': "kubernetes.AddonRepository",
+ 'KUBERNETES.BAREMETALNODEPROFILE': "kubernetes.BaremetalNodeProfile",
'KUBERNETES.CATALOG': "kubernetes.Catalog",
'KUBERNETES.CLUSTER': "kubernetes.Cluster",
'KUBERNETES.CLUSTERADDONPROFILE': "kubernetes.ClusterAddonProfile",
@@ -639,6 +643,11 @@ class BootCddDeviceRelationship(ModelComposed):
'RESOURCE.LICENSERESOURCECOUNT': "resource.LicenseResourceCount",
'RESOURCE.MEMBERSHIP': "resource.Membership",
'RESOURCE.MEMBERSHIPHOLDER': "resource.MembershipHolder",
+ 'RESOURCEPOOL.LEASE': "resourcepool.Lease",
+ 'RESOURCEPOOL.LEASERESOURCE': "resourcepool.LeaseResource",
+ 'RESOURCEPOOL.POOL': "resourcepool.Pool",
+ 'RESOURCEPOOL.POOLMEMBER': "resourcepool.PoolMember",
+ 'RESOURCEPOOL.UNIVERSE': "resourcepool.Universe",
'RPROXY.REVERSEPROXY': "rproxy.ReverseProxy",
'SDCARD.POLICY': "sdcard.Policy",
'SDWAN.PROFILE': "sdwan.Profile",
@@ -754,6 +763,7 @@ class BootCddDeviceRelationship(ModelComposed):
'TASK.NETAPPSCOPEDINVENTORY': "task.NetAppScopedInventory",
'TASK.PUBLICCLOUDSCOPEDINVENTORY': "task.PublicCloudScopedInventory",
'TASK.PURESCOPEDINVENTORY': "task.PureScopedInventory",
+ 'TASK.SERVERSCOPEDINVENTORY': "task.ServerScopedInventory",
'TECHSUPPORTMANAGEMENT.COLLECTIONCONTROLPOLICY': "techsupportmanagement.CollectionControlPolicy",
'TECHSUPPORTMANAGEMENT.DOWNLOAD': "techsupportmanagement.Download",
'TECHSUPPORTMANAGEMENT.TECHSUPPORTBUNDLE': "techsupportmanagement.TechSupportBundle",
@@ -785,6 +795,7 @@ class BootCddDeviceRelationship(ModelComposed):
'VIRTUALIZATION.VMWAREVCENTER': "virtualization.VmwareVcenter",
'VIRTUALIZATION.VMWAREVIRTUALDISK': "virtualization.VmwareVirtualDisk",
'VIRTUALIZATION.VMWAREVIRTUALMACHINE': "virtualization.VmwareVirtualMachine",
+ 'VIRTUALIZATION.VMWAREVIRTUALMACHINESNAPSHOT': "virtualization.VmwareVirtualMachineSnapshot",
'VIRTUALIZATION.VMWAREVIRTUALNETWORKINTERFACE': "virtualization.VmwareVirtualNetworkInterface",
'VIRTUALIZATION.VMWAREVIRTUALSWITCH': "virtualization.VmwareVirtualSwitch",
'VMEDIA.POLICY': "vmedia.Policy",
@@ -817,12 +828,14 @@ class BootCddDeviceRelationship(ModelComposed):
'WORKFLOW.TASKDEFINITION': "workflow.TaskDefinition",
'WORKFLOW.TASKINFO': "workflow.TaskInfo",
'WORKFLOW.TASKMETADATA': "workflow.TaskMetadata",
+ 'WORKFLOW.TASKNOTIFICATION': "workflow.TaskNotification",
'WORKFLOW.TEMPLATEEVALUATION': "workflow.TemplateEvaluation",
'WORKFLOW.TEMPLATEFUNCTIONMETA': "workflow.TemplateFunctionMeta",
'WORKFLOW.WORKFLOWDEFINITION': "workflow.WorkflowDefinition",
'WORKFLOW.WORKFLOWINFO': "workflow.WorkflowInfo",
'WORKFLOW.WORKFLOWMETA': "workflow.WorkflowMeta",
'WORKFLOW.WORKFLOWMETADATA': "workflow.WorkflowMetadata",
+ 'WORKFLOW.WORKFLOWNOTIFICATION': "workflow.WorkflowNotification",
},
}
diff --git a/intersight/model/boot_cdd_device_response.py b/intersight/model/boot_cdd_device_response.py
index 5f9fb0fe0e..5f6b5bdd5f 100644
--- a/intersight/model/boot_cdd_device_response.py
+++ b/intersight/model/boot_cdd_device_response.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/boot_configured_device.py b/intersight/model/boot_configured_device.py
index 3bf6c1f08c..b7d565f02a 100644
--- a/intersight/model/boot_configured_device.py
+++ b/intersight/model/boot_configured_device.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/boot_configured_device_all_of.py b/intersight/model/boot_configured_device_all_of.py
index d75d1d2550..a7d6f07ef2 100644
--- a/intersight/model/boot_configured_device_all_of.py
+++ b/intersight/model/boot_configured_device_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/boot_device_base.py b/intersight/model/boot_device_base.py
index 789695d9f0..5f98b5a8c7 100644
--- a/intersight/model/boot_device_base.py
+++ b/intersight/model/boot_device_base.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/boot_device_base_all_of.py b/intersight/model/boot_device_base_all_of.py
index 256d11aa2c..d782d85061 100644
--- a/intersight/model/boot_device_base_all_of.py
+++ b/intersight/model/boot_device_base_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/boot_device_boot_mode.py b/intersight/model/boot_device_boot_mode.py
index 8eb0592fe6..5e42f5e634 100644
--- a/intersight/model/boot_device_boot_mode.py
+++ b/intersight/model/boot_device_boot_mode.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/boot_device_boot_mode_all_of.py b/intersight/model/boot_device_boot_mode_all_of.py
index 6a06740887..244d8f883a 100644
--- a/intersight/model/boot_device_boot_mode_all_of.py
+++ b/intersight/model/boot_device_boot_mode_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/boot_device_boot_mode_list.py b/intersight/model/boot_device_boot_mode_list.py
index 9c1d4b7169..48ec92e9e9 100644
--- a/intersight/model/boot_device_boot_mode_list.py
+++ b/intersight/model/boot_device_boot_mode_list.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/boot_device_boot_mode_list_all_of.py b/intersight/model/boot_device_boot_mode_list_all_of.py
index a5a181b43d..47dfaf4ee3 100644
--- a/intersight/model/boot_device_boot_mode_list_all_of.py
+++ b/intersight/model/boot_device_boot_mode_list_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/boot_device_boot_mode_relationship.py b/intersight/model/boot_device_boot_mode_relationship.py
index 55ede40b12..cc35a348a8 100644
--- a/intersight/model/boot_device_boot_mode_relationship.py
+++ b/intersight/model/boot_device_boot_mode_relationship.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
@@ -80,6 +80,8 @@ class BootDeviceBootModeRelationship(ModelComposed):
},
('object_type',): {
'AAA.AUDITRECORD': "aaa.AuditRecord",
+ 'AAA.RETENTIONCONFIG': "aaa.RetentionConfig",
+ 'AAA.RETENTIONPOLICY': "aaa.RetentionPolicy",
'ACCESS.POLICY': "access.Policy",
'ADAPTER.CONFIGPOLICY': "adapter.ConfigPolicy",
'ADAPTER.EXTETHINTERFACE': "adapter.ExtEthInterface",
@@ -96,6 +98,7 @@ class BootDeviceBootModeRelationship(ModelComposed):
'APPLIANCE.DATAEXPORTPOLICY': "appliance.DataExportPolicy",
'APPLIANCE.DEVICECERTIFICATE': "appliance.DeviceCertificate",
'APPLIANCE.DEVICECLAIM': "appliance.DeviceClaim",
+ 'APPLIANCE.DEVICEUPGRADEPOLICY': "appliance.DeviceUpgradePolicy",
'APPLIANCE.DIAGSETTING': "appliance.DiagSetting",
'APPLIANCE.EXTERNALSYSLOGSETTING': "appliance.ExternalSyslogSetting",
'APPLIANCE.FILESYSTEMSTATUS': "appliance.FileSystemStatus",
@@ -144,9 +147,12 @@ class BootDeviceBootModeRelationship(ModelComposed):
'BOOT.UEFISHELLDEVICE': "boot.UefiShellDevice",
'BOOT.USBDEVICE': "boot.UsbDevice",
'BOOT.VMEDIADEVICE': "boot.VmediaDevice",
+ 'BULK.EXPORT': "bulk.Export",
+ 'BULK.EXPORTEDITEM': "bulk.ExportedItem",
'BULK.MOCLONER': "bulk.MoCloner",
'BULK.MOMERGER': "bulk.MoMerger",
'BULK.REQUEST': "bulk.Request",
+ 'BULK.SUBREQUESTOBJ': "bulk.SubRequestObj",
'CAPABILITY.ADAPTERUNITDESCRIPTOR': "capability.AdapterUnitDescriptor",
'CAPABILITY.CATALOG': "capability.Catalog",
'CAPABILITY.CHASSISDESCRIPTOR': "capability.ChassisDescriptor",
@@ -210,10 +216,6 @@ class BootDeviceBootModeRelationship(ModelComposed):
'COND.HCLSTATUS': "cond.HclStatus",
'COND.HCLSTATUSDETAIL': "cond.HclStatusDetail",
'COND.HCLSTATUSJOB': "cond.HclStatusJob",
- 'CONFIG.EXPORTEDITEM': "config.ExportedItem",
- 'CONFIG.EXPORTER': "config.Exporter",
- 'CONFIG.IMPORTEDITEM': "config.ImportedItem",
- 'CONFIG.IMPORTER': "config.Importer",
'CONNECTORPACK.CONNECTORPACKUPGRADE': "connectorpack.ConnectorPackUpgrade",
'CONNECTORPACK.UPGRADEIMPACT': "connectorpack.UpgradeImpact",
'CRD.CUSTOMRESOURCE': "crd.CustomResource",
@@ -222,6 +224,7 @@ class BootDeviceBootModeRelationship(ModelComposed):
'EQUIPMENT.CHASSISIDENTITY': "equipment.ChassisIdentity",
'EQUIPMENT.CHASSISOPERATION': "equipment.ChassisOperation",
'EQUIPMENT.DEVICESUMMARY': "equipment.DeviceSummary",
+ 'EQUIPMENT.EXPANDERMODULE': "equipment.ExpanderModule",
'EQUIPMENT.FAN': "equipment.Fan",
'EQUIPMENT.FANCONTROL': "equipment.FanControl",
'EQUIPMENT.FANMODULE': "equipment.FanModule",
@@ -470,6 +473,7 @@ class BootDeviceBootModeRelationship(ModelComposed):
'KUBERNETES.ADDONDEFINITION': "kubernetes.AddonDefinition",
'KUBERNETES.ADDONPOLICY': "kubernetes.AddonPolicy",
'KUBERNETES.ADDONREPOSITORY': "kubernetes.AddonRepository",
+ 'KUBERNETES.BAREMETALNODEPROFILE': "kubernetes.BaremetalNodeProfile",
'KUBERNETES.CATALOG': "kubernetes.Catalog",
'KUBERNETES.CLUSTER': "kubernetes.Cluster",
'KUBERNETES.CLUSTERADDONPROFILE': "kubernetes.ClusterAddonProfile",
@@ -639,6 +643,11 @@ class BootDeviceBootModeRelationship(ModelComposed):
'RESOURCE.LICENSERESOURCECOUNT': "resource.LicenseResourceCount",
'RESOURCE.MEMBERSHIP': "resource.Membership",
'RESOURCE.MEMBERSHIPHOLDER': "resource.MembershipHolder",
+ 'RESOURCEPOOL.LEASE': "resourcepool.Lease",
+ 'RESOURCEPOOL.LEASERESOURCE': "resourcepool.LeaseResource",
+ 'RESOURCEPOOL.POOL': "resourcepool.Pool",
+ 'RESOURCEPOOL.POOLMEMBER': "resourcepool.PoolMember",
+ 'RESOURCEPOOL.UNIVERSE': "resourcepool.Universe",
'RPROXY.REVERSEPROXY': "rproxy.ReverseProxy",
'SDCARD.POLICY': "sdcard.Policy",
'SDWAN.PROFILE': "sdwan.Profile",
@@ -754,6 +763,7 @@ class BootDeviceBootModeRelationship(ModelComposed):
'TASK.NETAPPSCOPEDINVENTORY': "task.NetAppScopedInventory",
'TASK.PUBLICCLOUDSCOPEDINVENTORY': "task.PublicCloudScopedInventory",
'TASK.PURESCOPEDINVENTORY': "task.PureScopedInventory",
+ 'TASK.SERVERSCOPEDINVENTORY': "task.ServerScopedInventory",
'TECHSUPPORTMANAGEMENT.COLLECTIONCONTROLPOLICY': "techsupportmanagement.CollectionControlPolicy",
'TECHSUPPORTMANAGEMENT.DOWNLOAD': "techsupportmanagement.Download",
'TECHSUPPORTMANAGEMENT.TECHSUPPORTBUNDLE': "techsupportmanagement.TechSupportBundle",
@@ -785,6 +795,7 @@ class BootDeviceBootModeRelationship(ModelComposed):
'VIRTUALIZATION.VMWAREVCENTER': "virtualization.VmwareVcenter",
'VIRTUALIZATION.VMWAREVIRTUALDISK': "virtualization.VmwareVirtualDisk",
'VIRTUALIZATION.VMWAREVIRTUALMACHINE': "virtualization.VmwareVirtualMachine",
+ 'VIRTUALIZATION.VMWAREVIRTUALMACHINESNAPSHOT': "virtualization.VmwareVirtualMachineSnapshot",
'VIRTUALIZATION.VMWAREVIRTUALNETWORKINTERFACE': "virtualization.VmwareVirtualNetworkInterface",
'VIRTUALIZATION.VMWAREVIRTUALSWITCH': "virtualization.VmwareVirtualSwitch",
'VMEDIA.POLICY': "vmedia.Policy",
@@ -817,12 +828,14 @@ class BootDeviceBootModeRelationship(ModelComposed):
'WORKFLOW.TASKDEFINITION': "workflow.TaskDefinition",
'WORKFLOW.TASKINFO': "workflow.TaskInfo",
'WORKFLOW.TASKMETADATA': "workflow.TaskMetadata",
+ 'WORKFLOW.TASKNOTIFICATION': "workflow.TaskNotification",
'WORKFLOW.TEMPLATEEVALUATION': "workflow.TemplateEvaluation",
'WORKFLOW.TEMPLATEFUNCTIONMETA': "workflow.TemplateFunctionMeta",
'WORKFLOW.WORKFLOWDEFINITION': "workflow.WorkflowDefinition",
'WORKFLOW.WORKFLOWINFO': "workflow.WorkflowInfo",
'WORKFLOW.WORKFLOWMETA': "workflow.WorkflowMeta",
'WORKFLOW.WORKFLOWMETADATA': "workflow.WorkflowMetadata",
+ 'WORKFLOW.WORKFLOWNOTIFICATION': "workflow.WorkflowNotification",
},
}
diff --git a/intersight/model/boot_device_boot_mode_response.py b/intersight/model/boot_device_boot_mode_response.py
index ebc29a66cf..3909c5556b 100644
--- a/intersight/model/boot_device_boot_mode_response.py
+++ b/intersight/model/boot_device_boot_mode_response.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/boot_device_boot_security.py b/intersight/model/boot_device_boot_security.py
index 7b6a413ade..f639c732ae 100644
--- a/intersight/model/boot_device_boot_security.py
+++ b/intersight/model/boot_device_boot_security.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/boot_device_boot_security_all_of.py b/intersight/model/boot_device_boot_security_all_of.py
index bef0985d2d..574793163b 100644
--- a/intersight/model/boot_device_boot_security_all_of.py
+++ b/intersight/model/boot_device_boot_security_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/boot_device_boot_security_list.py b/intersight/model/boot_device_boot_security_list.py
index 230ba18615..ea2da43319 100644
--- a/intersight/model/boot_device_boot_security_list.py
+++ b/intersight/model/boot_device_boot_security_list.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/boot_device_boot_security_list_all_of.py b/intersight/model/boot_device_boot_security_list_all_of.py
index 409ba0fe0b..e849bc9e5d 100644
--- a/intersight/model/boot_device_boot_security_list_all_of.py
+++ b/intersight/model/boot_device_boot_security_list_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/boot_device_boot_security_relationship.py b/intersight/model/boot_device_boot_security_relationship.py
index 7b32fb2ed4..232bf6e83c 100644
--- a/intersight/model/boot_device_boot_security_relationship.py
+++ b/intersight/model/boot_device_boot_security_relationship.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
@@ -78,6 +78,8 @@ class BootDeviceBootSecurityRelationship(ModelComposed):
},
('object_type',): {
'AAA.AUDITRECORD': "aaa.AuditRecord",
+ 'AAA.RETENTIONCONFIG': "aaa.RetentionConfig",
+ 'AAA.RETENTIONPOLICY': "aaa.RetentionPolicy",
'ACCESS.POLICY': "access.Policy",
'ADAPTER.CONFIGPOLICY': "adapter.ConfigPolicy",
'ADAPTER.EXTETHINTERFACE': "adapter.ExtEthInterface",
@@ -94,6 +96,7 @@ class BootDeviceBootSecurityRelationship(ModelComposed):
'APPLIANCE.DATAEXPORTPOLICY': "appliance.DataExportPolicy",
'APPLIANCE.DEVICECERTIFICATE': "appliance.DeviceCertificate",
'APPLIANCE.DEVICECLAIM': "appliance.DeviceClaim",
+ 'APPLIANCE.DEVICEUPGRADEPOLICY': "appliance.DeviceUpgradePolicy",
'APPLIANCE.DIAGSETTING': "appliance.DiagSetting",
'APPLIANCE.EXTERNALSYSLOGSETTING': "appliance.ExternalSyslogSetting",
'APPLIANCE.FILESYSTEMSTATUS': "appliance.FileSystemStatus",
@@ -142,9 +145,12 @@ class BootDeviceBootSecurityRelationship(ModelComposed):
'BOOT.UEFISHELLDEVICE': "boot.UefiShellDevice",
'BOOT.USBDEVICE': "boot.UsbDevice",
'BOOT.VMEDIADEVICE': "boot.VmediaDevice",
+ 'BULK.EXPORT': "bulk.Export",
+ 'BULK.EXPORTEDITEM': "bulk.ExportedItem",
'BULK.MOCLONER': "bulk.MoCloner",
'BULK.MOMERGER': "bulk.MoMerger",
'BULK.REQUEST': "bulk.Request",
+ 'BULK.SUBREQUESTOBJ': "bulk.SubRequestObj",
'CAPABILITY.ADAPTERUNITDESCRIPTOR': "capability.AdapterUnitDescriptor",
'CAPABILITY.CATALOG': "capability.Catalog",
'CAPABILITY.CHASSISDESCRIPTOR': "capability.ChassisDescriptor",
@@ -208,10 +214,6 @@ class BootDeviceBootSecurityRelationship(ModelComposed):
'COND.HCLSTATUS': "cond.HclStatus",
'COND.HCLSTATUSDETAIL': "cond.HclStatusDetail",
'COND.HCLSTATUSJOB': "cond.HclStatusJob",
- 'CONFIG.EXPORTEDITEM': "config.ExportedItem",
- 'CONFIG.EXPORTER': "config.Exporter",
- 'CONFIG.IMPORTEDITEM': "config.ImportedItem",
- 'CONFIG.IMPORTER': "config.Importer",
'CONNECTORPACK.CONNECTORPACKUPGRADE': "connectorpack.ConnectorPackUpgrade",
'CONNECTORPACK.UPGRADEIMPACT': "connectorpack.UpgradeImpact",
'CRD.CUSTOMRESOURCE': "crd.CustomResource",
@@ -220,6 +222,7 @@ class BootDeviceBootSecurityRelationship(ModelComposed):
'EQUIPMENT.CHASSISIDENTITY': "equipment.ChassisIdentity",
'EQUIPMENT.CHASSISOPERATION': "equipment.ChassisOperation",
'EQUIPMENT.DEVICESUMMARY': "equipment.DeviceSummary",
+ 'EQUIPMENT.EXPANDERMODULE': "equipment.ExpanderModule",
'EQUIPMENT.FAN': "equipment.Fan",
'EQUIPMENT.FANCONTROL': "equipment.FanControl",
'EQUIPMENT.FANMODULE': "equipment.FanModule",
@@ -468,6 +471,7 @@ class BootDeviceBootSecurityRelationship(ModelComposed):
'KUBERNETES.ADDONDEFINITION': "kubernetes.AddonDefinition",
'KUBERNETES.ADDONPOLICY': "kubernetes.AddonPolicy",
'KUBERNETES.ADDONREPOSITORY': "kubernetes.AddonRepository",
+ 'KUBERNETES.BAREMETALNODEPROFILE': "kubernetes.BaremetalNodeProfile",
'KUBERNETES.CATALOG': "kubernetes.Catalog",
'KUBERNETES.CLUSTER': "kubernetes.Cluster",
'KUBERNETES.CLUSTERADDONPROFILE': "kubernetes.ClusterAddonProfile",
@@ -637,6 +641,11 @@ class BootDeviceBootSecurityRelationship(ModelComposed):
'RESOURCE.LICENSERESOURCECOUNT': "resource.LicenseResourceCount",
'RESOURCE.MEMBERSHIP': "resource.Membership",
'RESOURCE.MEMBERSHIPHOLDER': "resource.MembershipHolder",
+ 'RESOURCEPOOL.LEASE': "resourcepool.Lease",
+ 'RESOURCEPOOL.LEASERESOURCE': "resourcepool.LeaseResource",
+ 'RESOURCEPOOL.POOL': "resourcepool.Pool",
+ 'RESOURCEPOOL.POOLMEMBER': "resourcepool.PoolMember",
+ 'RESOURCEPOOL.UNIVERSE': "resourcepool.Universe",
'RPROXY.REVERSEPROXY': "rproxy.ReverseProxy",
'SDCARD.POLICY': "sdcard.Policy",
'SDWAN.PROFILE': "sdwan.Profile",
@@ -752,6 +761,7 @@ class BootDeviceBootSecurityRelationship(ModelComposed):
'TASK.NETAPPSCOPEDINVENTORY': "task.NetAppScopedInventory",
'TASK.PUBLICCLOUDSCOPEDINVENTORY': "task.PublicCloudScopedInventory",
'TASK.PURESCOPEDINVENTORY': "task.PureScopedInventory",
+ 'TASK.SERVERSCOPEDINVENTORY': "task.ServerScopedInventory",
'TECHSUPPORTMANAGEMENT.COLLECTIONCONTROLPOLICY': "techsupportmanagement.CollectionControlPolicy",
'TECHSUPPORTMANAGEMENT.DOWNLOAD': "techsupportmanagement.Download",
'TECHSUPPORTMANAGEMENT.TECHSUPPORTBUNDLE': "techsupportmanagement.TechSupportBundle",
@@ -783,6 +793,7 @@ class BootDeviceBootSecurityRelationship(ModelComposed):
'VIRTUALIZATION.VMWAREVCENTER': "virtualization.VmwareVcenter",
'VIRTUALIZATION.VMWAREVIRTUALDISK': "virtualization.VmwareVirtualDisk",
'VIRTUALIZATION.VMWAREVIRTUALMACHINE': "virtualization.VmwareVirtualMachine",
+ 'VIRTUALIZATION.VMWAREVIRTUALMACHINESNAPSHOT': "virtualization.VmwareVirtualMachineSnapshot",
'VIRTUALIZATION.VMWAREVIRTUALNETWORKINTERFACE': "virtualization.VmwareVirtualNetworkInterface",
'VIRTUALIZATION.VMWAREVIRTUALSWITCH': "virtualization.VmwareVirtualSwitch",
'VMEDIA.POLICY': "vmedia.Policy",
@@ -815,12 +826,14 @@ class BootDeviceBootSecurityRelationship(ModelComposed):
'WORKFLOW.TASKDEFINITION': "workflow.TaskDefinition",
'WORKFLOW.TASKINFO': "workflow.TaskInfo",
'WORKFLOW.TASKMETADATA': "workflow.TaskMetadata",
+ 'WORKFLOW.TASKNOTIFICATION': "workflow.TaskNotification",
'WORKFLOW.TEMPLATEEVALUATION': "workflow.TemplateEvaluation",
'WORKFLOW.TEMPLATEFUNCTIONMETA': "workflow.TemplateFunctionMeta",
'WORKFLOW.WORKFLOWDEFINITION': "workflow.WorkflowDefinition",
'WORKFLOW.WORKFLOWINFO': "workflow.WorkflowInfo",
'WORKFLOW.WORKFLOWMETA': "workflow.WorkflowMeta",
'WORKFLOW.WORKFLOWMETADATA': "workflow.WorkflowMetadata",
+ 'WORKFLOW.WORKFLOWNOTIFICATION': "workflow.WorkflowNotification",
},
}
diff --git a/intersight/model/boot_device_boot_security_response.py b/intersight/model/boot_device_boot_security_response.py
index 694e56ced8..5daadc58e3 100644
--- a/intersight/model/boot_device_boot_security_response.py
+++ b/intersight/model/boot_device_boot_security_response.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/boot_hdd_device.py b/intersight/model/boot_hdd_device.py
index 1a694e1bca..178097861c 100644
--- a/intersight/model/boot_hdd_device.py
+++ b/intersight/model/boot_hdd_device.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/boot_hdd_device_all_of.py b/intersight/model/boot_hdd_device_all_of.py
index 7fbf221916..0bc8137681 100644
--- a/intersight/model/boot_hdd_device_all_of.py
+++ b/intersight/model/boot_hdd_device_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/boot_hdd_device_list.py b/intersight/model/boot_hdd_device_list.py
index 0200ace54b..ea3fdb9b1d 100644
--- a/intersight/model/boot_hdd_device_list.py
+++ b/intersight/model/boot_hdd_device_list.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/boot_hdd_device_list_all_of.py b/intersight/model/boot_hdd_device_list_all_of.py
index 321e2c9ff8..cf9e2082e1 100644
--- a/intersight/model/boot_hdd_device_list_all_of.py
+++ b/intersight/model/boot_hdd_device_list_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/boot_hdd_device_relationship.py b/intersight/model/boot_hdd_device_relationship.py
index b13cd904dc..5b795f0468 100644
--- a/intersight/model/boot_hdd_device_relationship.py
+++ b/intersight/model/boot_hdd_device_relationship.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
@@ -80,6 +80,8 @@ class BootHddDeviceRelationship(ModelComposed):
},
('object_type',): {
'AAA.AUDITRECORD': "aaa.AuditRecord",
+ 'AAA.RETENTIONCONFIG': "aaa.RetentionConfig",
+ 'AAA.RETENTIONPOLICY': "aaa.RetentionPolicy",
'ACCESS.POLICY': "access.Policy",
'ADAPTER.CONFIGPOLICY': "adapter.ConfigPolicy",
'ADAPTER.EXTETHINTERFACE': "adapter.ExtEthInterface",
@@ -96,6 +98,7 @@ class BootHddDeviceRelationship(ModelComposed):
'APPLIANCE.DATAEXPORTPOLICY': "appliance.DataExportPolicy",
'APPLIANCE.DEVICECERTIFICATE': "appliance.DeviceCertificate",
'APPLIANCE.DEVICECLAIM': "appliance.DeviceClaim",
+ 'APPLIANCE.DEVICEUPGRADEPOLICY': "appliance.DeviceUpgradePolicy",
'APPLIANCE.DIAGSETTING': "appliance.DiagSetting",
'APPLIANCE.EXTERNALSYSLOGSETTING': "appliance.ExternalSyslogSetting",
'APPLIANCE.FILESYSTEMSTATUS': "appliance.FileSystemStatus",
@@ -144,9 +147,12 @@ class BootHddDeviceRelationship(ModelComposed):
'BOOT.UEFISHELLDEVICE': "boot.UefiShellDevice",
'BOOT.USBDEVICE': "boot.UsbDevice",
'BOOT.VMEDIADEVICE': "boot.VmediaDevice",
+ 'BULK.EXPORT': "bulk.Export",
+ 'BULK.EXPORTEDITEM': "bulk.ExportedItem",
'BULK.MOCLONER': "bulk.MoCloner",
'BULK.MOMERGER': "bulk.MoMerger",
'BULK.REQUEST': "bulk.Request",
+ 'BULK.SUBREQUESTOBJ': "bulk.SubRequestObj",
'CAPABILITY.ADAPTERUNITDESCRIPTOR': "capability.AdapterUnitDescriptor",
'CAPABILITY.CATALOG': "capability.Catalog",
'CAPABILITY.CHASSISDESCRIPTOR': "capability.ChassisDescriptor",
@@ -210,10 +216,6 @@ class BootHddDeviceRelationship(ModelComposed):
'COND.HCLSTATUS': "cond.HclStatus",
'COND.HCLSTATUSDETAIL': "cond.HclStatusDetail",
'COND.HCLSTATUSJOB': "cond.HclStatusJob",
- 'CONFIG.EXPORTEDITEM': "config.ExportedItem",
- 'CONFIG.EXPORTER': "config.Exporter",
- 'CONFIG.IMPORTEDITEM': "config.ImportedItem",
- 'CONFIG.IMPORTER': "config.Importer",
'CONNECTORPACK.CONNECTORPACKUPGRADE': "connectorpack.ConnectorPackUpgrade",
'CONNECTORPACK.UPGRADEIMPACT': "connectorpack.UpgradeImpact",
'CRD.CUSTOMRESOURCE': "crd.CustomResource",
@@ -222,6 +224,7 @@ class BootHddDeviceRelationship(ModelComposed):
'EQUIPMENT.CHASSISIDENTITY': "equipment.ChassisIdentity",
'EQUIPMENT.CHASSISOPERATION': "equipment.ChassisOperation",
'EQUIPMENT.DEVICESUMMARY': "equipment.DeviceSummary",
+ 'EQUIPMENT.EXPANDERMODULE': "equipment.ExpanderModule",
'EQUIPMENT.FAN': "equipment.Fan",
'EQUIPMENT.FANCONTROL': "equipment.FanControl",
'EQUIPMENT.FANMODULE': "equipment.FanModule",
@@ -470,6 +473,7 @@ class BootHddDeviceRelationship(ModelComposed):
'KUBERNETES.ADDONDEFINITION': "kubernetes.AddonDefinition",
'KUBERNETES.ADDONPOLICY': "kubernetes.AddonPolicy",
'KUBERNETES.ADDONREPOSITORY': "kubernetes.AddonRepository",
+ 'KUBERNETES.BAREMETALNODEPROFILE': "kubernetes.BaremetalNodeProfile",
'KUBERNETES.CATALOG': "kubernetes.Catalog",
'KUBERNETES.CLUSTER': "kubernetes.Cluster",
'KUBERNETES.CLUSTERADDONPROFILE': "kubernetes.ClusterAddonProfile",
@@ -639,6 +643,11 @@ class BootHddDeviceRelationship(ModelComposed):
'RESOURCE.LICENSERESOURCECOUNT': "resource.LicenseResourceCount",
'RESOURCE.MEMBERSHIP': "resource.Membership",
'RESOURCE.MEMBERSHIPHOLDER': "resource.MembershipHolder",
+ 'RESOURCEPOOL.LEASE': "resourcepool.Lease",
+ 'RESOURCEPOOL.LEASERESOURCE': "resourcepool.LeaseResource",
+ 'RESOURCEPOOL.POOL': "resourcepool.Pool",
+ 'RESOURCEPOOL.POOLMEMBER': "resourcepool.PoolMember",
+ 'RESOURCEPOOL.UNIVERSE': "resourcepool.Universe",
'RPROXY.REVERSEPROXY': "rproxy.ReverseProxy",
'SDCARD.POLICY': "sdcard.Policy",
'SDWAN.PROFILE': "sdwan.Profile",
@@ -754,6 +763,7 @@ class BootHddDeviceRelationship(ModelComposed):
'TASK.NETAPPSCOPEDINVENTORY': "task.NetAppScopedInventory",
'TASK.PUBLICCLOUDSCOPEDINVENTORY': "task.PublicCloudScopedInventory",
'TASK.PURESCOPEDINVENTORY': "task.PureScopedInventory",
+ 'TASK.SERVERSCOPEDINVENTORY': "task.ServerScopedInventory",
'TECHSUPPORTMANAGEMENT.COLLECTIONCONTROLPOLICY': "techsupportmanagement.CollectionControlPolicy",
'TECHSUPPORTMANAGEMENT.DOWNLOAD': "techsupportmanagement.Download",
'TECHSUPPORTMANAGEMENT.TECHSUPPORTBUNDLE': "techsupportmanagement.TechSupportBundle",
@@ -785,6 +795,7 @@ class BootHddDeviceRelationship(ModelComposed):
'VIRTUALIZATION.VMWAREVCENTER': "virtualization.VmwareVcenter",
'VIRTUALIZATION.VMWAREVIRTUALDISK': "virtualization.VmwareVirtualDisk",
'VIRTUALIZATION.VMWAREVIRTUALMACHINE': "virtualization.VmwareVirtualMachine",
+ 'VIRTUALIZATION.VMWAREVIRTUALMACHINESNAPSHOT': "virtualization.VmwareVirtualMachineSnapshot",
'VIRTUALIZATION.VMWAREVIRTUALNETWORKINTERFACE': "virtualization.VmwareVirtualNetworkInterface",
'VIRTUALIZATION.VMWAREVIRTUALSWITCH': "virtualization.VmwareVirtualSwitch",
'VMEDIA.POLICY': "vmedia.Policy",
@@ -817,12 +828,14 @@ class BootHddDeviceRelationship(ModelComposed):
'WORKFLOW.TASKDEFINITION': "workflow.TaskDefinition",
'WORKFLOW.TASKINFO': "workflow.TaskInfo",
'WORKFLOW.TASKMETADATA': "workflow.TaskMetadata",
+ 'WORKFLOW.TASKNOTIFICATION': "workflow.TaskNotification",
'WORKFLOW.TEMPLATEEVALUATION': "workflow.TemplateEvaluation",
'WORKFLOW.TEMPLATEFUNCTIONMETA': "workflow.TemplateFunctionMeta",
'WORKFLOW.WORKFLOWDEFINITION': "workflow.WorkflowDefinition",
'WORKFLOW.WORKFLOWINFO': "workflow.WorkflowInfo",
'WORKFLOW.WORKFLOWMETA': "workflow.WorkflowMeta",
'WORKFLOW.WORKFLOWMETADATA': "workflow.WorkflowMetadata",
+ 'WORKFLOW.WORKFLOWNOTIFICATION': "workflow.WorkflowNotification",
},
}
diff --git a/intersight/model/boot_hdd_device_response.py b/intersight/model/boot_hdd_device_response.py
index f7816a7ab7..5c7c369b49 100644
--- a/intersight/model/boot_hdd_device_response.py
+++ b/intersight/model/boot_hdd_device_response.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/boot_iscsi.py b/intersight/model/boot_iscsi.py
index f9f21745bd..d55717b6e5 100644
--- a/intersight/model/boot_iscsi.py
+++ b/intersight/model/boot_iscsi.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/boot_iscsi_all_of.py b/intersight/model/boot_iscsi_all_of.py
index 902740d7bd..13f025056f 100644
--- a/intersight/model/boot_iscsi_all_of.py
+++ b/intersight/model/boot_iscsi_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/boot_iscsi_device.py b/intersight/model/boot_iscsi_device.py
index f54b64a82d..f3b798bac7 100644
--- a/intersight/model/boot_iscsi_device.py
+++ b/intersight/model/boot_iscsi_device.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/boot_iscsi_device_all_of.py b/intersight/model/boot_iscsi_device_all_of.py
index facb980c83..baf515e6c1 100644
--- a/intersight/model/boot_iscsi_device_all_of.py
+++ b/intersight/model/boot_iscsi_device_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/boot_iscsi_device_list.py b/intersight/model/boot_iscsi_device_list.py
index 4067ad701e..3809d8a668 100644
--- a/intersight/model/boot_iscsi_device_list.py
+++ b/intersight/model/boot_iscsi_device_list.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/boot_iscsi_device_list_all_of.py b/intersight/model/boot_iscsi_device_list_all_of.py
index 71f77aadd3..85d70f54b9 100644
--- a/intersight/model/boot_iscsi_device_list_all_of.py
+++ b/intersight/model/boot_iscsi_device_list_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/boot_iscsi_device_relationship.py b/intersight/model/boot_iscsi_device_relationship.py
index 4785c27b31..f0835f8dd9 100644
--- a/intersight/model/boot_iscsi_device_relationship.py
+++ b/intersight/model/boot_iscsi_device_relationship.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
@@ -80,6 +80,8 @@ class BootIscsiDeviceRelationship(ModelComposed):
},
('object_type',): {
'AAA.AUDITRECORD': "aaa.AuditRecord",
+ 'AAA.RETENTIONCONFIG': "aaa.RetentionConfig",
+ 'AAA.RETENTIONPOLICY': "aaa.RetentionPolicy",
'ACCESS.POLICY': "access.Policy",
'ADAPTER.CONFIGPOLICY': "adapter.ConfigPolicy",
'ADAPTER.EXTETHINTERFACE': "adapter.ExtEthInterface",
@@ -96,6 +98,7 @@ class BootIscsiDeviceRelationship(ModelComposed):
'APPLIANCE.DATAEXPORTPOLICY': "appliance.DataExportPolicy",
'APPLIANCE.DEVICECERTIFICATE': "appliance.DeviceCertificate",
'APPLIANCE.DEVICECLAIM': "appliance.DeviceClaim",
+ 'APPLIANCE.DEVICEUPGRADEPOLICY': "appliance.DeviceUpgradePolicy",
'APPLIANCE.DIAGSETTING': "appliance.DiagSetting",
'APPLIANCE.EXTERNALSYSLOGSETTING': "appliance.ExternalSyslogSetting",
'APPLIANCE.FILESYSTEMSTATUS': "appliance.FileSystemStatus",
@@ -144,9 +147,12 @@ class BootIscsiDeviceRelationship(ModelComposed):
'BOOT.UEFISHELLDEVICE': "boot.UefiShellDevice",
'BOOT.USBDEVICE': "boot.UsbDevice",
'BOOT.VMEDIADEVICE': "boot.VmediaDevice",
+ 'BULK.EXPORT': "bulk.Export",
+ 'BULK.EXPORTEDITEM': "bulk.ExportedItem",
'BULK.MOCLONER': "bulk.MoCloner",
'BULK.MOMERGER': "bulk.MoMerger",
'BULK.REQUEST': "bulk.Request",
+ 'BULK.SUBREQUESTOBJ': "bulk.SubRequestObj",
'CAPABILITY.ADAPTERUNITDESCRIPTOR': "capability.AdapterUnitDescriptor",
'CAPABILITY.CATALOG': "capability.Catalog",
'CAPABILITY.CHASSISDESCRIPTOR': "capability.ChassisDescriptor",
@@ -210,10 +216,6 @@ class BootIscsiDeviceRelationship(ModelComposed):
'COND.HCLSTATUS': "cond.HclStatus",
'COND.HCLSTATUSDETAIL': "cond.HclStatusDetail",
'COND.HCLSTATUSJOB': "cond.HclStatusJob",
- 'CONFIG.EXPORTEDITEM': "config.ExportedItem",
- 'CONFIG.EXPORTER': "config.Exporter",
- 'CONFIG.IMPORTEDITEM': "config.ImportedItem",
- 'CONFIG.IMPORTER': "config.Importer",
'CONNECTORPACK.CONNECTORPACKUPGRADE': "connectorpack.ConnectorPackUpgrade",
'CONNECTORPACK.UPGRADEIMPACT': "connectorpack.UpgradeImpact",
'CRD.CUSTOMRESOURCE': "crd.CustomResource",
@@ -222,6 +224,7 @@ class BootIscsiDeviceRelationship(ModelComposed):
'EQUIPMENT.CHASSISIDENTITY': "equipment.ChassisIdentity",
'EQUIPMENT.CHASSISOPERATION': "equipment.ChassisOperation",
'EQUIPMENT.DEVICESUMMARY': "equipment.DeviceSummary",
+ 'EQUIPMENT.EXPANDERMODULE': "equipment.ExpanderModule",
'EQUIPMENT.FAN': "equipment.Fan",
'EQUIPMENT.FANCONTROL': "equipment.FanControl",
'EQUIPMENT.FANMODULE': "equipment.FanModule",
@@ -470,6 +473,7 @@ class BootIscsiDeviceRelationship(ModelComposed):
'KUBERNETES.ADDONDEFINITION': "kubernetes.AddonDefinition",
'KUBERNETES.ADDONPOLICY': "kubernetes.AddonPolicy",
'KUBERNETES.ADDONREPOSITORY': "kubernetes.AddonRepository",
+ 'KUBERNETES.BAREMETALNODEPROFILE': "kubernetes.BaremetalNodeProfile",
'KUBERNETES.CATALOG': "kubernetes.Catalog",
'KUBERNETES.CLUSTER': "kubernetes.Cluster",
'KUBERNETES.CLUSTERADDONPROFILE': "kubernetes.ClusterAddonProfile",
@@ -639,6 +643,11 @@ class BootIscsiDeviceRelationship(ModelComposed):
'RESOURCE.LICENSERESOURCECOUNT': "resource.LicenseResourceCount",
'RESOURCE.MEMBERSHIP': "resource.Membership",
'RESOURCE.MEMBERSHIPHOLDER': "resource.MembershipHolder",
+ 'RESOURCEPOOL.LEASE': "resourcepool.Lease",
+ 'RESOURCEPOOL.LEASERESOURCE': "resourcepool.LeaseResource",
+ 'RESOURCEPOOL.POOL': "resourcepool.Pool",
+ 'RESOURCEPOOL.POOLMEMBER': "resourcepool.PoolMember",
+ 'RESOURCEPOOL.UNIVERSE': "resourcepool.Universe",
'RPROXY.REVERSEPROXY': "rproxy.ReverseProxy",
'SDCARD.POLICY': "sdcard.Policy",
'SDWAN.PROFILE': "sdwan.Profile",
@@ -754,6 +763,7 @@ class BootIscsiDeviceRelationship(ModelComposed):
'TASK.NETAPPSCOPEDINVENTORY': "task.NetAppScopedInventory",
'TASK.PUBLICCLOUDSCOPEDINVENTORY': "task.PublicCloudScopedInventory",
'TASK.PURESCOPEDINVENTORY': "task.PureScopedInventory",
+ 'TASK.SERVERSCOPEDINVENTORY': "task.ServerScopedInventory",
'TECHSUPPORTMANAGEMENT.COLLECTIONCONTROLPOLICY': "techsupportmanagement.CollectionControlPolicy",
'TECHSUPPORTMANAGEMENT.DOWNLOAD': "techsupportmanagement.Download",
'TECHSUPPORTMANAGEMENT.TECHSUPPORTBUNDLE': "techsupportmanagement.TechSupportBundle",
@@ -785,6 +795,7 @@ class BootIscsiDeviceRelationship(ModelComposed):
'VIRTUALIZATION.VMWAREVCENTER': "virtualization.VmwareVcenter",
'VIRTUALIZATION.VMWAREVIRTUALDISK': "virtualization.VmwareVirtualDisk",
'VIRTUALIZATION.VMWAREVIRTUALMACHINE': "virtualization.VmwareVirtualMachine",
+ 'VIRTUALIZATION.VMWAREVIRTUALMACHINESNAPSHOT': "virtualization.VmwareVirtualMachineSnapshot",
'VIRTUALIZATION.VMWAREVIRTUALNETWORKINTERFACE': "virtualization.VmwareVirtualNetworkInterface",
'VIRTUALIZATION.VMWAREVIRTUALSWITCH': "virtualization.VmwareVirtualSwitch",
'VMEDIA.POLICY': "vmedia.Policy",
@@ -817,12 +828,14 @@ class BootIscsiDeviceRelationship(ModelComposed):
'WORKFLOW.TASKDEFINITION': "workflow.TaskDefinition",
'WORKFLOW.TASKINFO': "workflow.TaskInfo",
'WORKFLOW.TASKMETADATA': "workflow.TaskMetadata",
+ 'WORKFLOW.TASKNOTIFICATION': "workflow.TaskNotification",
'WORKFLOW.TEMPLATEEVALUATION': "workflow.TemplateEvaluation",
'WORKFLOW.TEMPLATEFUNCTIONMETA': "workflow.TemplateFunctionMeta",
'WORKFLOW.WORKFLOWDEFINITION': "workflow.WorkflowDefinition",
'WORKFLOW.WORKFLOWINFO': "workflow.WorkflowInfo",
'WORKFLOW.WORKFLOWMETA': "workflow.WorkflowMeta",
'WORKFLOW.WORKFLOWMETADATA': "workflow.WorkflowMetadata",
+ 'WORKFLOW.WORKFLOWNOTIFICATION': "workflow.WorkflowNotification",
},
}
diff --git a/intersight/model/boot_iscsi_device_response.py b/intersight/model/boot_iscsi_device_response.py
index 17e32e3c3a..b8358085a1 100644
--- a/intersight/model/boot_iscsi_device_response.py
+++ b/intersight/model/boot_iscsi_device_response.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/boot_local_cdd.py b/intersight/model/boot_local_cdd.py
index 3f2231abf8..5cb1be475f 100644
--- a/intersight/model/boot_local_cdd.py
+++ b/intersight/model/boot_local_cdd.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/boot_local_disk.py b/intersight/model/boot_local_disk.py
index 620961617f..eb4263866c 100644
--- a/intersight/model/boot_local_disk.py
+++ b/intersight/model/boot_local_disk.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/boot_local_disk_all_of.py b/intersight/model/boot_local_disk_all_of.py
index 388047bb7c..24bf75b0eb 100644
--- a/intersight/model/boot_local_disk_all_of.py
+++ b/intersight/model/boot_local_disk_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/boot_nvme.py b/intersight/model/boot_nvme.py
index 64955dfbd9..90c283e918 100644
--- a/intersight/model/boot_nvme.py
+++ b/intersight/model/boot_nvme.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/boot_nvme_all_of.py b/intersight/model/boot_nvme_all_of.py
index dfb619d914..5ac1243646 100644
--- a/intersight/model/boot_nvme_all_of.py
+++ b/intersight/model/boot_nvme_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/boot_nvme_device.py b/intersight/model/boot_nvme_device.py
index 0255098832..bd8ebefb6e 100644
--- a/intersight/model/boot_nvme_device.py
+++ b/intersight/model/boot_nvme_device.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/boot_nvme_device_all_of.py b/intersight/model/boot_nvme_device_all_of.py
index 3f31ad8d30..768ac17351 100644
--- a/intersight/model/boot_nvme_device_all_of.py
+++ b/intersight/model/boot_nvme_device_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/boot_nvme_device_list.py b/intersight/model/boot_nvme_device_list.py
index 7f693648e8..a3acbc4fb8 100644
--- a/intersight/model/boot_nvme_device_list.py
+++ b/intersight/model/boot_nvme_device_list.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/boot_nvme_device_list_all_of.py b/intersight/model/boot_nvme_device_list_all_of.py
index 6b88706e5c..025e9ef9cf 100644
--- a/intersight/model/boot_nvme_device_list_all_of.py
+++ b/intersight/model/boot_nvme_device_list_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/boot_nvme_device_relationship.py b/intersight/model/boot_nvme_device_relationship.py
index a1824dcf4f..18c830f087 100644
--- a/intersight/model/boot_nvme_device_relationship.py
+++ b/intersight/model/boot_nvme_device_relationship.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
@@ -80,6 +80,8 @@ class BootNvmeDeviceRelationship(ModelComposed):
},
('object_type',): {
'AAA.AUDITRECORD': "aaa.AuditRecord",
+ 'AAA.RETENTIONCONFIG': "aaa.RetentionConfig",
+ 'AAA.RETENTIONPOLICY': "aaa.RetentionPolicy",
'ACCESS.POLICY': "access.Policy",
'ADAPTER.CONFIGPOLICY': "adapter.ConfigPolicy",
'ADAPTER.EXTETHINTERFACE': "adapter.ExtEthInterface",
@@ -96,6 +98,7 @@ class BootNvmeDeviceRelationship(ModelComposed):
'APPLIANCE.DATAEXPORTPOLICY': "appliance.DataExportPolicy",
'APPLIANCE.DEVICECERTIFICATE': "appliance.DeviceCertificate",
'APPLIANCE.DEVICECLAIM': "appliance.DeviceClaim",
+ 'APPLIANCE.DEVICEUPGRADEPOLICY': "appliance.DeviceUpgradePolicy",
'APPLIANCE.DIAGSETTING': "appliance.DiagSetting",
'APPLIANCE.EXTERNALSYSLOGSETTING': "appliance.ExternalSyslogSetting",
'APPLIANCE.FILESYSTEMSTATUS': "appliance.FileSystemStatus",
@@ -144,9 +147,12 @@ class BootNvmeDeviceRelationship(ModelComposed):
'BOOT.UEFISHELLDEVICE': "boot.UefiShellDevice",
'BOOT.USBDEVICE': "boot.UsbDevice",
'BOOT.VMEDIADEVICE': "boot.VmediaDevice",
+ 'BULK.EXPORT': "bulk.Export",
+ 'BULK.EXPORTEDITEM': "bulk.ExportedItem",
'BULK.MOCLONER': "bulk.MoCloner",
'BULK.MOMERGER': "bulk.MoMerger",
'BULK.REQUEST': "bulk.Request",
+ 'BULK.SUBREQUESTOBJ': "bulk.SubRequestObj",
'CAPABILITY.ADAPTERUNITDESCRIPTOR': "capability.AdapterUnitDescriptor",
'CAPABILITY.CATALOG': "capability.Catalog",
'CAPABILITY.CHASSISDESCRIPTOR': "capability.ChassisDescriptor",
@@ -210,10 +216,6 @@ class BootNvmeDeviceRelationship(ModelComposed):
'COND.HCLSTATUS': "cond.HclStatus",
'COND.HCLSTATUSDETAIL': "cond.HclStatusDetail",
'COND.HCLSTATUSJOB': "cond.HclStatusJob",
- 'CONFIG.EXPORTEDITEM': "config.ExportedItem",
- 'CONFIG.EXPORTER': "config.Exporter",
- 'CONFIG.IMPORTEDITEM': "config.ImportedItem",
- 'CONFIG.IMPORTER': "config.Importer",
'CONNECTORPACK.CONNECTORPACKUPGRADE': "connectorpack.ConnectorPackUpgrade",
'CONNECTORPACK.UPGRADEIMPACT': "connectorpack.UpgradeImpact",
'CRD.CUSTOMRESOURCE': "crd.CustomResource",
@@ -222,6 +224,7 @@ class BootNvmeDeviceRelationship(ModelComposed):
'EQUIPMENT.CHASSISIDENTITY': "equipment.ChassisIdentity",
'EQUIPMENT.CHASSISOPERATION': "equipment.ChassisOperation",
'EQUIPMENT.DEVICESUMMARY': "equipment.DeviceSummary",
+ 'EQUIPMENT.EXPANDERMODULE': "equipment.ExpanderModule",
'EQUIPMENT.FAN': "equipment.Fan",
'EQUIPMENT.FANCONTROL': "equipment.FanControl",
'EQUIPMENT.FANMODULE': "equipment.FanModule",
@@ -470,6 +473,7 @@ class BootNvmeDeviceRelationship(ModelComposed):
'KUBERNETES.ADDONDEFINITION': "kubernetes.AddonDefinition",
'KUBERNETES.ADDONPOLICY': "kubernetes.AddonPolicy",
'KUBERNETES.ADDONREPOSITORY': "kubernetes.AddonRepository",
+ 'KUBERNETES.BAREMETALNODEPROFILE': "kubernetes.BaremetalNodeProfile",
'KUBERNETES.CATALOG': "kubernetes.Catalog",
'KUBERNETES.CLUSTER': "kubernetes.Cluster",
'KUBERNETES.CLUSTERADDONPROFILE': "kubernetes.ClusterAddonProfile",
@@ -639,6 +643,11 @@ class BootNvmeDeviceRelationship(ModelComposed):
'RESOURCE.LICENSERESOURCECOUNT': "resource.LicenseResourceCount",
'RESOURCE.MEMBERSHIP': "resource.Membership",
'RESOURCE.MEMBERSHIPHOLDER': "resource.MembershipHolder",
+ 'RESOURCEPOOL.LEASE': "resourcepool.Lease",
+ 'RESOURCEPOOL.LEASERESOURCE': "resourcepool.LeaseResource",
+ 'RESOURCEPOOL.POOL': "resourcepool.Pool",
+ 'RESOURCEPOOL.POOLMEMBER': "resourcepool.PoolMember",
+ 'RESOURCEPOOL.UNIVERSE': "resourcepool.Universe",
'RPROXY.REVERSEPROXY': "rproxy.ReverseProxy",
'SDCARD.POLICY': "sdcard.Policy",
'SDWAN.PROFILE': "sdwan.Profile",
@@ -754,6 +763,7 @@ class BootNvmeDeviceRelationship(ModelComposed):
'TASK.NETAPPSCOPEDINVENTORY': "task.NetAppScopedInventory",
'TASK.PUBLICCLOUDSCOPEDINVENTORY': "task.PublicCloudScopedInventory",
'TASK.PURESCOPEDINVENTORY': "task.PureScopedInventory",
+ 'TASK.SERVERSCOPEDINVENTORY': "task.ServerScopedInventory",
'TECHSUPPORTMANAGEMENT.COLLECTIONCONTROLPOLICY': "techsupportmanagement.CollectionControlPolicy",
'TECHSUPPORTMANAGEMENT.DOWNLOAD': "techsupportmanagement.Download",
'TECHSUPPORTMANAGEMENT.TECHSUPPORTBUNDLE': "techsupportmanagement.TechSupportBundle",
@@ -785,6 +795,7 @@ class BootNvmeDeviceRelationship(ModelComposed):
'VIRTUALIZATION.VMWAREVCENTER': "virtualization.VmwareVcenter",
'VIRTUALIZATION.VMWAREVIRTUALDISK': "virtualization.VmwareVirtualDisk",
'VIRTUALIZATION.VMWAREVIRTUALMACHINE': "virtualization.VmwareVirtualMachine",
+ 'VIRTUALIZATION.VMWAREVIRTUALMACHINESNAPSHOT': "virtualization.VmwareVirtualMachineSnapshot",
'VIRTUALIZATION.VMWAREVIRTUALNETWORKINTERFACE': "virtualization.VmwareVirtualNetworkInterface",
'VIRTUALIZATION.VMWAREVIRTUALSWITCH': "virtualization.VmwareVirtualSwitch",
'VMEDIA.POLICY': "vmedia.Policy",
@@ -817,12 +828,14 @@ class BootNvmeDeviceRelationship(ModelComposed):
'WORKFLOW.TASKDEFINITION': "workflow.TaskDefinition",
'WORKFLOW.TASKINFO': "workflow.TaskInfo",
'WORKFLOW.TASKMETADATA': "workflow.TaskMetadata",
+ 'WORKFLOW.TASKNOTIFICATION': "workflow.TaskNotification",
'WORKFLOW.TEMPLATEEVALUATION': "workflow.TemplateEvaluation",
'WORKFLOW.TEMPLATEFUNCTIONMETA': "workflow.TemplateFunctionMeta",
'WORKFLOW.WORKFLOWDEFINITION': "workflow.WorkflowDefinition",
'WORKFLOW.WORKFLOWINFO': "workflow.WorkflowInfo",
'WORKFLOW.WORKFLOWMETA': "workflow.WorkflowMeta",
'WORKFLOW.WORKFLOWMETADATA': "workflow.WorkflowMetadata",
+ 'WORKFLOW.WORKFLOWNOTIFICATION': "workflow.WorkflowNotification",
},
}
diff --git a/intersight/model/boot_nvme_device_response.py b/intersight/model/boot_nvme_device_response.py
index ed5798532d..44df6464de 100644
--- a/intersight/model/boot_nvme_device_response.py
+++ b/intersight/model/boot_nvme_device_response.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/boot_pch_storage.py b/intersight/model/boot_pch_storage.py
index 0a5067e864..3fe30d5549 100644
--- a/intersight/model/boot_pch_storage.py
+++ b/intersight/model/boot_pch_storage.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/boot_pch_storage_all_of.py b/intersight/model/boot_pch_storage_all_of.py
index 0894a21267..85604cf7b3 100644
--- a/intersight/model/boot_pch_storage_all_of.py
+++ b/intersight/model/boot_pch_storage_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/boot_pch_storage_device.py b/intersight/model/boot_pch_storage_device.py
index ef78777c86..31751f64c6 100644
--- a/intersight/model/boot_pch_storage_device.py
+++ b/intersight/model/boot_pch_storage_device.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/boot_pch_storage_device_all_of.py b/intersight/model/boot_pch_storage_device_all_of.py
index ba618e5378..ccecd1ba04 100644
--- a/intersight/model/boot_pch_storage_device_all_of.py
+++ b/intersight/model/boot_pch_storage_device_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/boot_pch_storage_device_list.py b/intersight/model/boot_pch_storage_device_list.py
index a70a50a6fb..82f2844c53 100644
--- a/intersight/model/boot_pch_storage_device_list.py
+++ b/intersight/model/boot_pch_storage_device_list.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/boot_pch_storage_device_list_all_of.py b/intersight/model/boot_pch_storage_device_list_all_of.py
index 6cdf2adf06..962765c375 100644
--- a/intersight/model/boot_pch_storage_device_list_all_of.py
+++ b/intersight/model/boot_pch_storage_device_list_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/boot_pch_storage_device_relationship.py b/intersight/model/boot_pch_storage_device_relationship.py
index 0466c84035..62984aaedc 100644
--- a/intersight/model/boot_pch_storage_device_relationship.py
+++ b/intersight/model/boot_pch_storage_device_relationship.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
@@ -80,6 +80,8 @@ class BootPchStorageDeviceRelationship(ModelComposed):
},
('object_type',): {
'AAA.AUDITRECORD': "aaa.AuditRecord",
+ 'AAA.RETENTIONCONFIG': "aaa.RetentionConfig",
+ 'AAA.RETENTIONPOLICY': "aaa.RetentionPolicy",
'ACCESS.POLICY': "access.Policy",
'ADAPTER.CONFIGPOLICY': "adapter.ConfigPolicy",
'ADAPTER.EXTETHINTERFACE': "adapter.ExtEthInterface",
@@ -96,6 +98,7 @@ class BootPchStorageDeviceRelationship(ModelComposed):
'APPLIANCE.DATAEXPORTPOLICY': "appliance.DataExportPolicy",
'APPLIANCE.DEVICECERTIFICATE': "appliance.DeviceCertificate",
'APPLIANCE.DEVICECLAIM': "appliance.DeviceClaim",
+ 'APPLIANCE.DEVICEUPGRADEPOLICY': "appliance.DeviceUpgradePolicy",
'APPLIANCE.DIAGSETTING': "appliance.DiagSetting",
'APPLIANCE.EXTERNALSYSLOGSETTING': "appliance.ExternalSyslogSetting",
'APPLIANCE.FILESYSTEMSTATUS': "appliance.FileSystemStatus",
@@ -144,9 +147,12 @@ class BootPchStorageDeviceRelationship(ModelComposed):
'BOOT.UEFISHELLDEVICE': "boot.UefiShellDevice",
'BOOT.USBDEVICE': "boot.UsbDevice",
'BOOT.VMEDIADEVICE': "boot.VmediaDevice",
+ 'BULK.EXPORT': "bulk.Export",
+ 'BULK.EXPORTEDITEM': "bulk.ExportedItem",
'BULK.MOCLONER': "bulk.MoCloner",
'BULK.MOMERGER': "bulk.MoMerger",
'BULK.REQUEST': "bulk.Request",
+ 'BULK.SUBREQUESTOBJ': "bulk.SubRequestObj",
'CAPABILITY.ADAPTERUNITDESCRIPTOR': "capability.AdapterUnitDescriptor",
'CAPABILITY.CATALOG': "capability.Catalog",
'CAPABILITY.CHASSISDESCRIPTOR': "capability.ChassisDescriptor",
@@ -210,10 +216,6 @@ class BootPchStorageDeviceRelationship(ModelComposed):
'COND.HCLSTATUS': "cond.HclStatus",
'COND.HCLSTATUSDETAIL': "cond.HclStatusDetail",
'COND.HCLSTATUSJOB': "cond.HclStatusJob",
- 'CONFIG.EXPORTEDITEM': "config.ExportedItem",
- 'CONFIG.EXPORTER': "config.Exporter",
- 'CONFIG.IMPORTEDITEM': "config.ImportedItem",
- 'CONFIG.IMPORTER': "config.Importer",
'CONNECTORPACK.CONNECTORPACKUPGRADE': "connectorpack.ConnectorPackUpgrade",
'CONNECTORPACK.UPGRADEIMPACT': "connectorpack.UpgradeImpact",
'CRD.CUSTOMRESOURCE': "crd.CustomResource",
@@ -222,6 +224,7 @@ class BootPchStorageDeviceRelationship(ModelComposed):
'EQUIPMENT.CHASSISIDENTITY': "equipment.ChassisIdentity",
'EQUIPMENT.CHASSISOPERATION': "equipment.ChassisOperation",
'EQUIPMENT.DEVICESUMMARY': "equipment.DeviceSummary",
+ 'EQUIPMENT.EXPANDERMODULE': "equipment.ExpanderModule",
'EQUIPMENT.FAN': "equipment.Fan",
'EQUIPMENT.FANCONTROL': "equipment.FanControl",
'EQUIPMENT.FANMODULE': "equipment.FanModule",
@@ -470,6 +473,7 @@ class BootPchStorageDeviceRelationship(ModelComposed):
'KUBERNETES.ADDONDEFINITION': "kubernetes.AddonDefinition",
'KUBERNETES.ADDONPOLICY': "kubernetes.AddonPolicy",
'KUBERNETES.ADDONREPOSITORY': "kubernetes.AddonRepository",
+ 'KUBERNETES.BAREMETALNODEPROFILE': "kubernetes.BaremetalNodeProfile",
'KUBERNETES.CATALOG': "kubernetes.Catalog",
'KUBERNETES.CLUSTER': "kubernetes.Cluster",
'KUBERNETES.CLUSTERADDONPROFILE': "kubernetes.ClusterAddonProfile",
@@ -639,6 +643,11 @@ class BootPchStorageDeviceRelationship(ModelComposed):
'RESOURCE.LICENSERESOURCECOUNT': "resource.LicenseResourceCount",
'RESOURCE.MEMBERSHIP': "resource.Membership",
'RESOURCE.MEMBERSHIPHOLDER': "resource.MembershipHolder",
+ 'RESOURCEPOOL.LEASE': "resourcepool.Lease",
+ 'RESOURCEPOOL.LEASERESOURCE': "resourcepool.LeaseResource",
+ 'RESOURCEPOOL.POOL': "resourcepool.Pool",
+ 'RESOURCEPOOL.POOLMEMBER': "resourcepool.PoolMember",
+ 'RESOURCEPOOL.UNIVERSE': "resourcepool.Universe",
'RPROXY.REVERSEPROXY': "rproxy.ReverseProxy",
'SDCARD.POLICY': "sdcard.Policy",
'SDWAN.PROFILE': "sdwan.Profile",
@@ -754,6 +763,7 @@ class BootPchStorageDeviceRelationship(ModelComposed):
'TASK.NETAPPSCOPEDINVENTORY': "task.NetAppScopedInventory",
'TASK.PUBLICCLOUDSCOPEDINVENTORY': "task.PublicCloudScopedInventory",
'TASK.PURESCOPEDINVENTORY': "task.PureScopedInventory",
+ 'TASK.SERVERSCOPEDINVENTORY': "task.ServerScopedInventory",
'TECHSUPPORTMANAGEMENT.COLLECTIONCONTROLPOLICY': "techsupportmanagement.CollectionControlPolicy",
'TECHSUPPORTMANAGEMENT.DOWNLOAD': "techsupportmanagement.Download",
'TECHSUPPORTMANAGEMENT.TECHSUPPORTBUNDLE': "techsupportmanagement.TechSupportBundle",
@@ -785,6 +795,7 @@ class BootPchStorageDeviceRelationship(ModelComposed):
'VIRTUALIZATION.VMWAREVCENTER': "virtualization.VmwareVcenter",
'VIRTUALIZATION.VMWAREVIRTUALDISK': "virtualization.VmwareVirtualDisk",
'VIRTUALIZATION.VMWAREVIRTUALMACHINE': "virtualization.VmwareVirtualMachine",
+ 'VIRTUALIZATION.VMWAREVIRTUALMACHINESNAPSHOT': "virtualization.VmwareVirtualMachineSnapshot",
'VIRTUALIZATION.VMWAREVIRTUALNETWORKINTERFACE': "virtualization.VmwareVirtualNetworkInterface",
'VIRTUALIZATION.VMWAREVIRTUALSWITCH': "virtualization.VmwareVirtualSwitch",
'VMEDIA.POLICY': "vmedia.Policy",
@@ -817,12 +828,14 @@ class BootPchStorageDeviceRelationship(ModelComposed):
'WORKFLOW.TASKDEFINITION': "workflow.TaskDefinition",
'WORKFLOW.TASKINFO': "workflow.TaskInfo",
'WORKFLOW.TASKMETADATA': "workflow.TaskMetadata",
+ 'WORKFLOW.TASKNOTIFICATION': "workflow.TaskNotification",
'WORKFLOW.TEMPLATEEVALUATION': "workflow.TemplateEvaluation",
'WORKFLOW.TEMPLATEFUNCTIONMETA': "workflow.TemplateFunctionMeta",
'WORKFLOW.WORKFLOWDEFINITION': "workflow.WorkflowDefinition",
'WORKFLOW.WORKFLOWINFO': "workflow.WorkflowInfo",
'WORKFLOW.WORKFLOWMETA': "workflow.WorkflowMeta",
'WORKFLOW.WORKFLOWMETADATA': "workflow.WorkflowMetadata",
+ 'WORKFLOW.WORKFLOWNOTIFICATION': "workflow.WorkflowNotification",
},
}
diff --git a/intersight/model/boot_pch_storage_device_response.py b/intersight/model/boot_pch_storage_device_response.py
index 60457f6091..ae1573cfd6 100644
--- a/intersight/model/boot_pch_storage_device_response.py
+++ b/intersight/model/boot_pch_storage_device_response.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/boot_precision_policy.py b/intersight/model/boot_precision_policy.py
index ef847e05d5..8416a42c9b 100644
--- a/intersight/model/boot_precision_policy.py
+++ b/intersight/model/boot_precision_policy.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/boot_precision_policy_all_of.py b/intersight/model/boot_precision_policy_all_of.py
index 95ddfa559e..bc5f7b4044 100644
--- a/intersight/model/boot_precision_policy_all_of.py
+++ b/intersight/model/boot_precision_policy_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/boot_precision_policy_list.py b/intersight/model/boot_precision_policy_list.py
index abcb71c3ae..2532b97636 100644
--- a/intersight/model/boot_precision_policy_list.py
+++ b/intersight/model/boot_precision_policy_list.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/boot_precision_policy_list_all_of.py b/intersight/model/boot_precision_policy_list_all_of.py
index 08ab07601a..988c08155f 100644
--- a/intersight/model/boot_precision_policy_list_all_of.py
+++ b/intersight/model/boot_precision_policy_list_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/boot_precision_policy_response.py b/intersight/model/boot_precision_policy_response.py
index b6200ef80c..d8fd058b50 100644
--- a/intersight/model/boot_precision_policy_response.py
+++ b/intersight/model/boot_precision_policy_response.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/boot_pxe.py b/intersight/model/boot_pxe.py
index 76c1374236..8622b897ba 100644
--- a/intersight/model/boot_pxe.py
+++ b/intersight/model/boot_pxe.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/boot_pxe_all_of.py b/intersight/model/boot_pxe_all_of.py
index 5f39e417b5..ce685d6330 100644
--- a/intersight/model/boot_pxe_all_of.py
+++ b/intersight/model/boot_pxe_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/boot_pxe_device.py b/intersight/model/boot_pxe_device.py
index e735d08064..0c56b7df61 100644
--- a/intersight/model/boot_pxe_device.py
+++ b/intersight/model/boot_pxe_device.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/boot_pxe_device_all_of.py b/intersight/model/boot_pxe_device_all_of.py
index a4cdec8b3e..d8680adc95 100644
--- a/intersight/model/boot_pxe_device_all_of.py
+++ b/intersight/model/boot_pxe_device_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/boot_pxe_device_list.py b/intersight/model/boot_pxe_device_list.py
index 4683d1c536..a0554de424 100644
--- a/intersight/model/boot_pxe_device_list.py
+++ b/intersight/model/boot_pxe_device_list.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/boot_pxe_device_list_all_of.py b/intersight/model/boot_pxe_device_list_all_of.py
index 6ce874aa34..366683784f 100644
--- a/intersight/model/boot_pxe_device_list_all_of.py
+++ b/intersight/model/boot_pxe_device_list_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/boot_pxe_device_relationship.py b/intersight/model/boot_pxe_device_relationship.py
index 6c398fbc7a..8ed001c4db 100644
--- a/intersight/model/boot_pxe_device_relationship.py
+++ b/intersight/model/boot_pxe_device_relationship.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
@@ -80,6 +80,8 @@ class BootPxeDeviceRelationship(ModelComposed):
},
('object_type',): {
'AAA.AUDITRECORD': "aaa.AuditRecord",
+ 'AAA.RETENTIONCONFIG': "aaa.RetentionConfig",
+ 'AAA.RETENTIONPOLICY': "aaa.RetentionPolicy",
'ACCESS.POLICY': "access.Policy",
'ADAPTER.CONFIGPOLICY': "adapter.ConfigPolicy",
'ADAPTER.EXTETHINTERFACE': "adapter.ExtEthInterface",
@@ -96,6 +98,7 @@ class BootPxeDeviceRelationship(ModelComposed):
'APPLIANCE.DATAEXPORTPOLICY': "appliance.DataExportPolicy",
'APPLIANCE.DEVICECERTIFICATE': "appliance.DeviceCertificate",
'APPLIANCE.DEVICECLAIM': "appliance.DeviceClaim",
+ 'APPLIANCE.DEVICEUPGRADEPOLICY': "appliance.DeviceUpgradePolicy",
'APPLIANCE.DIAGSETTING': "appliance.DiagSetting",
'APPLIANCE.EXTERNALSYSLOGSETTING': "appliance.ExternalSyslogSetting",
'APPLIANCE.FILESYSTEMSTATUS': "appliance.FileSystemStatus",
@@ -144,9 +147,12 @@ class BootPxeDeviceRelationship(ModelComposed):
'BOOT.UEFISHELLDEVICE': "boot.UefiShellDevice",
'BOOT.USBDEVICE': "boot.UsbDevice",
'BOOT.VMEDIADEVICE': "boot.VmediaDevice",
+ 'BULK.EXPORT': "bulk.Export",
+ 'BULK.EXPORTEDITEM': "bulk.ExportedItem",
'BULK.MOCLONER': "bulk.MoCloner",
'BULK.MOMERGER': "bulk.MoMerger",
'BULK.REQUEST': "bulk.Request",
+ 'BULK.SUBREQUESTOBJ': "bulk.SubRequestObj",
'CAPABILITY.ADAPTERUNITDESCRIPTOR': "capability.AdapterUnitDescriptor",
'CAPABILITY.CATALOG': "capability.Catalog",
'CAPABILITY.CHASSISDESCRIPTOR': "capability.ChassisDescriptor",
@@ -210,10 +216,6 @@ class BootPxeDeviceRelationship(ModelComposed):
'COND.HCLSTATUS': "cond.HclStatus",
'COND.HCLSTATUSDETAIL': "cond.HclStatusDetail",
'COND.HCLSTATUSJOB': "cond.HclStatusJob",
- 'CONFIG.EXPORTEDITEM': "config.ExportedItem",
- 'CONFIG.EXPORTER': "config.Exporter",
- 'CONFIG.IMPORTEDITEM': "config.ImportedItem",
- 'CONFIG.IMPORTER': "config.Importer",
'CONNECTORPACK.CONNECTORPACKUPGRADE': "connectorpack.ConnectorPackUpgrade",
'CONNECTORPACK.UPGRADEIMPACT': "connectorpack.UpgradeImpact",
'CRD.CUSTOMRESOURCE': "crd.CustomResource",
@@ -222,6 +224,7 @@ class BootPxeDeviceRelationship(ModelComposed):
'EQUIPMENT.CHASSISIDENTITY': "equipment.ChassisIdentity",
'EQUIPMENT.CHASSISOPERATION': "equipment.ChassisOperation",
'EQUIPMENT.DEVICESUMMARY': "equipment.DeviceSummary",
+ 'EQUIPMENT.EXPANDERMODULE': "equipment.ExpanderModule",
'EQUIPMENT.FAN': "equipment.Fan",
'EQUIPMENT.FANCONTROL': "equipment.FanControl",
'EQUIPMENT.FANMODULE': "equipment.FanModule",
@@ -470,6 +473,7 @@ class BootPxeDeviceRelationship(ModelComposed):
'KUBERNETES.ADDONDEFINITION': "kubernetes.AddonDefinition",
'KUBERNETES.ADDONPOLICY': "kubernetes.AddonPolicy",
'KUBERNETES.ADDONREPOSITORY': "kubernetes.AddonRepository",
+ 'KUBERNETES.BAREMETALNODEPROFILE': "kubernetes.BaremetalNodeProfile",
'KUBERNETES.CATALOG': "kubernetes.Catalog",
'KUBERNETES.CLUSTER': "kubernetes.Cluster",
'KUBERNETES.CLUSTERADDONPROFILE': "kubernetes.ClusterAddonProfile",
@@ -639,6 +643,11 @@ class BootPxeDeviceRelationship(ModelComposed):
'RESOURCE.LICENSERESOURCECOUNT': "resource.LicenseResourceCount",
'RESOURCE.MEMBERSHIP': "resource.Membership",
'RESOURCE.MEMBERSHIPHOLDER': "resource.MembershipHolder",
+ 'RESOURCEPOOL.LEASE': "resourcepool.Lease",
+ 'RESOURCEPOOL.LEASERESOURCE': "resourcepool.LeaseResource",
+ 'RESOURCEPOOL.POOL': "resourcepool.Pool",
+ 'RESOURCEPOOL.POOLMEMBER': "resourcepool.PoolMember",
+ 'RESOURCEPOOL.UNIVERSE': "resourcepool.Universe",
'RPROXY.REVERSEPROXY': "rproxy.ReverseProxy",
'SDCARD.POLICY': "sdcard.Policy",
'SDWAN.PROFILE': "sdwan.Profile",
@@ -754,6 +763,7 @@ class BootPxeDeviceRelationship(ModelComposed):
'TASK.NETAPPSCOPEDINVENTORY': "task.NetAppScopedInventory",
'TASK.PUBLICCLOUDSCOPEDINVENTORY': "task.PublicCloudScopedInventory",
'TASK.PURESCOPEDINVENTORY': "task.PureScopedInventory",
+ 'TASK.SERVERSCOPEDINVENTORY': "task.ServerScopedInventory",
'TECHSUPPORTMANAGEMENT.COLLECTIONCONTROLPOLICY': "techsupportmanagement.CollectionControlPolicy",
'TECHSUPPORTMANAGEMENT.DOWNLOAD': "techsupportmanagement.Download",
'TECHSUPPORTMANAGEMENT.TECHSUPPORTBUNDLE': "techsupportmanagement.TechSupportBundle",
@@ -785,6 +795,7 @@ class BootPxeDeviceRelationship(ModelComposed):
'VIRTUALIZATION.VMWAREVCENTER': "virtualization.VmwareVcenter",
'VIRTUALIZATION.VMWAREVIRTUALDISK': "virtualization.VmwareVirtualDisk",
'VIRTUALIZATION.VMWAREVIRTUALMACHINE': "virtualization.VmwareVirtualMachine",
+ 'VIRTUALIZATION.VMWAREVIRTUALMACHINESNAPSHOT': "virtualization.VmwareVirtualMachineSnapshot",
'VIRTUALIZATION.VMWAREVIRTUALNETWORKINTERFACE': "virtualization.VmwareVirtualNetworkInterface",
'VIRTUALIZATION.VMWAREVIRTUALSWITCH': "virtualization.VmwareVirtualSwitch",
'VMEDIA.POLICY': "vmedia.Policy",
@@ -817,12 +828,14 @@ class BootPxeDeviceRelationship(ModelComposed):
'WORKFLOW.TASKDEFINITION': "workflow.TaskDefinition",
'WORKFLOW.TASKINFO': "workflow.TaskInfo",
'WORKFLOW.TASKMETADATA': "workflow.TaskMetadata",
+ 'WORKFLOW.TASKNOTIFICATION': "workflow.TaskNotification",
'WORKFLOW.TEMPLATEEVALUATION': "workflow.TemplateEvaluation",
'WORKFLOW.TEMPLATEFUNCTIONMETA': "workflow.TemplateFunctionMeta",
'WORKFLOW.WORKFLOWDEFINITION': "workflow.WorkflowDefinition",
'WORKFLOW.WORKFLOWINFO': "workflow.WorkflowInfo",
'WORKFLOW.WORKFLOWMETA': "workflow.WorkflowMeta",
'WORKFLOW.WORKFLOWMETADATA': "workflow.WorkflowMetadata",
+ 'WORKFLOW.WORKFLOWNOTIFICATION': "workflow.WorkflowNotification",
},
}
diff --git a/intersight/model/boot_pxe_device_response.py b/intersight/model/boot_pxe_device_response.py
index a099b709ad..09a70e117d 100644
--- a/intersight/model/boot_pxe_device_response.py
+++ b/intersight/model/boot_pxe_device_response.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/boot_san.py b/intersight/model/boot_san.py
index 1ffc6076ea..6455fe4172 100644
--- a/intersight/model/boot_san.py
+++ b/intersight/model/boot_san.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/boot_san_all_of.py b/intersight/model/boot_san_all_of.py
index f803fe54a1..9920c89dc6 100644
--- a/intersight/model/boot_san_all_of.py
+++ b/intersight/model/boot_san_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/boot_san_device.py b/intersight/model/boot_san_device.py
index da38894915..ded1a9bf6d 100644
--- a/intersight/model/boot_san_device.py
+++ b/intersight/model/boot_san_device.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/boot_san_device_all_of.py b/intersight/model/boot_san_device_all_of.py
index 9daaf9623a..649ef381f0 100644
--- a/intersight/model/boot_san_device_all_of.py
+++ b/intersight/model/boot_san_device_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/boot_san_device_list.py b/intersight/model/boot_san_device_list.py
index 8a326efd1b..3fef1067d4 100644
--- a/intersight/model/boot_san_device_list.py
+++ b/intersight/model/boot_san_device_list.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/boot_san_device_list_all_of.py b/intersight/model/boot_san_device_list_all_of.py
index 26c0fb219a..0525f3110d 100644
--- a/intersight/model/boot_san_device_list_all_of.py
+++ b/intersight/model/boot_san_device_list_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/boot_san_device_relationship.py b/intersight/model/boot_san_device_relationship.py
index 8062a61d2f..b8808e2da4 100644
--- a/intersight/model/boot_san_device_relationship.py
+++ b/intersight/model/boot_san_device_relationship.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
@@ -80,6 +80,8 @@ class BootSanDeviceRelationship(ModelComposed):
},
('object_type',): {
'AAA.AUDITRECORD': "aaa.AuditRecord",
+ 'AAA.RETENTIONCONFIG': "aaa.RetentionConfig",
+ 'AAA.RETENTIONPOLICY': "aaa.RetentionPolicy",
'ACCESS.POLICY': "access.Policy",
'ADAPTER.CONFIGPOLICY': "adapter.ConfigPolicy",
'ADAPTER.EXTETHINTERFACE': "adapter.ExtEthInterface",
@@ -96,6 +98,7 @@ class BootSanDeviceRelationship(ModelComposed):
'APPLIANCE.DATAEXPORTPOLICY': "appliance.DataExportPolicy",
'APPLIANCE.DEVICECERTIFICATE': "appliance.DeviceCertificate",
'APPLIANCE.DEVICECLAIM': "appliance.DeviceClaim",
+ 'APPLIANCE.DEVICEUPGRADEPOLICY': "appliance.DeviceUpgradePolicy",
'APPLIANCE.DIAGSETTING': "appliance.DiagSetting",
'APPLIANCE.EXTERNALSYSLOGSETTING': "appliance.ExternalSyslogSetting",
'APPLIANCE.FILESYSTEMSTATUS': "appliance.FileSystemStatus",
@@ -144,9 +147,12 @@ class BootSanDeviceRelationship(ModelComposed):
'BOOT.UEFISHELLDEVICE': "boot.UefiShellDevice",
'BOOT.USBDEVICE': "boot.UsbDevice",
'BOOT.VMEDIADEVICE': "boot.VmediaDevice",
+ 'BULK.EXPORT': "bulk.Export",
+ 'BULK.EXPORTEDITEM': "bulk.ExportedItem",
'BULK.MOCLONER': "bulk.MoCloner",
'BULK.MOMERGER': "bulk.MoMerger",
'BULK.REQUEST': "bulk.Request",
+ 'BULK.SUBREQUESTOBJ': "bulk.SubRequestObj",
'CAPABILITY.ADAPTERUNITDESCRIPTOR': "capability.AdapterUnitDescriptor",
'CAPABILITY.CATALOG': "capability.Catalog",
'CAPABILITY.CHASSISDESCRIPTOR': "capability.ChassisDescriptor",
@@ -210,10 +216,6 @@ class BootSanDeviceRelationship(ModelComposed):
'COND.HCLSTATUS': "cond.HclStatus",
'COND.HCLSTATUSDETAIL': "cond.HclStatusDetail",
'COND.HCLSTATUSJOB': "cond.HclStatusJob",
- 'CONFIG.EXPORTEDITEM': "config.ExportedItem",
- 'CONFIG.EXPORTER': "config.Exporter",
- 'CONFIG.IMPORTEDITEM': "config.ImportedItem",
- 'CONFIG.IMPORTER': "config.Importer",
'CONNECTORPACK.CONNECTORPACKUPGRADE': "connectorpack.ConnectorPackUpgrade",
'CONNECTORPACK.UPGRADEIMPACT': "connectorpack.UpgradeImpact",
'CRD.CUSTOMRESOURCE': "crd.CustomResource",
@@ -222,6 +224,7 @@ class BootSanDeviceRelationship(ModelComposed):
'EQUIPMENT.CHASSISIDENTITY': "equipment.ChassisIdentity",
'EQUIPMENT.CHASSISOPERATION': "equipment.ChassisOperation",
'EQUIPMENT.DEVICESUMMARY': "equipment.DeviceSummary",
+ 'EQUIPMENT.EXPANDERMODULE': "equipment.ExpanderModule",
'EQUIPMENT.FAN': "equipment.Fan",
'EQUIPMENT.FANCONTROL': "equipment.FanControl",
'EQUIPMENT.FANMODULE': "equipment.FanModule",
@@ -470,6 +473,7 @@ class BootSanDeviceRelationship(ModelComposed):
'KUBERNETES.ADDONDEFINITION': "kubernetes.AddonDefinition",
'KUBERNETES.ADDONPOLICY': "kubernetes.AddonPolicy",
'KUBERNETES.ADDONREPOSITORY': "kubernetes.AddonRepository",
+ 'KUBERNETES.BAREMETALNODEPROFILE': "kubernetes.BaremetalNodeProfile",
'KUBERNETES.CATALOG': "kubernetes.Catalog",
'KUBERNETES.CLUSTER': "kubernetes.Cluster",
'KUBERNETES.CLUSTERADDONPROFILE': "kubernetes.ClusterAddonProfile",
@@ -639,6 +643,11 @@ class BootSanDeviceRelationship(ModelComposed):
'RESOURCE.LICENSERESOURCECOUNT': "resource.LicenseResourceCount",
'RESOURCE.MEMBERSHIP': "resource.Membership",
'RESOURCE.MEMBERSHIPHOLDER': "resource.MembershipHolder",
+ 'RESOURCEPOOL.LEASE': "resourcepool.Lease",
+ 'RESOURCEPOOL.LEASERESOURCE': "resourcepool.LeaseResource",
+ 'RESOURCEPOOL.POOL': "resourcepool.Pool",
+ 'RESOURCEPOOL.POOLMEMBER': "resourcepool.PoolMember",
+ 'RESOURCEPOOL.UNIVERSE': "resourcepool.Universe",
'RPROXY.REVERSEPROXY': "rproxy.ReverseProxy",
'SDCARD.POLICY': "sdcard.Policy",
'SDWAN.PROFILE': "sdwan.Profile",
@@ -754,6 +763,7 @@ class BootSanDeviceRelationship(ModelComposed):
'TASK.NETAPPSCOPEDINVENTORY': "task.NetAppScopedInventory",
'TASK.PUBLICCLOUDSCOPEDINVENTORY': "task.PublicCloudScopedInventory",
'TASK.PURESCOPEDINVENTORY': "task.PureScopedInventory",
+ 'TASK.SERVERSCOPEDINVENTORY': "task.ServerScopedInventory",
'TECHSUPPORTMANAGEMENT.COLLECTIONCONTROLPOLICY': "techsupportmanagement.CollectionControlPolicy",
'TECHSUPPORTMANAGEMENT.DOWNLOAD': "techsupportmanagement.Download",
'TECHSUPPORTMANAGEMENT.TECHSUPPORTBUNDLE': "techsupportmanagement.TechSupportBundle",
@@ -785,6 +795,7 @@ class BootSanDeviceRelationship(ModelComposed):
'VIRTUALIZATION.VMWAREVCENTER': "virtualization.VmwareVcenter",
'VIRTUALIZATION.VMWAREVIRTUALDISK': "virtualization.VmwareVirtualDisk",
'VIRTUALIZATION.VMWAREVIRTUALMACHINE': "virtualization.VmwareVirtualMachine",
+ 'VIRTUALIZATION.VMWAREVIRTUALMACHINESNAPSHOT': "virtualization.VmwareVirtualMachineSnapshot",
'VIRTUALIZATION.VMWAREVIRTUALNETWORKINTERFACE': "virtualization.VmwareVirtualNetworkInterface",
'VIRTUALIZATION.VMWAREVIRTUALSWITCH': "virtualization.VmwareVirtualSwitch",
'VMEDIA.POLICY': "vmedia.Policy",
@@ -817,12 +828,14 @@ class BootSanDeviceRelationship(ModelComposed):
'WORKFLOW.TASKDEFINITION': "workflow.TaskDefinition",
'WORKFLOW.TASKINFO': "workflow.TaskInfo",
'WORKFLOW.TASKMETADATA': "workflow.TaskMetadata",
+ 'WORKFLOW.TASKNOTIFICATION': "workflow.TaskNotification",
'WORKFLOW.TEMPLATEEVALUATION': "workflow.TemplateEvaluation",
'WORKFLOW.TEMPLATEFUNCTIONMETA': "workflow.TemplateFunctionMeta",
'WORKFLOW.WORKFLOWDEFINITION': "workflow.WorkflowDefinition",
'WORKFLOW.WORKFLOWINFO': "workflow.WorkflowInfo",
'WORKFLOW.WORKFLOWMETA': "workflow.WorkflowMeta",
'WORKFLOW.WORKFLOWMETADATA': "workflow.WorkflowMetadata",
+ 'WORKFLOW.WORKFLOWNOTIFICATION': "workflow.WorkflowNotification",
},
}
diff --git a/intersight/model/boot_san_device_response.py b/intersight/model/boot_san_device_response.py
index 3e8c41720d..1768f8c6ea 100644
--- a/intersight/model/boot_san_device_response.py
+++ b/intersight/model/boot_san_device_response.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/boot_sd_card.py b/intersight/model/boot_sd_card.py
index 9cfa69ace0..87d7b31e78 100644
--- a/intersight/model/boot_sd_card.py
+++ b/intersight/model/boot_sd_card.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/boot_sd_card_all_of.py b/intersight/model/boot_sd_card_all_of.py
index 4517bdd6a9..eaf6dc9195 100644
--- a/intersight/model/boot_sd_card_all_of.py
+++ b/intersight/model/boot_sd_card_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/boot_sd_device.py b/intersight/model/boot_sd_device.py
index 25fa0f3b4a..1f4527c0fb 100644
--- a/intersight/model/boot_sd_device.py
+++ b/intersight/model/boot_sd_device.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/boot_sd_device_all_of.py b/intersight/model/boot_sd_device_all_of.py
index 9fe550b081..43fd3f36ce 100644
--- a/intersight/model/boot_sd_device_all_of.py
+++ b/intersight/model/boot_sd_device_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/boot_sd_device_list.py b/intersight/model/boot_sd_device_list.py
index c171690263..6457bd3828 100644
--- a/intersight/model/boot_sd_device_list.py
+++ b/intersight/model/boot_sd_device_list.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/boot_sd_device_list_all_of.py b/intersight/model/boot_sd_device_list_all_of.py
index b298cf8156..39363453e7 100644
--- a/intersight/model/boot_sd_device_list_all_of.py
+++ b/intersight/model/boot_sd_device_list_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/boot_sd_device_relationship.py b/intersight/model/boot_sd_device_relationship.py
index 8b26bfafb5..9f8366fc3f 100644
--- a/intersight/model/boot_sd_device_relationship.py
+++ b/intersight/model/boot_sd_device_relationship.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
@@ -80,6 +80,8 @@ class BootSdDeviceRelationship(ModelComposed):
},
('object_type',): {
'AAA.AUDITRECORD': "aaa.AuditRecord",
+ 'AAA.RETENTIONCONFIG': "aaa.RetentionConfig",
+ 'AAA.RETENTIONPOLICY': "aaa.RetentionPolicy",
'ACCESS.POLICY': "access.Policy",
'ADAPTER.CONFIGPOLICY': "adapter.ConfigPolicy",
'ADAPTER.EXTETHINTERFACE': "adapter.ExtEthInterface",
@@ -96,6 +98,7 @@ class BootSdDeviceRelationship(ModelComposed):
'APPLIANCE.DATAEXPORTPOLICY': "appliance.DataExportPolicy",
'APPLIANCE.DEVICECERTIFICATE': "appliance.DeviceCertificate",
'APPLIANCE.DEVICECLAIM': "appliance.DeviceClaim",
+ 'APPLIANCE.DEVICEUPGRADEPOLICY': "appliance.DeviceUpgradePolicy",
'APPLIANCE.DIAGSETTING': "appliance.DiagSetting",
'APPLIANCE.EXTERNALSYSLOGSETTING': "appliance.ExternalSyslogSetting",
'APPLIANCE.FILESYSTEMSTATUS': "appliance.FileSystemStatus",
@@ -144,9 +147,12 @@ class BootSdDeviceRelationship(ModelComposed):
'BOOT.UEFISHELLDEVICE': "boot.UefiShellDevice",
'BOOT.USBDEVICE': "boot.UsbDevice",
'BOOT.VMEDIADEVICE': "boot.VmediaDevice",
+ 'BULK.EXPORT': "bulk.Export",
+ 'BULK.EXPORTEDITEM': "bulk.ExportedItem",
'BULK.MOCLONER': "bulk.MoCloner",
'BULK.MOMERGER': "bulk.MoMerger",
'BULK.REQUEST': "bulk.Request",
+ 'BULK.SUBREQUESTOBJ': "bulk.SubRequestObj",
'CAPABILITY.ADAPTERUNITDESCRIPTOR': "capability.AdapterUnitDescriptor",
'CAPABILITY.CATALOG': "capability.Catalog",
'CAPABILITY.CHASSISDESCRIPTOR': "capability.ChassisDescriptor",
@@ -210,10 +216,6 @@ class BootSdDeviceRelationship(ModelComposed):
'COND.HCLSTATUS': "cond.HclStatus",
'COND.HCLSTATUSDETAIL': "cond.HclStatusDetail",
'COND.HCLSTATUSJOB': "cond.HclStatusJob",
- 'CONFIG.EXPORTEDITEM': "config.ExportedItem",
- 'CONFIG.EXPORTER': "config.Exporter",
- 'CONFIG.IMPORTEDITEM': "config.ImportedItem",
- 'CONFIG.IMPORTER': "config.Importer",
'CONNECTORPACK.CONNECTORPACKUPGRADE': "connectorpack.ConnectorPackUpgrade",
'CONNECTORPACK.UPGRADEIMPACT': "connectorpack.UpgradeImpact",
'CRD.CUSTOMRESOURCE': "crd.CustomResource",
@@ -222,6 +224,7 @@ class BootSdDeviceRelationship(ModelComposed):
'EQUIPMENT.CHASSISIDENTITY': "equipment.ChassisIdentity",
'EQUIPMENT.CHASSISOPERATION': "equipment.ChassisOperation",
'EQUIPMENT.DEVICESUMMARY': "equipment.DeviceSummary",
+ 'EQUIPMENT.EXPANDERMODULE': "equipment.ExpanderModule",
'EQUIPMENT.FAN': "equipment.Fan",
'EQUIPMENT.FANCONTROL': "equipment.FanControl",
'EQUIPMENT.FANMODULE': "equipment.FanModule",
@@ -470,6 +473,7 @@ class BootSdDeviceRelationship(ModelComposed):
'KUBERNETES.ADDONDEFINITION': "kubernetes.AddonDefinition",
'KUBERNETES.ADDONPOLICY': "kubernetes.AddonPolicy",
'KUBERNETES.ADDONREPOSITORY': "kubernetes.AddonRepository",
+ 'KUBERNETES.BAREMETALNODEPROFILE': "kubernetes.BaremetalNodeProfile",
'KUBERNETES.CATALOG': "kubernetes.Catalog",
'KUBERNETES.CLUSTER': "kubernetes.Cluster",
'KUBERNETES.CLUSTERADDONPROFILE': "kubernetes.ClusterAddonProfile",
@@ -639,6 +643,11 @@ class BootSdDeviceRelationship(ModelComposed):
'RESOURCE.LICENSERESOURCECOUNT': "resource.LicenseResourceCount",
'RESOURCE.MEMBERSHIP': "resource.Membership",
'RESOURCE.MEMBERSHIPHOLDER': "resource.MembershipHolder",
+ 'RESOURCEPOOL.LEASE': "resourcepool.Lease",
+ 'RESOURCEPOOL.LEASERESOURCE': "resourcepool.LeaseResource",
+ 'RESOURCEPOOL.POOL': "resourcepool.Pool",
+ 'RESOURCEPOOL.POOLMEMBER': "resourcepool.PoolMember",
+ 'RESOURCEPOOL.UNIVERSE': "resourcepool.Universe",
'RPROXY.REVERSEPROXY': "rproxy.ReverseProxy",
'SDCARD.POLICY': "sdcard.Policy",
'SDWAN.PROFILE': "sdwan.Profile",
@@ -754,6 +763,7 @@ class BootSdDeviceRelationship(ModelComposed):
'TASK.NETAPPSCOPEDINVENTORY': "task.NetAppScopedInventory",
'TASK.PUBLICCLOUDSCOPEDINVENTORY': "task.PublicCloudScopedInventory",
'TASK.PURESCOPEDINVENTORY': "task.PureScopedInventory",
+ 'TASK.SERVERSCOPEDINVENTORY': "task.ServerScopedInventory",
'TECHSUPPORTMANAGEMENT.COLLECTIONCONTROLPOLICY': "techsupportmanagement.CollectionControlPolicy",
'TECHSUPPORTMANAGEMENT.DOWNLOAD': "techsupportmanagement.Download",
'TECHSUPPORTMANAGEMENT.TECHSUPPORTBUNDLE': "techsupportmanagement.TechSupportBundle",
@@ -785,6 +795,7 @@ class BootSdDeviceRelationship(ModelComposed):
'VIRTUALIZATION.VMWAREVCENTER': "virtualization.VmwareVcenter",
'VIRTUALIZATION.VMWAREVIRTUALDISK': "virtualization.VmwareVirtualDisk",
'VIRTUALIZATION.VMWAREVIRTUALMACHINE': "virtualization.VmwareVirtualMachine",
+ 'VIRTUALIZATION.VMWAREVIRTUALMACHINESNAPSHOT': "virtualization.VmwareVirtualMachineSnapshot",
'VIRTUALIZATION.VMWAREVIRTUALNETWORKINTERFACE': "virtualization.VmwareVirtualNetworkInterface",
'VIRTUALIZATION.VMWAREVIRTUALSWITCH': "virtualization.VmwareVirtualSwitch",
'VMEDIA.POLICY': "vmedia.Policy",
@@ -817,12 +828,14 @@ class BootSdDeviceRelationship(ModelComposed):
'WORKFLOW.TASKDEFINITION': "workflow.TaskDefinition",
'WORKFLOW.TASKINFO': "workflow.TaskInfo",
'WORKFLOW.TASKMETADATA': "workflow.TaskMetadata",
+ 'WORKFLOW.TASKNOTIFICATION': "workflow.TaskNotification",
'WORKFLOW.TEMPLATEEVALUATION': "workflow.TemplateEvaluation",
'WORKFLOW.TEMPLATEFUNCTIONMETA': "workflow.TemplateFunctionMeta",
'WORKFLOW.WORKFLOWDEFINITION': "workflow.WorkflowDefinition",
'WORKFLOW.WORKFLOWINFO': "workflow.WorkflowInfo",
'WORKFLOW.WORKFLOWMETA': "workflow.WorkflowMeta",
'WORKFLOW.WORKFLOWMETADATA': "workflow.WorkflowMetadata",
+ 'WORKFLOW.WORKFLOWNOTIFICATION': "workflow.WorkflowNotification",
},
}
diff --git a/intersight/model/boot_sd_device_response.py b/intersight/model/boot_sd_device_response.py
index 2a1e3b674c..a3f6ef7127 100644
--- a/intersight/model/boot_sd_device_response.py
+++ b/intersight/model/boot_sd_device_response.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/boot_uefi_shell.py b/intersight/model/boot_uefi_shell.py
index 538f1a8e26..d4b5c5b970 100644
--- a/intersight/model/boot_uefi_shell.py
+++ b/intersight/model/boot_uefi_shell.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/boot_uefi_shell_device.py b/intersight/model/boot_uefi_shell_device.py
index 8814c59f60..bd78b5bac4 100644
--- a/intersight/model/boot_uefi_shell_device.py
+++ b/intersight/model/boot_uefi_shell_device.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/boot_uefi_shell_device_all_of.py b/intersight/model/boot_uefi_shell_device_all_of.py
index 1961235ca2..d771442106 100644
--- a/intersight/model/boot_uefi_shell_device_all_of.py
+++ b/intersight/model/boot_uefi_shell_device_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/boot_uefi_shell_device_list.py b/intersight/model/boot_uefi_shell_device_list.py
index bb450692ff..1d9db21751 100644
--- a/intersight/model/boot_uefi_shell_device_list.py
+++ b/intersight/model/boot_uefi_shell_device_list.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/boot_uefi_shell_device_list_all_of.py b/intersight/model/boot_uefi_shell_device_list_all_of.py
index 3594a6e183..0819d37b74 100644
--- a/intersight/model/boot_uefi_shell_device_list_all_of.py
+++ b/intersight/model/boot_uefi_shell_device_list_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/boot_uefi_shell_device_relationship.py b/intersight/model/boot_uefi_shell_device_relationship.py
index 0a1d485ea9..ce24ed86cd 100644
--- a/intersight/model/boot_uefi_shell_device_relationship.py
+++ b/intersight/model/boot_uefi_shell_device_relationship.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
@@ -80,6 +80,8 @@ class BootUefiShellDeviceRelationship(ModelComposed):
},
('object_type',): {
'AAA.AUDITRECORD': "aaa.AuditRecord",
+ 'AAA.RETENTIONCONFIG': "aaa.RetentionConfig",
+ 'AAA.RETENTIONPOLICY': "aaa.RetentionPolicy",
'ACCESS.POLICY': "access.Policy",
'ADAPTER.CONFIGPOLICY': "adapter.ConfigPolicy",
'ADAPTER.EXTETHINTERFACE': "adapter.ExtEthInterface",
@@ -96,6 +98,7 @@ class BootUefiShellDeviceRelationship(ModelComposed):
'APPLIANCE.DATAEXPORTPOLICY': "appliance.DataExportPolicy",
'APPLIANCE.DEVICECERTIFICATE': "appliance.DeviceCertificate",
'APPLIANCE.DEVICECLAIM': "appliance.DeviceClaim",
+ 'APPLIANCE.DEVICEUPGRADEPOLICY': "appliance.DeviceUpgradePolicy",
'APPLIANCE.DIAGSETTING': "appliance.DiagSetting",
'APPLIANCE.EXTERNALSYSLOGSETTING': "appliance.ExternalSyslogSetting",
'APPLIANCE.FILESYSTEMSTATUS': "appliance.FileSystemStatus",
@@ -144,9 +147,12 @@ class BootUefiShellDeviceRelationship(ModelComposed):
'BOOT.UEFISHELLDEVICE': "boot.UefiShellDevice",
'BOOT.USBDEVICE': "boot.UsbDevice",
'BOOT.VMEDIADEVICE': "boot.VmediaDevice",
+ 'BULK.EXPORT': "bulk.Export",
+ 'BULK.EXPORTEDITEM': "bulk.ExportedItem",
'BULK.MOCLONER': "bulk.MoCloner",
'BULK.MOMERGER': "bulk.MoMerger",
'BULK.REQUEST': "bulk.Request",
+ 'BULK.SUBREQUESTOBJ': "bulk.SubRequestObj",
'CAPABILITY.ADAPTERUNITDESCRIPTOR': "capability.AdapterUnitDescriptor",
'CAPABILITY.CATALOG': "capability.Catalog",
'CAPABILITY.CHASSISDESCRIPTOR': "capability.ChassisDescriptor",
@@ -210,10 +216,6 @@ class BootUefiShellDeviceRelationship(ModelComposed):
'COND.HCLSTATUS': "cond.HclStatus",
'COND.HCLSTATUSDETAIL': "cond.HclStatusDetail",
'COND.HCLSTATUSJOB': "cond.HclStatusJob",
- 'CONFIG.EXPORTEDITEM': "config.ExportedItem",
- 'CONFIG.EXPORTER': "config.Exporter",
- 'CONFIG.IMPORTEDITEM': "config.ImportedItem",
- 'CONFIG.IMPORTER': "config.Importer",
'CONNECTORPACK.CONNECTORPACKUPGRADE': "connectorpack.ConnectorPackUpgrade",
'CONNECTORPACK.UPGRADEIMPACT': "connectorpack.UpgradeImpact",
'CRD.CUSTOMRESOURCE': "crd.CustomResource",
@@ -222,6 +224,7 @@ class BootUefiShellDeviceRelationship(ModelComposed):
'EQUIPMENT.CHASSISIDENTITY': "equipment.ChassisIdentity",
'EQUIPMENT.CHASSISOPERATION': "equipment.ChassisOperation",
'EQUIPMENT.DEVICESUMMARY': "equipment.DeviceSummary",
+ 'EQUIPMENT.EXPANDERMODULE': "equipment.ExpanderModule",
'EQUIPMENT.FAN': "equipment.Fan",
'EQUIPMENT.FANCONTROL': "equipment.FanControl",
'EQUIPMENT.FANMODULE': "equipment.FanModule",
@@ -470,6 +473,7 @@ class BootUefiShellDeviceRelationship(ModelComposed):
'KUBERNETES.ADDONDEFINITION': "kubernetes.AddonDefinition",
'KUBERNETES.ADDONPOLICY': "kubernetes.AddonPolicy",
'KUBERNETES.ADDONREPOSITORY': "kubernetes.AddonRepository",
+ 'KUBERNETES.BAREMETALNODEPROFILE': "kubernetes.BaremetalNodeProfile",
'KUBERNETES.CATALOG': "kubernetes.Catalog",
'KUBERNETES.CLUSTER': "kubernetes.Cluster",
'KUBERNETES.CLUSTERADDONPROFILE': "kubernetes.ClusterAddonProfile",
@@ -639,6 +643,11 @@ class BootUefiShellDeviceRelationship(ModelComposed):
'RESOURCE.LICENSERESOURCECOUNT': "resource.LicenseResourceCount",
'RESOURCE.MEMBERSHIP': "resource.Membership",
'RESOURCE.MEMBERSHIPHOLDER': "resource.MembershipHolder",
+ 'RESOURCEPOOL.LEASE': "resourcepool.Lease",
+ 'RESOURCEPOOL.LEASERESOURCE': "resourcepool.LeaseResource",
+ 'RESOURCEPOOL.POOL': "resourcepool.Pool",
+ 'RESOURCEPOOL.POOLMEMBER': "resourcepool.PoolMember",
+ 'RESOURCEPOOL.UNIVERSE': "resourcepool.Universe",
'RPROXY.REVERSEPROXY': "rproxy.ReverseProxy",
'SDCARD.POLICY': "sdcard.Policy",
'SDWAN.PROFILE': "sdwan.Profile",
@@ -754,6 +763,7 @@ class BootUefiShellDeviceRelationship(ModelComposed):
'TASK.NETAPPSCOPEDINVENTORY': "task.NetAppScopedInventory",
'TASK.PUBLICCLOUDSCOPEDINVENTORY': "task.PublicCloudScopedInventory",
'TASK.PURESCOPEDINVENTORY': "task.PureScopedInventory",
+ 'TASK.SERVERSCOPEDINVENTORY': "task.ServerScopedInventory",
'TECHSUPPORTMANAGEMENT.COLLECTIONCONTROLPOLICY': "techsupportmanagement.CollectionControlPolicy",
'TECHSUPPORTMANAGEMENT.DOWNLOAD': "techsupportmanagement.Download",
'TECHSUPPORTMANAGEMENT.TECHSUPPORTBUNDLE': "techsupportmanagement.TechSupportBundle",
@@ -785,6 +795,7 @@ class BootUefiShellDeviceRelationship(ModelComposed):
'VIRTUALIZATION.VMWAREVCENTER': "virtualization.VmwareVcenter",
'VIRTUALIZATION.VMWAREVIRTUALDISK': "virtualization.VmwareVirtualDisk",
'VIRTUALIZATION.VMWAREVIRTUALMACHINE': "virtualization.VmwareVirtualMachine",
+ 'VIRTUALIZATION.VMWAREVIRTUALMACHINESNAPSHOT': "virtualization.VmwareVirtualMachineSnapshot",
'VIRTUALIZATION.VMWAREVIRTUALNETWORKINTERFACE': "virtualization.VmwareVirtualNetworkInterface",
'VIRTUALIZATION.VMWAREVIRTUALSWITCH': "virtualization.VmwareVirtualSwitch",
'VMEDIA.POLICY': "vmedia.Policy",
@@ -817,12 +828,14 @@ class BootUefiShellDeviceRelationship(ModelComposed):
'WORKFLOW.TASKDEFINITION': "workflow.TaskDefinition",
'WORKFLOW.TASKINFO': "workflow.TaskInfo",
'WORKFLOW.TASKMETADATA': "workflow.TaskMetadata",
+ 'WORKFLOW.TASKNOTIFICATION': "workflow.TaskNotification",
'WORKFLOW.TEMPLATEEVALUATION': "workflow.TemplateEvaluation",
'WORKFLOW.TEMPLATEFUNCTIONMETA': "workflow.TemplateFunctionMeta",
'WORKFLOW.WORKFLOWDEFINITION': "workflow.WorkflowDefinition",
'WORKFLOW.WORKFLOWINFO': "workflow.WorkflowInfo",
'WORKFLOW.WORKFLOWMETA': "workflow.WorkflowMeta",
'WORKFLOW.WORKFLOWMETADATA': "workflow.WorkflowMetadata",
+ 'WORKFLOW.WORKFLOWNOTIFICATION': "workflow.WorkflowNotification",
},
}
diff --git a/intersight/model/boot_uefi_shell_device_response.py b/intersight/model/boot_uefi_shell_device_response.py
index 4ff2e761fb..189dd4a979 100644
--- a/intersight/model/boot_uefi_shell_device_response.py
+++ b/intersight/model/boot_uefi_shell_device_response.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/boot_usb.py b/intersight/model/boot_usb.py
index 13cbb06a7d..601bae6720 100644
--- a/intersight/model/boot_usb.py
+++ b/intersight/model/boot_usb.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/boot_usb_all_of.py b/intersight/model/boot_usb_all_of.py
index e20e44be48..751794ee20 100644
--- a/intersight/model/boot_usb_all_of.py
+++ b/intersight/model/boot_usb_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/boot_usb_device.py b/intersight/model/boot_usb_device.py
index aef5b1786a..b68826fcc4 100644
--- a/intersight/model/boot_usb_device.py
+++ b/intersight/model/boot_usb_device.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/boot_usb_device_all_of.py b/intersight/model/boot_usb_device_all_of.py
index c0a73ba90c..274ad26e37 100644
--- a/intersight/model/boot_usb_device_all_of.py
+++ b/intersight/model/boot_usb_device_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/boot_usb_device_list.py b/intersight/model/boot_usb_device_list.py
index 25c5779d12..c48b286be8 100644
--- a/intersight/model/boot_usb_device_list.py
+++ b/intersight/model/boot_usb_device_list.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/boot_usb_device_list_all_of.py b/intersight/model/boot_usb_device_list_all_of.py
index 637a9f676e..31e9c35d70 100644
--- a/intersight/model/boot_usb_device_list_all_of.py
+++ b/intersight/model/boot_usb_device_list_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/boot_usb_device_relationship.py b/intersight/model/boot_usb_device_relationship.py
index 6d47252bd3..01268ca45e 100644
--- a/intersight/model/boot_usb_device_relationship.py
+++ b/intersight/model/boot_usb_device_relationship.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
@@ -80,6 +80,8 @@ class BootUsbDeviceRelationship(ModelComposed):
},
('object_type',): {
'AAA.AUDITRECORD': "aaa.AuditRecord",
+ 'AAA.RETENTIONCONFIG': "aaa.RetentionConfig",
+ 'AAA.RETENTIONPOLICY': "aaa.RetentionPolicy",
'ACCESS.POLICY': "access.Policy",
'ADAPTER.CONFIGPOLICY': "adapter.ConfigPolicy",
'ADAPTER.EXTETHINTERFACE': "adapter.ExtEthInterface",
@@ -96,6 +98,7 @@ class BootUsbDeviceRelationship(ModelComposed):
'APPLIANCE.DATAEXPORTPOLICY': "appliance.DataExportPolicy",
'APPLIANCE.DEVICECERTIFICATE': "appliance.DeviceCertificate",
'APPLIANCE.DEVICECLAIM': "appliance.DeviceClaim",
+ 'APPLIANCE.DEVICEUPGRADEPOLICY': "appliance.DeviceUpgradePolicy",
'APPLIANCE.DIAGSETTING': "appliance.DiagSetting",
'APPLIANCE.EXTERNALSYSLOGSETTING': "appliance.ExternalSyslogSetting",
'APPLIANCE.FILESYSTEMSTATUS': "appliance.FileSystemStatus",
@@ -144,9 +147,12 @@ class BootUsbDeviceRelationship(ModelComposed):
'BOOT.UEFISHELLDEVICE': "boot.UefiShellDevice",
'BOOT.USBDEVICE': "boot.UsbDevice",
'BOOT.VMEDIADEVICE': "boot.VmediaDevice",
+ 'BULK.EXPORT': "bulk.Export",
+ 'BULK.EXPORTEDITEM': "bulk.ExportedItem",
'BULK.MOCLONER': "bulk.MoCloner",
'BULK.MOMERGER': "bulk.MoMerger",
'BULK.REQUEST': "bulk.Request",
+ 'BULK.SUBREQUESTOBJ': "bulk.SubRequestObj",
'CAPABILITY.ADAPTERUNITDESCRIPTOR': "capability.AdapterUnitDescriptor",
'CAPABILITY.CATALOG': "capability.Catalog",
'CAPABILITY.CHASSISDESCRIPTOR': "capability.ChassisDescriptor",
@@ -210,10 +216,6 @@ class BootUsbDeviceRelationship(ModelComposed):
'COND.HCLSTATUS': "cond.HclStatus",
'COND.HCLSTATUSDETAIL': "cond.HclStatusDetail",
'COND.HCLSTATUSJOB': "cond.HclStatusJob",
- 'CONFIG.EXPORTEDITEM': "config.ExportedItem",
- 'CONFIG.EXPORTER': "config.Exporter",
- 'CONFIG.IMPORTEDITEM': "config.ImportedItem",
- 'CONFIG.IMPORTER': "config.Importer",
'CONNECTORPACK.CONNECTORPACKUPGRADE': "connectorpack.ConnectorPackUpgrade",
'CONNECTORPACK.UPGRADEIMPACT': "connectorpack.UpgradeImpact",
'CRD.CUSTOMRESOURCE': "crd.CustomResource",
@@ -222,6 +224,7 @@ class BootUsbDeviceRelationship(ModelComposed):
'EQUIPMENT.CHASSISIDENTITY': "equipment.ChassisIdentity",
'EQUIPMENT.CHASSISOPERATION': "equipment.ChassisOperation",
'EQUIPMENT.DEVICESUMMARY': "equipment.DeviceSummary",
+ 'EQUIPMENT.EXPANDERMODULE': "equipment.ExpanderModule",
'EQUIPMENT.FAN': "equipment.Fan",
'EQUIPMENT.FANCONTROL': "equipment.FanControl",
'EQUIPMENT.FANMODULE': "equipment.FanModule",
@@ -470,6 +473,7 @@ class BootUsbDeviceRelationship(ModelComposed):
'KUBERNETES.ADDONDEFINITION': "kubernetes.AddonDefinition",
'KUBERNETES.ADDONPOLICY': "kubernetes.AddonPolicy",
'KUBERNETES.ADDONREPOSITORY': "kubernetes.AddonRepository",
+ 'KUBERNETES.BAREMETALNODEPROFILE': "kubernetes.BaremetalNodeProfile",
'KUBERNETES.CATALOG': "kubernetes.Catalog",
'KUBERNETES.CLUSTER': "kubernetes.Cluster",
'KUBERNETES.CLUSTERADDONPROFILE': "kubernetes.ClusterAddonProfile",
@@ -639,6 +643,11 @@ class BootUsbDeviceRelationship(ModelComposed):
'RESOURCE.LICENSERESOURCECOUNT': "resource.LicenseResourceCount",
'RESOURCE.MEMBERSHIP': "resource.Membership",
'RESOURCE.MEMBERSHIPHOLDER': "resource.MembershipHolder",
+ 'RESOURCEPOOL.LEASE': "resourcepool.Lease",
+ 'RESOURCEPOOL.LEASERESOURCE': "resourcepool.LeaseResource",
+ 'RESOURCEPOOL.POOL': "resourcepool.Pool",
+ 'RESOURCEPOOL.POOLMEMBER': "resourcepool.PoolMember",
+ 'RESOURCEPOOL.UNIVERSE': "resourcepool.Universe",
'RPROXY.REVERSEPROXY': "rproxy.ReverseProxy",
'SDCARD.POLICY': "sdcard.Policy",
'SDWAN.PROFILE': "sdwan.Profile",
@@ -754,6 +763,7 @@ class BootUsbDeviceRelationship(ModelComposed):
'TASK.NETAPPSCOPEDINVENTORY': "task.NetAppScopedInventory",
'TASK.PUBLICCLOUDSCOPEDINVENTORY': "task.PublicCloudScopedInventory",
'TASK.PURESCOPEDINVENTORY': "task.PureScopedInventory",
+ 'TASK.SERVERSCOPEDINVENTORY': "task.ServerScopedInventory",
'TECHSUPPORTMANAGEMENT.COLLECTIONCONTROLPOLICY': "techsupportmanagement.CollectionControlPolicy",
'TECHSUPPORTMANAGEMENT.DOWNLOAD': "techsupportmanagement.Download",
'TECHSUPPORTMANAGEMENT.TECHSUPPORTBUNDLE': "techsupportmanagement.TechSupportBundle",
@@ -785,6 +795,7 @@ class BootUsbDeviceRelationship(ModelComposed):
'VIRTUALIZATION.VMWAREVCENTER': "virtualization.VmwareVcenter",
'VIRTUALIZATION.VMWAREVIRTUALDISK': "virtualization.VmwareVirtualDisk",
'VIRTUALIZATION.VMWAREVIRTUALMACHINE': "virtualization.VmwareVirtualMachine",
+ 'VIRTUALIZATION.VMWAREVIRTUALMACHINESNAPSHOT': "virtualization.VmwareVirtualMachineSnapshot",
'VIRTUALIZATION.VMWAREVIRTUALNETWORKINTERFACE': "virtualization.VmwareVirtualNetworkInterface",
'VIRTUALIZATION.VMWAREVIRTUALSWITCH': "virtualization.VmwareVirtualSwitch",
'VMEDIA.POLICY': "vmedia.Policy",
@@ -817,12 +828,14 @@ class BootUsbDeviceRelationship(ModelComposed):
'WORKFLOW.TASKDEFINITION': "workflow.TaskDefinition",
'WORKFLOW.TASKINFO': "workflow.TaskInfo",
'WORKFLOW.TASKMETADATA': "workflow.TaskMetadata",
+ 'WORKFLOW.TASKNOTIFICATION': "workflow.TaskNotification",
'WORKFLOW.TEMPLATEEVALUATION': "workflow.TemplateEvaluation",
'WORKFLOW.TEMPLATEFUNCTIONMETA': "workflow.TemplateFunctionMeta",
'WORKFLOW.WORKFLOWDEFINITION': "workflow.WorkflowDefinition",
'WORKFLOW.WORKFLOWINFO': "workflow.WorkflowInfo",
'WORKFLOW.WORKFLOWMETA': "workflow.WorkflowMeta",
'WORKFLOW.WORKFLOWMETADATA': "workflow.WorkflowMetadata",
+ 'WORKFLOW.WORKFLOWNOTIFICATION': "workflow.WorkflowNotification",
},
}
diff --git a/intersight/model/boot_usb_device_response.py b/intersight/model/boot_usb_device_response.py
index ba5eeeec53..f5cf42f55b 100644
--- a/intersight/model/boot_usb_device_response.py
+++ b/intersight/model/boot_usb_device_response.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/boot_virtual_media.py b/intersight/model/boot_virtual_media.py
index 59813d7138..5724dd13f5 100644
--- a/intersight/model/boot_virtual_media.py
+++ b/intersight/model/boot_virtual_media.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/boot_virtual_media_all_of.py b/intersight/model/boot_virtual_media_all_of.py
index 79d90cce62..0304c2c501 100644
--- a/intersight/model/boot_virtual_media_all_of.py
+++ b/intersight/model/boot_virtual_media_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/boot_vmedia_device.py b/intersight/model/boot_vmedia_device.py
index f9b8591dae..b98ab19a19 100644
--- a/intersight/model/boot_vmedia_device.py
+++ b/intersight/model/boot_vmedia_device.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/boot_vmedia_device_all_of.py b/intersight/model/boot_vmedia_device_all_of.py
index 7a70fbb281..f5109d0576 100644
--- a/intersight/model/boot_vmedia_device_all_of.py
+++ b/intersight/model/boot_vmedia_device_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/boot_vmedia_device_list.py b/intersight/model/boot_vmedia_device_list.py
index 096c1b7d55..95d0f33585 100644
--- a/intersight/model/boot_vmedia_device_list.py
+++ b/intersight/model/boot_vmedia_device_list.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/boot_vmedia_device_list_all_of.py b/intersight/model/boot_vmedia_device_list_all_of.py
index 273f97bb84..a4012c2a1a 100644
--- a/intersight/model/boot_vmedia_device_list_all_of.py
+++ b/intersight/model/boot_vmedia_device_list_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/boot_vmedia_device_relationship.py b/intersight/model/boot_vmedia_device_relationship.py
index 005f56dd8e..11da131ebe 100644
--- a/intersight/model/boot_vmedia_device_relationship.py
+++ b/intersight/model/boot_vmedia_device_relationship.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
@@ -80,6 +80,8 @@ class BootVmediaDeviceRelationship(ModelComposed):
},
('object_type',): {
'AAA.AUDITRECORD': "aaa.AuditRecord",
+ 'AAA.RETENTIONCONFIG': "aaa.RetentionConfig",
+ 'AAA.RETENTIONPOLICY': "aaa.RetentionPolicy",
'ACCESS.POLICY': "access.Policy",
'ADAPTER.CONFIGPOLICY': "adapter.ConfigPolicy",
'ADAPTER.EXTETHINTERFACE': "adapter.ExtEthInterface",
@@ -96,6 +98,7 @@ class BootVmediaDeviceRelationship(ModelComposed):
'APPLIANCE.DATAEXPORTPOLICY': "appliance.DataExportPolicy",
'APPLIANCE.DEVICECERTIFICATE': "appliance.DeviceCertificate",
'APPLIANCE.DEVICECLAIM': "appliance.DeviceClaim",
+ 'APPLIANCE.DEVICEUPGRADEPOLICY': "appliance.DeviceUpgradePolicy",
'APPLIANCE.DIAGSETTING': "appliance.DiagSetting",
'APPLIANCE.EXTERNALSYSLOGSETTING': "appliance.ExternalSyslogSetting",
'APPLIANCE.FILESYSTEMSTATUS': "appliance.FileSystemStatus",
@@ -144,9 +147,12 @@ class BootVmediaDeviceRelationship(ModelComposed):
'BOOT.UEFISHELLDEVICE': "boot.UefiShellDevice",
'BOOT.USBDEVICE': "boot.UsbDevice",
'BOOT.VMEDIADEVICE': "boot.VmediaDevice",
+ 'BULK.EXPORT': "bulk.Export",
+ 'BULK.EXPORTEDITEM': "bulk.ExportedItem",
'BULK.MOCLONER': "bulk.MoCloner",
'BULK.MOMERGER': "bulk.MoMerger",
'BULK.REQUEST': "bulk.Request",
+ 'BULK.SUBREQUESTOBJ': "bulk.SubRequestObj",
'CAPABILITY.ADAPTERUNITDESCRIPTOR': "capability.AdapterUnitDescriptor",
'CAPABILITY.CATALOG': "capability.Catalog",
'CAPABILITY.CHASSISDESCRIPTOR': "capability.ChassisDescriptor",
@@ -210,10 +216,6 @@ class BootVmediaDeviceRelationship(ModelComposed):
'COND.HCLSTATUS': "cond.HclStatus",
'COND.HCLSTATUSDETAIL': "cond.HclStatusDetail",
'COND.HCLSTATUSJOB': "cond.HclStatusJob",
- 'CONFIG.EXPORTEDITEM': "config.ExportedItem",
- 'CONFIG.EXPORTER': "config.Exporter",
- 'CONFIG.IMPORTEDITEM': "config.ImportedItem",
- 'CONFIG.IMPORTER': "config.Importer",
'CONNECTORPACK.CONNECTORPACKUPGRADE': "connectorpack.ConnectorPackUpgrade",
'CONNECTORPACK.UPGRADEIMPACT': "connectorpack.UpgradeImpact",
'CRD.CUSTOMRESOURCE': "crd.CustomResource",
@@ -222,6 +224,7 @@ class BootVmediaDeviceRelationship(ModelComposed):
'EQUIPMENT.CHASSISIDENTITY': "equipment.ChassisIdentity",
'EQUIPMENT.CHASSISOPERATION': "equipment.ChassisOperation",
'EQUIPMENT.DEVICESUMMARY': "equipment.DeviceSummary",
+ 'EQUIPMENT.EXPANDERMODULE': "equipment.ExpanderModule",
'EQUIPMENT.FAN': "equipment.Fan",
'EQUIPMENT.FANCONTROL': "equipment.FanControl",
'EQUIPMENT.FANMODULE': "equipment.FanModule",
@@ -470,6 +473,7 @@ class BootVmediaDeviceRelationship(ModelComposed):
'KUBERNETES.ADDONDEFINITION': "kubernetes.AddonDefinition",
'KUBERNETES.ADDONPOLICY': "kubernetes.AddonPolicy",
'KUBERNETES.ADDONREPOSITORY': "kubernetes.AddonRepository",
+ 'KUBERNETES.BAREMETALNODEPROFILE': "kubernetes.BaremetalNodeProfile",
'KUBERNETES.CATALOG': "kubernetes.Catalog",
'KUBERNETES.CLUSTER': "kubernetes.Cluster",
'KUBERNETES.CLUSTERADDONPROFILE': "kubernetes.ClusterAddonProfile",
@@ -639,6 +643,11 @@ class BootVmediaDeviceRelationship(ModelComposed):
'RESOURCE.LICENSERESOURCECOUNT': "resource.LicenseResourceCount",
'RESOURCE.MEMBERSHIP': "resource.Membership",
'RESOURCE.MEMBERSHIPHOLDER': "resource.MembershipHolder",
+ 'RESOURCEPOOL.LEASE': "resourcepool.Lease",
+ 'RESOURCEPOOL.LEASERESOURCE': "resourcepool.LeaseResource",
+ 'RESOURCEPOOL.POOL': "resourcepool.Pool",
+ 'RESOURCEPOOL.POOLMEMBER': "resourcepool.PoolMember",
+ 'RESOURCEPOOL.UNIVERSE': "resourcepool.Universe",
'RPROXY.REVERSEPROXY': "rproxy.ReverseProxy",
'SDCARD.POLICY': "sdcard.Policy",
'SDWAN.PROFILE': "sdwan.Profile",
@@ -754,6 +763,7 @@ class BootVmediaDeviceRelationship(ModelComposed):
'TASK.NETAPPSCOPEDINVENTORY': "task.NetAppScopedInventory",
'TASK.PUBLICCLOUDSCOPEDINVENTORY': "task.PublicCloudScopedInventory",
'TASK.PURESCOPEDINVENTORY': "task.PureScopedInventory",
+ 'TASK.SERVERSCOPEDINVENTORY': "task.ServerScopedInventory",
'TECHSUPPORTMANAGEMENT.COLLECTIONCONTROLPOLICY': "techsupportmanagement.CollectionControlPolicy",
'TECHSUPPORTMANAGEMENT.DOWNLOAD': "techsupportmanagement.Download",
'TECHSUPPORTMANAGEMENT.TECHSUPPORTBUNDLE': "techsupportmanagement.TechSupportBundle",
@@ -785,6 +795,7 @@ class BootVmediaDeviceRelationship(ModelComposed):
'VIRTUALIZATION.VMWAREVCENTER': "virtualization.VmwareVcenter",
'VIRTUALIZATION.VMWAREVIRTUALDISK': "virtualization.VmwareVirtualDisk",
'VIRTUALIZATION.VMWAREVIRTUALMACHINE': "virtualization.VmwareVirtualMachine",
+ 'VIRTUALIZATION.VMWAREVIRTUALMACHINESNAPSHOT': "virtualization.VmwareVirtualMachineSnapshot",
'VIRTUALIZATION.VMWAREVIRTUALNETWORKINTERFACE': "virtualization.VmwareVirtualNetworkInterface",
'VIRTUALIZATION.VMWAREVIRTUALSWITCH': "virtualization.VmwareVirtualSwitch",
'VMEDIA.POLICY': "vmedia.Policy",
@@ -817,12 +828,14 @@ class BootVmediaDeviceRelationship(ModelComposed):
'WORKFLOW.TASKDEFINITION': "workflow.TaskDefinition",
'WORKFLOW.TASKINFO': "workflow.TaskInfo",
'WORKFLOW.TASKMETADATA': "workflow.TaskMetadata",
+ 'WORKFLOW.TASKNOTIFICATION': "workflow.TaskNotification",
'WORKFLOW.TEMPLATEEVALUATION': "workflow.TemplateEvaluation",
'WORKFLOW.TEMPLATEFUNCTIONMETA': "workflow.TemplateFunctionMeta",
'WORKFLOW.WORKFLOWDEFINITION': "workflow.WorkflowDefinition",
'WORKFLOW.WORKFLOWINFO': "workflow.WorkflowInfo",
'WORKFLOW.WORKFLOWMETA': "workflow.WorkflowMeta",
'WORKFLOW.WORKFLOWMETADATA': "workflow.WorkflowMetadata",
+ 'WORKFLOW.WORKFLOWNOTIFICATION': "workflow.WorkflowNotification",
},
}
diff --git a/intersight/model/boot_vmedia_device_response.py b/intersight/model/boot_vmedia_device_response.py
index a713500471..dec0a930aa 100644
--- a/intersight/model/boot_vmedia_device_response.py
+++ b/intersight/model/boot_vmedia_device_response.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/bulk_api_result.py b/intersight/model/bulk_api_result.py
index 6d2d123909..93824aa532 100644
--- a/intersight/model/bulk_api_result.py
+++ b/intersight/model/bulk_api_result.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/bulk_api_result_all_of.py b/intersight/model/bulk_api_result_all_of.py
index 5e1790e119..4c7e80887f 100644
--- a/intersight/model/bulk_api_result_all_of.py
+++ b/intersight/model/bulk_api_result_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/bulk_export.py b/intersight/model/bulk_export.py
new file mode 100644
index 0000000000..4b51ce150a
--- /dev/null
+++ b/intersight/model/bulk_export.py
@@ -0,0 +1,346 @@
+"""
+ Cisco Intersight
+
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
+
+ The version of the OpenAPI document: 1.0.9-4506
+ Contact: intersight@cisco.com
+ Generated by: https://openapi-generator.tech
+"""
+
+
+import re # noqa: F401
+import sys # noqa: F401
+
+from intersight.model_utils import ( # noqa: F401
+ ApiTypeError,
+ ModelComposed,
+ ModelNormal,
+ ModelSimple,
+ cached_property,
+ change_keys_js_to_python,
+ convert_js_args_to_python_args,
+ date,
+ datetime,
+ file_type,
+ none_type,
+ validate_get_composed_info,
+)
+
+def lazy_import():
+ from intersight.model.bulk_export_all_of import BulkExportAllOf
+ from intersight.model.bulk_exported_item_relationship import BulkExportedItemRelationship
+ from intersight.model.bulk_sub_request import BulkSubRequest
+ from intersight.model.display_names import DisplayNames
+ from intersight.model.mo_base_mo import MoBaseMo
+ from intersight.model.mo_base_mo_relationship import MoBaseMoRelationship
+ from intersight.model.mo_mo_ref import MoMoRef
+ from intersight.model.mo_tag import MoTag
+ from intersight.model.mo_version_context import MoVersionContext
+ from intersight.model.organization_organization_relationship import OrganizationOrganizationRelationship
+ globals()['BulkExportAllOf'] = BulkExportAllOf
+ globals()['BulkExportedItemRelationship'] = BulkExportedItemRelationship
+ globals()['BulkSubRequest'] = BulkSubRequest
+ globals()['DisplayNames'] = DisplayNames
+ globals()['MoBaseMo'] = MoBaseMo
+ globals()['MoBaseMoRelationship'] = MoBaseMoRelationship
+ globals()['MoMoRef'] = MoMoRef
+ globals()['MoTag'] = MoTag
+ globals()['MoVersionContext'] = MoVersionContext
+ globals()['OrganizationOrganizationRelationship'] = OrganizationOrganizationRelationship
+
+
+class BulkExport(ModelComposed):
+ """NOTE: This class is auto generated by OpenAPI Generator.
+ Ref: https://openapi-generator.tech
+
+ Do not edit the class manually.
+
+ Attributes:
+ allowed_values (dict): The key is the tuple path to the attribute
+ and the for var_name this is (var_name,). The value is a dict
+ with a capitalized key describing the allowed value and an allowed
+ value. These dicts store the allowed enum values.
+ attribute_map (dict): The key is attribute name
+ and the value is json key in definition.
+ discriminator_value_class_map (dict): A dict to go from the discriminator
+ variable value to the discriminator class name.
+ validations (dict): The key is the tuple path to the attribute
+ and the for var_name this is (var_name,). The value is a dict
+ that stores validations for max_length, min_length, max_items,
+ min_items, exclusive_maximum, inclusive_maximum, exclusive_minimum,
+ inclusive_minimum, and regex.
+ additional_properties_type (tuple): A tuple of classes accepted
+ as additional properties values.
+ """
+
+ allowed_values = {
+ ('class_id',): {
+ 'BULK.EXPORT': "bulk.Export",
+ },
+ ('object_type',): {
+ 'BULK.EXPORT': "bulk.Export",
+ },
+ ('action',): {
+ 'START': "Start",
+ 'CANCEL': "Cancel",
+ },
+ ('status',): {
+ 'EMPTY': "",
+ 'INPROGRESS': "InProgress",
+ 'ORDERINPROGRESS': "OrderInProgress",
+ 'SUCCESS': "Success",
+ 'FAILED': "Failed",
+ 'OPERATIONTIMEDOUT': "OperationTimedOut",
+ 'OPERATIONCANCELLED': "OperationCancelled",
+ 'CANCELINPROGRESS': "CancelInProgress",
+ },
+ }
+
+ validations = {
+ ('name',): {
+ 'regex': {
+ 'pattern': r'^[a-zA-Z0-9][a-zA-Z0-9_-]{1,92}$', # noqa: E501
+ },
+ },
+ }
+
+ @cached_property
+ def additional_properties_type():
+ """
+ This must be a method because a model may have properties that are
+ of type self, this must run after the class is loaded
+ """
+ lazy_import()
+ return (bool, date, datetime, dict, float, int, list, str, none_type,) # noqa: E501
+
+ _nullable = False
+
+ @cached_property
+ def openapi_types():
+ """
+ This must be a method because a model may have properties that are
+ of type self, this must run after the class is loaded
+
+ Returns
+ openapi_types (dict): The key is attribute name
+ and the value is attribute type.
+ """
+ lazy_import()
+ return {
+ 'class_id': (str,), # noqa: E501
+ 'object_type': (str,), # noqa: E501
+ 'action': (str,), # noqa: E501
+ 'export_tags': (bool,), # noqa: E501
+ 'exported_objects': ([BulkSubRequest], none_type,), # noqa: E501
+ 'import_order': (bool, date, datetime, dict, float, int, list, str, none_type,), # noqa: E501
+ 'items': ([MoMoRef], none_type,), # noqa: E501
+ 'name': (str,), # noqa: E501
+ 'status': (str,), # noqa: E501
+ 'status_message': (str,), # noqa: E501
+ 'exported_items': ([BulkExportedItemRelationship], none_type,), # noqa: E501
+ 'organization': (OrganizationOrganizationRelationship,), # noqa: E501
+ 'account_moid': (str,), # noqa: E501
+ 'create_time': (datetime,), # noqa: E501
+ 'domain_group_moid': (str,), # noqa: E501
+ 'mod_time': (datetime,), # noqa: E501
+ 'moid': (str,), # noqa: E501
+ 'owners': ([str], none_type,), # noqa: E501
+ 'shared_scope': (str,), # noqa: E501
+ 'tags': ([MoTag], none_type,), # noqa: E501
+ 'version_context': (MoVersionContext,), # noqa: E501
+ 'ancestors': ([MoBaseMoRelationship], none_type,), # noqa: E501
+ 'parent': (MoBaseMoRelationship,), # noqa: E501
+ 'permission_resources': ([MoBaseMoRelationship], none_type,), # noqa: E501
+ 'display_names': (DisplayNames,), # noqa: E501
+ }
+
+ @cached_property
+ def discriminator():
+ val = {
+ }
+ if not val:
+ return None
+ return {'class_id': val}
+
+ attribute_map = {
+ 'class_id': 'ClassId', # noqa: E501
+ 'object_type': 'ObjectType', # noqa: E501
+ 'action': 'Action', # noqa: E501
+ 'export_tags': 'ExportTags', # noqa: E501
+ 'exported_objects': 'ExportedObjects', # noqa: E501
+ 'import_order': 'ImportOrder', # noqa: E501
+ 'items': 'Items', # noqa: E501
+ 'name': 'Name', # noqa: E501
+ 'status': 'Status', # noqa: E501
+ 'status_message': 'StatusMessage', # noqa: E501
+ 'exported_items': 'ExportedItems', # noqa: E501
+ 'organization': 'Organization', # noqa: E501
+ 'account_moid': 'AccountMoid', # noqa: E501
+ 'create_time': 'CreateTime', # noqa: E501
+ 'domain_group_moid': 'DomainGroupMoid', # noqa: E501
+ 'mod_time': 'ModTime', # noqa: E501
+ 'moid': 'Moid', # noqa: E501
+ 'owners': 'Owners', # noqa: E501
+ 'shared_scope': 'SharedScope', # noqa: E501
+ 'tags': 'Tags', # noqa: E501
+ 'version_context': 'VersionContext', # noqa: E501
+ 'ancestors': 'Ancestors', # noqa: E501
+ 'parent': 'Parent', # noqa: E501
+ 'permission_resources': 'PermissionResources', # noqa: E501
+ 'display_names': 'DisplayNames', # noqa: E501
+ }
+
+ required_properties = set([
+ '_data_store',
+ '_check_type',
+ '_spec_property_naming',
+ '_path_to_item',
+ '_configuration',
+ '_visited_composed_classes',
+ '_composed_instances',
+ '_var_name_to_model_instances',
+ '_additional_properties_model_instances',
+ ])
+
+ @convert_js_args_to_python_args
+ def __init__(self, *args, **kwargs): # noqa: E501
+ """BulkExport - a model defined in OpenAPI
+
+ Args:
+
+ Keyword Args:
+ class_id (str): The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.. defaults to "bulk.Export", must be one of ["bulk.Export", ] # noqa: E501
+ object_type (str): The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.. defaults to "bulk.Export", must be one of ["bulk.Export", ] # noqa: E501
+ _check_type (bool): if True, values for parameters in openapi_types
+ will be type checked and a TypeError will be
+ raised if the wrong type is input.
+ Defaults to True
+ _path_to_item (tuple/list): This is a list of keys or values to
+ drill down to the model in received_data
+ when deserializing a response
+ _spec_property_naming (bool): True if the variable names in the input data
+ are serialized names, as specified in the OpenAPI document.
+ False if the variable names in the input data
+ are pythonic names, e.g. snake case (default)
+ _configuration (Configuration): the instance to use when
+ deserializing a file_type parameter.
+ If passed, type conversion is attempted
+ If omitted no type conversion is done.
+ _visited_composed_classes (tuple): This stores a tuple of
+ classes that we have traveled through so that
+ if we see that class again we will not use its
+ discriminator again.
+ When traveling through a discriminator, the
+ composed schema that is
+ is traveled through is added to this set.
+ For example if Animal has a discriminator
+ petType and we pass in "Dog", and the class Dog
+ allOf includes Animal, we move through Animal
+ once using the discriminator, and pick Dog.
+ Then in Dog, we will make an instance of the
+ Animal class but this time we won't travel
+ through its discriminator because we passed in
+ _visited_composed_classes = (Animal,)
+ action (str): Action to be performed on the export operation. * `Start` - Starts the export operation. * `Cancel` - Cancels the export operation that is in progress.. [optional] if omitted the server will use the default value of "Start" # noqa: E501
+ export_tags (bool): Specifies whether tags must be exported and will be considered for all the items MOs.. [optional] if omitted the server will use the default value of True # noqa: E501
+ exported_objects ([BulkSubRequest], none_type): [optional] # noqa: E501
+ import_order (bool, date, datetime, dict, float, int, list, str, none_type): Contains the list of import order.. [optional] # noqa: E501
+ items ([MoMoRef], none_type): [optional] # noqa: E501
+ name (str): An identifier for the export instance. Name can only contain letters (a-z, A-Z), numbers (0-9), hyphen (-) or an underscore (_).. [optional] # noqa: E501
+ status (str): Status of the export operation. * `` - The operation has not started. * `InProgress` - The operation is in progress. * `OrderInProgress` - The archive operation is in progress. * `Success` - The operation has succeeded. * `Failed` - The operation has failed. * `OperationTimedOut` - The operation has timed out. * `OperationCancelled` - The operation has been cancelled. * `CancelInProgress` - The operation is being cancelled.. [optional] if omitted the server will use the default value of "" # noqa: E501
+ status_message (str): Status message associated with failures or progress indication.. [optional] # noqa: E501
+ exported_items ([BulkExportedItemRelationship], none_type): An array of relationships to bulkExportedItem resources.. [optional] # noqa: E501
+ organization (OrganizationOrganizationRelationship): [optional] # noqa: E501
+ account_moid (str): The Account ID for this managed object.. [optional] # noqa: E501
+ create_time (datetime): The time when this managed object was created.. [optional] # noqa: E501
+ domain_group_moid (str): The DomainGroup ID for this managed object.. [optional] # noqa: E501
+ mod_time (datetime): The time when this managed object was last modified.. [optional] # noqa: E501
+ moid (str): The unique identifier of this Managed Object instance.. [optional] # noqa: E501
+ owners ([str], none_type): [optional] # noqa: E501
+ shared_scope (str): Intersight provides pre-built workflows, tasks and policies to end users through global catalogs. Objects that are made available through global catalogs are said to have a 'shared' ownership. Shared objects are either made globally available to all end users or restricted to end users based on their license entitlement. Users can use this property to differentiate the scope (global or a specific license tier) to which a shared MO belongs.. [optional] # noqa: E501
+ tags ([MoTag], none_type): [optional] # noqa: E501
+ version_context (MoVersionContext): [optional] # noqa: E501
+ ancestors ([MoBaseMoRelationship], none_type): An array of relationships to moBaseMo resources.. [optional] # noqa: E501
+ parent (MoBaseMoRelationship): [optional] # noqa: E501
+ permission_resources ([MoBaseMoRelationship], none_type): An array of relationships to moBaseMo resources.. [optional] # noqa: E501
+ display_names (DisplayNames): [optional] # noqa: E501
+ """
+
+ class_id = kwargs.get('class_id', "bulk.Export")
+ object_type = kwargs.get('object_type', "bulk.Export")
+ _check_type = kwargs.pop('_check_type', True)
+ _spec_property_naming = kwargs.pop('_spec_property_naming', False)
+ _path_to_item = kwargs.pop('_path_to_item', ())
+ _configuration = kwargs.pop('_configuration', None)
+ _visited_composed_classes = kwargs.pop('_visited_composed_classes', ())
+
+ if args:
+ raise ApiTypeError(
+ "Invalid positional arguments=%s passed to %s. Remove those invalid positional arguments." % (
+ args,
+ self.__class__.__name__,
+ ),
+ path_to_item=_path_to_item,
+ valid_classes=(self.__class__,),
+ )
+
+ self._data_store = {}
+ self._check_type = _check_type
+ self._spec_property_naming = _spec_property_naming
+ self._path_to_item = _path_to_item
+ self._configuration = _configuration
+ self._visited_composed_classes = _visited_composed_classes + (self.__class__,)
+
+ constant_args = {
+ '_check_type': _check_type,
+ '_path_to_item': _path_to_item,
+ '_spec_property_naming': _spec_property_naming,
+ '_configuration': _configuration,
+ '_visited_composed_classes': self._visited_composed_classes,
+ }
+ required_args = {
+ 'class_id': class_id,
+ 'object_type': object_type,
+ }
+ model_args = {}
+ model_args.update(required_args)
+ model_args.update(kwargs)
+ composed_info = validate_get_composed_info(
+ constant_args, model_args, self)
+ self._composed_instances = composed_info[0]
+ self._var_name_to_model_instances = composed_info[1]
+ self._additional_properties_model_instances = composed_info[2]
+ unused_args = composed_info[3]
+
+ for var_name, var_value in required_args.items():
+ setattr(self, var_name, var_value)
+ for var_name, var_value in kwargs.items():
+ if var_name in unused_args and \
+ self._configuration is not None and \
+ self._configuration.discard_unknown_keys and \
+ not self._additional_properties_model_instances:
+ # discard variable.
+ continue
+ setattr(self, var_name, var_value)
+
+ @cached_property
+ def _composed_schemas():
+ # we need this here to make our import statements work
+ # we must store _composed_schemas in here so the code is only run
+ # when we invoke this method. If we kept this at the class
+ # level we would get an error beause the class level
+ # code would be run when this module is imported, and these composed
+ # classes don't exist yet because their module has not finished
+ # loading
+ lazy_import()
+ return {
+ 'anyOf': [
+ ],
+ 'allOf': [
+ BulkExportAllOf,
+ MoBaseMo,
+ ],
+ 'oneOf': [
+ ],
+ }
diff --git a/intersight/model/bulk_export_all_of.py b/intersight/model/bulk_export_all_of.py
new file mode 100644
index 0000000000..71a7cea6b2
--- /dev/null
+++ b/intersight/model/bulk_export_all_of.py
@@ -0,0 +1,242 @@
+"""
+ Cisco Intersight
+
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
+
+ The version of the OpenAPI document: 1.0.9-4506
+ Contact: intersight@cisco.com
+ Generated by: https://openapi-generator.tech
+"""
+
+
+import re # noqa: F401
+import sys # noqa: F401
+
+from intersight.model_utils import ( # noqa: F401
+ ApiTypeError,
+ ModelComposed,
+ ModelNormal,
+ ModelSimple,
+ cached_property,
+ change_keys_js_to_python,
+ convert_js_args_to_python_args,
+ date,
+ datetime,
+ file_type,
+ none_type,
+ validate_get_composed_info,
+)
+
+def lazy_import():
+ from intersight.model.bulk_exported_item_relationship import BulkExportedItemRelationship
+ from intersight.model.bulk_sub_request import BulkSubRequest
+ from intersight.model.mo_mo_ref import MoMoRef
+ from intersight.model.organization_organization_relationship import OrganizationOrganizationRelationship
+ globals()['BulkExportedItemRelationship'] = BulkExportedItemRelationship
+ globals()['BulkSubRequest'] = BulkSubRequest
+ globals()['MoMoRef'] = MoMoRef
+ globals()['OrganizationOrganizationRelationship'] = OrganizationOrganizationRelationship
+
+
+class BulkExportAllOf(ModelNormal):
+ """NOTE: This class is auto generated by OpenAPI Generator.
+ Ref: https://openapi-generator.tech
+
+ Do not edit the class manually.
+
+ Attributes:
+ allowed_values (dict): The key is the tuple path to the attribute
+ and the for var_name this is (var_name,). The value is a dict
+ with a capitalized key describing the allowed value and an allowed
+ value. These dicts store the allowed enum values.
+ attribute_map (dict): The key is attribute name
+ and the value is json key in definition.
+ discriminator_value_class_map (dict): A dict to go from the discriminator
+ variable value to the discriminator class name.
+ validations (dict): The key is the tuple path to the attribute
+ and the for var_name this is (var_name,). The value is a dict
+ that stores validations for max_length, min_length, max_items,
+ min_items, exclusive_maximum, inclusive_maximum, exclusive_minimum,
+ inclusive_minimum, and regex.
+ additional_properties_type (tuple): A tuple of classes accepted
+ as additional properties values.
+ """
+
+ allowed_values = {
+ ('class_id',): {
+ 'BULK.EXPORT': "bulk.Export",
+ },
+ ('object_type',): {
+ 'BULK.EXPORT': "bulk.Export",
+ },
+ ('action',): {
+ 'START': "Start",
+ 'CANCEL': "Cancel",
+ },
+ ('status',): {
+ 'EMPTY': "",
+ 'INPROGRESS': "InProgress",
+ 'ORDERINPROGRESS': "OrderInProgress",
+ 'SUCCESS': "Success",
+ 'FAILED': "Failed",
+ 'OPERATIONTIMEDOUT': "OperationTimedOut",
+ 'OPERATIONCANCELLED': "OperationCancelled",
+ 'CANCELINPROGRESS': "CancelInProgress",
+ },
+ }
+
+ validations = {
+ ('name',): {
+ 'regex': {
+ 'pattern': r'^[a-zA-Z0-9][a-zA-Z0-9_-]{1,92}$', # noqa: E501
+ },
+ },
+ }
+
+ additional_properties_type = None
+
+ _nullable = False
+
+ @cached_property
+ def openapi_types():
+ """
+ This must be a method because a model may have properties that are
+ of type self, this must run after the class is loaded
+
+ Returns
+ openapi_types (dict): The key is attribute name
+ and the value is attribute type.
+ """
+ lazy_import()
+ return {
+ 'class_id': (str,), # noqa: E501
+ 'object_type': (str,), # noqa: E501
+ 'action': (str,), # noqa: E501
+ 'export_tags': (bool,), # noqa: E501
+ 'exported_objects': ([BulkSubRequest], none_type,), # noqa: E501
+ 'import_order': (bool, date, datetime, dict, float, int, list, str, none_type,), # noqa: E501
+ 'items': ([MoMoRef], none_type,), # noqa: E501
+ 'name': (str,), # noqa: E501
+ 'status': (str,), # noqa: E501
+ 'status_message': (str,), # noqa: E501
+ 'exported_items': ([BulkExportedItemRelationship], none_type,), # noqa: E501
+ 'organization': (OrganizationOrganizationRelationship,), # noqa: E501
+ }
+
+ @cached_property
+ def discriminator():
+ return None
+
+
+ attribute_map = {
+ 'class_id': 'ClassId', # noqa: E501
+ 'object_type': 'ObjectType', # noqa: E501
+ 'action': 'Action', # noqa: E501
+ 'export_tags': 'ExportTags', # noqa: E501
+ 'exported_objects': 'ExportedObjects', # noqa: E501
+ 'import_order': 'ImportOrder', # noqa: E501
+ 'items': 'Items', # noqa: E501
+ 'name': 'Name', # noqa: E501
+ 'status': 'Status', # noqa: E501
+ 'status_message': 'StatusMessage', # noqa: E501
+ 'exported_items': 'ExportedItems', # noqa: E501
+ 'organization': 'Organization', # noqa: E501
+ }
+
+ _composed_schemas = {}
+
+ required_properties = set([
+ '_data_store',
+ '_check_type',
+ '_spec_property_naming',
+ '_path_to_item',
+ '_configuration',
+ '_visited_composed_classes',
+ ])
+
+ @convert_js_args_to_python_args
+ def __init__(self, *args, **kwargs): # noqa: E501
+ """BulkExportAllOf - a model defined in OpenAPI
+
+ Args:
+
+ Keyword Args:
+ class_id (str): The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.. defaults to "bulk.Export", must be one of ["bulk.Export", ] # noqa: E501
+ object_type (str): The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.. defaults to "bulk.Export", must be one of ["bulk.Export", ] # noqa: E501
+ _check_type (bool): if True, values for parameters in openapi_types
+ will be type checked and a TypeError will be
+ raised if the wrong type is input.
+ Defaults to True
+ _path_to_item (tuple/list): This is a list of keys or values to
+ drill down to the model in received_data
+ when deserializing a response
+ _spec_property_naming (bool): True if the variable names in the input data
+ are serialized names, as specified in the OpenAPI document.
+ False if the variable names in the input data
+ are pythonic names, e.g. snake case (default)
+ _configuration (Configuration): the instance to use when
+ deserializing a file_type parameter.
+ If passed, type conversion is attempted
+ If omitted no type conversion is done.
+ _visited_composed_classes (tuple): This stores a tuple of
+ classes that we have traveled through so that
+ if we see that class again we will not use its
+ discriminator again.
+ When traveling through a discriminator, the
+ composed schema that is
+ is traveled through is added to this set.
+ For example if Animal has a discriminator
+ petType and we pass in "Dog", and the class Dog
+ allOf includes Animal, we move through Animal
+ once using the discriminator, and pick Dog.
+ Then in Dog, we will make an instance of the
+ Animal class but this time we won't travel
+ through its discriminator because we passed in
+ _visited_composed_classes = (Animal,)
+ action (str): Action to be performed on the export operation. * `Start` - Starts the export operation. * `Cancel` - Cancels the export operation that is in progress.. [optional] if omitted the server will use the default value of "Start" # noqa: E501
+ export_tags (bool): Specifies whether tags must be exported and will be considered for all the items MOs.. [optional] if omitted the server will use the default value of True # noqa: E501
+ exported_objects ([BulkSubRequest], none_type): [optional] # noqa: E501
+ import_order (bool, date, datetime, dict, float, int, list, str, none_type): Contains the list of import order.. [optional] # noqa: E501
+ items ([MoMoRef], none_type): [optional] # noqa: E501
+ name (str): An identifier for the export instance. Name can only contain letters (a-z, A-Z), numbers (0-9), hyphen (-) or an underscore (_).. [optional] # noqa: E501
+ status (str): Status of the export operation. * `` - The operation has not started. * `InProgress` - The operation is in progress. * `OrderInProgress` - The archive operation is in progress. * `Success` - The operation has succeeded. * `Failed` - The operation has failed. * `OperationTimedOut` - The operation has timed out. * `OperationCancelled` - The operation has been cancelled. * `CancelInProgress` - The operation is being cancelled.. [optional] if omitted the server will use the default value of "" # noqa: E501
+ status_message (str): Status message associated with failures or progress indication.. [optional] # noqa: E501
+ exported_items ([BulkExportedItemRelationship], none_type): An array of relationships to bulkExportedItem resources.. [optional] # noqa: E501
+ organization (OrganizationOrganizationRelationship): [optional] # noqa: E501
+ """
+
+ class_id = kwargs.get('class_id', "bulk.Export")
+ object_type = kwargs.get('object_type', "bulk.Export")
+ _check_type = kwargs.pop('_check_type', True)
+ _spec_property_naming = kwargs.pop('_spec_property_naming', False)
+ _path_to_item = kwargs.pop('_path_to_item', ())
+ _configuration = kwargs.pop('_configuration', None)
+ _visited_composed_classes = kwargs.pop('_visited_composed_classes', ())
+
+ if args:
+ raise ApiTypeError(
+ "Invalid positional arguments=%s passed to %s. Remove those invalid positional arguments." % (
+ args,
+ self.__class__.__name__,
+ ),
+ path_to_item=_path_to_item,
+ valid_classes=(self.__class__,),
+ )
+
+ self._data_store = {}
+ self._check_type = _check_type
+ self._spec_property_naming = _spec_property_naming
+ self._path_to_item = _path_to_item
+ self._configuration = _configuration
+ self._visited_composed_classes = _visited_composed_classes + (self.__class__,)
+
+ self.class_id = class_id
+ self.object_type = object_type
+ for var_name, var_value in kwargs.items():
+ if var_name not in self.attribute_map and \
+ self._configuration is not None and \
+ self._configuration.discard_unknown_keys and \
+ self.additional_properties_type is None:
+ # discard variable.
+ continue
+ setattr(self, var_name, var_value)
diff --git a/intersight/model/bulk_export_list.py b/intersight/model/bulk_export_list.py
new file mode 100644
index 0000000000..fa0639e37c
--- /dev/null
+++ b/intersight/model/bulk_export_list.py
@@ -0,0 +1,238 @@
+"""
+ Cisco Intersight
+
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
+
+ The version of the OpenAPI document: 1.0.9-4506
+ Contact: intersight@cisco.com
+ Generated by: https://openapi-generator.tech
+"""
+
+
+import re # noqa: F401
+import sys # noqa: F401
+
+from intersight.model_utils import ( # noqa: F401
+ ApiTypeError,
+ ModelComposed,
+ ModelNormal,
+ ModelSimple,
+ cached_property,
+ change_keys_js_to_python,
+ convert_js_args_to_python_args,
+ date,
+ datetime,
+ file_type,
+ none_type,
+ validate_get_composed_info,
+)
+
+def lazy_import():
+ from intersight.model.bulk_export import BulkExport
+ from intersight.model.bulk_export_list_all_of import BulkExportListAllOf
+ from intersight.model.mo_base_response import MoBaseResponse
+ globals()['BulkExport'] = BulkExport
+ globals()['BulkExportListAllOf'] = BulkExportListAllOf
+ globals()['MoBaseResponse'] = MoBaseResponse
+
+
+class BulkExportList(ModelComposed):
+ """NOTE: This class is auto generated by OpenAPI Generator.
+ Ref: https://openapi-generator.tech
+
+ Do not edit the class manually.
+
+ Attributes:
+ allowed_values (dict): The key is the tuple path to the attribute
+ and the for var_name this is (var_name,). The value is a dict
+ with a capitalized key describing the allowed value and an allowed
+ value. These dicts store the allowed enum values.
+ attribute_map (dict): The key is attribute name
+ and the value is json key in definition.
+ discriminator_value_class_map (dict): A dict to go from the discriminator
+ variable value to the discriminator class name.
+ validations (dict): The key is the tuple path to the attribute
+ and the for var_name this is (var_name,). The value is a dict
+ that stores validations for max_length, min_length, max_items,
+ min_items, exclusive_maximum, inclusive_maximum, exclusive_minimum,
+ inclusive_minimum, and regex.
+ additional_properties_type (tuple): A tuple of classes accepted
+ as additional properties values.
+ """
+
+ allowed_values = {
+ }
+
+ validations = {
+ }
+
+ @cached_property
+ def additional_properties_type():
+ """
+ This must be a method because a model may have properties that are
+ of type self, this must run after the class is loaded
+ """
+ lazy_import()
+ return (bool, date, datetime, dict, float, int, list, str, none_type,) # noqa: E501
+
+ _nullable = False
+
+ @cached_property
+ def openapi_types():
+ """
+ This must be a method because a model may have properties that are
+ of type self, this must run after the class is loaded
+
+ Returns
+ openapi_types (dict): The key is attribute name
+ and the value is attribute type.
+ """
+ lazy_import()
+ return {
+ 'object_type': (str,), # noqa: E501
+ 'count': (int,), # noqa: E501
+ 'results': ([BulkExport], none_type,), # noqa: E501
+ }
+
+ @cached_property
+ def discriminator():
+ val = {
+ }
+ if not val:
+ return None
+ return {'object_type': val}
+
+ attribute_map = {
+ 'object_type': 'ObjectType', # noqa: E501
+ 'count': 'Count', # noqa: E501
+ 'results': 'Results', # noqa: E501
+ }
+
+ required_properties = set([
+ '_data_store',
+ '_check_type',
+ '_spec_property_naming',
+ '_path_to_item',
+ '_configuration',
+ '_visited_composed_classes',
+ '_composed_instances',
+ '_var_name_to_model_instances',
+ '_additional_properties_model_instances',
+ ])
+
+ @convert_js_args_to_python_args
+ def __init__(self, object_type, *args, **kwargs): # noqa: E501
+ """BulkExportList - a model defined in OpenAPI
+
+ Args:
+ object_type (str): A discriminator value to disambiguate the schema of a HTTP GET response body.
+
+ Keyword Args:
+ _check_type (bool): if True, values for parameters in openapi_types
+ will be type checked and a TypeError will be
+ raised if the wrong type is input.
+ Defaults to True
+ _path_to_item (tuple/list): This is a list of keys or values to
+ drill down to the model in received_data
+ when deserializing a response
+ _spec_property_naming (bool): True if the variable names in the input data
+ are serialized names, as specified in the OpenAPI document.
+ False if the variable names in the input data
+ are pythonic names, e.g. snake case (default)
+ _configuration (Configuration): the instance to use when
+ deserializing a file_type parameter.
+ If passed, type conversion is attempted
+ If omitted no type conversion is done.
+ _visited_composed_classes (tuple): This stores a tuple of
+ classes that we have traveled through so that
+ if we see that class again we will not use its
+ discriminator again.
+ When traveling through a discriminator, the
+ composed schema that is
+ is traveled through is added to this set.
+ For example if Animal has a discriminator
+ petType and we pass in "Dog", and the class Dog
+ allOf includes Animal, we move through Animal
+ once using the discriminator, and pick Dog.
+ Then in Dog, we will make an instance of the
+ Animal class but this time we won't travel
+ through its discriminator because we passed in
+ _visited_composed_classes = (Animal,)
+ count (int): The total number of 'bulk.Export' resources matching the request, accross all pages. The 'Count' attribute is included when the HTTP GET request includes the '$inlinecount' parameter.. [optional] # noqa: E501
+ results ([BulkExport], none_type): The array of 'bulk.Export' resources matching the request.. [optional] # noqa: E501
+ """
+
+ _check_type = kwargs.pop('_check_type', True)
+ _spec_property_naming = kwargs.pop('_spec_property_naming', False)
+ _path_to_item = kwargs.pop('_path_to_item', ())
+ _configuration = kwargs.pop('_configuration', None)
+ _visited_composed_classes = kwargs.pop('_visited_composed_classes', ())
+
+ if args:
+ raise ApiTypeError(
+ "Invalid positional arguments=%s passed to %s. Remove those invalid positional arguments." % (
+ args,
+ self.__class__.__name__,
+ ),
+ path_to_item=_path_to_item,
+ valid_classes=(self.__class__,),
+ )
+
+ self._data_store = {}
+ self._check_type = _check_type
+ self._spec_property_naming = _spec_property_naming
+ self._path_to_item = _path_to_item
+ self._configuration = _configuration
+ self._visited_composed_classes = _visited_composed_classes + (self.__class__,)
+
+ constant_args = {
+ '_check_type': _check_type,
+ '_path_to_item': _path_to_item,
+ '_spec_property_naming': _spec_property_naming,
+ '_configuration': _configuration,
+ '_visited_composed_classes': self._visited_composed_classes,
+ }
+ required_args = {
+ 'object_type': object_type,
+ }
+ model_args = {}
+ model_args.update(required_args)
+ model_args.update(kwargs)
+ composed_info = validate_get_composed_info(
+ constant_args, model_args, self)
+ self._composed_instances = composed_info[0]
+ self._var_name_to_model_instances = composed_info[1]
+ self._additional_properties_model_instances = composed_info[2]
+ unused_args = composed_info[3]
+
+ for var_name, var_value in required_args.items():
+ setattr(self, var_name, var_value)
+ for var_name, var_value in kwargs.items():
+ if var_name in unused_args and \
+ self._configuration is not None and \
+ self._configuration.discard_unknown_keys and \
+ not self._additional_properties_model_instances:
+ # discard variable.
+ continue
+ setattr(self, var_name, var_value)
+
+ @cached_property
+ def _composed_schemas():
+ # we need this here to make our import statements work
+ # we must store _composed_schemas in here so the code is only run
+ # when we invoke this method. If we kept this at the class
+ # level we would get an error beause the class level
+ # code would be run when this module is imported, and these composed
+ # classes don't exist yet because their module has not finished
+ # loading
+ lazy_import()
+ return {
+ 'anyOf': [
+ ],
+ 'allOf': [
+ BulkExportListAllOf,
+ MoBaseResponse,
+ ],
+ 'oneOf': [
+ ],
+ }
diff --git a/intersight/model/bulk_export_list_all_of.py b/intersight/model/bulk_export_list_all_of.py
new file mode 100644
index 0000000000..d91248b448
--- /dev/null
+++ b/intersight/model/bulk_export_list_all_of.py
@@ -0,0 +1,175 @@
+"""
+ Cisco Intersight
+
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
+
+ The version of the OpenAPI document: 1.0.9-4506
+ Contact: intersight@cisco.com
+ Generated by: https://openapi-generator.tech
+"""
+
+
+import re # noqa: F401
+import sys # noqa: F401
+
+from intersight.model_utils import ( # noqa: F401
+ ApiTypeError,
+ ModelComposed,
+ ModelNormal,
+ ModelSimple,
+ cached_property,
+ change_keys_js_to_python,
+ convert_js_args_to_python_args,
+ date,
+ datetime,
+ file_type,
+ none_type,
+ validate_get_composed_info,
+)
+
+def lazy_import():
+ from intersight.model.bulk_export import BulkExport
+ globals()['BulkExport'] = BulkExport
+
+
+class BulkExportListAllOf(ModelNormal):
+ """NOTE: This class is auto generated by OpenAPI Generator.
+ Ref: https://openapi-generator.tech
+
+ Do not edit the class manually.
+
+ Attributes:
+ allowed_values (dict): The key is the tuple path to the attribute
+ and the for var_name this is (var_name,). The value is a dict
+ with a capitalized key describing the allowed value and an allowed
+ value. These dicts store the allowed enum values.
+ attribute_map (dict): The key is attribute name
+ and the value is json key in definition.
+ discriminator_value_class_map (dict): A dict to go from the discriminator
+ variable value to the discriminator class name.
+ validations (dict): The key is the tuple path to the attribute
+ and the for var_name this is (var_name,). The value is a dict
+ that stores validations for max_length, min_length, max_items,
+ min_items, exclusive_maximum, inclusive_maximum, exclusive_minimum,
+ inclusive_minimum, and regex.
+ additional_properties_type (tuple): A tuple of classes accepted
+ as additional properties values.
+ """
+
+ allowed_values = {
+ }
+
+ validations = {
+ }
+
+ additional_properties_type = None
+
+ _nullable = False
+
+ @cached_property
+ def openapi_types():
+ """
+ This must be a method because a model may have properties that are
+ of type self, this must run after the class is loaded
+
+ Returns
+ openapi_types (dict): The key is attribute name
+ and the value is attribute type.
+ """
+ lazy_import()
+ return {
+ 'count': (int,), # noqa: E501
+ 'results': ([BulkExport], none_type,), # noqa: E501
+ }
+
+ @cached_property
+ def discriminator():
+ return None
+
+
+ attribute_map = {
+ 'count': 'Count', # noqa: E501
+ 'results': 'Results', # noqa: E501
+ }
+
+ _composed_schemas = {}
+
+ required_properties = set([
+ '_data_store',
+ '_check_type',
+ '_spec_property_naming',
+ '_path_to_item',
+ '_configuration',
+ '_visited_composed_classes',
+ ])
+
+ @convert_js_args_to_python_args
+ def __init__(self, *args, **kwargs): # noqa: E501
+ """BulkExportListAllOf - a model defined in OpenAPI
+
+ Keyword Args:
+ _check_type (bool): if True, values for parameters in openapi_types
+ will be type checked and a TypeError will be
+ raised if the wrong type is input.
+ Defaults to True
+ _path_to_item (tuple/list): This is a list of keys or values to
+ drill down to the model in received_data
+ when deserializing a response
+ _spec_property_naming (bool): True if the variable names in the input data
+ are serialized names, as specified in the OpenAPI document.
+ False if the variable names in the input data
+ are pythonic names, e.g. snake case (default)
+ _configuration (Configuration): the instance to use when
+ deserializing a file_type parameter.
+ If passed, type conversion is attempted
+ If omitted no type conversion is done.
+ _visited_composed_classes (tuple): This stores a tuple of
+ classes that we have traveled through so that
+ if we see that class again we will not use its
+ discriminator again.
+ When traveling through a discriminator, the
+ composed schema that is
+ is traveled through is added to this set.
+ For example if Animal has a discriminator
+ petType and we pass in "Dog", and the class Dog
+ allOf includes Animal, we move through Animal
+ once using the discriminator, and pick Dog.
+ Then in Dog, we will make an instance of the
+ Animal class but this time we won't travel
+ through its discriminator because we passed in
+ _visited_composed_classes = (Animal,)
+ count (int): The total number of 'bulk.Export' resources matching the request, accross all pages. The 'Count' attribute is included when the HTTP GET request includes the '$inlinecount' parameter.. [optional] # noqa: E501
+ results ([BulkExport], none_type): The array of 'bulk.Export' resources matching the request.. [optional] # noqa: E501
+ """
+
+ _check_type = kwargs.pop('_check_type', True)
+ _spec_property_naming = kwargs.pop('_spec_property_naming', False)
+ _path_to_item = kwargs.pop('_path_to_item', ())
+ _configuration = kwargs.pop('_configuration', None)
+ _visited_composed_classes = kwargs.pop('_visited_composed_classes', ())
+
+ if args:
+ raise ApiTypeError(
+ "Invalid positional arguments=%s passed to %s. Remove those invalid positional arguments." % (
+ args,
+ self.__class__.__name__,
+ ),
+ path_to_item=_path_to_item,
+ valid_classes=(self.__class__,),
+ )
+
+ self._data_store = {}
+ self._check_type = _check_type
+ self._spec_property_naming = _spec_property_naming
+ self._path_to_item = _path_to_item
+ self._configuration = _configuration
+ self._visited_composed_classes = _visited_composed_classes + (self.__class__,)
+
+ for var_name, var_value in kwargs.items():
+ if var_name not in self.attribute_map and \
+ self._configuration is not None and \
+ self._configuration.discard_unknown_keys and \
+ self.additional_properties_type is None:
+ # discard variable.
+ continue
+ setattr(self, var_name, var_value)
diff --git a/intersight/model/bulk_export_relationship.py b/intersight/model/bulk_export_relationship.py
new file mode 100644
index 0000000000..c0a67105c4
--- /dev/null
+++ b/intersight/model/bulk_export_relationship.py
@@ -0,0 +1,1108 @@
+"""
+ Cisco Intersight
+
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
+
+ The version of the OpenAPI document: 1.0.9-4506
+ Contact: intersight@cisco.com
+ Generated by: https://openapi-generator.tech
+"""
+
+
+import re # noqa: F401
+import sys # noqa: F401
+
+from intersight.model_utils import ( # noqa: F401
+ ApiTypeError,
+ ModelComposed,
+ ModelNormal,
+ ModelSimple,
+ cached_property,
+ change_keys_js_to_python,
+ convert_js_args_to_python_args,
+ date,
+ datetime,
+ file_type,
+ none_type,
+ validate_get_composed_info,
+)
+
+def lazy_import():
+ from intersight.model.bulk_export import BulkExport
+ from intersight.model.bulk_exported_item_relationship import BulkExportedItemRelationship
+ from intersight.model.bulk_sub_request import BulkSubRequest
+ from intersight.model.display_names import DisplayNames
+ from intersight.model.mo_base_mo_relationship import MoBaseMoRelationship
+ from intersight.model.mo_mo_ref import MoMoRef
+ from intersight.model.mo_tag import MoTag
+ from intersight.model.mo_version_context import MoVersionContext
+ from intersight.model.organization_organization_relationship import OrganizationOrganizationRelationship
+ globals()['BulkExport'] = BulkExport
+ globals()['BulkExportedItemRelationship'] = BulkExportedItemRelationship
+ globals()['BulkSubRequest'] = BulkSubRequest
+ globals()['DisplayNames'] = DisplayNames
+ globals()['MoBaseMoRelationship'] = MoBaseMoRelationship
+ globals()['MoMoRef'] = MoMoRef
+ globals()['MoTag'] = MoTag
+ globals()['MoVersionContext'] = MoVersionContext
+ globals()['OrganizationOrganizationRelationship'] = OrganizationOrganizationRelationship
+
+
+class BulkExportRelationship(ModelComposed):
+ """NOTE: This class is auto generated by OpenAPI Generator.
+ Ref: https://openapi-generator.tech
+
+ Do not edit the class manually.
+
+ Attributes:
+ allowed_values (dict): The key is the tuple path to the attribute
+ and the for var_name this is (var_name,). The value is a dict
+ with a capitalized key describing the allowed value and an allowed
+ value. These dicts store the allowed enum values.
+ attribute_map (dict): The key is attribute name
+ and the value is json key in definition.
+ discriminator_value_class_map (dict): A dict to go from the discriminator
+ variable value to the discriminator class name.
+ validations (dict): The key is the tuple path to the attribute
+ and the for var_name this is (var_name,). The value is a dict
+ that stores validations for max_length, min_length, max_items,
+ min_items, exclusive_maximum, inclusive_maximum, exclusive_minimum,
+ inclusive_minimum, and regex.
+ additional_properties_type (tuple): A tuple of classes accepted
+ as additional properties values.
+ """
+
+ allowed_values = {
+ ('class_id',): {
+ 'MO.MOREF': "mo.MoRef",
+ },
+ ('action',): {
+ 'START': "Start",
+ 'CANCEL': "Cancel",
+ },
+ ('status',): {
+ 'EMPTY': "",
+ 'INPROGRESS': "InProgress",
+ 'ORDERINPROGRESS': "OrderInProgress",
+ 'SUCCESS': "Success",
+ 'FAILED': "Failed",
+ 'OPERATIONTIMEDOUT': "OperationTimedOut",
+ 'OPERATIONCANCELLED': "OperationCancelled",
+ 'CANCELINPROGRESS': "CancelInProgress",
+ },
+ ('object_type',): {
+ 'AAA.AUDITRECORD': "aaa.AuditRecord",
+ 'AAA.RETENTIONCONFIG': "aaa.RetentionConfig",
+ 'AAA.RETENTIONPOLICY': "aaa.RetentionPolicy",
+ 'ACCESS.POLICY': "access.Policy",
+ 'ADAPTER.CONFIGPOLICY': "adapter.ConfigPolicy",
+ 'ADAPTER.EXTETHINTERFACE': "adapter.ExtEthInterface",
+ 'ADAPTER.HOSTETHINTERFACE': "adapter.HostEthInterface",
+ 'ADAPTER.HOSTFCINTERFACE': "adapter.HostFcInterface",
+ 'ADAPTER.HOSTISCSIINTERFACE': "adapter.HostIscsiInterface",
+ 'ADAPTER.UNIT': "adapter.Unit",
+ 'ADAPTER.UNITEXPANDER': "adapter.UnitExpander",
+ 'APPLIANCE.APPSTATUS': "appliance.AppStatus",
+ 'APPLIANCE.AUTORMAPOLICY': "appliance.AutoRmaPolicy",
+ 'APPLIANCE.BACKUP': "appliance.Backup",
+ 'APPLIANCE.BACKUPPOLICY': "appliance.BackupPolicy",
+ 'APPLIANCE.CERTIFICATESETTING': "appliance.CertificateSetting",
+ 'APPLIANCE.DATAEXPORTPOLICY': "appliance.DataExportPolicy",
+ 'APPLIANCE.DEVICECERTIFICATE': "appliance.DeviceCertificate",
+ 'APPLIANCE.DEVICECLAIM': "appliance.DeviceClaim",
+ 'APPLIANCE.DEVICEUPGRADEPOLICY': "appliance.DeviceUpgradePolicy",
+ 'APPLIANCE.DIAGSETTING': "appliance.DiagSetting",
+ 'APPLIANCE.EXTERNALSYSLOGSETTING': "appliance.ExternalSyslogSetting",
+ 'APPLIANCE.FILESYSTEMSTATUS': "appliance.FileSystemStatus",
+ 'APPLIANCE.GROUPSTATUS': "appliance.GroupStatus",
+ 'APPLIANCE.IMAGEBUNDLE': "appliance.ImageBundle",
+ 'APPLIANCE.NODEINFO': "appliance.NodeInfo",
+ 'APPLIANCE.NODESTATUS': "appliance.NodeStatus",
+ 'APPLIANCE.RELEASENOTE': "appliance.ReleaseNote",
+ 'APPLIANCE.REMOTEFILEIMPORT': "appliance.RemoteFileImport",
+ 'APPLIANCE.RESTORE': "appliance.Restore",
+ 'APPLIANCE.SETUPINFO': "appliance.SetupInfo",
+ 'APPLIANCE.SYSTEMINFO': "appliance.SystemInfo",
+ 'APPLIANCE.SYSTEMSTATUS': "appliance.SystemStatus",
+ 'APPLIANCE.UPGRADE': "appliance.Upgrade",
+ 'APPLIANCE.UPGRADEPOLICY': "appliance.UpgradePolicy",
+ 'ASSET.CLUSTERMEMBER': "asset.ClusterMember",
+ 'ASSET.DEPLOYMENT': "asset.Deployment",
+ 'ASSET.DEPLOYMENTDEVICE': "asset.DeploymentDevice",
+ 'ASSET.DEVICECLAIM': "asset.DeviceClaim",
+ 'ASSET.DEVICECONFIGURATION': "asset.DeviceConfiguration",
+ 'ASSET.DEVICECONNECTORMANAGER': "asset.DeviceConnectorManager",
+ 'ASSET.DEVICECONTRACTINFORMATION': "asset.DeviceContractInformation",
+ 'ASSET.DEVICEREGISTRATION': "asset.DeviceRegistration",
+ 'ASSET.SUBSCRIPTION': "asset.Subscription",
+ 'ASSET.SUBSCRIPTIONACCOUNT': "asset.SubscriptionAccount",
+ 'ASSET.SUBSCRIPTIONDEVICECONTRACTINFORMATION': "asset.SubscriptionDeviceContractInformation",
+ 'ASSET.TARGET': "asset.Target",
+ 'BIOS.BOOTDEVICE': "bios.BootDevice",
+ 'BIOS.BOOTMODE': "bios.BootMode",
+ 'BIOS.POLICY': "bios.Policy",
+ 'BIOS.SYSTEMBOOTORDER': "bios.SystemBootOrder",
+ 'BIOS.TOKENSETTINGS': "bios.TokenSettings",
+ 'BIOS.UNIT': "bios.Unit",
+ 'BIOS.VFSELECTMEMORYRASCONFIGURATION': "bios.VfSelectMemoryRasConfiguration",
+ 'BOOT.CDDDEVICE': "boot.CddDevice",
+ 'BOOT.DEVICEBOOTMODE': "boot.DeviceBootMode",
+ 'BOOT.DEVICEBOOTSECURITY': "boot.DeviceBootSecurity",
+ 'BOOT.HDDDEVICE': "boot.HddDevice",
+ 'BOOT.ISCSIDEVICE': "boot.IscsiDevice",
+ 'BOOT.NVMEDEVICE': "boot.NvmeDevice",
+ 'BOOT.PCHSTORAGEDEVICE': "boot.PchStorageDevice",
+ 'BOOT.PRECISIONPOLICY': "boot.PrecisionPolicy",
+ 'BOOT.PXEDEVICE': "boot.PxeDevice",
+ 'BOOT.SANDEVICE': "boot.SanDevice",
+ 'BOOT.SDDEVICE': "boot.SdDevice",
+ 'BOOT.UEFISHELLDEVICE': "boot.UefiShellDevice",
+ 'BOOT.USBDEVICE': "boot.UsbDevice",
+ 'BOOT.VMEDIADEVICE': "boot.VmediaDevice",
+ 'BULK.EXPORT': "bulk.Export",
+ 'BULK.EXPORTEDITEM': "bulk.ExportedItem",
+ 'BULK.MOCLONER': "bulk.MoCloner",
+ 'BULK.MOMERGER': "bulk.MoMerger",
+ 'BULK.REQUEST': "bulk.Request",
+ 'BULK.SUBREQUESTOBJ': "bulk.SubRequestObj",
+ 'CAPABILITY.ADAPTERUNITDESCRIPTOR': "capability.AdapterUnitDescriptor",
+ 'CAPABILITY.CATALOG': "capability.Catalog",
+ 'CAPABILITY.CHASSISDESCRIPTOR': "capability.ChassisDescriptor",
+ 'CAPABILITY.CHASSISMANUFACTURINGDEF': "capability.ChassisManufacturingDef",
+ 'CAPABILITY.CIMCFIRMWAREDESCRIPTOR': "capability.CimcFirmwareDescriptor",
+ 'CAPABILITY.EQUIPMENTPHYSICALDEF': "capability.EquipmentPhysicalDef",
+ 'CAPABILITY.EQUIPMENTSLOTARRAY': "capability.EquipmentSlotArray",
+ 'CAPABILITY.FANMODULEDESCRIPTOR': "capability.FanModuleDescriptor",
+ 'CAPABILITY.FANMODULEMANUFACTURINGDEF': "capability.FanModuleManufacturingDef",
+ 'CAPABILITY.IOCARDCAPABILITYDEF': "capability.IoCardCapabilityDef",
+ 'CAPABILITY.IOCARDDESCRIPTOR': "capability.IoCardDescriptor",
+ 'CAPABILITY.IOCARDMANUFACTURINGDEF': "capability.IoCardManufacturingDef",
+ 'CAPABILITY.PORTGROUPAGGREGATIONDEF': "capability.PortGroupAggregationDef",
+ 'CAPABILITY.PSUDESCRIPTOR': "capability.PsuDescriptor",
+ 'CAPABILITY.PSUMANUFACTURINGDEF': "capability.PsuManufacturingDef",
+ 'CAPABILITY.SERVERSCHEMADESCRIPTOR': "capability.ServerSchemaDescriptor",
+ 'CAPABILITY.SIOCMODULECAPABILITYDEF': "capability.SiocModuleCapabilityDef",
+ 'CAPABILITY.SIOCMODULEDESCRIPTOR': "capability.SiocModuleDescriptor",
+ 'CAPABILITY.SIOCMODULEMANUFACTURINGDEF': "capability.SiocModuleManufacturingDef",
+ 'CAPABILITY.SWITCHCAPABILITY': "capability.SwitchCapability",
+ 'CAPABILITY.SWITCHDESCRIPTOR': "capability.SwitchDescriptor",
+ 'CAPABILITY.SWITCHMANUFACTURINGDEF': "capability.SwitchManufacturingDef",
+ 'CERTIFICATEMANAGEMENT.POLICY': "certificatemanagement.Policy",
+ 'CHASSIS.CONFIGCHANGEDETAIL': "chassis.ConfigChangeDetail",
+ 'CHASSIS.CONFIGIMPORT': "chassis.ConfigImport",
+ 'CHASSIS.CONFIGRESULT': "chassis.ConfigResult",
+ 'CHASSIS.CONFIGRESULTENTRY': "chassis.ConfigResultEntry",
+ 'CHASSIS.IOMPROFILE': "chassis.IomProfile",
+ 'CHASSIS.PROFILE': "chassis.Profile",
+ 'CLOUD.AWSBILLINGUNIT': "cloud.AwsBillingUnit",
+ 'CLOUD.AWSKEYPAIR': "cloud.AwsKeyPair",
+ 'CLOUD.AWSNETWORKINTERFACE': "cloud.AwsNetworkInterface",
+ 'CLOUD.AWSORGANIZATIONALUNIT': "cloud.AwsOrganizationalUnit",
+ 'CLOUD.AWSSECURITYGROUP': "cloud.AwsSecurityGroup",
+ 'CLOUD.AWSSUBNET': "cloud.AwsSubnet",
+ 'CLOUD.AWSVIRTUALMACHINE': "cloud.AwsVirtualMachine",
+ 'CLOUD.AWSVOLUME': "cloud.AwsVolume",
+ 'CLOUD.AWSVPC': "cloud.AwsVpc",
+ 'CLOUD.COLLECTINVENTORY': "cloud.CollectInventory",
+ 'CLOUD.REGIONS': "cloud.Regions",
+ 'CLOUD.SKUCONTAINERTYPE': "cloud.SkuContainerType",
+ 'CLOUD.SKUDATABASETYPE': "cloud.SkuDatabaseType",
+ 'CLOUD.SKUINSTANCETYPE': "cloud.SkuInstanceType",
+ 'CLOUD.SKUNETWORKTYPE': "cloud.SkuNetworkType",
+ 'CLOUD.SKUVOLUMETYPE': "cloud.SkuVolumeType",
+ 'CLOUD.TFCAGENTPOOL': "cloud.TfcAgentpool",
+ 'CLOUD.TFCORGANIZATION': "cloud.TfcOrganization",
+ 'CLOUD.TFCWORKSPACE': "cloud.TfcWorkspace",
+ 'COMM.HTTPPROXYPOLICY': "comm.HttpProxyPolicy",
+ 'COMPUTE.BLADE': "compute.Blade",
+ 'COMPUTE.BLADEIDENTITY': "compute.BladeIdentity",
+ 'COMPUTE.BOARD': "compute.Board",
+ 'COMPUTE.MAPPING': "compute.Mapping",
+ 'COMPUTE.PHYSICALSUMMARY': "compute.PhysicalSummary",
+ 'COMPUTE.RACKUNIT': "compute.RackUnit",
+ 'COMPUTE.RACKUNITIDENTITY': "compute.RackUnitIdentity",
+ 'COMPUTE.SERVERSETTING': "compute.ServerSetting",
+ 'COMPUTE.VMEDIA': "compute.Vmedia",
+ 'COND.ALARM': "cond.Alarm",
+ 'COND.ALARMAGGREGATION': "cond.AlarmAggregation",
+ 'COND.HCLSTATUS': "cond.HclStatus",
+ 'COND.HCLSTATUSDETAIL': "cond.HclStatusDetail",
+ 'COND.HCLSTATUSJOB': "cond.HclStatusJob",
+ 'CONNECTORPACK.CONNECTORPACKUPGRADE': "connectorpack.ConnectorPackUpgrade",
+ 'CONNECTORPACK.UPGRADEIMPACT': "connectorpack.UpgradeImpact",
+ 'CRD.CUSTOMRESOURCE': "crd.CustomResource",
+ 'DEVICECONNECTOR.POLICY': "deviceconnector.Policy",
+ 'EQUIPMENT.CHASSIS': "equipment.Chassis",
+ 'EQUIPMENT.CHASSISIDENTITY': "equipment.ChassisIdentity",
+ 'EQUIPMENT.CHASSISOPERATION': "equipment.ChassisOperation",
+ 'EQUIPMENT.DEVICESUMMARY': "equipment.DeviceSummary",
+ 'EQUIPMENT.EXPANDERMODULE': "equipment.ExpanderModule",
+ 'EQUIPMENT.FAN': "equipment.Fan",
+ 'EQUIPMENT.FANCONTROL': "equipment.FanControl",
+ 'EQUIPMENT.FANMODULE': "equipment.FanModule",
+ 'EQUIPMENT.FEX': "equipment.Fex",
+ 'EQUIPMENT.FEXIDENTITY': "equipment.FexIdentity",
+ 'EQUIPMENT.FEXOPERATION': "equipment.FexOperation",
+ 'EQUIPMENT.FRU': "equipment.Fru",
+ 'EQUIPMENT.IDENTITYSUMMARY': "equipment.IdentitySummary",
+ 'EQUIPMENT.IOCARD': "equipment.IoCard",
+ 'EQUIPMENT.IOCARDOPERATION': "equipment.IoCardOperation",
+ 'EQUIPMENT.IOEXPANDER': "equipment.IoExpander",
+ 'EQUIPMENT.LOCATORLED': "equipment.LocatorLed",
+ 'EQUIPMENT.PSU': "equipment.Psu",
+ 'EQUIPMENT.PSUCONTROL': "equipment.PsuControl",
+ 'EQUIPMENT.RACKENCLOSURE': "equipment.RackEnclosure",
+ 'EQUIPMENT.RACKENCLOSURESLOT': "equipment.RackEnclosureSlot",
+ 'EQUIPMENT.SHAREDIOMODULE': "equipment.SharedIoModule",
+ 'EQUIPMENT.SWITCHCARD': "equipment.SwitchCard",
+ 'EQUIPMENT.SYSTEMIOCONTROLLER': "equipment.SystemIoController",
+ 'EQUIPMENT.TPM': "equipment.Tpm",
+ 'EQUIPMENT.TRANSCEIVER': "equipment.Transceiver",
+ 'ETHER.HOSTPORT': "ether.HostPort",
+ 'ETHER.NETWORKPORT': "ether.NetworkPort",
+ 'ETHER.PHYSICALPORT': "ether.PhysicalPort",
+ 'ETHER.PORTCHANNEL': "ether.PortChannel",
+ 'EXTERNALSITE.AUTHORIZATION': "externalsite.Authorization",
+ 'FABRIC.APPLIANCEPCROLE': "fabric.AppliancePcRole",
+ 'FABRIC.APPLIANCEROLE': "fabric.ApplianceRole",
+ 'FABRIC.CONFIGCHANGEDETAIL': "fabric.ConfigChangeDetail",
+ 'FABRIC.CONFIGRESULT': "fabric.ConfigResult",
+ 'FABRIC.CONFIGRESULTENTRY': "fabric.ConfigResultEntry",
+ 'FABRIC.ELEMENTIDENTITY': "fabric.ElementIdentity",
+ 'FABRIC.ESTIMATEIMPACT': "fabric.EstimateImpact",
+ 'FABRIC.ETHNETWORKCONTROLPOLICY': "fabric.EthNetworkControlPolicy",
+ 'FABRIC.ETHNETWORKGROUPPOLICY': "fabric.EthNetworkGroupPolicy",
+ 'FABRIC.ETHNETWORKPOLICY': "fabric.EthNetworkPolicy",
+ 'FABRIC.FCNETWORKPOLICY': "fabric.FcNetworkPolicy",
+ 'FABRIC.FCUPLINKPCROLE': "fabric.FcUplinkPcRole",
+ 'FABRIC.FCUPLINKROLE': "fabric.FcUplinkRole",
+ 'FABRIC.FCOEUPLINKPCROLE': "fabric.FcoeUplinkPcRole",
+ 'FABRIC.FCOEUPLINKROLE': "fabric.FcoeUplinkRole",
+ 'FABRIC.FLOWCONTROLPOLICY': "fabric.FlowControlPolicy",
+ 'FABRIC.LINKAGGREGATIONPOLICY': "fabric.LinkAggregationPolicy",
+ 'FABRIC.LINKCONTROLPOLICY': "fabric.LinkControlPolicy",
+ 'FABRIC.MULTICASTPOLICY': "fabric.MulticastPolicy",
+ 'FABRIC.PCMEMBER': "fabric.PcMember",
+ 'FABRIC.PCOPERATION': "fabric.PcOperation",
+ 'FABRIC.PORTMODE': "fabric.PortMode",
+ 'FABRIC.PORTOPERATION': "fabric.PortOperation",
+ 'FABRIC.PORTPOLICY': "fabric.PortPolicy",
+ 'FABRIC.SERVERROLE': "fabric.ServerRole",
+ 'FABRIC.SWITCHCLUSTERPROFILE': "fabric.SwitchClusterProfile",
+ 'FABRIC.SWITCHCONTROLPOLICY': "fabric.SwitchControlPolicy",
+ 'FABRIC.SWITCHPROFILE': "fabric.SwitchProfile",
+ 'FABRIC.SYSTEMQOSPOLICY': "fabric.SystemQosPolicy",
+ 'FABRIC.UPLINKPCROLE': "fabric.UplinkPcRole",
+ 'FABRIC.UPLINKROLE': "fabric.UplinkRole",
+ 'FABRIC.VLAN': "fabric.Vlan",
+ 'FABRIC.VSAN': "fabric.Vsan",
+ 'FAULT.INSTANCE': "fault.Instance",
+ 'FC.PHYSICALPORT': "fc.PhysicalPort",
+ 'FC.PORTCHANNEL': "fc.PortChannel",
+ 'FCPOOL.FCBLOCK': "fcpool.FcBlock",
+ 'FCPOOL.LEASE': "fcpool.Lease",
+ 'FCPOOL.POOL': "fcpool.Pool",
+ 'FCPOOL.POOLMEMBER': "fcpool.PoolMember",
+ 'FCPOOL.UNIVERSE': "fcpool.Universe",
+ 'FEEDBACK.FEEDBACKPOST': "feedback.FeedbackPost",
+ 'FIRMWARE.BIOSDESCRIPTOR': "firmware.BiosDescriptor",
+ 'FIRMWARE.BOARDCONTROLLERDESCRIPTOR': "firmware.BoardControllerDescriptor",
+ 'FIRMWARE.CHASSISUPGRADE': "firmware.ChassisUpgrade",
+ 'FIRMWARE.CIMCDESCRIPTOR': "firmware.CimcDescriptor",
+ 'FIRMWARE.DIMMDESCRIPTOR': "firmware.DimmDescriptor",
+ 'FIRMWARE.DISTRIBUTABLE': "firmware.Distributable",
+ 'FIRMWARE.DISTRIBUTABLEMETA': "firmware.DistributableMeta",
+ 'FIRMWARE.DRIVEDESCRIPTOR': "firmware.DriveDescriptor",
+ 'FIRMWARE.DRIVERDISTRIBUTABLE': "firmware.DriverDistributable",
+ 'FIRMWARE.EULA': "firmware.Eula",
+ 'FIRMWARE.FIRMWARESUMMARY': "firmware.FirmwareSummary",
+ 'FIRMWARE.GPUDESCRIPTOR': "firmware.GpuDescriptor",
+ 'FIRMWARE.HBADESCRIPTOR': "firmware.HbaDescriptor",
+ 'FIRMWARE.IOMDESCRIPTOR': "firmware.IomDescriptor",
+ 'FIRMWARE.MSWITCHDESCRIPTOR': "firmware.MswitchDescriptor",
+ 'FIRMWARE.NXOSDESCRIPTOR': "firmware.NxosDescriptor",
+ 'FIRMWARE.PCIEDESCRIPTOR': "firmware.PcieDescriptor",
+ 'FIRMWARE.PSUDESCRIPTOR': "firmware.PsuDescriptor",
+ 'FIRMWARE.RUNNINGFIRMWARE': "firmware.RunningFirmware",
+ 'FIRMWARE.SASEXPANDERDESCRIPTOR': "firmware.SasExpanderDescriptor",
+ 'FIRMWARE.SERVERCONFIGURATIONUTILITYDISTRIBUTABLE': "firmware.ServerConfigurationUtilityDistributable",
+ 'FIRMWARE.STORAGECONTROLLERDESCRIPTOR': "firmware.StorageControllerDescriptor",
+ 'FIRMWARE.SWITCHUPGRADE': "firmware.SwitchUpgrade",
+ 'FIRMWARE.UNSUPPORTEDVERSIONUPGRADE': "firmware.UnsupportedVersionUpgrade",
+ 'FIRMWARE.UPGRADE': "firmware.Upgrade",
+ 'FIRMWARE.UPGRADEIMPACT': "firmware.UpgradeImpact",
+ 'FIRMWARE.UPGRADEIMPACTSTATUS': "firmware.UpgradeImpactStatus",
+ 'FIRMWARE.UPGRADESTATUS': "firmware.UpgradeStatus",
+ 'FORECAST.CATALOG': "forecast.Catalog",
+ 'FORECAST.DEFINITION': "forecast.Definition",
+ 'FORECAST.INSTANCE': "forecast.Instance",
+ 'GRAPHICS.CARD': "graphics.Card",
+ 'GRAPHICS.CONTROLLER': "graphics.Controller",
+ 'HCL.COMPATIBILITYSTATUS': "hcl.CompatibilityStatus",
+ 'HCL.DRIVERIMAGE': "hcl.DriverImage",
+ 'HCL.EXEMPTEDCATALOG': "hcl.ExemptedCatalog",
+ 'HCL.HYPERFLEXSOFTWARECOMPATIBILITYINFO': "hcl.HyperflexSoftwareCompatibilityInfo",
+ 'HCL.OPERATINGSYSTEM': "hcl.OperatingSystem",
+ 'HCL.OPERATINGSYSTEMVENDOR': "hcl.OperatingSystemVendor",
+ 'HCL.SUPPORTEDDRIVERNAME': "hcl.SupportedDriverName",
+ 'HYPERFLEX.ALARM': "hyperflex.Alarm",
+ 'HYPERFLEX.APPCATALOG': "hyperflex.AppCatalog",
+ 'HYPERFLEX.AUTOSUPPORTPOLICY': "hyperflex.AutoSupportPolicy",
+ 'HYPERFLEX.BACKUPCLUSTER': "hyperflex.BackupCluster",
+ 'HYPERFLEX.CAPABILITYINFO': "hyperflex.CapabilityInfo",
+ 'HYPERFLEX.CISCOHYPERVISORMANAGER': "hyperflex.CiscoHypervisorManager",
+ 'HYPERFLEX.CLUSTER': "hyperflex.Cluster",
+ 'HYPERFLEX.CLUSTERBACKUPPOLICY': "hyperflex.ClusterBackupPolicy",
+ 'HYPERFLEX.CLUSTERBACKUPPOLICYDEPLOYMENT': "hyperflex.ClusterBackupPolicyDeployment",
+ 'HYPERFLEX.CLUSTERHEALTHCHECKEXECUTIONSNAPSHOT': "hyperflex.ClusterHealthCheckExecutionSnapshot",
+ 'HYPERFLEX.CLUSTERNETWORKPOLICY': "hyperflex.ClusterNetworkPolicy",
+ 'HYPERFLEX.CLUSTERPROFILE': "hyperflex.ClusterProfile",
+ 'HYPERFLEX.CLUSTERREPLICATIONNETWORKPOLICY': "hyperflex.ClusterReplicationNetworkPolicy",
+ 'HYPERFLEX.CLUSTERREPLICATIONNETWORKPOLICYDEPLOYMENT': "hyperflex.ClusterReplicationNetworkPolicyDeployment",
+ 'HYPERFLEX.CLUSTERSTORAGEPOLICY': "hyperflex.ClusterStoragePolicy",
+ 'HYPERFLEX.CONFIGRESULT': "hyperflex.ConfigResult",
+ 'HYPERFLEX.CONFIGRESULTENTRY': "hyperflex.ConfigResultEntry",
+ 'HYPERFLEX.DATAPROTECTIONPEER': "hyperflex.DataProtectionPeer",
+ 'HYPERFLEX.DATASTORESTATISTIC': "hyperflex.DatastoreStatistic",
+ 'HYPERFLEX.DEVICEPACKAGEDOWNLOADSTATE': "hyperflex.DevicePackageDownloadState",
+ 'HYPERFLEX.DRIVE': "hyperflex.Drive",
+ 'HYPERFLEX.EXTFCSTORAGEPOLICY': "hyperflex.ExtFcStoragePolicy",
+ 'HYPERFLEX.EXTISCSISTORAGEPOLICY': "hyperflex.ExtIscsiStoragePolicy",
+ 'HYPERFLEX.FEATURELIMITEXTERNAL': "hyperflex.FeatureLimitExternal",
+ 'HYPERFLEX.FEATURELIMITINTERNAL': "hyperflex.FeatureLimitInternal",
+ 'HYPERFLEX.HEALTH': "hyperflex.Health",
+ 'HYPERFLEX.HEALTHCHECKDEFINITION': "hyperflex.HealthCheckDefinition",
+ 'HYPERFLEX.HEALTHCHECKEXECUTION': "hyperflex.HealthCheckExecution",
+ 'HYPERFLEX.HEALTHCHECKEXECUTIONSNAPSHOT': "hyperflex.HealthCheckExecutionSnapshot",
+ 'HYPERFLEX.HEALTHCHECKPACKAGECHECKSUM': "hyperflex.HealthCheckPackageChecksum",
+ 'HYPERFLEX.HXAPCLUSTER': "hyperflex.HxapCluster",
+ 'HYPERFLEX.HXAPDATACENTER': "hyperflex.HxapDatacenter",
+ 'HYPERFLEX.HXAPDVUPLINK': "hyperflex.HxapDvUplink",
+ 'HYPERFLEX.HXAPDVSWITCH': "hyperflex.HxapDvswitch",
+ 'HYPERFLEX.HXAPHOST': "hyperflex.HxapHost",
+ 'HYPERFLEX.HXAPHOSTINTERFACE': "hyperflex.HxapHostInterface",
+ 'HYPERFLEX.HXAPHOSTVSWITCH': "hyperflex.HxapHostVswitch",
+ 'HYPERFLEX.HXAPNETWORK': "hyperflex.HxapNetwork",
+ 'HYPERFLEX.HXAPVIRTUALDISK': "hyperflex.HxapVirtualDisk",
+ 'HYPERFLEX.HXAPVIRTUALMACHINE': "hyperflex.HxapVirtualMachine",
+ 'HYPERFLEX.HXAPVIRTUALMACHINENETWORKINTERFACE': "hyperflex.HxapVirtualMachineNetworkInterface",
+ 'HYPERFLEX.HXDPVERSION': "hyperflex.HxdpVersion",
+ 'HYPERFLEX.LICENSE': "hyperflex.License",
+ 'HYPERFLEX.LOCALCREDENTIALPOLICY': "hyperflex.LocalCredentialPolicy",
+ 'HYPERFLEX.NODE': "hyperflex.Node",
+ 'HYPERFLEX.NODECONFIGPOLICY': "hyperflex.NodeConfigPolicy",
+ 'HYPERFLEX.NODEPROFILE': "hyperflex.NodeProfile",
+ 'HYPERFLEX.PROXYSETTINGPOLICY': "hyperflex.ProxySettingPolicy",
+ 'HYPERFLEX.SERVERFIRMWAREVERSION': "hyperflex.ServerFirmwareVersion",
+ 'HYPERFLEX.SERVERFIRMWAREVERSIONENTRY': "hyperflex.ServerFirmwareVersionEntry",
+ 'HYPERFLEX.SERVERMODEL': "hyperflex.ServerModel",
+ 'HYPERFLEX.SOFTWAREDISTRIBUTIONCOMPONENT': "hyperflex.SoftwareDistributionComponent",
+ 'HYPERFLEX.SOFTWAREDISTRIBUTIONENTRY': "hyperflex.SoftwareDistributionEntry",
+ 'HYPERFLEX.SOFTWAREDISTRIBUTIONVERSION': "hyperflex.SoftwareDistributionVersion",
+ 'HYPERFLEX.SOFTWAREVERSIONPOLICY': "hyperflex.SoftwareVersionPolicy",
+ 'HYPERFLEX.STORAGECONTAINER': "hyperflex.StorageContainer",
+ 'HYPERFLEX.SYSCONFIGPOLICY': "hyperflex.SysConfigPolicy",
+ 'HYPERFLEX.UCSMCONFIGPOLICY': "hyperflex.UcsmConfigPolicy",
+ 'HYPERFLEX.VCENTERCONFIGPOLICY': "hyperflex.VcenterConfigPolicy",
+ 'HYPERFLEX.VMBACKUPINFO': "hyperflex.VmBackupInfo",
+ 'HYPERFLEX.VMIMPORTOPERATION': "hyperflex.VmImportOperation",
+ 'HYPERFLEX.VMRESTOREOPERATION': "hyperflex.VmRestoreOperation",
+ 'HYPERFLEX.VMSNAPSHOTINFO': "hyperflex.VmSnapshotInfo",
+ 'HYPERFLEX.VOLUME': "hyperflex.Volume",
+ 'HYPERFLEX.WITNESSCONFIGURATION': "hyperflex.WitnessConfiguration",
+ 'IAAS.CONNECTORPACK': "iaas.ConnectorPack",
+ 'IAAS.DEVICESTATUS': "iaas.DeviceStatus",
+ 'IAAS.DIAGNOSTICMESSAGES': "iaas.DiagnosticMessages",
+ 'IAAS.LICENSEINFO': "iaas.LicenseInfo",
+ 'IAAS.MOSTRUNTASKS': "iaas.MostRunTasks",
+ 'IAAS.SERVICEREQUEST': "iaas.ServiceRequest",
+ 'IAAS.UCSDINFO': "iaas.UcsdInfo",
+ 'IAAS.UCSDMANAGEDINFRA': "iaas.UcsdManagedInfra",
+ 'IAAS.UCSDMESSAGES': "iaas.UcsdMessages",
+ 'IAM.ACCOUNT': "iam.Account",
+ 'IAM.ACCOUNTEXPERIENCE': "iam.AccountExperience",
+ 'IAM.APIKEY': "iam.ApiKey",
+ 'IAM.APPREGISTRATION': "iam.AppRegistration",
+ 'IAM.BANNERMESSAGE': "iam.BannerMessage",
+ 'IAM.CERTIFICATE': "iam.Certificate",
+ 'IAM.CERTIFICATEREQUEST': "iam.CertificateRequest",
+ 'IAM.DOMAINGROUP': "iam.DomainGroup",
+ 'IAM.ENDPOINTPRIVILEGE': "iam.EndPointPrivilege",
+ 'IAM.ENDPOINTROLE': "iam.EndPointRole",
+ 'IAM.ENDPOINTUSER': "iam.EndPointUser",
+ 'IAM.ENDPOINTUSERPOLICY': "iam.EndPointUserPolicy",
+ 'IAM.ENDPOINTUSERROLE': "iam.EndPointUserRole",
+ 'IAM.IDP': "iam.Idp",
+ 'IAM.IDPREFERENCE': "iam.IdpReference",
+ 'IAM.IPACCESSMANAGEMENT': "iam.IpAccessManagement",
+ 'IAM.IPADDRESS': "iam.IpAddress",
+ 'IAM.LDAPGROUP': "iam.LdapGroup",
+ 'IAM.LDAPPOLICY': "iam.LdapPolicy",
+ 'IAM.LDAPPROVIDER': "iam.LdapProvider",
+ 'IAM.LOCALUSERPASSWORD': "iam.LocalUserPassword",
+ 'IAM.LOCALUSERPASSWORDPOLICY': "iam.LocalUserPasswordPolicy",
+ 'IAM.OAUTHTOKEN': "iam.OAuthToken",
+ 'IAM.PERMISSION': "iam.Permission",
+ 'IAM.PRIVATEKEYSPEC': "iam.PrivateKeySpec",
+ 'IAM.PRIVILEGE': "iam.Privilege",
+ 'IAM.PRIVILEGESET': "iam.PrivilegeSet",
+ 'IAM.QUALIFIER': "iam.Qualifier",
+ 'IAM.RESOURCELIMITS': "iam.ResourceLimits",
+ 'IAM.RESOURCEPERMISSION': "iam.ResourcePermission",
+ 'IAM.RESOURCEROLES': "iam.ResourceRoles",
+ 'IAM.ROLE': "iam.Role",
+ 'IAM.SECURITYHOLDER': "iam.SecurityHolder",
+ 'IAM.SERVICEPROVIDER': "iam.ServiceProvider",
+ 'IAM.SESSION': "iam.Session",
+ 'IAM.SESSIONLIMITS': "iam.SessionLimits",
+ 'IAM.SYSTEM': "iam.System",
+ 'IAM.TRUSTPOINT': "iam.TrustPoint",
+ 'IAM.USER': "iam.User",
+ 'IAM.USERGROUP': "iam.UserGroup",
+ 'IAM.USERPREFERENCE': "iam.UserPreference",
+ 'INVENTORY.DEVICEINFO': "inventory.DeviceInfo",
+ 'INVENTORY.DNMOBINDING': "inventory.DnMoBinding",
+ 'INVENTORY.GENERICINVENTORY': "inventory.GenericInventory",
+ 'INVENTORY.GENERICINVENTORYHOLDER': "inventory.GenericInventoryHolder",
+ 'INVENTORY.REQUEST': "inventory.Request",
+ 'IPMIOVERLAN.POLICY': "ipmioverlan.Policy",
+ 'IPPOOL.BLOCKLEASE': "ippool.BlockLease",
+ 'IPPOOL.IPLEASE': "ippool.IpLease",
+ 'IPPOOL.POOL': "ippool.Pool",
+ 'IPPOOL.POOLMEMBER': "ippool.PoolMember",
+ 'IPPOOL.SHADOWBLOCK': "ippool.ShadowBlock",
+ 'IPPOOL.SHADOWPOOL': "ippool.ShadowPool",
+ 'IPPOOL.UNIVERSE': "ippool.Universe",
+ 'IQNPOOL.BLOCK': "iqnpool.Block",
+ 'IQNPOOL.LEASE': "iqnpool.Lease",
+ 'IQNPOOL.POOL': "iqnpool.Pool",
+ 'IQNPOOL.POOLMEMBER': "iqnpool.PoolMember",
+ 'IQNPOOL.UNIVERSE': "iqnpool.Universe",
+ 'IWOTENANT.TENANTSTATUS': "iwotenant.TenantStatus",
+ 'KUBERNETES.ACICNIAPIC': "kubernetes.AciCniApic",
+ 'KUBERNETES.ACICNIPROFILE': "kubernetes.AciCniProfile",
+ 'KUBERNETES.ACICNITENANTCLUSTERALLOCATION': "kubernetes.AciCniTenantClusterAllocation",
+ 'KUBERNETES.ADDONDEFINITION': "kubernetes.AddonDefinition",
+ 'KUBERNETES.ADDONPOLICY': "kubernetes.AddonPolicy",
+ 'KUBERNETES.ADDONREPOSITORY': "kubernetes.AddonRepository",
+ 'KUBERNETES.BAREMETALNODEPROFILE': "kubernetes.BaremetalNodeProfile",
+ 'KUBERNETES.CATALOG': "kubernetes.Catalog",
+ 'KUBERNETES.CLUSTER': "kubernetes.Cluster",
+ 'KUBERNETES.CLUSTERADDONPROFILE': "kubernetes.ClusterAddonProfile",
+ 'KUBERNETES.CLUSTERPROFILE': "kubernetes.ClusterProfile",
+ 'KUBERNETES.CONFIGRESULT': "kubernetes.ConfigResult",
+ 'KUBERNETES.CONFIGRESULTENTRY': "kubernetes.ConfigResultEntry",
+ 'KUBERNETES.CONTAINERRUNTIMEPOLICY': "kubernetes.ContainerRuntimePolicy",
+ 'KUBERNETES.DAEMONSET': "kubernetes.DaemonSet",
+ 'KUBERNETES.DEPLOYMENT': "kubernetes.Deployment",
+ 'KUBERNETES.INGRESS': "kubernetes.Ingress",
+ 'KUBERNETES.NETWORKPOLICY': "kubernetes.NetworkPolicy",
+ 'KUBERNETES.NODE': "kubernetes.Node",
+ 'KUBERNETES.NODEGROUPPROFILE': "kubernetes.NodeGroupProfile",
+ 'KUBERNETES.POD': "kubernetes.Pod",
+ 'KUBERNETES.SERVICE': "kubernetes.Service",
+ 'KUBERNETES.STATEFULSET': "kubernetes.StatefulSet",
+ 'KUBERNETES.SYSCONFIGPOLICY': "kubernetes.SysConfigPolicy",
+ 'KUBERNETES.TRUSTEDREGISTRIESPOLICY': "kubernetes.TrustedRegistriesPolicy",
+ 'KUBERNETES.VERSION': "kubernetes.Version",
+ 'KUBERNETES.VERSIONPOLICY': "kubernetes.VersionPolicy",
+ 'KUBERNETES.VIRTUALMACHINEINFRACONFIGPOLICY': "kubernetes.VirtualMachineInfraConfigPolicy",
+ 'KUBERNETES.VIRTUALMACHINEINFRASTRUCTUREPROVIDER': "kubernetes.VirtualMachineInfrastructureProvider",
+ 'KUBERNETES.VIRTUALMACHINEINSTANCETYPE': "kubernetes.VirtualMachineInstanceType",
+ 'KUBERNETES.VIRTUALMACHINENODEPROFILE': "kubernetes.VirtualMachineNodeProfile",
+ 'KVM.POLICY': "kvm.Policy",
+ 'KVM.SESSION': "kvm.Session",
+ 'KVM.TUNNEL': "kvm.Tunnel",
+ 'KVM.VMCONSOLE': "kvm.VmConsole",
+ 'LICENSE.ACCOUNTLICENSEDATA': "license.AccountLicenseData",
+ 'LICENSE.CUSTOMEROP': "license.CustomerOp",
+ 'LICENSE.IWOCUSTOMEROP': "license.IwoCustomerOp",
+ 'LICENSE.IWOLICENSECOUNT': "license.IwoLicenseCount",
+ 'LICENSE.LICENSEINFO': "license.LicenseInfo",
+ 'LICENSE.LICENSERESERVATIONOP': "license.LicenseReservationOp",
+ 'LICENSE.SMARTLICENSETOKEN': "license.SmartlicenseToken",
+ 'LS.SERVICEPROFILE': "ls.ServiceProfile",
+ 'MACPOOL.IDBLOCK': "macpool.IdBlock",
+ 'MACPOOL.LEASE': "macpool.Lease",
+ 'MACPOOL.POOL': "macpool.Pool",
+ 'MACPOOL.POOLMEMBER': "macpool.PoolMember",
+ 'MACPOOL.UNIVERSE': "macpool.Universe",
+ 'MANAGEMENT.CONTROLLER': "management.Controller",
+ 'MANAGEMENT.ENTITY': "management.Entity",
+ 'MANAGEMENT.INTERFACE': "management.Interface",
+ 'MEMORY.ARRAY': "memory.Array",
+ 'MEMORY.PERSISTENTMEMORYCONFIGRESULT': "memory.PersistentMemoryConfigResult",
+ 'MEMORY.PERSISTENTMEMORYCONFIGURATION': "memory.PersistentMemoryConfiguration",
+ 'MEMORY.PERSISTENTMEMORYNAMESPACE': "memory.PersistentMemoryNamespace",
+ 'MEMORY.PERSISTENTMEMORYNAMESPACECONFIGRESULT': "memory.PersistentMemoryNamespaceConfigResult",
+ 'MEMORY.PERSISTENTMEMORYPOLICY': "memory.PersistentMemoryPolicy",
+ 'MEMORY.PERSISTENTMEMORYREGION': "memory.PersistentMemoryRegion",
+ 'MEMORY.PERSISTENTMEMORYUNIT': "memory.PersistentMemoryUnit",
+ 'MEMORY.UNIT': "memory.Unit",
+ 'META.DEFINITION': "meta.Definition",
+ 'NETWORK.ELEMENT': "network.Element",
+ 'NETWORK.ELEMENTSUMMARY': "network.ElementSummary",
+ 'NETWORK.FCZONEINFO': "network.FcZoneInfo",
+ 'NETWORK.VLANPORTINFO': "network.VlanPortInfo",
+ 'NETWORKCONFIG.POLICY': "networkconfig.Policy",
+ 'NIAAPI.APICCCOPOST': "niaapi.ApicCcoPost",
+ 'NIAAPI.APICFIELDNOTICE': "niaapi.ApicFieldNotice",
+ 'NIAAPI.APICHWEOL': "niaapi.ApicHweol",
+ 'NIAAPI.APICLATESTMAINTAINEDRELEASE': "niaapi.ApicLatestMaintainedRelease",
+ 'NIAAPI.APICRELEASERECOMMEND': "niaapi.ApicReleaseRecommend",
+ 'NIAAPI.APICSWEOL': "niaapi.ApicSweol",
+ 'NIAAPI.DCNMCCOPOST': "niaapi.DcnmCcoPost",
+ 'NIAAPI.DCNMFIELDNOTICE': "niaapi.DcnmFieldNotice",
+ 'NIAAPI.DCNMHWEOL': "niaapi.DcnmHweol",
+ 'NIAAPI.DCNMLATESTMAINTAINEDRELEASE': "niaapi.DcnmLatestMaintainedRelease",
+ 'NIAAPI.DCNMRELEASERECOMMEND': "niaapi.DcnmReleaseRecommend",
+ 'NIAAPI.DCNMSWEOL': "niaapi.DcnmSweol",
+ 'NIAAPI.FILEDOWNLOADER': "niaapi.FileDownloader",
+ 'NIAAPI.NIAMETADATA': "niaapi.NiaMetadata",
+ 'NIAAPI.NIBFILEDOWNLOADER': "niaapi.NibFileDownloader",
+ 'NIAAPI.NIBMETADATA': "niaapi.NibMetadata",
+ 'NIAAPI.VERSIONREGEX': "niaapi.VersionRegex",
+ 'NIATELEMETRY.AAALDAPPROVIDERDETAILS': "niatelemetry.AaaLdapProviderDetails",
+ 'NIATELEMETRY.AAARADIUSPROVIDERDETAILS': "niatelemetry.AaaRadiusProviderDetails",
+ 'NIATELEMETRY.AAATACACSPROVIDERDETAILS': "niatelemetry.AaaTacacsProviderDetails",
+ 'NIATELEMETRY.APICCOREFILEDETAILS': "niatelemetry.ApicCoreFileDetails",
+ 'NIATELEMETRY.APICDBGEXPRSEXPORTDEST': "niatelemetry.ApicDbgexpRsExportDest",
+ 'NIATELEMETRY.APICDBGEXPRSTSSCHEDULER': "niatelemetry.ApicDbgexpRsTsScheduler",
+ 'NIATELEMETRY.APICFANDETAILS': "niatelemetry.ApicFanDetails",
+ 'NIATELEMETRY.APICFEXDETAILS': "niatelemetry.ApicFexDetails",
+ 'NIATELEMETRY.APICFLASHDETAILS': "niatelemetry.ApicFlashDetails",
+ 'NIATELEMETRY.APICNTPAUTH': "niatelemetry.ApicNtpAuth",
+ 'NIATELEMETRY.APICPSUDETAILS': "niatelemetry.ApicPsuDetails",
+ 'NIATELEMETRY.APICREALMDETAILS': "niatelemetry.ApicRealmDetails",
+ 'NIATELEMETRY.APICSNMPCOMMUNITYACCESSDETAILS': "niatelemetry.ApicSnmpCommunityAccessDetails",
+ 'NIATELEMETRY.APICSNMPCOMMUNITYDETAILS': "niatelemetry.ApicSnmpCommunityDetails",
+ 'NIATELEMETRY.APICSNMPTRAPDETAILS': "niatelemetry.ApicSnmpTrapDetails",
+ 'NIATELEMETRY.APICSNMPVERSIONTHREEDETAILS': "niatelemetry.ApicSnmpVersionThreeDetails",
+ 'NIATELEMETRY.APICSYSLOGGRP': "niatelemetry.ApicSysLogGrp",
+ 'NIATELEMETRY.APICSYSLOGSRC': "niatelemetry.ApicSysLogSrc",
+ 'NIATELEMETRY.APICTRANSCEIVERDETAILS': "niatelemetry.ApicTransceiverDetails",
+ 'NIATELEMETRY.APICUIPAGECOUNTS': "niatelemetry.ApicUiPageCounts",
+ 'NIATELEMETRY.APPDETAILS': "niatelemetry.AppDetails",
+ 'NIATELEMETRY.DCNMFANDETAILS': "niatelemetry.DcnmFanDetails",
+ 'NIATELEMETRY.DCNMFEXDETAILS': "niatelemetry.DcnmFexDetails",
+ 'NIATELEMETRY.DCNMMODULEDETAILS': "niatelemetry.DcnmModuleDetails",
+ 'NIATELEMETRY.DCNMPSUDETAILS': "niatelemetry.DcnmPsuDetails",
+ 'NIATELEMETRY.DCNMTRANSCEIVERDETAILS': "niatelemetry.DcnmTransceiverDetails",
+ 'NIATELEMETRY.EPG': "niatelemetry.Epg",
+ 'NIATELEMETRY.FABRICMODULEDETAILS': "niatelemetry.FabricModuleDetails",
+ 'NIATELEMETRY.FAULT': "niatelemetry.Fault",
+ 'NIATELEMETRY.HTTPSACLCONTRACTDETAILS': "niatelemetry.HttpsAclContractDetails",
+ 'NIATELEMETRY.HTTPSACLCONTRACTFILTERMAP': "niatelemetry.HttpsAclContractFilterMap",
+ 'NIATELEMETRY.HTTPSACLEPGCONTRACTMAP': "niatelemetry.HttpsAclEpgContractMap",
+ 'NIATELEMETRY.HTTPSACLEPGDETAILS': "niatelemetry.HttpsAclEpgDetails",
+ 'NIATELEMETRY.HTTPSACLFILTERDETAILS': "niatelemetry.HttpsAclFilterDetails",
+ 'NIATELEMETRY.LC': "niatelemetry.Lc",
+ 'NIATELEMETRY.MSOCONTRACTDETAILS': "niatelemetry.MsoContractDetails",
+ 'NIATELEMETRY.MSOEPGDETAILS': "niatelemetry.MsoEpgDetails",
+ 'NIATELEMETRY.MSOSCHEMADETAILS': "niatelemetry.MsoSchemaDetails",
+ 'NIATELEMETRY.MSOSITEDETAILS': "niatelemetry.MsoSiteDetails",
+ 'NIATELEMETRY.MSOTENANTDETAILS': "niatelemetry.MsoTenantDetails",
+ 'NIATELEMETRY.NEXUSDASHBOARDCONTROLLERDETAILS': "niatelemetry.NexusDashboardControllerDetails",
+ 'NIATELEMETRY.NEXUSDASHBOARDDETAILS': "niatelemetry.NexusDashboardDetails",
+ 'NIATELEMETRY.NEXUSDASHBOARDMEMORYDETAILS': "niatelemetry.NexusDashboardMemoryDetails",
+ 'NIATELEMETRY.NEXUSDASHBOARDS': "niatelemetry.NexusDashboards",
+ 'NIATELEMETRY.NIAFEATUREUSAGE': "niatelemetry.NiaFeatureUsage",
+ 'NIATELEMETRY.NIAINVENTORY': "niatelemetry.NiaInventory",
+ 'NIATELEMETRY.NIAINVENTORYDCNM': "niatelemetry.NiaInventoryDcnm",
+ 'NIATELEMETRY.NIAINVENTORYFABRIC': "niatelemetry.NiaInventoryFabric",
+ 'NIATELEMETRY.NIALICENSESTATE': "niatelemetry.NiaLicenseState",
+ 'NIATELEMETRY.PASSWORDSTRENGTHCHECK': "niatelemetry.PasswordStrengthCheck",
+ 'NIATELEMETRY.SITEINVENTORY': "niatelemetry.SiteInventory",
+ 'NIATELEMETRY.SSHVERSIONTWO': "niatelemetry.SshVersionTwo",
+ 'NIATELEMETRY.SUPERVISORMODULEDETAILS': "niatelemetry.SupervisorModuleDetails",
+ 'NIATELEMETRY.SYSTEMCONTROLLERDETAILS': "niatelemetry.SystemControllerDetails",
+ 'NIATELEMETRY.TENANT': "niatelemetry.Tenant",
+ 'NOTIFICATION.ACCOUNTSUBSCRIPTION': "notification.AccountSubscription",
+ 'NTP.POLICY': "ntp.Policy",
+ 'OPRS.DEPLOYMENT': "oprs.Deployment",
+ 'OPRS.SYNCTARGETLISTMESSAGE': "oprs.SyncTargetListMessage",
+ 'ORGANIZATION.ORGANIZATION': "organization.Organization",
+ 'OS.BULKINSTALLINFO': "os.BulkInstallInfo",
+ 'OS.CATALOG': "os.Catalog",
+ 'OS.CONFIGURATIONFILE': "os.ConfigurationFile",
+ 'OS.DISTRIBUTION': "os.Distribution",
+ 'OS.INSTALL': "os.Install",
+ 'OS.OSSUPPORT': "os.OsSupport",
+ 'OS.SUPPORTEDVERSION': "os.SupportedVersion",
+ 'OS.TEMPLATEFILE': "os.TemplateFile",
+ 'OS.VALIDINSTALLTARGET': "os.ValidInstallTarget",
+ 'PCI.COPROCESSORCARD': "pci.CoprocessorCard",
+ 'PCI.DEVICE': "pci.Device",
+ 'PCI.LINK': "pci.Link",
+ 'PCI.SWITCH': "pci.Switch",
+ 'PORT.GROUP': "port.Group",
+ 'PORT.MACBINDING': "port.MacBinding",
+ 'PORT.SUBGROUP': "port.SubGroup",
+ 'POWER.CONTROLSTATE': "power.ControlState",
+ 'POWER.POLICY': "power.Policy",
+ 'PROCESSOR.UNIT': "processor.Unit",
+ 'RECOMMENDATION.CAPACITYRUNWAY': "recommendation.CapacityRunway",
+ 'RECOMMENDATION.PHYSICALITEM': "recommendation.PhysicalItem",
+ 'RECOVERY.BACKUPCONFIGPOLICY': "recovery.BackupConfigPolicy",
+ 'RECOVERY.BACKUPPROFILE': "recovery.BackupProfile",
+ 'RECOVERY.CONFIGRESULT': "recovery.ConfigResult",
+ 'RECOVERY.CONFIGRESULTENTRY': "recovery.ConfigResultEntry",
+ 'RECOVERY.ONDEMANDBACKUP': "recovery.OnDemandBackup",
+ 'RECOVERY.RESTORE': "recovery.Restore",
+ 'RECOVERY.SCHEDULECONFIGPOLICY': "recovery.ScheduleConfigPolicy",
+ 'RESOURCE.GROUP': "resource.Group",
+ 'RESOURCE.GROUPMEMBER': "resource.GroupMember",
+ 'RESOURCE.LICENSERESOURCECOUNT': "resource.LicenseResourceCount",
+ 'RESOURCE.MEMBERSHIP': "resource.Membership",
+ 'RESOURCE.MEMBERSHIPHOLDER': "resource.MembershipHolder",
+ 'RESOURCEPOOL.LEASE': "resourcepool.Lease",
+ 'RESOURCEPOOL.LEASERESOURCE': "resourcepool.LeaseResource",
+ 'RESOURCEPOOL.POOL': "resourcepool.Pool",
+ 'RESOURCEPOOL.POOLMEMBER': "resourcepool.PoolMember",
+ 'RESOURCEPOOL.UNIVERSE': "resourcepool.Universe",
+ 'RPROXY.REVERSEPROXY': "rproxy.ReverseProxy",
+ 'SDCARD.POLICY': "sdcard.Policy",
+ 'SDWAN.PROFILE': "sdwan.Profile",
+ 'SDWAN.ROUTERNODE': "sdwan.RouterNode",
+ 'SDWAN.ROUTERPOLICY': "sdwan.RouterPolicy",
+ 'SDWAN.VMANAGEACCOUNTPOLICY': "sdwan.VmanageAccountPolicy",
+ 'SEARCH.SEARCHITEM': "search.SearchItem",
+ 'SEARCH.TAGITEM': "search.TagItem",
+ 'SECURITY.UNIT': "security.Unit",
+ 'SERVER.CONFIGCHANGEDETAIL': "server.ConfigChangeDetail",
+ 'SERVER.CONFIGIMPORT': "server.ConfigImport",
+ 'SERVER.CONFIGRESULT': "server.ConfigResult",
+ 'SERVER.CONFIGRESULTENTRY': "server.ConfigResultEntry",
+ 'SERVER.PROFILE': "server.Profile",
+ 'SERVER.PROFILETEMPLATE': "server.ProfileTemplate",
+ 'SMTP.POLICY': "smtp.Policy",
+ 'SNMP.POLICY': "snmp.Policy",
+ 'SOFTWARE.APPLIANCEDISTRIBUTABLE': "software.ApplianceDistributable",
+ 'SOFTWARE.DOWNLOADHISTORY': "software.DownloadHistory",
+ 'SOFTWARE.HCLMETA': "software.HclMeta",
+ 'SOFTWARE.HYPERFLEXBUNDLEDISTRIBUTABLE': "software.HyperflexBundleDistributable",
+ 'SOFTWARE.HYPERFLEXDISTRIBUTABLE': "software.HyperflexDistributable",
+ 'SOFTWARE.RELEASEMETA': "software.ReleaseMeta",
+ 'SOFTWARE.SOLUTIONDISTRIBUTABLE': "software.SolutionDistributable",
+ 'SOFTWARE.UCSDBUNDLEDISTRIBUTABLE': "software.UcsdBundleDistributable",
+ 'SOFTWARE.UCSDDISTRIBUTABLE': "software.UcsdDistributable",
+ 'SOFTWAREREPOSITORY.AUTHORIZATION': "softwarerepository.Authorization",
+ 'SOFTWAREREPOSITORY.CACHEDIMAGE': "softwarerepository.CachedImage",
+ 'SOFTWAREREPOSITORY.CATALOG': "softwarerepository.Catalog",
+ 'SOFTWAREREPOSITORY.CATEGORYMAPPER': "softwarerepository.CategoryMapper",
+ 'SOFTWAREREPOSITORY.CATEGORYMAPPERMODEL': "softwarerepository.CategoryMapperModel",
+ 'SOFTWAREREPOSITORY.CATEGORYSUPPORTCONSTRAINT': "softwarerepository.CategorySupportConstraint",
+ 'SOFTWAREREPOSITORY.DOWNLOADSPEC': "softwarerepository.DownloadSpec",
+ 'SOFTWAREREPOSITORY.OPERATINGSYSTEMFILE': "softwarerepository.OperatingSystemFile",
+ 'SOFTWAREREPOSITORY.RELEASE': "softwarerepository.Release",
+ 'SOL.POLICY': "sol.Policy",
+ 'SSH.POLICY': "ssh.Policy",
+ 'STORAGE.CONTROLLER': "storage.Controller",
+ 'STORAGE.DISKGROUP': "storage.DiskGroup",
+ 'STORAGE.DISKSLOT': "storage.DiskSlot",
+ 'STORAGE.DRIVEGROUP': "storage.DriveGroup",
+ 'STORAGE.ENCLOSURE': "storage.Enclosure",
+ 'STORAGE.ENCLOSUREDISK': "storage.EnclosureDisk",
+ 'STORAGE.ENCLOSUREDISKSLOTEP': "storage.EnclosureDiskSlotEp",
+ 'STORAGE.FLEXFLASHCONTROLLER': "storage.FlexFlashController",
+ 'STORAGE.FLEXFLASHCONTROLLERPROPS': "storage.FlexFlashControllerProps",
+ 'STORAGE.FLEXFLASHPHYSICALDRIVE': "storage.FlexFlashPhysicalDrive",
+ 'STORAGE.FLEXFLASHVIRTUALDRIVE': "storage.FlexFlashVirtualDrive",
+ 'STORAGE.FLEXUTILCONTROLLER': "storage.FlexUtilController",
+ 'STORAGE.FLEXUTILPHYSICALDRIVE': "storage.FlexUtilPhysicalDrive",
+ 'STORAGE.FLEXUTILVIRTUALDRIVE': "storage.FlexUtilVirtualDrive",
+ 'STORAGE.HITACHIARRAY': "storage.HitachiArray",
+ 'STORAGE.HITACHICONTROLLER': "storage.HitachiController",
+ 'STORAGE.HITACHIDISK': "storage.HitachiDisk",
+ 'STORAGE.HITACHIHOST': "storage.HitachiHost",
+ 'STORAGE.HITACHIHOSTLUN': "storage.HitachiHostLun",
+ 'STORAGE.HITACHIPARITYGROUP': "storage.HitachiParityGroup",
+ 'STORAGE.HITACHIPOOL': "storage.HitachiPool",
+ 'STORAGE.HITACHIPORT': "storage.HitachiPort",
+ 'STORAGE.HITACHIVOLUME': "storage.HitachiVolume",
+ 'STORAGE.HYPERFLEXSTORAGECONTAINER': "storage.HyperFlexStorageContainer",
+ 'STORAGE.HYPERFLEXVOLUME': "storage.HyperFlexVolume",
+ 'STORAGE.ITEM': "storage.Item",
+ 'STORAGE.NETAPPAGGREGATE': "storage.NetAppAggregate",
+ 'STORAGE.NETAPPBASEDISK': "storage.NetAppBaseDisk",
+ 'STORAGE.NETAPPCLUSTER': "storage.NetAppCluster",
+ 'STORAGE.NETAPPETHERNETPORT': "storage.NetAppEthernetPort",
+ 'STORAGE.NETAPPEXPORTPOLICY': "storage.NetAppExportPolicy",
+ 'STORAGE.NETAPPFCINTERFACE': "storage.NetAppFcInterface",
+ 'STORAGE.NETAPPFCPORT': "storage.NetAppFcPort",
+ 'STORAGE.NETAPPINITIATORGROUP': "storage.NetAppInitiatorGroup",
+ 'STORAGE.NETAPPIPINTERFACE': "storage.NetAppIpInterface",
+ 'STORAGE.NETAPPLICENSE': "storage.NetAppLicense",
+ 'STORAGE.NETAPPLUN': "storage.NetAppLun",
+ 'STORAGE.NETAPPLUNMAP': "storage.NetAppLunMap",
+ 'STORAGE.NETAPPNODE': "storage.NetAppNode",
+ 'STORAGE.NETAPPSTORAGEVM': "storage.NetAppStorageVm",
+ 'STORAGE.NETAPPVOLUME': "storage.NetAppVolume",
+ 'STORAGE.NETAPPVOLUMESNAPSHOT': "storage.NetAppVolumeSnapshot",
+ 'STORAGE.PHYSICALDISK': "storage.PhysicalDisk",
+ 'STORAGE.PHYSICALDISKEXTENSION': "storage.PhysicalDiskExtension",
+ 'STORAGE.PHYSICALDISKUSAGE': "storage.PhysicalDiskUsage",
+ 'STORAGE.PUREARRAY': "storage.PureArray",
+ 'STORAGE.PURECONTROLLER': "storage.PureController",
+ 'STORAGE.PUREDISK': "storage.PureDisk",
+ 'STORAGE.PUREHOST': "storage.PureHost",
+ 'STORAGE.PUREHOSTGROUP': "storage.PureHostGroup",
+ 'STORAGE.PUREHOSTLUN': "storage.PureHostLun",
+ 'STORAGE.PUREPORT': "storage.PurePort",
+ 'STORAGE.PUREPROTECTIONGROUP': "storage.PureProtectionGroup",
+ 'STORAGE.PUREPROTECTIONGROUPSNAPSHOT': "storage.PureProtectionGroupSnapshot",
+ 'STORAGE.PUREREPLICATIONSCHEDULE': "storage.PureReplicationSchedule",
+ 'STORAGE.PURESNAPSHOTSCHEDULE': "storage.PureSnapshotSchedule",
+ 'STORAGE.PUREVOLUME': "storage.PureVolume",
+ 'STORAGE.PUREVOLUMESNAPSHOT': "storage.PureVolumeSnapshot",
+ 'STORAGE.SASEXPANDER': "storage.SasExpander",
+ 'STORAGE.SASPORT': "storage.SasPort",
+ 'STORAGE.SPAN': "storage.Span",
+ 'STORAGE.STORAGEPOLICY': "storage.StoragePolicy",
+ 'STORAGE.VDMEMBEREP': "storage.VdMemberEp",
+ 'STORAGE.VIRTUALDRIVE': "storage.VirtualDrive",
+ 'STORAGE.VIRTUALDRIVECONTAINER': "storage.VirtualDriveContainer",
+ 'STORAGE.VIRTUALDRIVEEXTENSION': "storage.VirtualDriveExtension",
+ 'STORAGE.VIRTUALDRIVEIDENTITY': "storage.VirtualDriveIdentity",
+ 'SYSLOG.POLICY': "syslog.Policy",
+ 'TAM.ADVISORYCOUNT': "tam.AdvisoryCount",
+ 'TAM.ADVISORYDEFINITION': "tam.AdvisoryDefinition",
+ 'TAM.ADVISORYINFO': "tam.AdvisoryInfo",
+ 'TAM.ADVISORYINSTANCE': "tam.AdvisoryInstance",
+ 'TAM.SECURITYADVISORY': "tam.SecurityAdvisory",
+ 'TASK.HITACHISCOPEDINVENTORY': "task.HitachiScopedInventory",
+ 'TASK.HXAPSCOPEDINVENTORY': "task.HxapScopedInventory",
+ 'TASK.NETAPPSCOPEDINVENTORY': "task.NetAppScopedInventory",
+ 'TASK.PUBLICCLOUDSCOPEDINVENTORY': "task.PublicCloudScopedInventory",
+ 'TASK.PURESCOPEDINVENTORY': "task.PureScopedInventory",
+ 'TASK.SERVERSCOPEDINVENTORY': "task.ServerScopedInventory",
+ 'TECHSUPPORTMANAGEMENT.COLLECTIONCONTROLPOLICY': "techsupportmanagement.CollectionControlPolicy",
+ 'TECHSUPPORTMANAGEMENT.DOWNLOAD': "techsupportmanagement.Download",
+ 'TECHSUPPORTMANAGEMENT.TECHSUPPORTBUNDLE': "techsupportmanagement.TechSupportBundle",
+ 'TECHSUPPORTMANAGEMENT.TECHSUPPORTSTATUS': "techsupportmanagement.TechSupportStatus",
+ 'TERMINAL.AUDITLOG': "terminal.AuditLog",
+ 'THERMAL.POLICY': "thermal.Policy",
+ 'TOP.SYSTEM': "top.System",
+ 'UCSD.BACKUPINFO': "ucsd.BackupInfo",
+ 'UUIDPOOL.BLOCK': "uuidpool.Block",
+ 'UUIDPOOL.POOL': "uuidpool.Pool",
+ 'UUIDPOOL.POOLMEMBER': "uuidpool.PoolMember",
+ 'UUIDPOOL.UNIVERSE': "uuidpool.Universe",
+ 'UUIDPOOL.UUIDLEASE': "uuidpool.UuidLease",
+ 'VIRTUALIZATION.HOST': "virtualization.Host",
+ 'VIRTUALIZATION.VIRTUALDISK': "virtualization.VirtualDisk",
+ 'VIRTUALIZATION.VIRTUALMACHINE': "virtualization.VirtualMachine",
+ 'VIRTUALIZATION.VMWARECLUSTER': "virtualization.VmwareCluster",
+ 'VIRTUALIZATION.VMWAREDATACENTER': "virtualization.VmwareDatacenter",
+ 'VIRTUALIZATION.VMWAREDATASTORE': "virtualization.VmwareDatastore",
+ 'VIRTUALIZATION.VMWAREDATASTORECLUSTER': "virtualization.VmwareDatastoreCluster",
+ 'VIRTUALIZATION.VMWAREDISTRIBUTEDNETWORK': "virtualization.VmwareDistributedNetwork",
+ 'VIRTUALIZATION.VMWAREDISTRIBUTEDSWITCH': "virtualization.VmwareDistributedSwitch",
+ 'VIRTUALIZATION.VMWAREFOLDER': "virtualization.VmwareFolder",
+ 'VIRTUALIZATION.VMWAREHOST': "virtualization.VmwareHost",
+ 'VIRTUALIZATION.VMWAREKERNELNETWORK': "virtualization.VmwareKernelNetwork",
+ 'VIRTUALIZATION.VMWARENETWORK': "virtualization.VmwareNetwork",
+ 'VIRTUALIZATION.VMWAREPHYSICALNETWORKINTERFACE': "virtualization.VmwarePhysicalNetworkInterface",
+ 'VIRTUALIZATION.VMWAREUPLINKPORT': "virtualization.VmwareUplinkPort",
+ 'VIRTUALIZATION.VMWAREVCENTER': "virtualization.VmwareVcenter",
+ 'VIRTUALIZATION.VMWAREVIRTUALDISK': "virtualization.VmwareVirtualDisk",
+ 'VIRTUALIZATION.VMWAREVIRTUALMACHINE': "virtualization.VmwareVirtualMachine",
+ 'VIRTUALIZATION.VMWAREVIRTUALMACHINESNAPSHOT': "virtualization.VmwareVirtualMachineSnapshot",
+ 'VIRTUALIZATION.VMWAREVIRTUALNETWORKINTERFACE': "virtualization.VmwareVirtualNetworkInterface",
+ 'VIRTUALIZATION.VMWAREVIRTUALSWITCH': "virtualization.VmwareVirtualSwitch",
+ 'VMEDIA.POLICY': "vmedia.Policy",
+ 'VMRC.CONSOLE': "vmrc.Console",
+ 'VNIC.ETHADAPTERPOLICY': "vnic.EthAdapterPolicy",
+ 'VNIC.ETHIF': "vnic.EthIf",
+ 'VNIC.ETHNETWORKPOLICY': "vnic.EthNetworkPolicy",
+ 'VNIC.ETHQOSPOLICY': "vnic.EthQosPolicy",
+ 'VNIC.FCADAPTERPOLICY': "vnic.FcAdapterPolicy",
+ 'VNIC.FCIF': "vnic.FcIf",
+ 'VNIC.FCNETWORKPOLICY': "vnic.FcNetworkPolicy",
+ 'VNIC.FCQOSPOLICY': "vnic.FcQosPolicy",
+ 'VNIC.ISCSIADAPTERPOLICY': "vnic.IscsiAdapterPolicy",
+ 'VNIC.ISCSIBOOTPOLICY': "vnic.IscsiBootPolicy",
+ 'VNIC.ISCSISTATICTARGETPOLICY': "vnic.IscsiStaticTargetPolicy",
+ 'VNIC.LANCONNECTIVITYPOLICY': "vnic.LanConnectivityPolicy",
+ 'VNIC.LCPSTATUS': "vnic.LcpStatus",
+ 'VNIC.SANCONNECTIVITYPOLICY': "vnic.SanConnectivityPolicy",
+ 'VNIC.SCPSTATUS': "vnic.ScpStatus",
+ 'VRF.VRF': "vrf.Vrf",
+ 'WORKFLOW.BATCHAPIEXECUTOR': "workflow.BatchApiExecutor",
+ 'WORKFLOW.BUILDTASKMETA': "workflow.BuildTaskMeta",
+ 'WORKFLOW.BUILDTASKMETAOWNER': "workflow.BuildTaskMetaOwner",
+ 'WORKFLOW.CATALOG': "workflow.Catalog",
+ 'WORKFLOW.CUSTOMDATATYPEDEFINITION': "workflow.CustomDataTypeDefinition",
+ 'WORKFLOW.ERRORRESPONSEHANDLER': "workflow.ErrorResponseHandler",
+ 'WORKFLOW.PENDINGDYNAMICWORKFLOWINFO': "workflow.PendingDynamicWorkflowInfo",
+ 'WORKFLOW.ROLLBACKWORKFLOW': "workflow.RollbackWorkflow",
+ 'WORKFLOW.TASKDEBUGLOG': "workflow.TaskDebugLog",
+ 'WORKFLOW.TASKDEFINITION': "workflow.TaskDefinition",
+ 'WORKFLOW.TASKINFO': "workflow.TaskInfo",
+ 'WORKFLOW.TASKMETADATA': "workflow.TaskMetadata",
+ 'WORKFLOW.TASKNOTIFICATION': "workflow.TaskNotification",
+ 'WORKFLOW.TEMPLATEEVALUATION': "workflow.TemplateEvaluation",
+ 'WORKFLOW.TEMPLATEFUNCTIONMETA': "workflow.TemplateFunctionMeta",
+ 'WORKFLOW.WORKFLOWDEFINITION': "workflow.WorkflowDefinition",
+ 'WORKFLOW.WORKFLOWINFO': "workflow.WorkflowInfo",
+ 'WORKFLOW.WORKFLOWMETA': "workflow.WorkflowMeta",
+ 'WORKFLOW.WORKFLOWMETADATA': "workflow.WorkflowMetadata",
+ 'WORKFLOW.WORKFLOWNOTIFICATION': "workflow.WorkflowNotification",
+ },
+ }
+
+ validations = {
+ ('name',): {
+ 'regex': {
+ 'pattern': r'^[a-zA-Z0-9][a-zA-Z0-9_-]{1,92}$', # noqa: E501
+ },
+ },
+ }
+
+ @cached_property
+ def additional_properties_type():
+ """
+ This must be a method because a model may have properties that are
+ of type self, this must run after the class is loaded
+ """
+ lazy_import()
+ return (bool, date, datetime, dict, float, int, list, str, none_type,) # noqa: E501
+
+ _nullable = False
+
+ @cached_property
+ def openapi_types():
+ """
+ This must be a method because a model may have properties that are
+ of type self, this must run after the class is loaded
+
+ Returns
+ openapi_types (dict): The key is attribute name
+ and the value is attribute type.
+ """
+ lazy_import()
+ return {
+ 'class_id': (str,), # noqa: E501
+ 'moid': (str,), # noqa: E501
+ 'selector': (str,), # noqa: E501
+ 'link': (str,), # noqa: E501
+ 'account_moid': (str,), # noqa: E501
+ 'create_time': (datetime,), # noqa: E501
+ 'domain_group_moid': (str,), # noqa: E501
+ 'mod_time': (datetime,), # noqa: E501
+ 'owners': ([str], none_type,), # noqa: E501
+ 'shared_scope': (str,), # noqa: E501
+ 'tags': ([MoTag], none_type,), # noqa: E501
+ 'version_context': (MoVersionContext,), # noqa: E501
+ 'ancestors': ([MoBaseMoRelationship], none_type,), # noqa: E501
+ 'parent': (MoBaseMoRelationship,), # noqa: E501
+ 'permission_resources': ([MoBaseMoRelationship], none_type,), # noqa: E501
+ 'display_names': (DisplayNames,), # noqa: E501
+ 'action': (str,), # noqa: E501
+ 'export_tags': (bool,), # noqa: E501
+ 'exported_objects': ([BulkSubRequest], none_type,), # noqa: E501
+ 'import_order': (bool, date, datetime, dict, float, int, list, str, none_type,), # noqa: E501
+ 'items': ([MoMoRef], none_type,), # noqa: E501
+ 'name': (str,), # noqa: E501
+ 'status': (str,), # noqa: E501
+ 'status_message': (str,), # noqa: E501
+ 'exported_items': ([BulkExportedItemRelationship], none_type,), # noqa: E501
+ 'organization': (OrganizationOrganizationRelationship,), # noqa: E501
+ 'object_type': (str,), # noqa: E501
+ }
+
+ @cached_property
+ def discriminator():
+ lazy_import()
+ val = {
+ 'bulk.Export': BulkExport,
+ 'mo.MoRef': MoMoRef,
+ }
+ if not val:
+ return None
+ return {'class_id': val}
+
+ attribute_map = {
+ 'class_id': 'ClassId', # noqa: E501
+ 'moid': 'Moid', # noqa: E501
+ 'selector': 'Selector', # noqa: E501
+ 'link': 'link', # noqa: E501
+ 'account_moid': 'AccountMoid', # noqa: E501
+ 'create_time': 'CreateTime', # noqa: E501
+ 'domain_group_moid': 'DomainGroupMoid', # noqa: E501
+ 'mod_time': 'ModTime', # noqa: E501
+ 'owners': 'Owners', # noqa: E501
+ 'shared_scope': 'SharedScope', # noqa: E501
+ 'tags': 'Tags', # noqa: E501
+ 'version_context': 'VersionContext', # noqa: E501
+ 'ancestors': 'Ancestors', # noqa: E501
+ 'parent': 'Parent', # noqa: E501
+ 'permission_resources': 'PermissionResources', # noqa: E501
+ 'display_names': 'DisplayNames', # noqa: E501
+ 'action': 'Action', # noqa: E501
+ 'export_tags': 'ExportTags', # noqa: E501
+ 'exported_objects': 'ExportedObjects', # noqa: E501
+ 'import_order': 'ImportOrder', # noqa: E501
+ 'items': 'Items', # noqa: E501
+ 'name': 'Name', # noqa: E501
+ 'status': 'Status', # noqa: E501
+ 'status_message': 'StatusMessage', # noqa: E501
+ 'exported_items': 'ExportedItems', # noqa: E501
+ 'organization': 'Organization', # noqa: E501
+ 'object_type': 'ObjectType', # noqa: E501
+ }
+
+ required_properties = set([
+ '_data_store',
+ '_check_type',
+ '_spec_property_naming',
+ '_path_to_item',
+ '_configuration',
+ '_visited_composed_classes',
+ '_composed_instances',
+ '_var_name_to_model_instances',
+ '_additional_properties_model_instances',
+ ])
+
+ @convert_js_args_to_python_args
+ def __init__(self, *args, **kwargs): # noqa: E501
+ """BulkExportRelationship - a model defined in OpenAPI
+
+ Args:
+
+ Keyword Args:
+ class_id (str): The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.. defaults to "mo.MoRef", must be one of ["mo.MoRef", ] # noqa: E501
+ _check_type (bool): if True, values for parameters in openapi_types
+ will be type checked and a TypeError will be
+ raised if the wrong type is input.
+ Defaults to True
+ _path_to_item (tuple/list): This is a list of keys or values to
+ drill down to the model in received_data
+ when deserializing a response
+ _spec_property_naming (bool): True if the variable names in the input data
+ are serialized names, as specified in the OpenAPI document.
+ False if the variable names in the input data
+ are pythonic names, e.g. snake case (default)
+ _configuration (Configuration): the instance to use when
+ deserializing a file_type parameter.
+ If passed, type conversion is attempted
+ If omitted no type conversion is done.
+ _visited_composed_classes (tuple): This stores a tuple of
+ classes that we have traveled through so that
+ if we see that class again we will not use its
+ discriminator again.
+ When traveling through a discriminator, the
+ composed schema that is
+ is traveled through is added to this set.
+ For example if Animal has a discriminator
+ petType and we pass in "Dog", and the class Dog
+ allOf includes Animal, we move through Animal
+ once using the discriminator, and pick Dog.
+ Then in Dog, we will make an instance of the
+ Animal class but this time we won't travel
+ through its discriminator because we passed in
+ _visited_composed_classes = (Animal,)
+ moid (str): The Moid of the referenced REST resource.. [optional] # noqa: E501
+ selector (str): An OData $filter expression which describes the REST resource to be referenced. This field may be set instead of 'moid' by clients. 1. If 'moid' is set this field is ignored. 1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of the resource matching the filter expression and populates it in the MoRef that is part of the object instance being inserted/updated to fulfill the REST request. An error is returned if the filter matches zero or more than one REST resource. An example filter string is: Serial eq '3AA8B7T11'.. [optional] # noqa: E501
+ link (str): A URL to an instance of the 'mo.MoRef' class.. [optional] # noqa: E501
+ account_moid (str): The Account ID for this managed object.. [optional] # noqa: E501
+ create_time (datetime): The time when this managed object was created.. [optional] # noqa: E501
+ domain_group_moid (str): The DomainGroup ID for this managed object.. [optional] # noqa: E501
+ mod_time (datetime): The time when this managed object was last modified.. [optional] # noqa: E501
+ owners ([str], none_type): [optional] # noqa: E501
+ shared_scope (str): Intersight provides pre-built workflows, tasks and policies to end users through global catalogs. Objects that are made available through global catalogs are said to have a 'shared' ownership. Shared objects are either made globally available to all end users or restricted to end users based on their license entitlement. Users can use this property to differentiate the scope (global or a specific license tier) to which a shared MO belongs.. [optional] # noqa: E501
+ tags ([MoTag], none_type): [optional] # noqa: E501
+ version_context (MoVersionContext): [optional] # noqa: E501
+ ancestors ([MoBaseMoRelationship], none_type): An array of relationships to moBaseMo resources.. [optional] # noqa: E501
+ parent (MoBaseMoRelationship): [optional] # noqa: E501
+ permission_resources ([MoBaseMoRelationship], none_type): An array of relationships to moBaseMo resources.. [optional] # noqa: E501
+ display_names (DisplayNames): [optional] # noqa: E501
+ action (str): Action to be performed on the export operation. * `Start` - Starts the export operation. * `Cancel` - Cancels the export operation that is in progress.. [optional] if omitted the server will use the default value of "Start" # noqa: E501
+ export_tags (bool): Specifies whether tags must be exported and will be considered for all the items MOs.. [optional] if omitted the server will use the default value of True # noqa: E501
+ exported_objects ([BulkSubRequest], none_type): [optional] # noqa: E501
+ import_order (bool, date, datetime, dict, float, int, list, str, none_type): Contains the list of import order.. [optional] # noqa: E501
+ items ([MoMoRef], none_type): [optional] # noqa: E501
+ name (str): An identifier for the export instance. Name can only contain letters (a-z, A-Z), numbers (0-9), hyphen (-) or an underscore (_).. [optional] # noqa: E501
+ status (str): Status of the export operation. * `` - The operation has not started. * `InProgress` - The operation is in progress. * `OrderInProgress` - The archive operation is in progress. * `Success` - The operation has succeeded. * `Failed` - The operation has failed. * `OperationTimedOut` - The operation has timed out. * `OperationCancelled` - The operation has been cancelled. * `CancelInProgress` - The operation is being cancelled.. [optional] if omitted the server will use the default value of "" # noqa: E501
+ status_message (str): Status message associated with failures or progress indication.. [optional] # noqa: E501
+ exported_items ([BulkExportedItemRelationship], none_type): An array of relationships to bulkExportedItem resources.. [optional] # noqa: E501
+ organization (OrganizationOrganizationRelationship): [optional] # noqa: E501
+ object_type (str): The fully-qualified name of the remote type referred by this relationship.. [optional] # noqa: E501
+ """
+
+ class_id = kwargs.get('class_id', "mo.MoRef")
+ _check_type = kwargs.pop('_check_type', True)
+ _spec_property_naming = kwargs.pop('_spec_property_naming', False)
+ _path_to_item = kwargs.pop('_path_to_item', ())
+ _configuration = kwargs.pop('_configuration', None)
+ _visited_composed_classes = kwargs.pop('_visited_composed_classes', ())
+
+ if args:
+ raise ApiTypeError(
+ "Invalid positional arguments=%s passed to %s. Remove those invalid positional arguments." % (
+ args,
+ self.__class__.__name__,
+ ),
+ path_to_item=_path_to_item,
+ valid_classes=(self.__class__,),
+ )
+
+ self._data_store = {}
+ self._check_type = _check_type
+ self._spec_property_naming = _spec_property_naming
+ self._path_to_item = _path_to_item
+ self._configuration = _configuration
+ self._visited_composed_classes = _visited_composed_classes + (self.__class__,)
+
+ constant_args = {
+ '_check_type': _check_type,
+ '_path_to_item': _path_to_item,
+ '_spec_property_naming': _spec_property_naming,
+ '_configuration': _configuration,
+ '_visited_composed_classes': self._visited_composed_classes,
+ }
+ required_args = {
+ 'class_id': class_id,
+ }
+ model_args = {}
+ model_args.update(required_args)
+ model_args.update(kwargs)
+ composed_info = validate_get_composed_info(
+ constant_args, model_args, self)
+ self._composed_instances = composed_info[0]
+ self._var_name_to_model_instances = composed_info[1]
+ self._additional_properties_model_instances = composed_info[2]
+ unused_args = composed_info[3]
+
+ for var_name, var_value in required_args.items():
+ setattr(self, var_name, var_value)
+ for var_name, var_value in kwargs.items():
+ if var_name in unused_args and \
+ self._configuration is not None and \
+ self._configuration.discard_unknown_keys and \
+ not self._additional_properties_model_instances:
+ # discard variable.
+ continue
+ setattr(self, var_name, var_value)
+
+ @cached_property
+ def _composed_schemas():
+ # we need this here to make our import statements work
+ # we must store _composed_schemas in here so the code is only run
+ # when we invoke this method. If we kept this at the class
+ # level we would get an error beause the class level
+ # code would be run when this module is imported, and these composed
+ # classes don't exist yet because their module has not finished
+ # loading
+ lazy_import()
+ return {
+ 'anyOf': [
+ ],
+ 'allOf': [
+ ],
+ 'oneOf': [
+ BulkExport,
+ MoMoRef,
+ none_type,
+ ],
+ }
diff --git a/intersight/model/bulk_export_response.py b/intersight/model/bulk_export_response.py
new file mode 100644
index 0000000000..48de797182
--- /dev/null
+++ b/intersight/model/bulk_export_response.py
@@ -0,0 +1,249 @@
+"""
+ Cisco Intersight
+
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
+
+ The version of the OpenAPI document: 1.0.9-4506
+ Contact: intersight@cisco.com
+ Generated by: https://openapi-generator.tech
+"""
+
+
+import re # noqa: F401
+import sys # noqa: F401
+
+from intersight.model_utils import ( # noqa: F401
+ ApiTypeError,
+ ModelComposed,
+ ModelNormal,
+ ModelSimple,
+ cached_property,
+ change_keys_js_to_python,
+ convert_js_args_to_python_args,
+ date,
+ datetime,
+ file_type,
+ none_type,
+ validate_get_composed_info,
+)
+
+def lazy_import():
+ from intersight.model.bulk_export_list import BulkExportList
+ from intersight.model.mo_aggregate_transform import MoAggregateTransform
+ from intersight.model.mo_document_count import MoDocumentCount
+ from intersight.model.mo_tag_key_summary import MoTagKeySummary
+ from intersight.model.mo_tag_summary import MoTagSummary
+ globals()['BulkExportList'] = BulkExportList
+ globals()['MoAggregateTransform'] = MoAggregateTransform
+ globals()['MoDocumentCount'] = MoDocumentCount
+ globals()['MoTagKeySummary'] = MoTagKeySummary
+ globals()['MoTagSummary'] = MoTagSummary
+
+
+class BulkExportResponse(ModelComposed):
+ """NOTE: This class is auto generated by OpenAPI Generator.
+ Ref: https://openapi-generator.tech
+
+ Do not edit the class manually.
+
+ Attributes:
+ allowed_values (dict): The key is the tuple path to the attribute
+ and the for var_name this is (var_name,). The value is a dict
+ with a capitalized key describing the allowed value and an allowed
+ value. These dicts store the allowed enum values.
+ attribute_map (dict): The key is attribute name
+ and the value is json key in definition.
+ discriminator_value_class_map (dict): A dict to go from the discriminator
+ variable value to the discriminator class name.
+ validations (dict): The key is the tuple path to the attribute
+ and the for var_name this is (var_name,). The value is a dict
+ that stores validations for max_length, min_length, max_items,
+ min_items, exclusive_maximum, inclusive_maximum, exclusive_minimum,
+ inclusive_minimum, and regex.
+ additional_properties_type (tuple): A tuple of classes accepted
+ as additional properties values.
+ """
+
+ allowed_values = {
+ }
+
+ validations = {
+ }
+
+ @cached_property
+ def additional_properties_type():
+ """
+ This must be a method because a model may have properties that are
+ of type self, this must run after the class is loaded
+ """
+ lazy_import()
+ return (bool, date, datetime, dict, float, int, list, str, none_type,) # noqa: E501
+
+ _nullable = False
+
+ @cached_property
+ def openapi_types():
+ """
+ This must be a method because a model may have properties that are
+ of type self, this must run after the class is loaded
+
+ Returns
+ openapi_types (dict): The key is attribute name
+ and the value is attribute type.
+ """
+ lazy_import()
+ return {
+ 'object_type': (str,), # noqa: E501
+ 'count': (int,), # noqa: E501
+ 'results': ([MoTagKeySummary], none_type,), # noqa: E501
+ }
+
+ @cached_property
+ def discriminator():
+ lazy_import()
+ val = {
+ 'bulk.Export.List': BulkExportList,
+ 'mo.AggregateTransform': MoAggregateTransform,
+ 'mo.DocumentCount': MoDocumentCount,
+ 'mo.TagSummary': MoTagSummary,
+ }
+ if not val:
+ return None
+ return {'object_type': val}
+
+ attribute_map = {
+ 'object_type': 'ObjectType', # noqa: E501
+ 'count': 'Count', # noqa: E501
+ 'results': 'Results', # noqa: E501
+ }
+
+ required_properties = set([
+ '_data_store',
+ '_check_type',
+ '_spec_property_naming',
+ '_path_to_item',
+ '_configuration',
+ '_visited_composed_classes',
+ '_composed_instances',
+ '_var_name_to_model_instances',
+ '_additional_properties_model_instances',
+ ])
+
+ @convert_js_args_to_python_args
+ def __init__(self, object_type, *args, **kwargs): # noqa: E501
+ """BulkExportResponse - a model defined in OpenAPI
+
+ Args:
+ object_type (str): A discriminator value to disambiguate the schema of a HTTP GET response body.
+
+ Keyword Args:
+ _check_type (bool): if True, values for parameters in openapi_types
+ will be type checked and a TypeError will be
+ raised if the wrong type is input.
+ Defaults to True
+ _path_to_item (tuple/list): This is a list of keys or values to
+ drill down to the model in received_data
+ when deserializing a response
+ _spec_property_naming (bool): True if the variable names in the input data
+ are serialized names, as specified in the OpenAPI document.
+ False if the variable names in the input data
+ are pythonic names, e.g. snake case (default)
+ _configuration (Configuration): the instance to use when
+ deserializing a file_type parameter.
+ If passed, type conversion is attempted
+ If omitted no type conversion is done.
+ _visited_composed_classes (tuple): This stores a tuple of
+ classes that we have traveled through so that
+ if we see that class again we will not use its
+ discriminator again.
+ When traveling through a discriminator, the
+ composed schema that is
+ is traveled through is added to this set.
+ For example if Animal has a discriminator
+ petType and we pass in "Dog", and the class Dog
+ allOf includes Animal, we move through Animal
+ once using the discriminator, and pick Dog.
+ Then in Dog, we will make an instance of the
+ Animal class but this time we won't travel
+ through its discriminator because we passed in
+ _visited_composed_classes = (Animal,)
+ count (int): The total number of 'bulk.Export' resources matching the request, accross all pages. The 'Count' attribute is included when the HTTP GET request includes the '$inlinecount' parameter.. [optional] # noqa: E501
+ results ([MoTagKeySummary], none_type): [optional] # noqa: E501
+ """
+
+ _check_type = kwargs.pop('_check_type', True)
+ _spec_property_naming = kwargs.pop('_spec_property_naming', False)
+ _path_to_item = kwargs.pop('_path_to_item', ())
+ _configuration = kwargs.pop('_configuration', None)
+ _visited_composed_classes = kwargs.pop('_visited_composed_classes', ())
+
+ if args:
+ raise ApiTypeError(
+ "Invalid positional arguments=%s passed to %s. Remove those invalid positional arguments." % (
+ args,
+ self.__class__.__name__,
+ ),
+ path_to_item=_path_to_item,
+ valid_classes=(self.__class__,),
+ )
+
+ self._data_store = {}
+ self._check_type = _check_type
+ self._spec_property_naming = _spec_property_naming
+ self._path_to_item = _path_to_item
+ self._configuration = _configuration
+ self._visited_composed_classes = _visited_composed_classes + (self.__class__,)
+
+ constant_args = {
+ '_check_type': _check_type,
+ '_path_to_item': _path_to_item,
+ '_spec_property_naming': _spec_property_naming,
+ '_configuration': _configuration,
+ '_visited_composed_classes': self._visited_composed_classes,
+ }
+ required_args = {
+ 'object_type': object_type,
+ }
+ model_args = {}
+ model_args.update(required_args)
+ model_args.update(kwargs)
+ composed_info = validate_get_composed_info(
+ constant_args, model_args, self)
+ self._composed_instances = composed_info[0]
+ self._var_name_to_model_instances = composed_info[1]
+ self._additional_properties_model_instances = composed_info[2]
+ unused_args = composed_info[3]
+
+ for var_name, var_value in required_args.items():
+ setattr(self, var_name, var_value)
+ for var_name, var_value in kwargs.items():
+ if var_name in unused_args and \
+ self._configuration is not None and \
+ self._configuration.discard_unknown_keys and \
+ not self._additional_properties_model_instances:
+ # discard variable.
+ continue
+ setattr(self, var_name, var_value)
+
+ @cached_property
+ def _composed_schemas():
+ # we need this here to make our import statements work
+ # we must store _composed_schemas in here so the code is only run
+ # when we invoke this method. If we kept this at the class
+ # level we would get an error beause the class level
+ # code would be run when this module is imported, and these composed
+ # classes don't exist yet because their module has not finished
+ # loading
+ lazy_import()
+ return {
+ 'anyOf': [
+ ],
+ 'allOf': [
+ ],
+ 'oneOf': [
+ BulkExportList,
+ MoAggregateTransform,
+ MoDocumentCount,
+ MoTagSummary,
+ ],
+ }
diff --git a/intersight/model/bulk_exported_item.py b/intersight/model/bulk_exported_item.py
new file mode 100644
index 0000000000..91fcf3a5ec
--- /dev/null
+++ b/intersight/model/bulk_exported_item.py
@@ -0,0 +1,344 @@
+"""
+ Cisco Intersight
+
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
+
+ The version of the OpenAPI document: 1.0.9-4506
+ Contact: intersight@cisco.com
+ Generated by: https://openapi-generator.tech
+"""
+
+
+import re # noqa: F401
+import sys # noqa: F401
+
+from intersight.model_utils import ( # noqa: F401
+ ApiTypeError,
+ ModelComposed,
+ ModelNormal,
+ ModelSimple,
+ cached_property,
+ change_keys_js_to_python,
+ convert_js_args_to_python_args,
+ date,
+ datetime,
+ file_type,
+ none_type,
+ validate_get_composed_info,
+)
+
+def lazy_import():
+ from intersight.model.bulk_export_relationship import BulkExportRelationship
+ from intersight.model.bulk_exported_item_all_of import BulkExportedItemAllOf
+ from intersight.model.bulk_exported_item_relationship import BulkExportedItemRelationship
+ from intersight.model.display_names import DisplayNames
+ from intersight.model.mo_base_mo import MoBaseMo
+ from intersight.model.mo_base_mo_relationship import MoBaseMoRelationship
+ from intersight.model.mo_mo_ref import MoMoRef
+ from intersight.model.mo_tag import MoTag
+ from intersight.model.mo_version_context import MoVersionContext
+ globals()['BulkExportRelationship'] = BulkExportRelationship
+ globals()['BulkExportedItemAllOf'] = BulkExportedItemAllOf
+ globals()['BulkExportedItemRelationship'] = BulkExportedItemRelationship
+ globals()['DisplayNames'] = DisplayNames
+ globals()['MoBaseMo'] = MoBaseMo
+ globals()['MoBaseMoRelationship'] = MoBaseMoRelationship
+ globals()['MoMoRef'] = MoMoRef
+ globals()['MoTag'] = MoTag
+ globals()['MoVersionContext'] = MoVersionContext
+
+
+class BulkExportedItem(ModelComposed):
+ """NOTE: This class is auto generated by OpenAPI Generator.
+ Ref: https://openapi-generator.tech
+
+ Do not edit the class manually.
+
+ Attributes:
+ allowed_values (dict): The key is the tuple path to the attribute
+ and the for var_name this is (var_name,). The value is a dict
+ with a capitalized key describing the allowed value and an allowed
+ value. These dicts store the allowed enum values.
+ attribute_map (dict): The key is attribute name
+ and the value is json key in definition.
+ discriminator_value_class_map (dict): A dict to go from the discriminator
+ variable value to the discriminator class name.
+ validations (dict): The key is the tuple path to the attribute
+ and the for var_name this is (var_name,). The value is a dict
+ that stores validations for max_length, min_length, max_items,
+ min_items, exclusive_maximum, inclusive_maximum, exclusive_minimum,
+ inclusive_minimum, and regex.
+ additional_properties_type (tuple): A tuple of classes accepted
+ as additional properties values.
+ """
+
+ allowed_values = {
+ ('class_id',): {
+ 'BULK.EXPORTEDITEM': "bulk.ExportedItem",
+ },
+ ('object_type',): {
+ 'BULK.EXPORTEDITEM': "bulk.ExportedItem",
+ },
+ ('status',): {
+ 'EMPTY': "",
+ 'VALIDATIONINPROGRESS': "ValidationInProgress",
+ 'VALID': "Valid",
+ 'INVALID': "InValid",
+ 'INPROGRESS': "InProgress",
+ 'SUCCESS': "Success",
+ 'FAILED': "Failed",
+ 'ROLLBACKINITIATED': "RollBackInitiated",
+ 'ROLLBACKFAILED': "RollBackFailed",
+ 'ROLLBACKCOMPLETED': "RollbackCompleted",
+ 'ROLLBACKABORTED': "RollbackAborted",
+ 'OPERATIONTIMEDOUT': "OperationTimedOut",
+ 'OPERATIONCANCELLED': "OperationCancelled",
+ 'CANCELINPROGRESS': "CancelInProgress",
+ },
+ }
+
+ validations = {
+ }
+
+ @cached_property
+ def additional_properties_type():
+ """
+ This must be a method because a model may have properties that are
+ of type self, this must run after the class is loaded
+ """
+ lazy_import()
+ return (bool, date, datetime, dict, float, int, list, str, none_type,) # noqa: E501
+
+ _nullable = False
+
+ @cached_property
+ def openapi_types():
+ """
+ This must be a method because a model may have properties that are
+ of type self, this must run after the class is loaded
+
+ Returns
+ openapi_types (dict): The key is attribute name
+ and the value is attribute type.
+ """
+ lazy_import()
+ return {
+ 'class_id': (str,), # noqa: E501
+ 'object_type': (str,), # noqa: E501
+ 'export_tags': (bool,), # noqa: E501
+ 'file_name': (str,), # noqa: E501
+ 'item': (MoMoRef,), # noqa: E501
+ 'name': (str,), # noqa: E501
+ 'service_name': (str,), # noqa: E501
+ 'service_version': (str,), # noqa: E501
+ 'status': (str,), # noqa: E501
+ 'status_message': (str,), # noqa: E501
+ 'export': (BulkExportRelationship,), # noqa: E501
+ 'parent_item': (BulkExportedItemRelationship,), # noqa: E501
+ 'related_items': ([BulkExportedItemRelationship], none_type,), # noqa: E501
+ 'account_moid': (str,), # noqa: E501
+ 'create_time': (datetime,), # noqa: E501
+ 'domain_group_moid': (str,), # noqa: E501
+ 'mod_time': (datetime,), # noqa: E501
+ 'moid': (str,), # noqa: E501
+ 'owners': ([str], none_type,), # noqa: E501
+ 'shared_scope': (str,), # noqa: E501
+ 'tags': ([MoTag], none_type,), # noqa: E501
+ 'version_context': (MoVersionContext,), # noqa: E501
+ 'ancestors': ([MoBaseMoRelationship], none_type,), # noqa: E501
+ 'parent': (MoBaseMoRelationship,), # noqa: E501
+ 'permission_resources': ([MoBaseMoRelationship], none_type,), # noqa: E501
+ 'display_names': (DisplayNames,), # noqa: E501
+ }
+
+ @cached_property
+ def discriminator():
+ val = {
+ }
+ if not val:
+ return None
+ return {'class_id': val}
+
+ attribute_map = {
+ 'class_id': 'ClassId', # noqa: E501
+ 'object_type': 'ObjectType', # noqa: E501
+ 'export_tags': 'ExportTags', # noqa: E501
+ 'file_name': 'FileName', # noqa: E501
+ 'item': 'Item', # noqa: E501
+ 'name': 'Name', # noqa: E501
+ 'service_name': 'ServiceName', # noqa: E501
+ 'service_version': 'ServiceVersion', # noqa: E501
+ 'status': 'Status', # noqa: E501
+ 'status_message': 'StatusMessage', # noqa: E501
+ 'export': 'Export', # noqa: E501
+ 'parent_item': 'ParentItem', # noqa: E501
+ 'related_items': 'RelatedItems', # noqa: E501
+ 'account_moid': 'AccountMoid', # noqa: E501
+ 'create_time': 'CreateTime', # noqa: E501
+ 'domain_group_moid': 'DomainGroupMoid', # noqa: E501
+ 'mod_time': 'ModTime', # noqa: E501
+ 'moid': 'Moid', # noqa: E501
+ 'owners': 'Owners', # noqa: E501
+ 'shared_scope': 'SharedScope', # noqa: E501
+ 'tags': 'Tags', # noqa: E501
+ 'version_context': 'VersionContext', # noqa: E501
+ 'ancestors': 'Ancestors', # noqa: E501
+ 'parent': 'Parent', # noqa: E501
+ 'permission_resources': 'PermissionResources', # noqa: E501
+ 'display_names': 'DisplayNames', # noqa: E501
+ }
+
+ required_properties = set([
+ '_data_store',
+ '_check_type',
+ '_spec_property_naming',
+ '_path_to_item',
+ '_configuration',
+ '_visited_composed_classes',
+ '_composed_instances',
+ '_var_name_to_model_instances',
+ '_additional_properties_model_instances',
+ ])
+
+ @convert_js_args_to_python_args
+ def __init__(self, *args, **kwargs): # noqa: E501
+ """BulkExportedItem - a model defined in OpenAPI
+
+ Args:
+
+ Keyword Args:
+ class_id (str): The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.. defaults to "bulk.ExportedItem", must be one of ["bulk.ExportedItem", ] # noqa: E501
+ object_type (str): The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.. defaults to "bulk.ExportedItem", must be one of ["bulk.ExportedItem", ] # noqa: E501
+ _check_type (bool): if True, values for parameters in openapi_types
+ will be type checked and a TypeError will be
+ raised if the wrong type is input.
+ Defaults to True
+ _path_to_item (tuple/list): This is a list of keys or values to
+ drill down to the model in received_data
+ when deserializing a response
+ _spec_property_naming (bool): True if the variable names in the input data
+ are serialized names, as specified in the OpenAPI document.
+ False if the variable names in the input data
+ are pythonic names, e.g. snake case (default)
+ _configuration (Configuration): the instance to use when
+ deserializing a file_type parameter.
+ If passed, type conversion is attempted
+ If omitted no type conversion is done.
+ _visited_composed_classes (tuple): This stores a tuple of
+ classes that we have traveled through so that
+ if we see that class again we will not use its
+ discriminator again.
+ When traveling through a discriminator, the
+ composed schema that is
+ is traveled through is added to this set.
+ For example if Animal has a discriminator
+ petType and we pass in "Dog", and the class Dog
+ allOf includes Animal, we move through Animal
+ once using the discriminator, and pick Dog.
+ Then in Dog, we will make an instance of the
+ Animal class but this time we won't travel
+ through its discriminator because we passed in
+ _visited_composed_classes = (Animal,)
+ export_tags (bool): Specifies whether tags must be exported for item MO.. [optional] if omitted the server will use the default value of False # noqa: E501
+ file_name (str): Name of the file corresponding to item MO.. [optional] # noqa: E501
+ item (MoMoRef): [optional] # noqa: E501
+ name (str): MO item identity (the moref corresponding to item) expressed as a string.. [optional] # noqa: E501
+ service_name (str): Name of the service that owns the item MO.. [optional] # noqa: E501
+ service_version (str): Version of the service that owns the item MO.. [optional] # noqa: E501
+ status (str): Status of the item's export operation. * `` - The operation has not started. * `ValidationInProgress` - The validation operation is in progress. * `Valid` - The content to be imported is valid. * `InValid` - The content to be imported is not valid and the status message will have the reason. * `InProgress` - The operation is in progress. * `Success` - The operation has succeeded. * `Failed` - The operation has failed. * `RollBackInitiated` - The rollback has been inititiated for import failure. * `RollBackFailed` - The rollback has failed for import failure. * `RollbackCompleted` - The rollback has completed for import failure. * `RollbackAborted` - The rollback has been aborted for import failure. * `OperationTimedOut` - The operation has timed out. * `OperationCancelled` - The operation has been cancelled. * `CancelInProgress` - The operation is being cancelled.. [optional] if omitted the server will use the default value of "" # noqa: E501
+ status_message (str): Progress or error message for the MO's export operation.. [optional] # noqa: E501
+ export (BulkExportRelationship): [optional] # noqa: E501
+ parent_item (BulkExportedItemRelationship): [optional] # noqa: E501
+ related_items ([BulkExportedItemRelationship], none_type): An array of relationships to bulkExportedItem resources.. [optional] # noqa: E501
+ account_moid (str): The Account ID for this managed object.. [optional] # noqa: E501
+ create_time (datetime): The time when this managed object was created.. [optional] # noqa: E501
+ domain_group_moid (str): The DomainGroup ID for this managed object.. [optional] # noqa: E501
+ mod_time (datetime): The time when this managed object was last modified.. [optional] # noqa: E501
+ moid (str): The unique identifier of this Managed Object instance.. [optional] # noqa: E501
+ owners ([str], none_type): [optional] # noqa: E501
+ shared_scope (str): Intersight provides pre-built workflows, tasks and policies to end users through global catalogs. Objects that are made available through global catalogs are said to have a 'shared' ownership. Shared objects are either made globally available to all end users or restricted to end users based on their license entitlement. Users can use this property to differentiate the scope (global or a specific license tier) to which a shared MO belongs.. [optional] # noqa: E501
+ tags ([MoTag], none_type): [optional] # noqa: E501
+ version_context (MoVersionContext): [optional] # noqa: E501
+ ancestors ([MoBaseMoRelationship], none_type): An array of relationships to moBaseMo resources.. [optional] # noqa: E501
+ parent (MoBaseMoRelationship): [optional] # noqa: E501
+ permission_resources ([MoBaseMoRelationship], none_type): An array of relationships to moBaseMo resources.. [optional] # noqa: E501
+ display_names (DisplayNames): [optional] # noqa: E501
+ """
+
+ class_id = kwargs.get('class_id', "bulk.ExportedItem")
+ object_type = kwargs.get('object_type', "bulk.ExportedItem")
+ _check_type = kwargs.pop('_check_type', True)
+ _spec_property_naming = kwargs.pop('_spec_property_naming', False)
+ _path_to_item = kwargs.pop('_path_to_item', ())
+ _configuration = kwargs.pop('_configuration', None)
+ _visited_composed_classes = kwargs.pop('_visited_composed_classes', ())
+
+ if args:
+ raise ApiTypeError(
+ "Invalid positional arguments=%s passed to %s. Remove those invalid positional arguments." % (
+ args,
+ self.__class__.__name__,
+ ),
+ path_to_item=_path_to_item,
+ valid_classes=(self.__class__,),
+ )
+
+ self._data_store = {}
+ self._check_type = _check_type
+ self._spec_property_naming = _spec_property_naming
+ self._path_to_item = _path_to_item
+ self._configuration = _configuration
+ self._visited_composed_classes = _visited_composed_classes + (self.__class__,)
+
+ constant_args = {
+ '_check_type': _check_type,
+ '_path_to_item': _path_to_item,
+ '_spec_property_naming': _spec_property_naming,
+ '_configuration': _configuration,
+ '_visited_composed_classes': self._visited_composed_classes,
+ }
+ required_args = {
+ 'class_id': class_id,
+ 'object_type': object_type,
+ }
+ model_args = {}
+ model_args.update(required_args)
+ model_args.update(kwargs)
+ composed_info = validate_get_composed_info(
+ constant_args, model_args, self)
+ self._composed_instances = composed_info[0]
+ self._var_name_to_model_instances = composed_info[1]
+ self._additional_properties_model_instances = composed_info[2]
+ unused_args = composed_info[3]
+
+ for var_name, var_value in required_args.items():
+ setattr(self, var_name, var_value)
+ for var_name, var_value in kwargs.items():
+ if var_name in unused_args and \
+ self._configuration is not None and \
+ self._configuration.discard_unknown_keys and \
+ not self._additional_properties_model_instances:
+ # discard variable.
+ continue
+ setattr(self, var_name, var_value)
+
+ @cached_property
+ def _composed_schemas():
+ # we need this here to make our import statements work
+ # we must store _composed_schemas in here so the code is only run
+ # when we invoke this method. If we kept this at the class
+ # level we would get an error beause the class level
+ # code would be run when this module is imported, and these composed
+ # classes don't exist yet because their module has not finished
+ # loading
+ lazy_import()
+ return {
+ 'anyOf': [
+ ],
+ 'allOf': [
+ BulkExportedItemAllOf,
+ MoBaseMo,
+ ],
+ 'oneOf': [
+ ],
+ }
diff --git a/intersight/model/bulk_exported_item_all_of.py b/intersight/model/bulk_exported_item_all_of.py
new file mode 100644
index 0000000000..2c6b7503ba
--- /dev/null
+++ b/intersight/model/bulk_exported_item_all_of.py
@@ -0,0 +1,240 @@
+"""
+ Cisco Intersight
+
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
+
+ The version of the OpenAPI document: 1.0.9-4506
+ Contact: intersight@cisco.com
+ Generated by: https://openapi-generator.tech
+"""
+
+
+import re # noqa: F401
+import sys # noqa: F401
+
+from intersight.model_utils import ( # noqa: F401
+ ApiTypeError,
+ ModelComposed,
+ ModelNormal,
+ ModelSimple,
+ cached_property,
+ change_keys_js_to_python,
+ convert_js_args_to_python_args,
+ date,
+ datetime,
+ file_type,
+ none_type,
+ validate_get_composed_info,
+)
+
+def lazy_import():
+ from intersight.model.bulk_export_relationship import BulkExportRelationship
+ from intersight.model.bulk_exported_item_relationship import BulkExportedItemRelationship
+ from intersight.model.mo_mo_ref import MoMoRef
+ globals()['BulkExportRelationship'] = BulkExportRelationship
+ globals()['BulkExportedItemRelationship'] = BulkExportedItemRelationship
+ globals()['MoMoRef'] = MoMoRef
+
+
+class BulkExportedItemAllOf(ModelNormal):
+ """NOTE: This class is auto generated by OpenAPI Generator.
+ Ref: https://openapi-generator.tech
+
+ Do not edit the class manually.
+
+ Attributes:
+ allowed_values (dict): The key is the tuple path to the attribute
+ and the for var_name this is (var_name,). The value is a dict
+ with a capitalized key describing the allowed value and an allowed
+ value. These dicts store the allowed enum values.
+ attribute_map (dict): The key is attribute name
+ and the value is json key in definition.
+ discriminator_value_class_map (dict): A dict to go from the discriminator
+ variable value to the discriminator class name.
+ validations (dict): The key is the tuple path to the attribute
+ and the for var_name this is (var_name,). The value is a dict
+ that stores validations for max_length, min_length, max_items,
+ min_items, exclusive_maximum, inclusive_maximum, exclusive_minimum,
+ inclusive_minimum, and regex.
+ additional_properties_type (tuple): A tuple of classes accepted
+ as additional properties values.
+ """
+
+ allowed_values = {
+ ('class_id',): {
+ 'BULK.EXPORTEDITEM': "bulk.ExportedItem",
+ },
+ ('object_type',): {
+ 'BULK.EXPORTEDITEM': "bulk.ExportedItem",
+ },
+ ('status',): {
+ 'EMPTY': "",
+ 'VALIDATIONINPROGRESS': "ValidationInProgress",
+ 'VALID': "Valid",
+ 'INVALID': "InValid",
+ 'INPROGRESS': "InProgress",
+ 'SUCCESS': "Success",
+ 'FAILED': "Failed",
+ 'ROLLBACKINITIATED': "RollBackInitiated",
+ 'ROLLBACKFAILED': "RollBackFailed",
+ 'ROLLBACKCOMPLETED': "RollbackCompleted",
+ 'ROLLBACKABORTED': "RollbackAborted",
+ 'OPERATIONTIMEDOUT': "OperationTimedOut",
+ 'OPERATIONCANCELLED': "OperationCancelled",
+ 'CANCELINPROGRESS': "CancelInProgress",
+ },
+ }
+
+ validations = {
+ }
+
+ additional_properties_type = None
+
+ _nullable = False
+
+ @cached_property
+ def openapi_types():
+ """
+ This must be a method because a model may have properties that are
+ of type self, this must run after the class is loaded
+
+ Returns
+ openapi_types (dict): The key is attribute name
+ and the value is attribute type.
+ """
+ lazy_import()
+ return {
+ 'class_id': (str,), # noqa: E501
+ 'object_type': (str,), # noqa: E501
+ 'export_tags': (bool,), # noqa: E501
+ 'file_name': (str,), # noqa: E501
+ 'item': (MoMoRef,), # noqa: E501
+ 'name': (str,), # noqa: E501
+ 'service_name': (str,), # noqa: E501
+ 'service_version': (str,), # noqa: E501
+ 'status': (str,), # noqa: E501
+ 'status_message': (str,), # noqa: E501
+ 'export': (BulkExportRelationship,), # noqa: E501
+ 'parent_item': (BulkExportedItemRelationship,), # noqa: E501
+ 'related_items': ([BulkExportedItemRelationship], none_type,), # noqa: E501
+ }
+
+ @cached_property
+ def discriminator():
+ return None
+
+
+ attribute_map = {
+ 'class_id': 'ClassId', # noqa: E501
+ 'object_type': 'ObjectType', # noqa: E501
+ 'export_tags': 'ExportTags', # noqa: E501
+ 'file_name': 'FileName', # noqa: E501
+ 'item': 'Item', # noqa: E501
+ 'name': 'Name', # noqa: E501
+ 'service_name': 'ServiceName', # noqa: E501
+ 'service_version': 'ServiceVersion', # noqa: E501
+ 'status': 'Status', # noqa: E501
+ 'status_message': 'StatusMessage', # noqa: E501
+ 'export': 'Export', # noqa: E501
+ 'parent_item': 'ParentItem', # noqa: E501
+ 'related_items': 'RelatedItems', # noqa: E501
+ }
+
+ _composed_schemas = {}
+
+ required_properties = set([
+ '_data_store',
+ '_check_type',
+ '_spec_property_naming',
+ '_path_to_item',
+ '_configuration',
+ '_visited_composed_classes',
+ ])
+
+ @convert_js_args_to_python_args
+ def __init__(self, *args, **kwargs): # noqa: E501
+ """BulkExportedItemAllOf - a model defined in OpenAPI
+
+ Args:
+
+ Keyword Args:
+ class_id (str): The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.. defaults to "bulk.ExportedItem", must be one of ["bulk.ExportedItem", ] # noqa: E501
+ object_type (str): The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.. defaults to "bulk.ExportedItem", must be one of ["bulk.ExportedItem", ] # noqa: E501
+ _check_type (bool): if True, values for parameters in openapi_types
+ will be type checked and a TypeError will be
+ raised if the wrong type is input.
+ Defaults to True
+ _path_to_item (tuple/list): This is a list of keys or values to
+ drill down to the model in received_data
+ when deserializing a response
+ _spec_property_naming (bool): True if the variable names in the input data
+ are serialized names, as specified in the OpenAPI document.
+ False if the variable names in the input data
+ are pythonic names, e.g. snake case (default)
+ _configuration (Configuration): the instance to use when
+ deserializing a file_type parameter.
+ If passed, type conversion is attempted
+ If omitted no type conversion is done.
+ _visited_composed_classes (tuple): This stores a tuple of
+ classes that we have traveled through so that
+ if we see that class again we will not use its
+ discriminator again.
+ When traveling through a discriminator, the
+ composed schema that is
+ is traveled through is added to this set.
+ For example if Animal has a discriminator
+ petType and we pass in "Dog", and the class Dog
+ allOf includes Animal, we move through Animal
+ once using the discriminator, and pick Dog.
+ Then in Dog, we will make an instance of the
+ Animal class but this time we won't travel
+ through its discriminator because we passed in
+ _visited_composed_classes = (Animal,)
+ export_tags (bool): Specifies whether tags must be exported for item MO.. [optional] if omitted the server will use the default value of False # noqa: E501
+ file_name (str): Name of the file corresponding to item MO.. [optional] # noqa: E501
+ item (MoMoRef): [optional] # noqa: E501
+ name (str): MO item identity (the moref corresponding to item) expressed as a string.. [optional] # noqa: E501
+ service_name (str): Name of the service that owns the item MO.. [optional] # noqa: E501
+ service_version (str): Version of the service that owns the item MO.. [optional] # noqa: E501
+ status (str): Status of the item's export operation. * `` - The operation has not started. * `ValidationInProgress` - The validation operation is in progress. * `Valid` - The content to be imported is valid. * `InValid` - The content to be imported is not valid and the status message will have the reason. * `InProgress` - The operation is in progress. * `Success` - The operation has succeeded. * `Failed` - The operation has failed. * `RollBackInitiated` - The rollback has been inititiated for import failure. * `RollBackFailed` - The rollback has failed for import failure. * `RollbackCompleted` - The rollback has completed for import failure. * `RollbackAborted` - The rollback has been aborted for import failure. * `OperationTimedOut` - The operation has timed out. * `OperationCancelled` - The operation has been cancelled. * `CancelInProgress` - The operation is being cancelled.. [optional] if omitted the server will use the default value of "" # noqa: E501
+ status_message (str): Progress or error message for the MO's export operation.. [optional] # noqa: E501
+ export (BulkExportRelationship): [optional] # noqa: E501
+ parent_item (BulkExportedItemRelationship): [optional] # noqa: E501
+ related_items ([BulkExportedItemRelationship], none_type): An array of relationships to bulkExportedItem resources.. [optional] # noqa: E501
+ """
+
+ class_id = kwargs.get('class_id', "bulk.ExportedItem")
+ object_type = kwargs.get('object_type', "bulk.ExportedItem")
+ _check_type = kwargs.pop('_check_type', True)
+ _spec_property_naming = kwargs.pop('_spec_property_naming', False)
+ _path_to_item = kwargs.pop('_path_to_item', ())
+ _configuration = kwargs.pop('_configuration', None)
+ _visited_composed_classes = kwargs.pop('_visited_composed_classes', ())
+
+ if args:
+ raise ApiTypeError(
+ "Invalid positional arguments=%s passed to %s. Remove those invalid positional arguments." % (
+ args,
+ self.__class__.__name__,
+ ),
+ path_to_item=_path_to_item,
+ valid_classes=(self.__class__,),
+ )
+
+ self._data_store = {}
+ self._check_type = _check_type
+ self._spec_property_naming = _spec_property_naming
+ self._path_to_item = _path_to_item
+ self._configuration = _configuration
+ self._visited_composed_classes = _visited_composed_classes + (self.__class__,)
+
+ self.class_id = class_id
+ self.object_type = object_type
+ for var_name, var_value in kwargs.items():
+ if var_name not in self.attribute_map and \
+ self._configuration is not None and \
+ self._configuration.discard_unknown_keys and \
+ self.additional_properties_type is None:
+ # discard variable.
+ continue
+ setattr(self, var_name, var_value)
diff --git a/intersight/model/bulk_exported_item_list.py b/intersight/model/bulk_exported_item_list.py
new file mode 100644
index 0000000000..a258215991
--- /dev/null
+++ b/intersight/model/bulk_exported_item_list.py
@@ -0,0 +1,238 @@
+"""
+ Cisco Intersight
+
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
+
+ The version of the OpenAPI document: 1.0.9-4506
+ Contact: intersight@cisco.com
+ Generated by: https://openapi-generator.tech
+"""
+
+
+import re # noqa: F401
+import sys # noqa: F401
+
+from intersight.model_utils import ( # noqa: F401
+ ApiTypeError,
+ ModelComposed,
+ ModelNormal,
+ ModelSimple,
+ cached_property,
+ change_keys_js_to_python,
+ convert_js_args_to_python_args,
+ date,
+ datetime,
+ file_type,
+ none_type,
+ validate_get_composed_info,
+)
+
+def lazy_import():
+ from intersight.model.bulk_exported_item import BulkExportedItem
+ from intersight.model.bulk_exported_item_list_all_of import BulkExportedItemListAllOf
+ from intersight.model.mo_base_response import MoBaseResponse
+ globals()['BulkExportedItem'] = BulkExportedItem
+ globals()['BulkExportedItemListAllOf'] = BulkExportedItemListAllOf
+ globals()['MoBaseResponse'] = MoBaseResponse
+
+
+class BulkExportedItemList(ModelComposed):
+ """NOTE: This class is auto generated by OpenAPI Generator.
+ Ref: https://openapi-generator.tech
+
+ Do not edit the class manually.
+
+ Attributes:
+ allowed_values (dict): The key is the tuple path to the attribute
+ and the for var_name this is (var_name,). The value is a dict
+ with a capitalized key describing the allowed value and an allowed
+ value. These dicts store the allowed enum values.
+ attribute_map (dict): The key is attribute name
+ and the value is json key in definition.
+ discriminator_value_class_map (dict): A dict to go from the discriminator
+ variable value to the discriminator class name.
+ validations (dict): The key is the tuple path to the attribute
+ and the for var_name this is (var_name,). The value is a dict
+ that stores validations for max_length, min_length, max_items,
+ min_items, exclusive_maximum, inclusive_maximum, exclusive_minimum,
+ inclusive_minimum, and regex.
+ additional_properties_type (tuple): A tuple of classes accepted
+ as additional properties values.
+ """
+
+ allowed_values = {
+ }
+
+ validations = {
+ }
+
+ @cached_property
+ def additional_properties_type():
+ """
+ This must be a method because a model may have properties that are
+ of type self, this must run after the class is loaded
+ """
+ lazy_import()
+ return (bool, date, datetime, dict, float, int, list, str, none_type,) # noqa: E501
+
+ _nullable = False
+
+ @cached_property
+ def openapi_types():
+ """
+ This must be a method because a model may have properties that are
+ of type self, this must run after the class is loaded
+
+ Returns
+ openapi_types (dict): The key is attribute name
+ and the value is attribute type.
+ """
+ lazy_import()
+ return {
+ 'object_type': (str,), # noqa: E501
+ 'count': (int,), # noqa: E501
+ 'results': ([BulkExportedItem], none_type,), # noqa: E501
+ }
+
+ @cached_property
+ def discriminator():
+ val = {
+ }
+ if not val:
+ return None
+ return {'object_type': val}
+
+ attribute_map = {
+ 'object_type': 'ObjectType', # noqa: E501
+ 'count': 'Count', # noqa: E501
+ 'results': 'Results', # noqa: E501
+ }
+
+ required_properties = set([
+ '_data_store',
+ '_check_type',
+ '_spec_property_naming',
+ '_path_to_item',
+ '_configuration',
+ '_visited_composed_classes',
+ '_composed_instances',
+ '_var_name_to_model_instances',
+ '_additional_properties_model_instances',
+ ])
+
+ @convert_js_args_to_python_args
+ def __init__(self, object_type, *args, **kwargs): # noqa: E501
+ """BulkExportedItemList - a model defined in OpenAPI
+
+ Args:
+ object_type (str): A discriminator value to disambiguate the schema of a HTTP GET response body.
+
+ Keyword Args:
+ _check_type (bool): if True, values for parameters in openapi_types
+ will be type checked and a TypeError will be
+ raised if the wrong type is input.
+ Defaults to True
+ _path_to_item (tuple/list): This is a list of keys or values to
+ drill down to the model in received_data
+ when deserializing a response
+ _spec_property_naming (bool): True if the variable names in the input data
+ are serialized names, as specified in the OpenAPI document.
+ False if the variable names in the input data
+ are pythonic names, e.g. snake case (default)
+ _configuration (Configuration): the instance to use when
+ deserializing a file_type parameter.
+ If passed, type conversion is attempted
+ If omitted no type conversion is done.
+ _visited_composed_classes (tuple): This stores a tuple of
+ classes that we have traveled through so that
+ if we see that class again we will not use its
+ discriminator again.
+ When traveling through a discriminator, the
+ composed schema that is
+ is traveled through is added to this set.
+ For example if Animal has a discriminator
+ petType and we pass in "Dog", and the class Dog
+ allOf includes Animal, we move through Animal
+ once using the discriminator, and pick Dog.
+ Then in Dog, we will make an instance of the
+ Animal class but this time we won't travel
+ through its discriminator because we passed in
+ _visited_composed_classes = (Animal,)
+ count (int): The total number of 'bulk.ExportedItem' resources matching the request, accross all pages. The 'Count' attribute is included when the HTTP GET request includes the '$inlinecount' parameter.. [optional] # noqa: E501
+ results ([BulkExportedItem], none_type): The array of 'bulk.ExportedItem' resources matching the request.. [optional] # noqa: E501
+ """
+
+ _check_type = kwargs.pop('_check_type', True)
+ _spec_property_naming = kwargs.pop('_spec_property_naming', False)
+ _path_to_item = kwargs.pop('_path_to_item', ())
+ _configuration = kwargs.pop('_configuration', None)
+ _visited_composed_classes = kwargs.pop('_visited_composed_classes', ())
+
+ if args:
+ raise ApiTypeError(
+ "Invalid positional arguments=%s passed to %s. Remove those invalid positional arguments." % (
+ args,
+ self.__class__.__name__,
+ ),
+ path_to_item=_path_to_item,
+ valid_classes=(self.__class__,),
+ )
+
+ self._data_store = {}
+ self._check_type = _check_type
+ self._spec_property_naming = _spec_property_naming
+ self._path_to_item = _path_to_item
+ self._configuration = _configuration
+ self._visited_composed_classes = _visited_composed_classes + (self.__class__,)
+
+ constant_args = {
+ '_check_type': _check_type,
+ '_path_to_item': _path_to_item,
+ '_spec_property_naming': _spec_property_naming,
+ '_configuration': _configuration,
+ '_visited_composed_classes': self._visited_composed_classes,
+ }
+ required_args = {
+ 'object_type': object_type,
+ }
+ model_args = {}
+ model_args.update(required_args)
+ model_args.update(kwargs)
+ composed_info = validate_get_composed_info(
+ constant_args, model_args, self)
+ self._composed_instances = composed_info[0]
+ self._var_name_to_model_instances = composed_info[1]
+ self._additional_properties_model_instances = composed_info[2]
+ unused_args = composed_info[3]
+
+ for var_name, var_value in required_args.items():
+ setattr(self, var_name, var_value)
+ for var_name, var_value in kwargs.items():
+ if var_name in unused_args and \
+ self._configuration is not None and \
+ self._configuration.discard_unknown_keys and \
+ not self._additional_properties_model_instances:
+ # discard variable.
+ continue
+ setattr(self, var_name, var_value)
+
+ @cached_property
+ def _composed_schemas():
+ # we need this here to make our import statements work
+ # we must store _composed_schemas in here so the code is only run
+ # when we invoke this method. If we kept this at the class
+ # level we would get an error beause the class level
+ # code would be run when this module is imported, and these composed
+ # classes don't exist yet because their module has not finished
+ # loading
+ lazy_import()
+ return {
+ 'anyOf': [
+ ],
+ 'allOf': [
+ BulkExportedItemListAllOf,
+ MoBaseResponse,
+ ],
+ 'oneOf': [
+ ],
+ }
diff --git a/intersight/model/bulk_exported_item_list_all_of.py b/intersight/model/bulk_exported_item_list_all_of.py
new file mode 100644
index 0000000000..1bd4863372
--- /dev/null
+++ b/intersight/model/bulk_exported_item_list_all_of.py
@@ -0,0 +1,175 @@
+"""
+ Cisco Intersight
+
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
+
+ The version of the OpenAPI document: 1.0.9-4506
+ Contact: intersight@cisco.com
+ Generated by: https://openapi-generator.tech
+"""
+
+
+import re # noqa: F401
+import sys # noqa: F401
+
+from intersight.model_utils import ( # noqa: F401
+ ApiTypeError,
+ ModelComposed,
+ ModelNormal,
+ ModelSimple,
+ cached_property,
+ change_keys_js_to_python,
+ convert_js_args_to_python_args,
+ date,
+ datetime,
+ file_type,
+ none_type,
+ validate_get_composed_info,
+)
+
+def lazy_import():
+ from intersight.model.bulk_exported_item import BulkExportedItem
+ globals()['BulkExportedItem'] = BulkExportedItem
+
+
+class BulkExportedItemListAllOf(ModelNormal):
+ """NOTE: This class is auto generated by OpenAPI Generator.
+ Ref: https://openapi-generator.tech
+
+ Do not edit the class manually.
+
+ Attributes:
+ allowed_values (dict): The key is the tuple path to the attribute
+ and the for var_name this is (var_name,). The value is a dict
+ with a capitalized key describing the allowed value and an allowed
+ value. These dicts store the allowed enum values.
+ attribute_map (dict): The key is attribute name
+ and the value is json key in definition.
+ discriminator_value_class_map (dict): A dict to go from the discriminator
+ variable value to the discriminator class name.
+ validations (dict): The key is the tuple path to the attribute
+ and the for var_name this is (var_name,). The value is a dict
+ that stores validations for max_length, min_length, max_items,
+ min_items, exclusive_maximum, inclusive_maximum, exclusive_minimum,
+ inclusive_minimum, and regex.
+ additional_properties_type (tuple): A tuple of classes accepted
+ as additional properties values.
+ """
+
+ allowed_values = {
+ }
+
+ validations = {
+ }
+
+ additional_properties_type = None
+
+ _nullable = False
+
+ @cached_property
+ def openapi_types():
+ """
+ This must be a method because a model may have properties that are
+ of type self, this must run after the class is loaded
+
+ Returns
+ openapi_types (dict): The key is attribute name
+ and the value is attribute type.
+ """
+ lazy_import()
+ return {
+ 'count': (int,), # noqa: E501
+ 'results': ([BulkExportedItem], none_type,), # noqa: E501
+ }
+
+ @cached_property
+ def discriminator():
+ return None
+
+
+ attribute_map = {
+ 'count': 'Count', # noqa: E501
+ 'results': 'Results', # noqa: E501
+ }
+
+ _composed_schemas = {}
+
+ required_properties = set([
+ '_data_store',
+ '_check_type',
+ '_spec_property_naming',
+ '_path_to_item',
+ '_configuration',
+ '_visited_composed_classes',
+ ])
+
+ @convert_js_args_to_python_args
+ def __init__(self, *args, **kwargs): # noqa: E501
+ """BulkExportedItemListAllOf - a model defined in OpenAPI
+
+ Keyword Args:
+ _check_type (bool): if True, values for parameters in openapi_types
+ will be type checked and a TypeError will be
+ raised if the wrong type is input.
+ Defaults to True
+ _path_to_item (tuple/list): This is a list of keys or values to
+ drill down to the model in received_data
+ when deserializing a response
+ _spec_property_naming (bool): True if the variable names in the input data
+ are serialized names, as specified in the OpenAPI document.
+ False if the variable names in the input data
+ are pythonic names, e.g. snake case (default)
+ _configuration (Configuration): the instance to use when
+ deserializing a file_type parameter.
+ If passed, type conversion is attempted
+ If omitted no type conversion is done.
+ _visited_composed_classes (tuple): This stores a tuple of
+ classes that we have traveled through so that
+ if we see that class again we will not use its
+ discriminator again.
+ When traveling through a discriminator, the
+ composed schema that is
+ is traveled through is added to this set.
+ For example if Animal has a discriminator
+ petType and we pass in "Dog", and the class Dog
+ allOf includes Animal, we move through Animal
+ once using the discriminator, and pick Dog.
+ Then in Dog, we will make an instance of the
+ Animal class but this time we won't travel
+ through its discriminator because we passed in
+ _visited_composed_classes = (Animal,)
+ count (int): The total number of 'bulk.ExportedItem' resources matching the request, accross all pages. The 'Count' attribute is included when the HTTP GET request includes the '$inlinecount' parameter.. [optional] # noqa: E501
+ results ([BulkExportedItem], none_type): The array of 'bulk.ExportedItem' resources matching the request.. [optional] # noqa: E501
+ """
+
+ _check_type = kwargs.pop('_check_type', True)
+ _spec_property_naming = kwargs.pop('_spec_property_naming', False)
+ _path_to_item = kwargs.pop('_path_to_item', ())
+ _configuration = kwargs.pop('_configuration', None)
+ _visited_composed_classes = kwargs.pop('_visited_composed_classes', ())
+
+ if args:
+ raise ApiTypeError(
+ "Invalid positional arguments=%s passed to %s. Remove those invalid positional arguments." % (
+ args,
+ self.__class__.__name__,
+ ),
+ path_to_item=_path_to_item,
+ valid_classes=(self.__class__,),
+ )
+
+ self._data_store = {}
+ self._check_type = _check_type
+ self._spec_property_naming = _spec_property_naming
+ self._path_to_item = _path_to_item
+ self._configuration = _configuration
+ self._visited_composed_classes = _visited_composed_classes + (self.__class__,)
+
+ for var_name, var_value in kwargs.items():
+ if var_name not in self.attribute_map and \
+ self._configuration is not None and \
+ self._configuration.discard_unknown_keys and \
+ self.additional_properties_type is None:
+ # discard variable.
+ continue
+ setattr(self, var_name, var_value)
diff --git a/intersight/model/bulk_exported_item_relationship.py b/intersight/model/bulk_exported_item_relationship.py
new file mode 100644
index 0000000000..91cccfeae6
--- /dev/null
+++ b/intersight/model/bulk_exported_item_relationship.py
@@ -0,0 +1,1104 @@
+"""
+ Cisco Intersight
+
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
+
+ The version of the OpenAPI document: 1.0.9-4506
+ Contact: intersight@cisco.com
+ Generated by: https://openapi-generator.tech
+"""
+
+
+import re # noqa: F401
+import sys # noqa: F401
+
+from intersight.model_utils import ( # noqa: F401
+ ApiTypeError,
+ ModelComposed,
+ ModelNormal,
+ ModelSimple,
+ cached_property,
+ change_keys_js_to_python,
+ convert_js_args_to_python_args,
+ date,
+ datetime,
+ file_type,
+ none_type,
+ validate_get_composed_info,
+)
+
+def lazy_import():
+ from intersight.model.bulk_export_relationship import BulkExportRelationship
+ from intersight.model.bulk_exported_item import BulkExportedItem
+ from intersight.model.display_names import DisplayNames
+ from intersight.model.mo_base_mo_relationship import MoBaseMoRelationship
+ from intersight.model.mo_mo_ref import MoMoRef
+ from intersight.model.mo_tag import MoTag
+ from intersight.model.mo_version_context import MoVersionContext
+ globals()['BulkExportRelationship'] = BulkExportRelationship
+ globals()['BulkExportedItem'] = BulkExportedItem
+ globals()['DisplayNames'] = DisplayNames
+ globals()['MoBaseMoRelationship'] = MoBaseMoRelationship
+ globals()['MoMoRef'] = MoMoRef
+ globals()['MoTag'] = MoTag
+ globals()['MoVersionContext'] = MoVersionContext
+
+
+class BulkExportedItemRelationship(ModelComposed):
+ """NOTE: This class is auto generated by OpenAPI Generator.
+ Ref: https://openapi-generator.tech
+
+ Do not edit the class manually.
+
+ Attributes:
+ allowed_values (dict): The key is the tuple path to the attribute
+ and the for var_name this is (var_name,). The value is a dict
+ with a capitalized key describing the allowed value and an allowed
+ value. These dicts store the allowed enum values.
+ attribute_map (dict): The key is attribute name
+ and the value is json key in definition.
+ discriminator_value_class_map (dict): A dict to go from the discriminator
+ variable value to the discriminator class name.
+ validations (dict): The key is the tuple path to the attribute
+ and the for var_name this is (var_name,). The value is a dict
+ that stores validations for max_length, min_length, max_items,
+ min_items, exclusive_maximum, inclusive_maximum, exclusive_minimum,
+ inclusive_minimum, and regex.
+ additional_properties_type (tuple): A tuple of classes accepted
+ as additional properties values.
+ """
+
+ allowed_values = {
+ ('class_id',): {
+ 'MO.MOREF': "mo.MoRef",
+ },
+ ('status',): {
+ 'EMPTY': "",
+ 'VALIDATIONINPROGRESS': "ValidationInProgress",
+ 'VALID': "Valid",
+ 'INVALID': "InValid",
+ 'INPROGRESS': "InProgress",
+ 'SUCCESS': "Success",
+ 'FAILED': "Failed",
+ 'ROLLBACKINITIATED': "RollBackInitiated",
+ 'ROLLBACKFAILED': "RollBackFailed",
+ 'ROLLBACKCOMPLETED': "RollbackCompleted",
+ 'ROLLBACKABORTED': "RollbackAborted",
+ 'OPERATIONTIMEDOUT': "OperationTimedOut",
+ 'OPERATIONCANCELLED': "OperationCancelled",
+ 'CANCELINPROGRESS': "CancelInProgress",
+ },
+ ('object_type',): {
+ 'AAA.AUDITRECORD': "aaa.AuditRecord",
+ 'AAA.RETENTIONCONFIG': "aaa.RetentionConfig",
+ 'AAA.RETENTIONPOLICY': "aaa.RetentionPolicy",
+ 'ACCESS.POLICY': "access.Policy",
+ 'ADAPTER.CONFIGPOLICY': "adapter.ConfigPolicy",
+ 'ADAPTER.EXTETHINTERFACE': "adapter.ExtEthInterface",
+ 'ADAPTER.HOSTETHINTERFACE': "adapter.HostEthInterface",
+ 'ADAPTER.HOSTFCINTERFACE': "adapter.HostFcInterface",
+ 'ADAPTER.HOSTISCSIINTERFACE': "adapter.HostIscsiInterface",
+ 'ADAPTER.UNIT': "adapter.Unit",
+ 'ADAPTER.UNITEXPANDER': "adapter.UnitExpander",
+ 'APPLIANCE.APPSTATUS': "appliance.AppStatus",
+ 'APPLIANCE.AUTORMAPOLICY': "appliance.AutoRmaPolicy",
+ 'APPLIANCE.BACKUP': "appliance.Backup",
+ 'APPLIANCE.BACKUPPOLICY': "appliance.BackupPolicy",
+ 'APPLIANCE.CERTIFICATESETTING': "appliance.CertificateSetting",
+ 'APPLIANCE.DATAEXPORTPOLICY': "appliance.DataExportPolicy",
+ 'APPLIANCE.DEVICECERTIFICATE': "appliance.DeviceCertificate",
+ 'APPLIANCE.DEVICECLAIM': "appliance.DeviceClaim",
+ 'APPLIANCE.DEVICEUPGRADEPOLICY': "appliance.DeviceUpgradePolicy",
+ 'APPLIANCE.DIAGSETTING': "appliance.DiagSetting",
+ 'APPLIANCE.EXTERNALSYSLOGSETTING': "appliance.ExternalSyslogSetting",
+ 'APPLIANCE.FILESYSTEMSTATUS': "appliance.FileSystemStatus",
+ 'APPLIANCE.GROUPSTATUS': "appliance.GroupStatus",
+ 'APPLIANCE.IMAGEBUNDLE': "appliance.ImageBundle",
+ 'APPLIANCE.NODEINFO': "appliance.NodeInfo",
+ 'APPLIANCE.NODESTATUS': "appliance.NodeStatus",
+ 'APPLIANCE.RELEASENOTE': "appliance.ReleaseNote",
+ 'APPLIANCE.REMOTEFILEIMPORT': "appliance.RemoteFileImport",
+ 'APPLIANCE.RESTORE': "appliance.Restore",
+ 'APPLIANCE.SETUPINFO': "appliance.SetupInfo",
+ 'APPLIANCE.SYSTEMINFO': "appliance.SystemInfo",
+ 'APPLIANCE.SYSTEMSTATUS': "appliance.SystemStatus",
+ 'APPLIANCE.UPGRADE': "appliance.Upgrade",
+ 'APPLIANCE.UPGRADEPOLICY': "appliance.UpgradePolicy",
+ 'ASSET.CLUSTERMEMBER': "asset.ClusterMember",
+ 'ASSET.DEPLOYMENT': "asset.Deployment",
+ 'ASSET.DEPLOYMENTDEVICE': "asset.DeploymentDevice",
+ 'ASSET.DEVICECLAIM': "asset.DeviceClaim",
+ 'ASSET.DEVICECONFIGURATION': "asset.DeviceConfiguration",
+ 'ASSET.DEVICECONNECTORMANAGER': "asset.DeviceConnectorManager",
+ 'ASSET.DEVICECONTRACTINFORMATION': "asset.DeviceContractInformation",
+ 'ASSET.DEVICEREGISTRATION': "asset.DeviceRegistration",
+ 'ASSET.SUBSCRIPTION': "asset.Subscription",
+ 'ASSET.SUBSCRIPTIONACCOUNT': "asset.SubscriptionAccount",
+ 'ASSET.SUBSCRIPTIONDEVICECONTRACTINFORMATION': "asset.SubscriptionDeviceContractInformation",
+ 'ASSET.TARGET': "asset.Target",
+ 'BIOS.BOOTDEVICE': "bios.BootDevice",
+ 'BIOS.BOOTMODE': "bios.BootMode",
+ 'BIOS.POLICY': "bios.Policy",
+ 'BIOS.SYSTEMBOOTORDER': "bios.SystemBootOrder",
+ 'BIOS.TOKENSETTINGS': "bios.TokenSettings",
+ 'BIOS.UNIT': "bios.Unit",
+ 'BIOS.VFSELECTMEMORYRASCONFIGURATION': "bios.VfSelectMemoryRasConfiguration",
+ 'BOOT.CDDDEVICE': "boot.CddDevice",
+ 'BOOT.DEVICEBOOTMODE': "boot.DeviceBootMode",
+ 'BOOT.DEVICEBOOTSECURITY': "boot.DeviceBootSecurity",
+ 'BOOT.HDDDEVICE': "boot.HddDevice",
+ 'BOOT.ISCSIDEVICE': "boot.IscsiDevice",
+ 'BOOT.NVMEDEVICE': "boot.NvmeDevice",
+ 'BOOT.PCHSTORAGEDEVICE': "boot.PchStorageDevice",
+ 'BOOT.PRECISIONPOLICY': "boot.PrecisionPolicy",
+ 'BOOT.PXEDEVICE': "boot.PxeDevice",
+ 'BOOT.SANDEVICE': "boot.SanDevice",
+ 'BOOT.SDDEVICE': "boot.SdDevice",
+ 'BOOT.UEFISHELLDEVICE': "boot.UefiShellDevice",
+ 'BOOT.USBDEVICE': "boot.UsbDevice",
+ 'BOOT.VMEDIADEVICE': "boot.VmediaDevice",
+ 'BULK.EXPORT': "bulk.Export",
+ 'BULK.EXPORTEDITEM': "bulk.ExportedItem",
+ 'BULK.MOCLONER': "bulk.MoCloner",
+ 'BULK.MOMERGER': "bulk.MoMerger",
+ 'BULK.REQUEST': "bulk.Request",
+ 'BULK.SUBREQUESTOBJ': "bulk.SubRequestObj",
+ 'CAPABILITY.ADAPTERUNITDESCRIPTOR': "capability.AdapterUnitDescriptor",
+ 'CAPABILITY.CATALOG': "capability.Catalog",
+ 'CAPABILITY.CHASSISDESCRIPTOR': "capability.ChassisDescriptor",
+ 'CAPABILITY.CHASSISMANUFACTURINGDEF': "capability.ChassisManufacturingDef",
+ 'CAPABILITY.CIMCFIRMWAREDESCRIPTOR': "capability.CimcFirmwareDescriptor",
+ 'CAPABILITY.EQUIPMENTPHYSICALDEF': "capability.EquipmentPhysicalDef",
+ 'CAPABILITY.EQUIPMENTSLOTARRAY': "capability.EquipmentSlotArray",
+ 'CAPABILITY.FANMODULEDESCRIPTOR': "capability.FanModuleDescriptor",
+ 'CAPABILITY.FANMODULEMANUFACTURINGDEF': "capability.FanModuleManufacturingDef",
+ 'CAPABILITY.IOCARDCAPABILITYDEF': "capability.IoCardCapabilityDef",
+ 'CAPABILITY.IOCARDDESCRIPTOR': "capability.IoCardDescriptor",
+ 'CAPABILITY.IOCARDMANUFACTURINGDEF': "capability.IoCardManufacturingDef",
+ 'CAPABILITY.PORTGROUPAGGREGATIONDEF': "capability.PortGroupAggregationDef",
+ 'CAPABILITY.PSUDESCRIPTOR': "capability.PsuDescriptor",
+ 'CAPABILITY.PSUMANUFACTURINGDEF': "capability.PsuManufacturingDef",
+ 'CAPABILITY.SERVERSCHEMADESCRIPTOR': "capability.ServerSchemaDescriptor",
+ 'CAPABILITY.SIOCMODULECAPABILITYDEF': "capability.SiocModuleCapabilityDef",
+ 'CAPABILITY.SIOCMODULEDESCRIPTOR': "capability.SiocModuleDescriptor",
+ 'CAPABILITY.SIOCMODULEMANUFACTURINGDEF': "capability.SiocModuleManufacturingDef",
+ 'CAPABILITY.SWITCHCAPABILITY': "capability.SwitchCapability",
+ 'CAPABILITY.SWITCHDESCRIPTOR': "capability.SwitchDescriptor",
+ 'CAPABILITY.SWITCHMANUFACTURINGDEF': "capability.SwitchManufacturingDef",
+ 'CERTIFICATEMANAGEMENT.POLICY': "certificatemanagement.Policy",
+ 'CHASSIS.CONFIGCHANGEDETAIL': "chassis.ConfigChangeDetail",
+ 'CHASSIS.CONFIGIMPORT': "chassis.ConfigImport",
+ 'CHASSIS.CONFIGRESULT': "chassis.ConfigResult",
+ 'CHASSIS.CONFIGRESULTENTRY': "chassis.ConfigResultEntry",
+ 'CHASSIS.IOMPROFILE': "chassis.IomProfile",
+ 'CHASSIS.PROFILE': "chassis.Profile",
+ 'CLOUD.AWSBILLINGUNIT': "cloud.AwsBillingUnit",
+ 'CLOUD.AWSKEYPAIR': "cloud.AwsKeyPair",
+ 'CLOUD.AWSNETWORKINTERFACE': "cloud.AwsNetworkInterface",
+ 'CLOUD.AWSORGANIZATIONALUNIT': "cloud.AwsOrganizationalUnit",
+ 'CLOUD.AWSSECURITYGROUP': "cloud.AwsSecurityGroup",
+ 'CLOUD.AWSSUBNET': "cloud.AwsSubnet",
+ 'CLOUD.AWSVIRTUALMACHINE': "cloud.AwsVirtualMachine",
+ 'CLOUD.AWSVOLUME': "cloud.AwsVolume",
+ 'CLOUD.AWSVPC': "cloud.AwsVpc",
+ 'CLOUD.COLLECTINVENTORY': "cloud.CollectInventory",
+ 'CLOUD.REGIONS': "cloud.Regions",
+ 'CLOUD.SKUCONTAINERTYPE': "cloud.SkuContainerType",
+ 'CLOUD.SKUDATABASETYPE': "cloud.SkuDatabaseType",
+ 'CLOUD.SKUINSTANCETYPE': "cloud.SkuInstanceType",
+ 'CLOUD.SKUNETWORKTYPE': "cloud.SkuNetworkType",
+ 'CLOUD.SKUVOLUMETYPE': "cloud.SkuVolumeType",
+ 'CLOUD.TFCAGENTPOOL': "cloud.TfcAgentpool",
+ 'CLOUD.TFCORGANIZATION': "cloud.TfcOrganization",
+ 'CLOUD.TFCWORKSPACE': "cloud.TfcWorkspace",
+ 'COMM.HTTPPROXYPOLICY': "comm.HttpProxyPolicy",
+ 'COMPUTE.BLADE': "compute.Blade",
+ 'COMPUTE.BLADEIDENTITY': "compute.BladeIdentity",
+ 'COMPUTE.BOARD': "compute.Board",
+ 'COMPUTE.MAPPING': "compute.Mapping",
+ 'COMPUTE.PHYSICALSUMMARY': "compute.PhysicalSummary",
+ 'COMPUTE.RACKUNIT': "compute.RackUnit",
+ 'COMPUTE.RACKUNITIDENTITY': "compute.RackUnitIdentity",
+ 'COMPUTE.SERVERSETTING': "compute.ServerSetting",
+ 'COMPUTE.VMEDIA': "compute.Vmedia",
+ 'COND.ALARM': "cond.Alarm",
+ 'COND.ALARMAGGREGATION': "cond.AlarmAggregation",
+ 'COND.HCLSTATUS': "cond.HclStatus",
+ 'COND.HCLSTATUSDETAIL': "cond.HclStatusDetail",
+ 'COND.HCLSTATUSJOB': "cond.HclStatusJob",
+ 'CONNECTORPACK.CONNECTORPACKUPGRADE': "connectorpack.ConnectorPackUpgrade",
+ 'CONNECTORPACK.UPGRADEIMPACT': "connectorpack.UpgradeImpact",
+ 'CRD.CUSTOMRESOURCE': "crd.CustomResource",
+ 'DEVICECONNECTOR.POLICY': "deviceconnector.Policy",
+ 'EQUIPMENT.CHASSIS': "equipment.Chassis",
+ 'EQUIPMENT.CHASSISIDENTITY': "equipment.ChassisIdentity",
+ 'EQUIPMENT.CHASSISOPERATION': "equipment.ChassisOperation",
+ 'EQUIPMENT.DEVICESUMMARY': "equipment.DeviceSummary",
+ 'EQUIPMENT.EXPANDERMODULE': "equipment.ExpanderModule",
+ 'EQUIPMENT.FAN': "equipment.Fan",
+ 'EQUIPMENT.FANCONTROL': "equipment.FanControl",
+ 'EQUIPMENT.FANMODULE': "equipment.FanModule",
+ 'EQUIPMENT.FEX': "equipment.Fex",
+ 'EQUIPMENT.FEXIDENTITY': "equipment.FexIdentity",
+ 'EQUIPMENT.FEXOPERATION': "equipment.FexOperation",
+ 'EQUIPMENT.FRU': "equipment.Fru",
+ 'EQUIPMENT.IDENTITYSUMMARY': "equipment.IdentitySummary",
+ 'EQUIPMENT.IOCARD': "equipment.IoCard",
+ 'EQUIPMENT.IOCARDOPERATION': "equipment.IoCardOperation",
+ 'EQUIPMENT.IOEXPANDER': "equipment.IoExpander",
+ 'EQUIPMENT.LOCATORLED': "equipment.LocatorLed",
+ 'EQUIPMENT.PSU': "equipment.Psu",
+ 'EQUIPMENT.PSUCONTROL': "equipment.PsuControl",
+ 'EQUIPMENT.RACKENCLOSURE': "equipment.RackEnclosure",
+ 'EQUIPMENT.RACKENCLOSURESLOT': "equipment.RackEnclosureSlot",
+ 'EQUIPMENT.SHAREDIOMODULE': "equipment.SharedIoModule",
+ 'EQUIPMENT.SWITCHCARD': "equipment.SwitchCard",
+ 'EQUIPMENT.SYSTEMIOCONTROLLER': "equipment.SystemIoController",
+ 'EQUIPMENT.TPM': "equipment.Tpm",
+ 'EQUIPMENT.TRANSCEIVER': "equipment.Transceiver",
+ 'ETHER.HOSTPORT': "ether.HostPort",
+ 'ETHER.NETWORKPORT': "ether.NetworkPort",
+ 'ETHER.PHYSICALPORT': "ether.PhysicalPort",
+ 'ETHER.PORTCHANNEL': "ether.PortChannel",
+ 'EXTERNALSITE.AUTHORIZATION': "externalsite.Authorization",
+ 'FABRIC.APPLIANCEPCROLE': "fabric.AppliancePcRole",
+ 'FABRIC.APPLIANCEROLE': "fabric.ApplianceRole",
+ 'FABRIC.CONFIGCHANGEDETAIL': "fabric.ConfigChangeDetail",
+ 'FABRIC.CONFIGRESULT': "fabric.ConfigResult",
+ 'FABRIC.CONFIGRESULTENTRY': "fabric.ConfigResultEntry",
+ 'FABRIC.ELEMENTIDENTITY': "fabric.ElementIdentity",
+ 'FABRIC.ESTIMATEIMPACT': "fabric.EstimateImpact",
+ 'FABRIC.ETHNETWORKCONTROLPOLICY': "fabric.EthNetworkControlPolicy",
+ 'FABRIC.ETHNETWORKGROUPPOLICY': "fabric.EthNetworkGroupPolicy",
+ 'FABRIC.ETHNETWORKPOLICY': "fabric.EthNetworkPolicy",
+ 'FABRIC.FCNETWORKPOLICY': "fabric.FcNetworkPolicy",
+ 'FABRIC.FCUPLINKPCROLE': "fabric.FcUplinkPcRole",
+ 'FABRIC.FCUPLINKROLE': "fabric.FcUplinkRole",
+ 'FABRIC.FCOEUPLINKPCROLE': "fabric.FcoeUplinkPcRole",
+ 'FABRIC.FCOEUPLINKROLE': "fabric.FcoeUplinkRole",
+ 'FABRIC.FLOWCONTROLPOLICY': "fabric.FlowControlPolicy",
+ 'FABRIC.LINKAGGREGATIONPOLICY': "fabric.LinkAggregationPolicy",
+ 'FABRIC.LINKCONTROLPOLICY': "fabric.LinkControlPolicy",
+ 'FABRIC.MULTICASTPOLICY': "fabric.MulticastPolicy",
+ 'FABRIC.PCMEMBER': "fabric.PcMember",
+ 'FABRIC.PCOPERATION': "fabric.PcOperation",
+ 'FABRIC.PORTMODE': "fabric.PortMode",
+ 'FABRIC.PORTOPERATION': "fabric.PortOperation",
+ 'FABRIC.PORTPOLICY': "fabric.PortPolicy",
+ 'FABRIC.SERVERROLE': "fabric.ServerRole",
+ 'FABRIC.SWITCHCLUSTERPROFILE': "fabric.SwitchClusterProfile",
+ 'FABRIC.SWITCHCONTROLPOLICY': "fabric.SwitchControlPolicy",
+ 'FABRIC.SWITCHPROFILE': "fabric.SwitchProfile",
+ 'FABRIC.SYSTEMQOSPOLICY': "fabric.SystemQosPolicy",
+ 'FABRIC.UPLINKPCROLE': "fabric.UplinkPcRole",
+ 'FABRIC.UPLINKROLE': "fabric.UplinkRole",
+ 'FABRIC.VLAN': "fabric.Vlan",
+ 'FABRIC.VSAN': "fabric.Vsan",
+ 'FAULT.INSTANCE': "fault.Instance",
+ 'FC.PHYSICALPORT': "fc.PhysicalPort",
+ 'FC.PORTCHANNEL': "fc.PortChannel",
+ 'FCPOOL.FCBLOCK': "fcpool.FcBlock",
+ 'FCPOOL.LEASE': "fcpool.Lease",
+ 'FCPOOL.POOL': "fcpool.Pool",
+ 'FCPOOL.POOLMEMBER': "fcpool.PoolMember",
+ 'FCPOOL.UNIVERSE': "fcpool.Universe",
+ 'FEEDBACK.FEEDBACKPOST': "feedback.FeedbackPost",
+ 'FIRMWARE.BIOSDESCRIPTOR': "firmware.BiosDescriptor",
+ 'FIRMWARE.BOARDCONTROLLERDESCRIPTOR': "firmware.BoardControllerDescriptor",
+ 'FIRMWARE.CHASSISUPGRADE': "firmware.ChassisUpgrade",
+ 'FIRMWARE.CIMCDESCRIPTOR': "firmware.CimcDescriptor",
+ 'FIRMWARE.DIMMDESCRIPTOR': "firmware.DimmDescriptor",
+ 'FIRMWARE.DISTRIBUTABLE': "firmware.Distributable",
+ 'FIRMWARE.DISTRIBUTABLEMETA': "firmware.DistributableMeta",
+ 'FIRMWARE.DRIVEDESCRIPTOR': "firmware.DriveDescriptor",
+ 'FIRMWARE.DRIVERDISTRIBUTABLE': "firmware.DriverDistributable",
+ 'FIRMWARE.EULA': "firmware.Eula",
+ 'FIRMWARE.FIRMWARESUMMARY': "firmware.FirmwareSummary",
+ 'FIRMWARE.GPUDESCRIPTOR': "firmware.GpuDescriptor",
+ 'FIRMWARE.HBADESCRIPTOR': "firmware.HbaDescriptor",
+ 'FIRMWARE.IOMDESCRIPTOR': "firmware.IomDescriptor",
+ 'FIRMWARE.MSWITCHDESCRIPTOR': "firmware.MswitchDescriptor",
+ 'FIRMWARE.NXOSDESCRIPTOR': "firmware.NxosDescriptor",
+ 'FIRMWARE.PCIEDESCRIPTOR': "firmware.PcieDescriptor",
+ 'FIRMWARE.PSUDESCRIPTOR': "firmware.PsuDescriptor",
+ 'FIRMWARE.RUNNINGFIRMWARE': "firmware.RunningFirmware",
+ 'FIRMWARE.SASEXPANDERDESCRIPTOR': "firmware.SasExpanderDescriptor",
+ 'FIRMWARE.SERVERCONFIGURATIONUTILITYDISTRIBUTABLE': "firmware.ServerConfigurationUtilityDistributable",
+ 'FIRMWARE.STORAGECONTROLLERDESCRIPTOR': "firmware.StorageControllerDescriptor",
+ 'FIRMWARE.SWITCHUPGRADE': "firmware.SwitchUpgrade",
+ 'FIRMWARE.UNSUPPORTEDVERSIONUPGRADE': "firmware.UnsupportedVersionUpgrade",
+ 'FIRMWARE.UPGRADE': "firmware.Upgrade",
+ 'FIRMWARE.UPGRADEIMPACT': "firmware.UpgradeImpact",
+ 'FIRMWARE.UPGRADEIMPACTSTATUS': "firmware.UpgradeImpactStatus",
+ 'FIRMWARE.UPGRADESTATUS': "firmware.UpgradeStatus",
+ 'FORECAST.CATALOG': "forecast.Catalog",
+ 'FORECAST.DEFINITION': "forecast.Definition",
+ 'FORECAST.INSTANCE': "forecast.Instance",
+ 'GRAPHICS.CARD': "graphics.Card",
+ 'GRAPHICS.CONTROLLER': "graphics.Controller",
+ 'HCL.COMPATIBILITYSTATUS': "hcl.CompatibilityStatus",
+ 'HCL.DRIVERIMAGE': "hcl.DriverImage",
+ 'HCL.EXEMPTEDCATALOG': "hcl.ExemptedCatalog",
+ 'HCL.HYPERFLEXSOFTWARECOMPATIBILITYINFO': "hcl.HyperflexSoftwareCompatibilityInfo",
+ 'HCL.OPERATINGSYSTEM': "hcl.OperatingSystem",
+ 'HCL.OPERATINGSYSTEMVENDOR': "hcl.OperatingSystemVendor",
+ 'HCL.SUPPORTEDDRIVERNAME': "hcl.SupportedDriverName",
+ 'HYPERFLEX.ALARM': "hyperflex.Alarm",
+ 'HYPERFLEX.APPCATALOG': "hyperflex.AppCatalog",
+ 'HYPERFLEX.AUTOSUPPORTPOLICY': "hyperflex.AutoSupportPolicy",
+ 'HYPERFLEX.BACKUPCLUSTER': "hyperflex.BackupCluster",
+ 'HYPERFLEX.CAPABILITYINFO': "hyperflex.CapabilityInfo",
+ 'HYPERFLEX.CISCOHYPERVISORMANAGER': "hyperflex.CiscoHypervisorManager",
+ 'HYPERFLEX.CLUSTER': "hyperflex.Cluster",
+ 'HYPERFLEX.CLUSTERBACKUPPOLICY': "hyperflex.ClusterBackupPolicy",
+ 'HYPERFLEX.CLUSTERBACKUPPOLICYDEPLOYMENT': "hyperflex.ClusterBackupPolicyDeployment",
+ 'HYPERFLEX.CLUSTERHEALTHCHECKEXECUTIONSNAPSHOT': "hyperflex.ClusterHealthCheckExecutionSnapshot",
+ 'HYPERFLEX.CLUSTERNETWORKPOLICY': "hyperflex.ClusterNetworkPolicy",
+ 'HYPERFLEX.CLUSTERPROFILE': "hyperflex.ClusterProfile",
+ 'HYPERFLEX.CLUSTERREPLICATIONNETWORKPOLICY': "hyperflex.ClusterReplicationNetworkPolicy",
+ 'HYPERFLEX.CLUSTERREPLICATIONNETWORKPOLICYDEPLOYMENT': "hyperflex.ClusterReplicationNetworkPolicyDeployment",
+ 'HYPERFLEX.CLUSTERSTORAGEPOLICY': "hyperflex.ClusterStoragePolicy",
+ 'HYPERFLEX.CONFIGRESULT': "hyperflex.ConfigResult",
+ 'HYPERFLEX.CONFIGRESULTENTRY': "hyperflex.ConfigResultEntry",
+ 'HYPERFLEX.DATAPROTECTIONPEER': "hyperflex.DataProtectionPeer",
+ 'HYPERFLEX.DATASTORESTATISTIC': "hyperflex.DatastoreStatistic",
+ 'HYPERFLEX.DEVICEPACKAGEDOWNLOADSTATE': "hyperflex.DevicePackageDownloadState",
+ 'HYPERFLEX.DRIVE': "hyperflex.Drive",
+ 'HYPERFLEX.EXTFCSTORAGEPOLICY': "hyperflex.ExtFcStoragePolicy",
+ 'HYPERFLEX.EXTISCSISTORAGEPOLICY': "hyperflex.ExtIscsiStoragePolicy",
+ 'HYPERFLEX.FEATURELIMITEXTERNAL': "hyperflex.FeatureLimitExternal",
+ 'HYPERFLEX.FEATURELIMITINTERNAL': "hyperflex.FeatureLimitInternal",
+ 'HYPERFLEX.HEALTH': "hyperflex.Health",
+ 'HYPERFLEX.HEALTHCHECKDEFINITION': "hyperflex.HealthCheckDefinition",
+ 'HYPERFLEX.HEALTHCHECKEXECUTION': "hyperflex.HealthCheckExecution",
+ 'HYPERFLEX.HEALTHCHECKEXECUTIONSNAPSHOT': "hyperflex.HealthCheckExecutionSnapshot",
+ 'HYPERFLEX.HEALTHCHECKPACKAGECHECKSUM': "hyperflex.HealthCheckPackageChecksum",
+ 'HYPERFLEX.HXAPCLUSTER': "hyperflex.HxapCluster",
+ 'HYPERFLEX.HXAPDATACENTER': "hyperflex.HxapDatacenter",
+ 'HYPERFLEX.HXAPDVUPLINK': "hyperflex.HxapDvUplink",
+ 'HYPERFLEX.HXAPDVSWITCH': "hyperflex.HxapDvswitch",
+ 'HYPERFLEX.HXAPHOST': "hyperflex.HxapHost",
+ 'HYPERFLEX.HXAPHOSTINTERFACE': "hyperflex.HxapHostInterface",
+ 'HYPERFLEX.HXAPHOSTVSWITCH': "hyperflex.HxapHostVswitch",
+ 'HYPERFLEX.HXAPNETWORK': "hyperflex.HxapNetwork",
+ 'HYPERFLEX.HXAPVIRTUALDISK': "hyperflex.HxapVirtualDisk",
+ 'HYPERFLEX.HXAPVIRTUALMACHINE': "hyperflex.HxapVirtualMachine",
+ 'HYPERFLEX.HXAPVIRTUALMACHINENETWORKINTERFACE': "hyperflex.HxapVirtualMachineNetworkInterface",
+ 'HYPERFLEX.HXDPVERSION': "hyperflex.HxdpVersion",
+ 'HYPERFLEX.LICENSE': "hyperflex.License",
+ 'HYPERFLEX.LOCALCREDENTIALPOLICY': "hyperflex.LocalCredentialPolicy",
+ 'HYPERFLEX.NODE': "hyperflex.Node",
+ 'HYPERFLEX.NODECONFIGPOLICY': "hyperflex.NodeConfigPolicy",
+ 'HYPERFLEX.NODEPROFILE': "hyperflex.NodeProfile",
+ 'HYPERFLEX.PROXYSETTINGPOLICY': "hyperflex.ProxySettingPolicy",
+ 'HYPERFLEX.SERVERFIRMWAREVERSION': "hyperflex.ServerFirmwareVersion",
+ 'HYPERFLEX.SERVERFIRMWAREVERSIONENTRY': "hyperflex.ServerFirmwareVersionEntry",
+ 'HYPERFLEX.SERVERMODEL': "hyperflex.ServerModel",
+ 'HYPERFLEX.SOFTWAREDISTRIBUTIONCOMPONENT': "hyperflex.SoftwareDistributionComponent",
+ 'HYPERFLEX.SOFTWAREDISTRIBUTIONENTRY': "hyperflex.SoftwareDistributionEntry",
+ 'HYPERFLEX.SOFTWAREDISTRIBUTIONVERSION': "hyperflex.SoftwareDistributionVersion",
+ 'HYPERFLEX.SOFTWAREVERSIONPOLICY': "hyperflex.SoftwareVersionPolicy",
+ 'HYPERFLEX.STORAGECONTAINER': "hyperflex.StorageContainer",
+ 'HYPERFLEX.SYSCONFIGPOLICY': "hyperflex.SysConfigPolicy",
+ 'HYPERFLEX.UCSMCONFIGPOLICY': "hyperflex.UcsmConfigPolicy",
+ 'HYPERFLEX.VCENTERCONFIGPOLICY': "hyperflex.VcenterConfigPolicy",
+ 'HYPERFLEX.VMBACKUPINFO': "hyperflex.VmBackupInfo",
+ 'HYPERFLEX.VMIMPORTOPERATION': "hyperflex.VmImportOperation",
+ 'HYPERFLEX.VMRESTOREOPERATION': "hyperflex.VmRestoreOperation",
+ 'HYPERFLEX.VMSNAPSHOTINFO': "hyperflex.VmSnapshotInfo",
+ 'HYPERFLEX.VOLUME': "hyperflex.Volume",
+ 'HYPERFLEX.WITNESSCONFIGURATION': "hyperflex.WitnessConfiguration",
+ 'IAAS.CONNECTORPACK': "iaas.ConnectorPack",
+ 'IAAS.DEVICESTATUS': "iaas.DeviceStatus",
+ 'IAAS.DIAGNOSTICMESSAGES': "iaas.DiagnosticMessages",
+ 'IAAS.LICENSEINFO': "iaas.LicenseInfo",
+ 'IAAS.MOSTRUNTASKS': "iaas.MostRunTasks",
+ 'IAAS.SERVICEREQUEST': "iaas.ServiceRequest",
+ 'IAAS.UCSDINFO': "iaas.UcsdInfo",
+ 'IAAS.UCSDMANAGEDINFRA': "iaas.UcsdManagedInfra",
+ 'IAAS.UCSDMESSAGES': "iaas.UcsdMessages",
+ 'IAM.ACCOUNT': "iam.Account",
+ 'IAM.ACCOUNTEXPERIENCE': "iam.AccountExperience",
+ 'IAM.APIKEY': "iam.ApiKey",
+ 'IAM.APPREGISTRATION': "iam.AppRegistration",
+ 'IAM.BANNERMESSAGE': "iam.BannerMessage",
+ 'IAM.CERTIFICATE': "iam.Certificate",
+ 'IAM.CERTIFICATEREQUEST': "iam.CertificateRequest",
+ 'IAM.DOMAINGROUP': "iam.DomainGroup",
+ 'IAM.ENDPOINTPRIVILEGE': "iam.EndPointPrivilege",
+ 'IAM.ENDPOINTROLE': "iam.EndPointRole",
+ 'IAM.ENDPOINTUSER': "iam.EndPointUser",
+ 'IAM.ENDPOINTUSERPOLICY': "iam.EndPointUserPolicy",
+ 'IAM.ENDPOINTUSERROLE': "iam.EndPointUserRole",
+ 'IAM.IDP': "iam.Idp",
+ 'IAM.IDPREFERENCE': "iam.IdpReference",
+ 'IAM.IPACCESSMANAGEMENT': "iam.IpAccessManagement",
+ 'IAM.IPADDRESS': "iam.IpAddress",
+ 'IAM.LDAPGROUP': "iam.LdapGroup",
+ 'IAM.LDAPPOLICY': "iam.LdapPolicy",
+ 'IAM.LDAPPROVIDER': "iam.LdapProvider",
+ 'IAM.LOCALUSERPASSWORD': "iam.LocalUserPassword",
+ 'IAM.LOCALUSERPASSWORDPOLICY': "iam.LocalUserPasswordPolicy",
+ 'IAM.OAUTHTOKEN': "iam.OAuthToken",
+ 'IAM.PERMISSION': "iam.Permission",
+ 'IAM.PRIVATEKEYSPEC': "iam.PrivateKeySpec",
+ 'IAM.PRIVILEGE': "iam.Privilege",
+ 'IAM.PRIVILEGESET': "iam.PrivilegeSet",
+ 'IAM.QUALIFIER': "iam.Qualifier",
+ 'IAM.RESOURCELIMITS': "iam.ResourceLimits",
+ 'IAM.RESOURCEPERMISSION': "iam.ResourcePermission",
+ 'IAM.RESOURCEROLES': "iam.ResourceRoles",
+ 'IAM.ROLE': "iam.Role",
+ 'IAM.SECURITYHOLDER': "iam.SecurityHolder",
+ 'IAM.SERVICEPROVIDER': "iam.ServiceProvider",
+ 'IAM.SESSION': "iam.Session",
+ 'IAM.SESSIONLIMITS': "iam.SessionLimits",
+ 'IAM.SYSTEM': "iam.System",
+ 'IAM.TRUSTPOINT': "iam.TrustPoint",
+ 'IAM.USER': "iam.User",
+ 'IAM.USERGROUP': "iam.UserGroup",
+ 'IAM.USERPREFERENCE': "iam.UserPreference",
+ 'INVENTORY.DEVICEINFO': "inventory.DeviceInfo",
+ 'INVENTORY.DNMOBINDING': "inventory.DnMoBinding",
+ 'INVENTORY.GENERICINVENTORY': "inventory.GenericInventory",
+ 'INVENTORY.GENERICINVENTORYHOLDER': "inventory.GenericInventoryHolder",
+ 'INVENTORY.REQUEST': "inventory.Request",
+ 'IPMIOVERLAN.POLICY': "ipmioverlan.Policy",
+ 'IPPOOL.BLOCKLEASE': "ippool.BlockLease",
+ 'IPPOOL.IPLEASE': "ippool.IpLease",
+ 'IPPOOL.POOL': "ippool.Pool",
+ 'IPPOOL.POOLMEMBER': "ippool.PoolMember",
+ 'IPPOOL.SHADOWBLOCK': "ippool.ShadowBlock",
+ 'IPPOOL.SHADOWPOOL': "ippool.ShadowPool",
+ 'IPPOOL.UNIVERSE': "ippool.Universe",
+ 'IQNPOOL.BLOCK': "iqnpool.Block",
+ 'IQNPOOL.LEASE': "iqnpool.Lease",
+ 'IQNPOOL.POOL': "iqnpool.Pool",
+ 'IQNPOOL.POOLMEMBER': "iqnpool.PoolMember",
+ 'IQNPOOL.UNIVERSE': "iqnpool.Universe",
+ 'IWOTENANT.TENANTSTATUS': "iwotenant.TenantStatus",
+ 'KUBERNETES.ACICNIAPIC': "kubernetes.AciCniApic",
+ 'KUBERNETES.ACICNIPROFILE': "kubernetes.AciCniProfile",
+ 'KUBERNETES.ACICNITENANTCLUSTERALLOCATION': "kubernetes.AciCniTenantClusterAllocation",
+ 'KUBERNETES.ADDONDEFINITION': "kubernetes.AddonDefinition",
+ 'KUBERNETES.ADDONPOLICY': "kubernetes.AddonPolicy",
+ 'KUBERNETES.ADDONREPOSITORY': "kubernetes.AddonRepository",
+ 'KUBERNETES.BAREMETALNODEPROFILE': "kubernetes.BaremetalNodeProfile",
+ 'KUBERNETES.CATALOG': "kubernetes.Catalog",
+ 'KUBERNETES.CLUSTER': "kubernetes.Cluster",
+ 'KUBERNETES.CLUSTERADDONPROFILE': "kubernetes.ClusterAddonProfile",
+ 'KUBERNETES.CLUSTERPROFILE': "kubernetes.ClusterProfile",
+ 'KUBERNETES.CONFIGRESULT': "kubernetes.ConfigResult",
+ 'KUBERNETES.CONFIGRESULTENTRY': "kubernetes.ConfigResultEntry",
+ 'KUBERNETES.CONTAINERRUNTIMEPOLICY': "kubernetes.ContainerRuntimePolicy",
+ 'KUBERNETES.DAEMONSET': "kubernetes.DaemonSet",
+ 'KUBERNETES.DEPLOYMENT': "kubernetes.Deployment",
+ 'KUBERNETES.INGRESS': "kubernetes.Ingress",
+ 'KUBERNETES.NETWORKPOLICY': "kubernetes.NetworkPolicy",
+ 'KUBERNETES.NODE': "kubernetes.Node",
+ 'KUBERNETES.NODEGROUPPROFILE': "kubernetes.NodeGroupProfile",
+ 'KUBERNETES.POD': "kubernetes.Pod",
+ 'KUBERNETES.SERVICE': "kubernetes.Service",
+ 'KUBERNETES.STATEFULSET': "kubernetes.StatefulSet",
+ 'KUBERNETES.SYSCONFIGPOLICY': "kubernetes.SysConfigPolicy",
+ 'KUBERNETES.TRUSTEDREGISTRIESPOLICY': "kubernetes.TrustedRegistriesPolicy",
+ 'KUBERNETES.VERSION': "kubernetes.Version",
+ 'KUBERNETES.VERSIONPOLICY': "kubernetes.VersionPolicy",
+ 'KUBERNETES.VIRTUALMACHINEINFRACONFIGPOLICY': "kubernetes.VirtualMachineInfraConfigPolicy",
+ 'KUBERNETES.VIRTUALMACHINEINFRASTRUCTUREPROVIDER': "kubernetes.VirtualMachineInfrastructureProvider",
+ 'KUBERNETES.VIRTUALMACHINEINSTANCETYPE': "kubernetes.VirtualMachineInstanceType",
+ 'KUBERNETES.VIRTUALMACHINENODEPROFILE': "kubernetes.VirtualMachineNodeProfile",
+ 'KVM.POLICY': "kvm.Policy",
+ 'KVM.SESSION': "kvm.Session",
+ 'KVM.TUNNEL': "kvm.Tunnel",
+ 'KVM.VMCONSOLE': "kvm.VmConsole",
+ 'LICENSE.ACCOUNTLICENSEDATA': "license.AccountLicenseData",
+ 'LICENSE.CUSTOMEROP': "license.CustomerOp",
+ 'LICENSE.IWOCUSTOMEROP': "license.IwoCustomerOp",
+ 'LICENSE.IWOLICENSECOUNT': "license.IwoLicenseCount",
+ 'LICENSE.LICENSEINFO': "license.LicenseInfo",
+ 'LICENSE.LICENSERESERVATIONOP': "license.LicenseReservationOp",
+ 'LICENSE.SMARTLICENSETOKEN': "license.SmartlicenseToken",
+ 'LS.SERVICEPROFILE': "ls.ServiceProfile",
+ 'MACPOOL.IDBLOCK': "macpool.IdBlock",
+ 'MACPOOL.LEASE': "macpool.Lease",
+ 'MACPOOL.POOL': "macpool.Pool",
+ 'MACPOOL.POOLMEMBER': "macpool.PoolMember",
+ 'MACPOOL.UNIVERSE': "macpool.Universe",
+ 'MANAGEMENT.CONTROLLER': "management.Controller",
+ 'MANAGEMENT.ENTITY': "management.Entity",
+ 'MANAGEMENT.INTERFACE': "management.Interface",
+ 'MEMORY.ARRAY': "memory.Array",
+ 'MEMORY.PERSISTENTMEMORYCONFIGRESULT': "memory.PersistentMemoryConfigResult",
+ 'MEMORY.PERSISTENTMEMORYCONFIGURATION': "memory.PersistentMemoryConfiguration",
+ 'MEMORY.PERSISTENTMEMORYNAMESPACE': "memory.PersistentMemoryNamespace",
+ 'MEMORY.PERSISTENTMEMORYNAMESPACECONFIGRESULT': "memory.PersistentMemoryNamespaceConfigResult",
+ 'MEMORY.PERSISTENTMEMORYPOLICY': "memory.PersistentMemoryPolicy",
+ 'MEMORY.PERSISTENTMEMORYREGION': "memory.PersistentMemoryRegion",
+ 'MEMORY.PERSISTENTMEMORYUNIT': "memory.PersistentMemoryUnit",
+ 'MEMORY.UNIT': "memory.Unit",
+ 'META.DEFINITION': "meta.Definition",
+ 'NETWORK.ELEMENT': "network.Element",
+ 'NETWORK.ELEMENTSUMMARY': "network.ElementSummary",
+ 'NETWORK.FCZONEINFO': "network.FcZoneInfo",
+ 'NETWORK.VLANPORTINFO': "network.VlanPortInfo",
+ 'NETWORKCONFIG.POLICY': "networkconfig.Policy",
+ 'NIAAPI.APICCCOPOST': "niaapi.ApicCcoPost",
+ 'NIAAPI.APICFIELDNOTICE': "niaapi.ApicFieldNotice",
+ 'NIAAPI.APICHWEOL': "niaapi.ApicHweol",
+ 'NIAAPI.APICLATESTMAINTAINEDRELEASE': "niaapi.ApicLatestMaintainedRelease",
+ 'NIAAPI.APICRELEASERECOMMEND': "niaapi.ApicReleaseRecommend",
+ 'NIAAPI.APICSWEOL': "niaapi.ApicSweol",
+ 'NIAAPI.DCNMCCOPOST': "niaapi.DcnmCcoPost",
+ 'NIAAPI.DCNMFIELDNOTICE': "niaapi.DcnmFieldNotice",
+ 'NIAAPI.DCNMHWEOL': "niaapi.DcnmHweol",
+ 'NIAAPI.DCNMLATESTMAINTAINEDRELEASE': "niaapi.DcnmLatestMaintainedRelease",
+ 'NIAAPI.DCNMRELEASERECOMMEND': "niaapi.DcnmReleaseRecommend",
+ 'NIAAPI.DCNMSWEOL': "niaapi.DcnmSweol",
+ 'NIAAPI.FILEDOWNLOADER': "niaapi.FileDownloader",
+ 'NIAAPI.NIAMETADATA': "niaapi.NiaMetadata",
+ 'NIAAPI.NIBFILEDOWNLOADER': "niaapi.NibFileDownloader",
+ 'NIAAPI.NIBMETADATA': "niaapi.NibMetadata",
+ 'NIAAPI.VERSIONREGEX': "niaapi.VersionRegex",
+ 'NIATELEMETRY.AAALDAPPROVIDERDETAILS': "niatelemetry.AaaLdapProviderDetails",
+ 'NIATELEMETRY.AAARADIUSPROVIDERDETAILS': "niatelemetry.AaaRadiusProviderDetails",
+ 'NIATELEMETRY.AAATACACSPROVIDERDETAILS': "niatelemetry.AaaTacacsProviderDetails",
+ 'NIATELEMETRY.APICCOREFILEDETAILS': "niatelemetry.ApicCoreFileDetails",
+ 'NIATELEMETRY.APICDBGEXPRSEXPORTDEST': "niatelemetry.ApicDbgexpRsExportDest",
+ 'NIATELEMETRY.APICDBGEXPRSTSSCHEDULER': "niatelemetry.ApicDbgexpRsTsScheduler",
+ 'NIATELEMETRY.APICFANDETAILS': "niatelemetry.ApicFanDetails",
+ 'NIATELEMETRY.APICFEXDETAILS': "niatelemetry.ApicFexDetails",
+ 'NIATELEMETRY.APICFLASHDETAILS': "niatelemetry.ApicFlashDetails",
+ 'NIATELEMETRY.APICNTPAUTH': "niatelemetry.ApicNtpAuth",
+ 'NIATELEMETRY.APICPSUDETAILS': "niatelemetry.ApicPsuDetails",
+ 'NIATELEMETRY.APICREALMDETAILS': "niatelemetry.ApicRealmDetails",
+ 'NIATELEMETRY.APICSNMPCOMMUNITYACCESSDETAILS': "niatelemetry.ApicSnmpCommunityAccessDetails",
+ 'NIATELEMETRY.APICSNMPCOMMUNITYDETAILS': "niatelemetry.ApicSnmpCommunityDetails",
+ 'NIATELEMETRY.APICSNMPTRAPDETAILS': "niatelemetry.ApicSnmpTrapDetails",
+ 'NIATELEMETRY.APICSNMPVERSIONTHREEDETAILS': "niatelemetry.ApicSnmpVersionThreeDetails",
+ 'NIATELEMETRY.APICSYSLOGGRP': "niatelemetry.ApicSysLogGrp",
+ 'NIATELEMETRY.APICSYSLOGSRC': "niatelemetry.ApicSysLogSrc",
+ 'NIATELEMETRY.APICTRANSCEIVERDETAILS': "niatelemetry.ApicTransceiverDetails",
+ 'NIATELEMETRY.APICUIPAGECOUNTS': "niatelemetry.ApicUiPageCounts",
+ 'NIATELEMETRY.APPDETAILS': "niatelemetry.AppDetails",
+ 'NIATELEMETRY.DCNMFANDETAILS': "niatelemetry.DcnmFanDetails",
+ 'NIATELEMETRY.DCNMFEXDETAILS': "niatelemetry.DcnmFexDetails",
+ 'NIATELEMETRY.DCNMMODULEDETAILS': "niatelemetry.DcnmModuleDetails",
+ 'NIATELEMETRY.DCNMPSUDETAILS': "niatelemetry.DcnmPsuDetails",
+ 'NIATELEMETRY.DCNMTRANSCEIVERDETAILS': "niatelemetry.DcnmTransceiverDetails",
+ 'NIATELEMETRY.EPG': "niatelemetry.Epg",
+ 'NIATELEMETRY.FABRICMODULEDETAILS': "niatelemetry.FabricModuleDetails",
+ 'NIATELEMETRY.FAULT': "niatelemetry.Fault",
+ 'NIATELEMETRY.HTTPSACLCONTRACTDETAILS': "niatelemetry.HttpsAclContractDetails",
+ 'NIATELEMETRY.HTTPSACLCONTRACTFILTERMAP': "niatelemetry.HttpsAclContractFilterMap",
+ 'NIATELEMETRY.HTTPSACLEPGCONTRACTMAP': "niatelemetry.HttpsAclEpgContractMap",
+ 'NIATELEMETRY.HTTPSACLEPGDETAILS': "niatelemetry.HttpsAclEpgDetails",
+ 'NIATELEMETRY.HTTPSACLFILTERDETAILS': "niatelemetry.HttpsAclFilterDetails",
+ 'NIATELEMETRY.LC': "niatelemetry.Lc",
+ 'NIATELEMETRY.MSOCONTRACTDETAILS': "niatelemetry.MsoContractDetails",
+ 'NIATELEMETRY.MSOEPGDETAILS': "niatelemetry.MsoEpgDetails",
+ 'NIATELEMETRY.MSOSCHEMADETAILS': "niatelemetry.MsoSchemaDetails",
+ 'NIATELEMETRY.MSOSITEDETAILS': "niatelemetry.MsoSiteDetails",
+ 'NIATELEMETRY.MSOTENANTDETAILS': "niatelemetry.MsoTenantDetails",
+ 'NIATELEMETRY.NEXUSDASHBOARDCONTROLLERDETAILS': "niatelemetry.NexusDashboardControllerDetails",
+ 'NIATELEMETRY.NEXUSDASHBOARDDETAILS': "niatelemetry.NexusDashboardDetails",
+ 'NIATELEMETRY.NEXUSDASHBOARDMEMORYDETAILS': "niatelemetry.NexusDashboardMemoryDetails",
+ 'NIATELEMETRY.NEXUSDASHBOARDS': "niatelemetry.NexusDashboards",
+ 'NIATELEMETRY.NIAFEATUREUSAGE': "niatelemetry.NiaFeatureUsage",
+ 'NIATELEMETRY.NIAINVENTORY': "niatelemetry.NiaInventory",
+ 'NIATELEMETRY.NIAINVENTORYDCNM': "niatelemetry.NiaInventoryDcnm",
+ 'NIATELEMETRY.NIAINVENTORYFABRIC': "niatelemetry.NiaInventoryFabric",
+ 'NIATELEMETRY.NIALICENSESTATE': "niatelemetry.NiaLicenseState",
+ 'NIATELEMETRY.PASSWORDSTRENGTHCHECK': "niatelemetry.PasswordStrengthCheck",
+ 'NIATELEMETRY.SITEINVENTORY': "niatelemetry.SiteInventory",
+ 'NIATELEMETRY.SSHVERSIONTWO': "niatelemetry.SshVersionTwo",
+ 'NIATELEMETRY.SUPERVISORMODULEDETAILS': "niatelemetry.SupervisorModuleDetails",
+ 'NIATELEMETRY.SYSTEMCONTROLLERDETAILS': "niatelemetry.SystemControllerDetails",
+ 'NIATELEMETRY.TENANT': "niatelemetry.Tenant",
+ 'NOTIFICATION.ACCOUNTSUBSCRIPTION': "notification.AccountSubscription",
+ 'NTP.POLICY': "ntp.Policy",
+ 'OPRS.DEPLOYMENT': "oprs.Deployment",
+ 'OPRS.SYNCTARGETLISTMESSAGE': "oprs.SyncTargetListMessage",
+ 'ORGANIZATION.ORGANIZATION': "organization.Organization",
+ 'OS.BULKINSTALLINFO': "os.BulkInstallInfo",
+ 'OS.CATALOG': "os.Catalog",
+ 'OS.CONFIGURATIONFILE': "os.ConfigurationFile",
+ 'OS.DISTRIBUTION': "os.Distribution",
+ 'OS.INSTALL': "os.Install",
+ 'OS.OSSUPPORT': "os.OsSupport",
+ 'OS.SUPPORTEDVERSION': "os.SupportedVersion",
+ 'OS.TEMPLATEFILE': "os.TemplateFile",
+ 'OS.VALIDINSTALLTARGET': "os.ValidInstallTarget",
+ 'PCI.COPROCESSORCARD': "pci.CoprocessorCard",
+ 'PCI.DEVICE': "pci.Device",
+ 'PCI.LINK': "pci.Link",
+ 'PCI.SWITCH': "pci.Switch",
+ 'PORT.GROUP': "port.Group",
+ 'PORT.MACBINDING': "port.MacBinding",
+ 'PORT.SUBGROUP': "port.SubGroup",
+ 'POWER.CONTROLSTATE': "power.ControlState",
+ 'POWER.POLICY': "power.Policy",
+ 'PROCESSOR.UNIT': "processor.Unit",
+ 'RECOMMENDATION.CAPACITYRUNWAY': "recommendation.CapacityRunway",
+ 'RECOMMENDATION.PHYSICALITEM': "recommendation.PhysicalItem",
+ 'RECOVERY.BACKUPCONFIGPOLICY': "recovery.BackupConfigPolicy",
+ 'RECOVERY.BACKUPPROFILE': "recovery.BackupProfile",
+ 'RECOVERY.CONFIGRESULT': "recovery.ConfigResult",
+ 'RECOVERY.CONFIGRESULTENTRY': "recovery.ConfigResultEntry",
+ 'RECOVERY.ONDEMANDBACKUP': "recovery.OnDemandBackup",
+ 'RECOVERY.RESTORE': "recovery.Restore",
+ 'RECOVERY.SCHEDULECONFIGPOLICY': "recovery.ScheduleConfigPolicy",
+ 'RESOURCE.GROUP': "resource.Group",
+ 'RESOURCE.GROUPMEMBER': "resource.GroupMember",
+ 'RESOURCE.LICENSERESOURCECOUNT': "resource.LicenseResourceCount",
+ 'RESOURCE.MEMBERSHIP': "resource.Membership",
+ 'RESOURCE.MEMBERSHIPHOLDER': "resource.MembershipHolder",
+ 'RESOURCEPOOL.LEASE': "resourcepool.Lease",
+ 'RESOURCEPOOL.LEASERESOURCE': "resourcepool.LeaseResource",
+ 'RESOURCEPOOL.POOL': "resourcepool.Pool",
+ 'RESOURCEPOOL.POOLMEMBER': "resourcepool.PoolMember",
+ 'RESOURCEPOOL.UNIVERSE': "resourcepool.Universe",
+ 'RPROXY.REVERSEPROXY': "rproxy.ReverseProxy",
+ 'SDCARD.POLICY': "sdcard.Policy",
+ 'SDWAN.PROFILE': "sdwan.Profile",
+ 'SDWAN.ROUTERNODE': "sdwan.RouterNode",
+ 'SDWAN.ROUTERPOLICY': "sdwan.RouterPolicy",
+ 'SDWAN.VMANAGEACCOUNTPOLICY': "sdwan.VmanageAccountPolicy",
+ 'SEARCH.SEARCHITEM': "search.SearchItem",
+ 'SEARCH.TAGITEM': "search.TagItem",
+ 'SECURITY.UNIT': "security.Unit",
+ 'SERVER.CONFIGCHANGEDETAIL': "server.ConfigChangeDetail",
+ 'SERVER.CONFIGIMPORT': "server.ConfigImport",
+ 'SERVER.CONFIGRESULT': "server.ConfigResult",
+ 'SERVER.CONFIGRESULTENTRY': "server.ConfigResultEntry",
+ 'SERVER.PROFILE': "server.Profile",
+ 'SERVER.PROFILETEMPLATE': "server.ProfileTemplate",
+ 'SMTP.POLICY': "smtp.Policy",
+ 'SNMP.POLICY': "snmp.Policy",
+ 'SOFTWARE.APPLIANCEDISTRIBUTABLE': "software.ApplianceDistributable",
+ 'SOFTWARE.DOWNLOADHISTORY': "software.DownloadHistory",
+ 'SOFTWARE.HCLMETA': "software.HclMeta",
+ 'SOFTWARE.HYPERFLEXBUNDLEDISTRIBUTABLE': "software.HyperflexBundleDistributable",
+ 'SOFTWARE.HYPERFLEXDISTRIBUTABLE': "software.HyperflexDistributable",
+ 'SOFTWARE.RELEASEMETA': "software.ReleaseMeta",
+ 'SOFTWARE.SOLUTIONDISTRIBUTABLE': "software.SolutionDistributable",
+ 'SOFTWARE.UCSDBUNDLEDISTRIBUTABLE': "software.UcsdBundleDistributable",
+ 'SOFTWARE.UCSDDISTRIBUTABLE': "software.UcsdDistributable",
+ 'SOFTWAREREPOSITORY.AUTHORIZATION': "softwarerepository.Authorization",
+ 'SOFTWAREREPOSITORY.CACHEDIMAGE': "softwarerepository.CachedImage",
+ 'SOFTWAREREPOSITORY.CATALOG': "softwarerepository.Catalog",
+ 'SOFTWAREREPOSITORY.CATEGORYMAPPER': "softwarerepository.CategoryMapper",
+ 'SOFTWAREREPOSITORY.CATEGORYMAPPERMODEL': "softwarerepository.CategoryMapperModel",
+ 'SOFTWAREREPOSITORY.CATEGORYSUPPORTCONSTRAINT': "softwarerepository.CategorySupportConstraint",
+ 'SOFTWAREREPOSITORY.DOWNLOADSPEC': "softwarerepository.DownloadSpec",
+ 'SOFTWAREREPOSITORY.OPERATINGSYSTEMFILE': "softwarerepository.OperatingSystemFile",
+ 'SOFTWAREREPOSITORY.RELEASE': "softwarerepository.Release",
+ 'SOL.POLICY': "sol.Policy",
+ 'SSH.POLICY': "ssh.Policy",
+ 'STORAGE.CONTROLLER': "storage.Controller",
+ 'STORAGE.DISKGROUP': "storage.DiskGroup",
+ 'STORAGE.DISKSLOT': "storage.DiskSlot",
+ 'STORAGE.DRIVEGROUP': "storage.DriveGroup",
+ 'STORAGE.ENCLOSURE': "storage.Enclosure",
+ 'STORAGE.ENCLOSUREDISK': "storage.EnclosureDisk",
+ 'STORAGE.ENCLOSUREDISKSLOTEP': "storage.EnclosureDiskSlotEp",
+ 'STORAGE.FLEXFLASHCONTROLLER': "storage.FlexFlashController",
+ 'STORAGE.FLEXFLASHCONTROLLERPROPS': "storage.FlexFlashControllerProps",
+ 'STORAGE.FLEXFLASHPHYSICALDRIVE': "storage.FlexFlashPhysicalDrive",
+ 'STORAGE.FLEXFLASHVIRTUALDRIVE': "storage.FlexFlashVirtualDrive",
+ 'STORAGE.FLEXUTILCONTROLLER': "storage.FlexUtilController",
+ 'STORAGE.FLEXUTILPHYSICALDRIVE': "storage.FlexUtilPhysicalDrive",
+ 'STORAGE.FLEXUTILVIRTUALDRIVE': "storage.FlexUtilVirtualDrive",
+ 'STORAGE.HITACHIARRAY': "storage.HitachiArray",
+ 'STORAGE.HITACHICONTROLLER': "storage.HitachiController",
+ 'STORAGE.HITACHIDISK': "storage.HitachiDisk",
+ 'STORAGE.HITACHIHOST': "storage.HitachiHost",
+ 'STORAGE.HITACHIHOSTLUN': "storage.HitachiHostLun",
+ 'STORAGE.HITACHIPARITYGROUP': "storage.HitachiParityGroup",
+ 'STORAGE.HITACHIPOOL': "storage.HitachiPool",
+ 'STORAGE.HITACHIPORT': "storage.HitachiPort",
+ 'STORAGE.HITACHIVOLUME': "storage.HitachiVolume",
+ 'STORAGE.HYPERFLEXSTORAGECONTAINER': "storage.HyperFlexStorageContainer",
+ 'STORAGE.HYPERFLEXVOLUME': "storage.HyperFlexVolume",
+ 'STORAGE.ITEM': "storage.Item",
+ 'STORAGE.NETAPPAGGREGATE': "storage.NetAppAggregate",
+ 'STORAGE.NETAPPBASEDISK': "storage.NetAppBaseDisk",
+ 'STORAGE.NETAPPCLUSTER': "storage.NetAppCluster",
+ 'STORAGE.NETAPPETHERNETPORT': "storage.NetAppEthernetPort",
+ 'STORAGE.NETAPPEXPORTPOLICY': "storage.NetAppExportPolicy",
+ 'STORAGE.NETAPPFCINTERFACE': "storage.NetAppFcInterface",
+ 'STORAGE.NETAPPFCPORT': "storage.NetAppFcPort",
+ 'STORAGE.NETAPPINITIATORGROUP': "storage.NetAppInitiatorGroup",
+ 'STORAGE.NETAPPIPINTERFACE': "storage.NetAppIpInterface",
+ 'STORAGE.NETAPPLICENSE': "storage.NetAppLicense",
+ 'STORAGE.NETAPPLUN': "storage.NetAppLun",
+ 'STORAGE.NETAPPLUNMAP': "storage.NetAppLunMap",
+ 'STORAGE.NETAPPNODE': "storage.NetAppNode",
+ 'STORAGE.NETAPPSTORAGEVM': "storage.NetAppStorageVm",
+ 'STORAGE.NETAPPVOLUME': "storage.NetAppVolume",
+ 'STORAGE.NETAPPVOLUMESNAPSHOT': "storage.NetAppVolumeSnapshot",
+ 'STORAGE.PHYSICALDISK': "storage.PhysicalDisk",
+ 'STORAGE.PHYSICALDISKEXTENSION': "storage.PhysicalDiskExtension",
+ 'STORAGE.PHYSICALDISKUSAGE': "storage.PhysicalDiskUsage",
+ 'STORAGE.PUREARRAY': "storage.PureArray",
+ 'STORAGE.PURECONTROLLER': "storage.PureController",
+ 'STORAGE.PUREDISK': "storage.PureDisk",
+ 'STORAGE.PUREHOST': "storage.PureHost",
+ 'STORAGE.PUREHOSTGROUP': "storage.PureHostGroup",
+ 'STORAGE.PUREHOSTLUN': "storage.PureHostLun",
+ 'STORAGE.PUREPORT': "storage.PurePort",
+ 'STORAGE.PUREPROTECTIONGROUP': "storage.PureProtectionGroup",
+ 'STORAGE.PUREPROTECTIONGROUPSNAPSHOT': "storage.PureProtectionGroupSnapshot",
+ 'STORAGE.PUREREPLICATIONSCHEDULE': "storage.PureReplicationSchedule",
+ 'STORAGE.PURESNAPSHOTSCHEDULE': "storage.PureSnapshotSchedule",
+ 'STORAGE.PUREVOLUME': "storage.PureVolume",
+ 'STORAGE.PUREVOLUMESNAPSHOT': "storage.PureVolumeSnapshot",
+ 'STORAGE.SASEXPANDER': "storage.SasExpander",
+ 'STORAGE.SASPORT': "storage.SasPort",
+ 'STORAGE.SPAN': "storage.Span",
+ 'STORAGE.STORAGEPOLICY': "storage.StoragePolicy",
+ 'STORAGE.VDMEMBEREP': "storage.VdMemberEp",
+ 'STORAGE.VIRTUALDRIVE': "storage.VirtualDrive",
+ 'STORAGE.VIRTUALDRIVECONTAINER': "storage.VirtualDriveContainer",
+ 'STORAGE.VIRTUALDRIVEEXTENSION': "storage.VirtualDriveExtension",
+ 'STORAGE.VIRTUALDRIVEIDENTITY': "storage.VirtualDriveIdentity",
+ 'SYSLOG.POLICY': "syslog.Policy",
+ 'TAM.ADVISORYCOUNT': "tam.AdvisoryCount",
+ 'TAM.ADVISORYDEFINITION': "tam.AdvisoryDefinition",
+ 'TAM.ADVISORYINFO': "tam.AdvisoryInfo",
+ 'TAM.ADVISORYINSTANCE': "tam.AdvisoryInstance",
+ 'TAM.SECURITYADVISORY': "tam.SecurityAdvisory",
+ 'TASK.HITACHISCOPEDINVENTORY': "task.HitachiScopedInventory",
+ 'TASK.HXAPSCOPEDINVENTORY': "task.HxapScopedInventory",
+ 'TASK.NETAPPSCOPEDINVENTORY': "task.NetAppScopedInventory",
+ 'TASK.PUBLICCLOUDSCOPEDINVENTORY': "task.PublicCloudScopedInventory",
+ 'TASK.PURESCOPEDINVENTORY': "task.PureScopedInventory",
+ 'TASK.SERVERSCOPEDINVENTORY': "task.ServerScopedInventory",
+ 'TECHSUPPORTMANAGEMENT.COLLECTIONCONTROLPOLICY': "techsupportmanagement.CollectionControlPolicy",
+ 'TECHSUPPORTMANAGEMENT.DOWNLOAD': "techsupportmanagement.Download",
+ 'TECHSUPPORTMANAGEMENT.TECHSUPPORTBUNDLE': "techsupportmanagement.TechSupportBundle",
+ 'TECHSUPPORTMANAGEMENT.TECHSUPPORTSTATUS': "techsupportmanagement.TechSupportStatus",
+ 'TERMINAL.AUDITLOG': "terminal.AuditLog",
+ 'THERMAL.POLICY': "thermal.Policy",
+ 'TOP.SYSTEM': "top.System",
+ 'UCSD.BACKUPINFO': "ucsd.BackupInfo",
+ 'UUIDPOOL.BLOCK': "uuidpool.Block",
+ 'UUIDPOOL.POOL': "uuidpool.Pool",
+ 'UUIDPOOL.POOLMEMBER': "uuidpool.PoolMember",
+ 'UUIDPOOL.UNIVERSE': "uuidpool.Universe",
+ 'UUIDPOOL.UUIDLEASE': "uuidpool.UuidLease",
+ 'VIRTUALIZATION.HOST': "virtualization.Host",
+ 'VIRTUALIZATION.VIRTUALDISK': "virtualization.VirtualDisk",
+ 'VIRTUALIZATION.VIRTUALMACHINE': "virtualization.VirtualMachine",
+ 'VIRTUALIZATION.VMWARECLUSTER': "virtualization.VmwareCluster",
+ 'VIRTUALIZATION.VMWAREDATACENTER': "virtualization.VmwareDatacenter",
+ 'VIRTUALIZATION.VMWAREDATASTORE': "virtualization.VmwareDatastore",
+ 'VIRTUALIZATION.VMWAREDATASTORECLUSTER': "virtualization.VmwareDatastoreCluster",
+ 'VIRTUALIZATION.VMWAREDISTRIBUTEDNETWORK': "virtualization.VmwareDistributedNetwork",
+ 'VIRTUALIZATION.VMWAREDISTRIBUTEDSWITCH': "virtualization.VmwareDistributedSwitch",
+ 'VIRTUALIZATION.VMWAREFOLDER': "virtualization.VmwareFolder",
+ 'VIRTUALIZATION.VMWAREHOST': "virtualization.VmwareHost",
+ 'VIRTUALIZATION.VMWAREKERNELNETWORK': "virtualization.VmwareKernelNetwork",
+ 'VIRTUALIZATION.VMWARENETWORK': "virtualization.VmwareNetwork",
+ 'VIRTUALIZATION.VMWAREPHYSICALNETWORKINTERFACE': "virtualization.VmwarePhysicalNetworkInterface",
+ 'VIRTUALIZATION.VMWAREUPLINKPORT': "virtualization.VmwareUplinkPort",
+ 'VIRTUALIZATION.VMWAREVCENTER': "virtualization.VmwareVcenter",
+ 'VIRTUALIZATION.VMWAREVIRTUALDISK': "virtualization.VmwareVirtualDisk",
+ 'VIRTUALIZATION.VMWAREVIRTUALMACHINE': "virtualization.VmwareVirtualMachine",
+ 'VIRTUALIZATION.VMWAREVIRTUALMACHINESNAPSHOT': "virtualization.VmwareVirtualMachineSnapshot",
+ 'VIRTUALIZATION.VMWAREVIRTUALNETWORKINTERFACE': "virtualization.VmwareVirtualNetworkInterface",
+ 'VIRTUALIZATION.VMWAREVIRTUALSWITCH': "virtualization.VmwareVirtualSwitch",
+ 'VMEDIA.POLICY': "vmedia.Policy",
+ 'VMRC.CONSOLE': "vmrc.Console",
+ 'VNIC.ETHADAPTERPOLICY': "vnic.EthAdapterPolicy",
+ 'VNIC.ETHIF': "vnic.EthIf",
+ 'VNIC.ETHNETWORKPOLICY': "vnic.EthNetworkPolicy",
+ 'VNIC.ETHQOSPOLICY': "vnic.EthQosPolicy",
+ 'VNIC.FCADAPTERPOLICY': "vnic.FcAdapterPolicy",
+ 'VNIC.FCIF': "vnic.FcIf",
+ 'VNIC.FCNETWORKPOLICY': "vnic.FcNetworkPolicy",
+ 'VNIC.FCQOSPOLICY': "vnic.FcQosPolicy",
+ 'VNIC.ISCSIADAPTERPOLICY': "vnic.IscsiAdapterPolicy",
+ 'VNIC.ISCSIBOOTPOLICY': "vnic.IscsiBootPolicy",
+ 'VNIC.ISCSISTATICTARGETPOLICY': "vnic.IscsiStaticTargetPolicy",
+ 'VNIC.LANCONNECTIVITYPOLICY': "vnic.LanConnectivityPolicy",
+ 'VNIC.LCPSTATUS': "vnic.LcpStatus",
+ 'VNIC.SANCONNECTIVITYPOLICY': "vnic.SanConnectivityPolicy",
+ 'VNIC.SCPSTATUS': "vnic.ScpStatus",
+ 'VRF.VRF': "vrf.Vrf",
+ 'WORKFLOW.BATCHAPIEXECUTOR': "workflow.BatchApiExecutor",
+ 'WORKFLOW.BUILDTASKMETA': "workflow.BuildTaskMeta",
+ 'WORKFLOW.BUILDTASKMETAOWNER': "workflow.BuildTaskMetaOwner",
+ 'WORKFLOW.CATALOG': "workflow.Catalog",
+ 'WORKFLOW.CUSTOMDATATYPEDEFINITION': "workflow.CustomDataTypeDefinition",
+ 'WORKFLOW.ERRORRESPONSEHANDLER': "workflow.ErrorResponseHandler",
+ 'WORKFLOW.PENDINGDYNAMICWORKFLOWINFO': "workflow.PendingDynamicWorkflowInfo",
+ 'WORKFLOW.ROLLBACKWORKFLOW': "workflow.RollbackWorkflow",
+ 'WORKFLOW.TASKDEBUGLOG': "workflow.TaskDebugLog",
+ 'WORKFLOW.TASKDEFINITION': "workflow.TaskDefinition",
+ 'WORKFLOW.TASKINFO': "workflow.TaskInfo",
+ 'WORKFLOW.TASKMETADATA': "workflow.TaskMetadata",
+ 'WORKFLOW.TASKNOTIFICATION': "workflow.TaskNotification",
+ 'WORKFLOW.TEMPLATEEVALUATION': "workflow.TemplateEvaluation",
+ 'WORKFLOW.TEMPLATEFUNCTIONMETA': "workflow.TemplateFunctionMeta",
+ 'WORKFLOW.WORKFLOWDEFINITION': "workflow.WorkflowDefinition",
+ 'WORKFLOW.WORKFLOWINFO': "workflow.WorkflowInfo",
+ 'WORKFLOW.WORKFLOWMETA': "workflow.WorkflowMeta",
+ 'WORKFLOW.WORKFLOWMETADATA': "workflow.WorkflowMetadata",
+ 'WORKFLOW.WORKFLOWNOTIFICATION': "workflow.WorkflowNotification",
+ },
+ }
+
+ validations = {
+ }
+
+ @cached_property
+ def additional_properties_type():
+ """
+ This must be a method because a model may have properties that are
+ of type self, this must run after the class is loaded
+ """
+ lazy_import()
+ return (bool, date, datetime, dict, float, int, list, str, none_type,) # noqa: E501
+
+ _nullable = False
+
+ @cached_property
+ def openapi_types():
+ """
+ This must be a method because a model may have properties that are
+ of type self, this must run after the class is loaded
+
+ Returns
+ openapi_types (dict): The key is attribute name
+ and the value is attribute type.
+ """
+ lazy_import()
+ return {
+ 'class_id': (str,), # noqa: E501
+ 'moid': (str,), # noqa: E501
+ 'selector': (str,), # noqa: E501
+ 'link': (str,), # noqa: E501
+ 'account_moid': (str,), # noqa: E501
+ 'create_time': (datetime,), # noqa: E501
+ 'domain_group_moid': (str,), # noqa: E501
+ 'mod_time': (datetime,), # noqa: E501
+ 'owners': ([str], none_type,), # noqa: E501
+ 'shared_scope': (str,), # noqa: E501
+ 'tags': ([MoTag], none_type,), # noqa: E501
+ 'version_context': (MoVersionContext,), # noqa: E501
+ 'ancestors': ([MoBaseMoRelationship], none_type,), # noqa: E501
+ 'parent': (MoBaseMoRelationship,), # noqa: E501
+ 'permission_resources': ([MoBaseMoRelationship], none_type,), # noqa: E501
+ 'display_names': (DisplayNames,), # noqa: E501
+ 'export_tags': (bool,), # noqa: E501
+ 'file_name': (str,), # noqa: E501
+ 'item': (MoMoRef,), # noqa: E501
+ 'name': (str,), # noqa: E501
+ 'service_name': (str,), # noqa: E501
+ 'service_version': (str,), # noqa: E501
+ 'status': (str,), # noqa: E501
+ 'status_message': (str,), # noqa: E501
+ 'export': (BulkExportRelationship,), # noqa: E501
+ 'parent_item': (BulkExportedItemRelationship,), # noqa: E501
+ 'related_items': ([BulkExportedItemRelationship], none_type,), # noqa: E501
+ 'object_type': (str,), # noqa: E501
+ }
+
+ @cached_property
+ def discriminator():
+ lazy_import()
+ val = {
+ 'bulk.ExportedItem': BulkExportedItem,
+ 'mo.MoRef': MoMoRef,
+ }
+ if not val:
+ return None
+ return {'class_id': val}
+
+ attribute_map = {
+ 'class_id': 'ClassId', # noqa: E501
+ 'moid': 'Moid', # noqa: E501
+ 'selector': 'Selector', # noqa: E501
+ 'link': 'link', # noqa: E501
+ 'account_moid': 'AccountMoid', # noqa: E501
+ 'create_time': 'CreateTime', # noqa: E501
+ 'domain_group_moid': 'DomainGroupMoid', # noqa: E501
+ 'mod_time': 'ModTime', # noqa: E501
+ 'owners': 'Owners', # noqa: E501
+ 'shared_scope': 'SharedScope', # noqa: E501
+ 'tags': 'Tags', # noqa: E501
+ 'version_context': 'VersionContext', # noqa: E501
+ 'ancestors': 'Ancestors', # noqa: E501
+ 'parent': 'Parent', # noqa: E501
+ 'permission_resources': 'PermissionResources', # noqa: E501
+ 'display_names': 'DisplayNames', # noqa: E501
+ 'export_tags': 'ExportTags', # noqa: E501
+ 'file_name': 'FileName', # noqa: E501
+ 'item': 'Item', # noqa: E501
+ 'name': 'Name', # noqa: E501
+ 'service_name': 'ServiceName', # noqa: E501
+ 'service_version': 'ServiceVersion', # noqa: E501
+ 'status': 'Status', # noqa: E501
+ 'status_message': 'StatusMessage', # noqa: E501
+ 'export': 'Export', # noqa: E501
+ 'parent_item': 'ParentItem', # noqa: E501
+ 'related_items': 'RelatedItems', # noqa: E501
+ 'object_type': 'ObjectType', # noqa: E501
+ }
+
+ required_properties = set([
+ '_data_store',
+ '_check_type',
+ '_spec_property_naming',
+ '_path_to_item',
+ '_configuration',
+ '_visited_composed_classes',
+ '_composed_instances',
+ '_var_name_to_model_instances',
+ '_additional_properties_model_instances',
+ ])
+
+ @convert_js_args_to_python_args
+ def __init__(self, *args, **kwargs): # noqa: E501
+ """BulkExportedItemRelationship - a model defined in OpenAPI
+
+ Args:
+
+ Keyword Args:
+ class_id (str): The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.. defaults to "mo.MoRef", must be one of ["mo.MoRef", ] # noqa: E501
+ _check_type (bool): if True, values for parameters in openapi_types
+ will be type checked and a TypeError will be
+ raised if the wrong type is input.
+ Defaults to True
+ _path_to_item (tuple/list): This is a list of keys or values to
+ drill down to the model in received_data
+ when deserializing a response
+ _spec_property_naming (bool): True if the variable names in the input data
+ are serialized names, as specified in the OpenAPI document.
+ False if the variable names in the input data
+ are pythonic names, e.g. snake case (default)
+ _configuration (Configuration): the instance to use when
+ deserializing a file_type parameter.
+ If passed, type conversion is attempted
+ If omitted no type conversion is done.
+ _visited_composed_classes (tuple): This stores a tuple of
+ classes that we have traveled through so that
+ if we see that class again we will not use its
+ discriminator again.
+ When traveling through a discriminator, the
+ composed schema that is
+ is traveled through is added to this set.
+ For example if Animal has a discriminator
+ petType and we pass in "Dog", and the class Dog
+ allOf includes Animal, we move through Animal
+ once using the discriminator, and pick Dog.
+ Then in Dog, we will make an instance of the
+ Animal class but this time we won't travel
+ through its discriminator because we passed in
+ _visited_composed_classes = (Animal,)
+ moid (str): The Moid of the referenced REST resource.. [optional] # noqa: E501
+ selector (str): An OData $filter expression which describes the REST resource to be referenced. This field may be set instead of 'moid' by clients. 1. If 'moid' is set this field is ignored. 1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of the resource matching the filter expression and populates it in the MoRef that is part of the object instance being inserted/updated to fulfill the REST request. An error is returned if the filter matches zero or more than one REST resource. An example filter string is: Serial eq '3AA8B7T11'.. [optional] # noqa: E501
+ link (str): A URL to an instance of the 'mo.MoRef' class.. [optional] # noqa: E501
+ account_moid (str): The Account ID for this managed object.. [optional] # noqa: E501
+ create_time (datetime): The time when this managed object was created.. [optional] # noqa: E501
+ domain_group_moid (str): The DomainGroup ID for this managed object.. [optional] # noqa: E501
+ mod_time (datetime): The time when this managed object was last modified.. [optional] # noqa: E501
+ owners ([str], none_type): [optional] # noqa: E501
+ shared_scope (str): Intersight provides pre-built workflows, tasks and policies to end users through global catalogs. Objects that are made available through global catalogs are said to have a 'shared' ownership. Shared objects are either made globally available to all end users or restricted to end users based on their license entitlement. Users can use this property to differentiate the scope (global or a specific license tier) to which a shared MO belongs.. [optional] # noqa: E501
+ tags ([MoTag], none_type): [optional] # noqa: E501
+ version_context (MoVersionContext): [optional] # noqa: E501
+ ancestors ([MoBaseMoRelationship], none_type): An array of relationships to moBaseMo resources.. [optional] # noqa: E501
+ parent (MoBaseMoRelationship): [optional] # noqa: E501
+ permission_resources ([MoBaseMoRelationship], none_type): An array of relationships to moBaseMo resources.. [optional] # noqa: E501
+ display_names (DisplayNames): [optional] # noqa: E501
+ export_tags (bool): Specifies whether tags must be exported for item MO.. [optional] if omitted the server will use the default value of False # noqa: E501
+ file_name (str): Name of the file corresponding to item MO.. [optional] # noqa: E501
+ item (MoMoRef): [optional] # noqa: E501
+ name (str): MO item identity (the moref corresponding to item) expressed as a string.. [optional] # noqa: E501
+ service_name (str): Name of the service that owns the item MO.. [optional] # noqa: E501
+ service_version (str): Version of the service that owns the item MO.. [optional] # noqa: E501
+ status (str): Status of the item's export operation. * `` - The operation has not started. * `ValidationInProgress` - The validation operation is in progress. * `Valid` - The content to be imported is valid. * `InValid` - The content to be imported is not valid and the status message will have the reason. * `InProgress` - The operation is in progress. * `Success` - The operation has succeeded. * `Failed` - The operation has failed. * `RollBackInitiated` - The rollback has been inititiated for import failure. * `RollBackFailed` - The rollback has failed for import failure. * `RollbackCompleted` - The rollback has completed for import failure. * `RollbackAborted` - The rollback has been aborted for import failure. * `OperationTimedOut` - The operation has timed out. * `OperationCancelled` - The operation has been cancelled. * `CancelInProgress` - The operation is being cancelled.. [optional] if omitted the server will use the default value of "" # noqa: E501
+ status_message (str): Progress or error message for the MO's export operation.. [optional] # noqa: E501
+ export (BulkExportRelationship): [optional] # noqa: E501
+ parent_item (BulkExportedItemRelationship): [optional] # noqa: E501
+ related_items ([BulkExportedItemRelationship], none_type): An array of relationships to bulkExportedItem resources.. [optional] # noqa: E501
+ object_type (str): The fully-qualified name of the remote type referred by this relationship.. [optional] # noqa: E501
+ """
+
+ class_id = kwargs.get('class_id', "mo.MoRef")
+ _check_type = kwargs.pop('_check_type', True)
+ _spec_property_naming = kwargs.pop('_spec_property_naming', False)
+ _path_to_item = kwargs.pop('_path_to_item', ())
+ _configuration = kwargs.pop('_configuration', None)
+ _visited_composed_classes = kwargs.pop('_visited_composed_classes', ())
+
+ if args:
+ raise ApiTypeError(
+ "Invalid positional arguments=%s passed to %s. Remove those invalid positional arguments." % (
+ args,
+ self.__class__.__name__,
+ ),
+ path_to_item=_path_to_item,
+ valid_classes=(self.__class__,),
+ )
+
+ self._data_store = {}
+ self._check_type = _check_type
+ self._spec_property_naming = _spec_property_naming
+ self._path_to_item = _path_to_item
+ self._configuration = _configuration
+ self._visited_composed_classes = _visited_composed_classes + (self.__class__,)
+
+ constant_args = {
+ '_check_type': _check_type,
+ '_path_to_item': _path_to_item,
+ '_spec_property_naming': _spec_property_naming,
+ '_configuration': _configuration,
+ '_visited_composed_classes': self._visited_composed_classes,
+ }
+ required_args = {
+ 'class_id': class_id,
+ }
+ model_args = {}
+ model_args.update(required_args)
+ model_args.update(kwargs)
+ composed_info = validate_get_composed_info(
+ constant_args, model_args, self)
+ self._composed_instances = composed_info[0]
+ self._var_name_to_model_instances = composed_info[1]
+ self._additional_properties_model_instances = composed_info[2]
+ unused_args = composed_info[3]
+
+ for var_name, var_value in required_args.items():
+ setattr(self, var_name, var_value)
+ for var_name, var_value in kwargs.items():
+ if var_name in unused_args and \
+ self._configuration is not None and \
+ self._configuration.discard_unknown_keys and \
+ not self._additional_properties_model_instances:
+ # discard variable.
+ continue
+ setattr(self, var_name, var_value)
+
+ @cached_property
+ def _composed_schemas():
+ # we need this here to make our import statements work
+ # we must store _composed_schemas in here so the code is only run
+ # when we invoke this method. If we kept this at the class
+ # level we would get an error beause the class level
+ # code would be run when this module is imported, and these composed
+ # classes don't exist yet because their module has not finished
+ # loading
+ lazy_import()
+ return {
+ 'anyOf': [
+ ],
+ 'allOf': [
+ ],
+ 'oneOf': [
+ BulkExportedItem,
+ MoMoRef,
+ none_type,
+ ],
+ }
diff --git a/intersight/model/bulk_exported_item_response.py b/intersight/model/bulk_exported_item_response.py
new file mode 100644
index 0000000000..85b988b239
--- /dev/null
+++ b/intersight/model/bulk_exported_item_response.py
@@ -0,0 +1,249 @@
+"""
+ Cisco Intersight
+
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
+
+ The version of the OpenAPI document: 1.0.9-4506
+ Contact: intersight@cisco.com
+ Generated by: https://openapi-generator.tech
+"""
+
+
+import re # noqa: F401
+import sys # noqa: F401
+
+from intersight.model_utils import ( # noqa: F401
+ ApiTypeError,
+ ModelComposed,
+ ModelNormal,
+ ModelSimple,
+ cached_property,
+ change_keys_js_to_python,
+ convert_js_args_to_python_args,
+ date,
+ datetime,
+ file_type,
+ none_type,
+ validate_get_composed_info,
+)
+
+def lazy_import():
+ from intersight.model.bulk_exported_item_list import BulkExportedItemList
+ from intersight.model.mo_aggregate_transform import MoAggregateTransform
+ from intersight.model.mo_document_count import MoDocumentCount
+ from intersight.model.mo_tag_key_summary import MoTagKeySummary
+ from intersight.model.mo_tag_summary import MoTagSummary
+ globals()['BulkExportedItemList'] = BulkExportedItemList
+ globals()['MoAggregateTransform'] = MoAggregateTransform
+ globals()['MoDocumentCount'] = MoDocumentCount
+ globals()['MoTagKeySummary'] = MoTagKeySummary
+ globals()['MoTagSummary'] = MoTagSummary
+
+
+class BulkExportedItemResponse(ModelComposed):
+ """NOTE: This class is auto generated by OpenAPI Generator.
+ Ref: https://openapi-generator.tech
+
+ Do not edit the class manually.
+
+ Attributes:
+ allowed_values (dict): The key is the tuple path to the attribute
+ and the for var_name this is (var_name,). The value is a dict
+ with a capitalized key describing the allowed value and an allowed
+ value. These dicts store the allowed enum values.
+ attribute_map (dict): The key is attribute name
+ and the value is json key in definition.
+ discriminator_value_class_map (dict): A dict to go from the discriminator
+ variable value to the discriminator class name.
+ validations (dict): The key is the tuple path to the attribute
+ and the for var_name this is (var_name,). The value is a dict
+ that stores validations for max_length, min_length, max_items,
+ min_items, exclusive_maximum, inclusive_maximum, exclusive_minimum,
+ inclusive_minimum, and regex.
+ additional_properties_type (tuple): A tuple of classes accepted
+ as additional properties values.
+ """
+
+ allowed_values = {
+ }
+
+ validations = {
+ }
+
+ @cached_property
+ def additional_properties_type():
+ """
+ This must be a method because a model may have properties that are
+ of type self, this must run after the class is loaded
+ """
+ lazy_import()
+ return (bool, date, datetime, dict, float, int, list, str, none_type,) # noqa: E501
+
+ _nullable = False
+
+ @cached_property
+ def openapi_types():
+ """
+ This must be a method because a model may have properties that are
+ of type self, this must run after the class is loaded
+
+ Returns
+ openapi_types (dict): The key is attribute name
+ and the value is attribute type.
+ """
+ lazy_import()
+ return {
+ 'object_type': (str,), # noqa: E501
+ 'count': (int,), # noqa: E501
+ 'results': ([MoTagKeySummary], none_type,), # noqa: E501
+ }
+
+ @cached_property
+ def discriminator():
+ lazy_import()
+ val = {
+ 'bulk.ExportedItem.List': BulkExportedItemList,
+ 'mo.AggregateTransform': MoAggregateTransform,
+ 'mo.DocumentCount': MoDocumentCount,
+ 'mo.TagSummary': MoTagSummary,
+ }
+ if not val:
+ return None
+ return {'object_type': val}
+
+ attribute_map = {
+ 'object_type': 'ObjectType', # noqa: E501
+ 'count': 'Count', # noqa: E501
+ 'results': 'Results', # noqa: E501
+ }
+
+ required_properties = set([
+ '_data_store',
+ '_check_type',
+ '_spec_property_naming',
+ '_path_to_item',
+ '_configuration',
+ '_visited_composed_classes',
+ '_composed_instances',
+ '_var_name_to_model_instances',
+ '_additional_properties_model_instances',
+ ])
+
+ @convert_js_args_to_python_args
+ def __init__(self, object_type, *args, **kwargs): # noqa: E501
+ """BulkExportedItemResponse - a model defined in OpenAPI
+
+ Args:
+ object_type (str): A discriminator value to disambiguate the schema of a HTTP GET response body.
+
+ Keyword Args:
+ _check_type (bool): if True, values for parameters in openapi_types
+ will be type checked and a TypeError will be
+ raised if the wrong type is input.
+ Defaults to True
+ _path_to_item (tuple/list): This is a list of keys or values to
+ drill down to the model in received_data
+ when deserializing a response
+ _spec_property_naming (bool): True if the variable names in the input data
+ are serialized names, as specified in the OpenAPI document.
+ False if the variable names in the input data
+ are pythonic names, e.g. snake case (default)
+ _configuration (Configuration): the instance to use when
+ deserializing a file_type parameter.
+ If passed, type conversion is attempted
+ If omitted no type conversion is done.
+ _visited_composed_classes (tuple): This stores a tuple of
+ classes that we have traveled through so that
+ if we see that class again we will not use its
+ discriminator again.
+ When traveling through a discriminator, the
+ composed schema that is
+ is traveled through is added to this set.
+ For example if Animal has a discriminator
+ petType and we pass in "Dog", and the class Dog
+ allOf includes Animal, we move through Animal
+ once using the discriminator, and pick Dog.
+ Then in Dog, we will make an instance of the
+ Animal class but this time we won't travel
+ through its discriminator because we passed in
+ _visited_composed_classes = (Animal,)
+ count (int): The total number of 'bulk.ExportedItem' resources matching the request, accross all pages. The 'Count' attribute is included when the HTTP GET request includes the '$inlinecount' parameter.. [optional] # noqa: E501
+ results ([MoTagKeySummary], none_type): [optional] # noqa: E501
+ """
+
+ _check_type = kwargs.pop('_check_type', True)
+ _spec_property_naming = kwargs.pop('_spec_property_naming', False)
+ _path_to_item = kwargs.pop('_path_to_item', ())
+ _configuration = kwargs.pop('_configuration', None)
+ _visited_composed_classes = kwargs.pop('_visited_composed_classes', ())
+
+ if args:
+ raise ApiTypeError(
+ "Invalid positional arguments=%s passed to %s. Remove those invalid positional arguments." % (
+ args,
+ self.__class__.__name__,
+ ),
+ path_to_item=_path_to_item,
+ valid_classes=(self.__class__,),
+ )
+
+ self._data_store = {}
+ self._check_type = _check_type
+ self._spec_property_naming = _spec_property_naming
+ self._path_to_item = _path_to_item
+ self._configuration = _configuration
+ self._visited_composed_classes = _visited_composed_classes + (self.__class__,)
+
+ constant_args = {
+ '_check_type': _check_type,
+ '_path_to_item': _path_to_item,
+ '_spec_property_naming': _spec_property_naming,
+ '_configuration': _configuration,
+ '_visited_composed_classes': self._visited_composed_classes,
+ }
+ required_args = {
+ 'object_type': object_type,
+ }
+ model_args = {}
+ model_args.update(required_args)
+ model_args.update(kwargs)
+ composed_info = validate_get_composed_info(
+ constant_args, model_args, self)
+ self._composed_instances = composed_info[0]
+ self._var_name_to_model_instances = composed_info[1]
+ self._additional_properties_model_instances = composed_info[2]
+ unused_args = composed_info[3]
+
+ for var_name, var_value in required_args.items():
+ setattr(self, var_name, var_value)
+ for var_name, var_value in kwargs.items():
+ if var_name in unused_args and \
+ self._configuration is not None and \
+ self._configuration.discard_unknown_keys and \
+ not self._additional_properties_model_instances:
+ # discard variable.
+ continue
+ setattr(self, var_name, var_value)
+
+ @cached_property
+ def _composed_schemas():
+ # we need this here to make our import statements work
+ # we must store _composed_schemas in here so the code is only run
+ # when we invoke this method. If we kept this at the class
+ # level we would get an error beause the class level
+ # code would be run when this module is imported, and these composed
+ # classes don't exist yet because their module has not finished
+ # loading
+ lazy_import()
+ return {
+ 'anyOf': [
+ ],
+ 'allOf': [
+ ],
+ 'oneOf': [
+ BulkExportedItemList,
+ MoAggregateTransform,
+ MoDocumentCount,
+ MoTagSummary,
+ ],
+ }
diff --git a/intersight/model/bulk_http_header.py b/intersight/model/bulk_http_header.py
new file mode 100644
index 0000000000..08be5a5eb4
--- /dev/null
+++ b/intersight/model/bulk_http_header.py
@@ -0,0 +1,248 @@
+"""
+ Cisco Intersight
+
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
+
+ The version of the OpenAPI document: 1.0.9-4506
+ Contact: intersight@cisco.com
+ Generated by: https://openapi-generator.tech
+"""
+
+
+import re # noqa: F401
+import sys # noqa: F401
+
+from intersight.model_utils import ( # noqa: F401
+ ApiTypeError,
+ ModelComposed,
+ ModelNormal,
+ ModelSimple,
+ cached_property,
+ change_keys_js_to_python,
+ convert_js_args_to_python_args,
+ date,
+ datetime,
+ file_type,
+ none_type,
+ validate_get_composed_info,
+)
+
+def lazy_import():
+ from intersight.model.bulk_http_header_all_of import BulkHttpHeaderAllOf
+ from intersight.model.mo_base_complex_type import MoBaseComplexType
+ globals()['BulkHttpHeaderAllOf'] = BulkHttpHeaderAllOf
+ globals()['MoBaseComplexType'] = MoBaseComplexType
+
+
+class BulkHttpHeader(ModelComposed):
+ """NOTE: This class is auto generated by OpenAPI Generator.
+ Ref: https://openapi-generator.tech
+
+ Do not edit the class manually.
+
+ Attributes:
+ allowed_values (dict): The key is the tuple path to the attribute
+ and the for var_name this is (var_name,). The value is a dict
+ with a capitalized key describing the allowed value and an allowed
+ value. These dicts store the allowed enum values.
+ attribute_map (dict): The key is attribute name
+ and the value is json key in definition.
+ discriminator_value_class_map (dict): A dict to go from the discriminator
+ variable value to the discriminator class name.
+ validations (dict): The key is the tuple path to the attribute
+ and the for var_name this is (var_name,). The value is a dict
+ that stores validations for max_length, min_length, max_items,
+ min_items, exclusive_maximum, inclusive_maximum, exclusive_minimum,
+ inclusive_minimum, and regex.
+ additional_properties_type (tuple): A tuple of classes accepted
+ as additional properties values.
+ """
+
+ allowed_values = {
+ ('class_id',): {
+ 'BULK.HTTPHEADER': "bulk.HttpHeader",
+ },
+ ('object_type',): {
+ 'BULK.HTTPHEADER': "bulk.HttpHeader",
+ },
+ }
+
+ validations = {
+ }
+
+ @cached_property
+ def additional_properties_type():
+ """
+ This must be a method because a model may have properties that are
+ of type self, this must run after the class is loaded
+ """
+ lazy_import()
+ return (bool, date, datetime, dict, float, int, list, str, none_type,) # noqa: E501
+
+ _nullable = True
+
+ @cached_property
+ def openapi_types():
+ """
+ This must be a method because a model may have properties that are
+ of type self, this must run after the class is loaded
+
+ Returns
+ openapi_types (dict): The key is attribute name
+ and the value is attribute type.
+ """
+ lazy_import()
+ return {
+ 'class_id': (str,), # noqa: E501
+ 'object_type': (str,), # noqa: E501
+ 'name': (str,), # noqa: E501
+ 'value': (str,), # noqa: E501
+ }
+
+ @cached_property
+ def discriminator():
+ val = {
+ }
+ if not val:
+ return None
+ return {'class_id': val}
+
+ attribute_map = {
+ 'class_id': 'ClassId', # noqa: E501
+ 'object_type': 'ObjectType', # noqa: E501
+ 'name': 'Name', # noqa: E501
+ 'value': 'Value', # noqa: E501
+ }
+
+ required_properties = set([
+ '_data_store',
+ '_check_type',
+ '_spec_property_naming',
+ '_path_to_item',
+ '_configuration',
+ '_visited_composed_classes',
+ '_composed_instances',
+ '_var_name_to_model_instances',
+ '_additional_properties_model_instances',
+ ])
+
+ @convert_js_args_to_python_args
+ def __init__(self, *args, **kwargs): # noqa: E501
+ """BulkHttpHeader - a model defined in OpenAPI
+
+ Args:
+
+ Keyword Args:
+ class_id (str): The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.. defaults to "bulk.HttpHeader", must be one of ["bulk.HttpHeader", ] # noqa: E501
+ object_type (str): The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.. defaults to "bulk.HttpHeader", must be one of ["bulk.HttpHeader", ] # noqa: E501
+ _check_type (bool): if True, values for parameters in openapi_types
+ will be type checked and a TypeError will be
+ raised if the wrong type is input.
+ Defaults to True
+ _path_to_item (tuple/list): This is a list of keys or values to
+ drill down to the model in received_data
+ when deserializing a response
+ _spec_property_naming (bool): True if the variable names in the input data
+ are serialized names, as specified in the OpenAPI document.
+ False if the variable names in the input data
+ are pythonic names, e.g. snake case (default)
+ _configuration (Configuration): the instance to use when
+ deserializing a file_type parameter.
+ If passed, type conversion is attempted
+ If omitted no type conversion is done.
+ _visited_composed_classes (tuple): This stores a tuple of
+ classes that we have traveled through so that
+ if we see that class again we will not use its
+ discriminator again.
+ When traveling through a discriminator, the
+ composed schema that is
+ is traveled through is added to this set.
+ For example if Animal has a discriminator
+ petType and we pass in "Dog", and the class Dog
+ allOf includes Animal, we move through Animal
+ once using the discriminator, and pick Dog.
+ Then in Dog, we will make an instance of the
+ Animal class but this time we won't travel
+ through its discriminator because we passed in
+ _visited_composed_classes = (Animal,)
+ name (str): The name of the http header.. [optional] # noqa: E501
+ value (str): The value of the http header.. [optional] # noqa: E501
+ """
+
+ class_id = kwargs.get('class_id', "bulk.HttpHeader")
+ object_type = kwargs.get('object_type', "bulk.HttpHeader")
+ _check_type = kwargs.pop('_check_type', True)
+ _spec_property_naming = kwargs.pop('_spec_property_naming', False)
+ _path_to_item = kwargs.pop('_path_to_item', ())
+ _configuration = kwargs.pop('_configuration', None)
+ _visited_composed_classes = kwargs.pop('_visited_composed_classes', ())
+
+ if args:
+ raise ApiTypeError(
+ "Invalid positional arguments=%s passed to %s. Remove those invalid positional arguments." % (
+ args,
+ self.__class__.__name__,
+ ),
+ path_to_item=_path_to_item,
+ valid_classes=(self.__class__,),
+ )
+
+ self._data_store = {}
+ self._check_type = _check_type
+ self._spec_property_naming = _spec_property_naming
+ self._path_to_item = _path_to_item
+ self._configuration = _configuration
+ self._visited_composed_classes = _visited_composed_classes + (self.__class__,)
+
+ constant_args = {
+ '_check_type': _check_type,
+ '_path_to_item': _path_to_item,
+ '_spec_property_naming': _spec_property_naming,
+ '_configuration': _configuration,
+ '_visited_composed_classes': self._visited_composed_classes,
+ }
+ required_args = {
+ 'class_id': class_id,
+ 'object_type': object_type,
+ }
+ model_args = {}
+ model_args.update(required_args)
+ model_args.update(kwargs)
+ composed_info = validate_get_composed_info(
+ constant_args, model_args, self)
+ self._composed_instances = composed_info[0]
+ self._var_name_to_model_instances = composed_info[1]
+ self._additional_properties_model_instances = composed_info[2]
+ unused_args = composed_info[3]
+
+ for var_name, var_value in required_args.items():
+ setattr(self, var_name, var_value)
+ for var_name, var_value in kwargs.items():
+ if var_name in unused_args and \
+ self._configuration is not None and \
+ self._configuration.discard_unknown_keys and \
+ not self._additional_properties_model_instances:
+ # discard variable.
+ continue
+ setattr(self, var_name, var_value)
+
+ @cached_property
+ def _composed_schemas():
+ # we need this here to make our import statements work
+ # we must store _composed_schemas in here so the code is only run
+ # when we invoke this method. If we kept this at the class
+ # level we would get an error beause the class level
+ # code would be run when this module is imported, and these composed
+ # classes don't exist yet because their module has not finished
+ # loading
+ lazy_import()
+ return {
+ 'anyOf': [
+ ],
+ 'allOf': [
+ BulkHttpHeaderAllOf,
+ MoBaseComplexType,
+ ],
+ 'oneOf': [
+ ],
+ }
diff --git a/intersight/model/bulk_http_header_all_of.py b/intersight/model/bulk_http_header_all_of.py
new file mode 100644
index 0000000000..8f1e05725d
--- /dev/null
+++ b/intersight/model/bulk_http_header_all_of.py
@@ -0,0 +1,188 @@
+"""
+ Cisco Intersight
+
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
+
+ The version of the OpenAPI document: 1.0.9-4506
+ Contact: intersight@cisco.com
+ Generated by: https://openapi-generator.tech
+"""
+
+
+import re # noqa: F401
+import sys # noqa: F401
+
+from intersight.model_utils import ( # noqa: F401
+ ApiTypeError,
+ ModelComposed,
+ ModelNormal,
+ ModelSimple,
+ cached_property,
+ change_keys_js_to_python,
+ convert_js_args_to_python_args,
+ date,
+ datetime,
+ file_type,
+ none_type,
+ validate_get_composed_info,
+)
+
+
+class BulkHttpHeaderAllOf(ModelNormal):
+ """NOTE: This class is auto generated by OpenAPI Generator.
+ Ref: https://openapi-generator.tech
+
+ Do not edit the class manually.
+
+ Attributes:
+ allowed_values (dict): The key is the tuple path to the attribute
+ and the for var_name this is (var_name,). The value is a dict
+ with a capitalized key describing the allowed value and an allowed
+ value. These dicts store the allowed enum values.
+ attribute_map (dict): The key is attribute name
+ and the value is json key in definition.
+ discriminator_value_class_map (dict): A dict to go from the discriminator
+ variable value to the discriminator class name.
+ validations (dict): The key is the tuple path to the attribute
+ and the for var_name this is (var_name,). The value is a dict
+ that stores validations for max_length, min_length, max_items,
+ min_items, exclusive_maximum, inclusive_maximum, exclusive_minimum,
+ inclusive_minimum, and regex.
+ additional_properties_type (tuple): A tuple of classes accepted
+ as additional properties values.
+ """
+
+ allowed_values = {
+ ('class_id',): {
+ 'BULK.HTTPHEADER': "bulk.HttpHeader",
+ },
+ ('object_type',): {
+ 'BULK.HTTPHEADER': "bulk.HttpHeader",
+ },
+ }
+
+ validations = {
+ }
+
+ additional_properties_type = None
+
+ _nullable = False
+
+ @cached_property
+ def openapi_types():
+ """
+ This must be a method because a model may have properties that are
+ of type self, this must run after the class is loaded
+
+ Returns
+ openapi_types (dict): The key is attribute name
+ and the value is attribute type.
+ """
+ return {
+ 'class_id': (str,), # noqa: E501
+ 'object_type': (str,), # noqa: E501
+ 'name': (str,), # noqa: E501
+ 'value': (str,), # noqa: E501
+ }
+
+ @cached_property
+ def discriminator():
+ return None
+
+
+ attribute_map = {
+ 'class_id': 'ClassId', # noqa: E501
+ 'object_type': 'ObjectType', # noqa: E501
+ 'name': 'Name', # noqa: E501
+ 'value': 'Value', # noqa: E501
+ }
+
+ _composed_schemas = {}
+
+ required_properties = set([
+ '_data_store',
+ '_check_type',
+ '_spec_property_naming',
+ '_path_to_item',
+ '_configuration',
+ '_visited_composed_classes',
+ ])
+
+ @convert_js_args_to_python_args
+ def __init__(self, *args, **kwargs): # noqa: E501
+ """BulkHttpHeaderAllOf - a model defined in OpenAPI
+
+ Args:
+
+ Keyword Args:
+ class_id (str): The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.. defaults to "bulk.HttpHeader", must be one of ["bulk.HttpHeader", ] # noqa: E501
+ object_type (str): The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.. defaults to "bulk.HttpHeader", must be one of ["bulk.HttpHeader", ] # noqa: E501
+ _check_type (bool): if True, values for parameters in openapi_types
+ will be type checked and a TypeError will be
+ raised if the wrong type is input.
+ Defaults to True
+ _path_to_item (tuple/list): This is a list of keys or values to
+ drill down to the model in received_data
+ when deserializing a response
+ _spec_property_naming (bool): True if the variable names in the input data
+ are serialized names, as specified in the OpenAPI document.
+ False if the variable names in the input data
+ are pythonic names, e.g. snake case (default)
+ _configuration (Configuration): the instance to use when
+ deserializing a file_type parameter.
+ If passed, type conversion is attempted
+ If omitted no type conversion is done.
+ _visited_composed_classes (tuple): This stores a tuple of
+ classes that we have traveled through so that
+ if we see that class again we will not use its
+ discriminator again.
+ When traveling through a discriminator, the
+ composed schema that is
+ is traveled through is added to this set.
+ For example if Animal has a discriminator
+ petType and we pass in "Dog", and the class Dog
+ allOf includes Animal, we move through Animal
+ once using the discriminator, and pick Dog.
+ Then in Dog, we will make an instance of the
+ Animal class but this time we won't travel
+ through its discriminator because we passed in
+ _visited_composed_classes = (Animal,)
+ name (str): The name of the http header.. [optional] # noqa: E501
+ value (str): The value of the http header.. [optional] # noqa: E501
+ """
+
+ class_id = kwargs.get('class_id', "bulk.HttpHeader")
+ object_type = kwargs.get('object_type', "bulk.HttpHeader")
+ _check_type = kwargs.pop('_check_type', True)
+ _spec_property_naming = kwargs.pop('_spec_property_naming', False)
+ _path_to_item = kwargs.pop('_path_to_item', ())
+ _configuration = kwargs.pop('_configuration', None)
+ _visited_composed_classes = kwargs.pop('_visited_composed_classes', ())
+
+ if args:
+ raise ApiTypeError(
+ "Invalid positional arguments=%s passed to %s. Remove those invalid positional arguments." % (
+ args,
+ self.__class__.__name__,
+ ),
+ path_to_item=_path_to_item,
+ valid_classes=(self.__class__,),
+ )
+
+ self._data_store = {}
+ self._check_type = _check_type
+ self._spec_property_naming = _spec_property_naming
+ self._path_to_item = _path_to_item
+ self._configuration = _configuration
+ self._visited_composed_classes = _visited_composed_classes + (self.__class__,)
+
+ self.class_id = class_id
+ self.object_type = object_type
+ for var_name, var_value in kwargs.items():
+ if var_name not in self.attribute_map and \
+ self._configuration is not None and \
+ self._configuration.discard_unknown_keys and \
+ self.additional_properties_type is None:
+ # discard variable.
+ continue
+ setattr(self, var_name, var_value)
diff --git a/intersight/model/bulk_mo_cloner.py b/intersight/model/bulk_mo_cloner.py
index 895cd89104..f6a0f9a74c 100644
--- a/intersight/model/bulk_mo_cloner.py
+++ b/intersight/model/bulk_mo_cloner.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/bulk_mo_cloner_all_of.py b/intersight/model/bulk_mo_cloner_all_of.py
index e46e374d29..0d1a3446b3 100644
--- a/intersight/model/bulk_mo_cloner_all_of.py
+++ b/intersight/model/bulk_mo_cloner_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/bulk_mo_merger.py b/intersight/model/bulk_mo_merger.py
index c7e8753547..3d8ea23dae 100644
--- a/intersight/model/bulk_mo_merger.py
+++ b/intersight/model/bulk_mo_merger.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/bulk_mo_merger_all_of.py b/intersight/model/bulk_mo_merger_all_of.py
index 58dd084270..33fca8bc5d 100644
--- a/intersight/model/bulk_mo_merger_all_of.py
+++ b/intersight/model/bulk_mo_merger_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/bulk_request.py b/intersight/model/bulk_request.py
index 44b8bcae12..805cf1bffe 100644
--- a/intersight/model/bulk_request.py
+++ b/intersight/model/bulk_request.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
@@ -29,23 +29,29 @@
def lazy_import():
from intersight.model.bulk_api_result import BulkApiResult
+ from intersight.model.bulk_http_header import BulkHttpHeader
from intersight.model.bulk_request_all_of import BulkRequestAllOf
from intersight.model.bulk_sub_request import BulkSubRequest
+ from intersight.model.bulk_sub_request_obj_relationship import BulkSubRequestObjRelationship
from intersight.model.display_names import DisplayNames
from intersight.model.mo_base_mo import MoBaseMo
from intersight.model.mo_base_mo_relationship import MoBaseMoRelationship
from intersight.model.mo_tag import MoTag
from intersight.model.mo_version_context import MoVersionContext
from intersight.model.organization_organization_relationship import OrganizationOrganizationRelationship
+ from intersight.model.workflow_workflow_info_relationship import WorkflowWorkflowInfoRelationship
globals()['BulkApiResult'] = BulkApiResult
+ globals()['BulkHttpHeader'] = BulkHttpHeader
globals()['BulkRequestAllOf'] = BulkRequestAllOf
globals()['BulkSubRequest'] = BulkSubRequest
+ globals()['BulkSubRequestObjRelationship'] = BulkSubRequestObjRelationship
globals()['DisplayNames'] = DisplayNames
globals()['MoBaseMo'] = MoBaseMo
globals()['MoBaseMoRelationship'] = MoBaseMoRelationship
globals()['MoTag'] = MoTag
globals()['MoVersionContext'] = MoVersionContext
globals()['OrganizationOrganizationRelationship'] = OrganizationOrganizationRelationship
+ globals()['WorkflowWorkflowInfoRelationship'] = WorkflowWorkflowInfoRelationship
class BulkRequest(ModelComposed):
@@ -79,6 +85,23 @@ class BulkRequest(ModelComposed):
('object_type',): {
'BULK.REQUEST': "bulk.Request",
},
+ ('action_on_error',): {
+ 'STOP': "Stop",
+ 'PROCEED': "Proceed",
+ },
+ ('actions',): {
+ 'None': None,
+ 'CHECKOBJECTPRESENCE': "CheckObjectPresence",
+ 'EXECUTE': "Execute",
+ },
+ ('status',): {
+ 'NOTSTARTED': "NotStarted",
+ 'OBJPRESENCECHECKINPROGRESS': "ObjPresenceCheckInProgress",
+ 'OBJPRESENCECHECKCOMPLETE': "ObjPresenceCheckComplete",
+ 'EXECUTIONINPROGRESS': "ExecutionInProgress",
+ 'COMPLETED': "Completed",
+ 'FAILED': "Failed",
+ },
('verb',): {
'POST': "POST",
'PATCH': "PATCH",
@@ -114,11 +137,24 @@ def openapi_types():
return {
'class_id': (str,), # noqa: E501
'object_type': (str,), # noqa: E501
+ 'action_on_error': (str,), # noqa: E501
+ 'actions': ([str], none_type,), # noqa: E501
+ 'completion_time': (str,), # noqa: E501
+ 'headers': ([BulkHttpHeader], none_type,), # noqa: E501
+ 'num_sub_requests': (int,), # noqa: E501
+ 'org_moid': (str,), # noqa: E501
+ 'request_received_time': (str,), # noqa: E501
'requests': ([BulkSubRequest], none_type,), # noqa: E501
'results': ([BulkApiResult], none_type,), # noqa: E501
+ 'skip_duplicates': (bool,), # noqa: E501
+ 'status': (str,), # noqa: E501
+ 'status_message': (str,), # noqa: E501
'uri': (str,), # noqa: E501
'verb': (str,), # noqa: E501
+ 'async_results': ([BulkSubRequestObjRelationship], none_type,), # noqa: E501
+ 'async_results_failed': ([BulkSubRequestObjRelationship], none_type,), # noqa: E501
'organization': (OrganizationOrganizationRelationship,), # noqa: E501
+ 'workflow_info': (WorkflowWorkflowInfoRelationship,), # noqa: E501
'account_moid': (str,), # noqa: E501
'create_time': (datetime,), # noqa: E501
'domain_group_moid': (str,), # noqa: E501
@@ -145,11 +181,24 @@ def discriminator():
attribute_map = {
'class_id': 'ClassId', # noqa: E501
'object_type': 'ObjectType', # noqa: E501
+ 'action_on_error': 'ActionOnError', # noqa: E501
+ 'actions': 'Actions', # noqa: E501
+ 'completion_time': 'CompletionTime', # noqa: E501
+ 'headers': 'Headers', # noqa: E501
+ 'num_sub_requests': 'NumSubRequests', # noqa: E501
+ 'org_moid': 'OrgMoid', # noqa: E501
+ 'request_received_time': 'RequestReceivedTime', # noqa: E501
'requests': 'Requests', # noqa: E501
'results': 'Results', # noqa: E501
+ 'skip_duplicates': 'SkipDuplicates', # noqa: E501
+ 'status': 'Status', # noqa: E501
+ 'status_message': 'StatusMessage', # noqa: E501
'uri': 'Uri', # noqa: E501
'verb': 'Verb', # noqa: E501
+ 'async_results': 'AsyncResults', # noqa: E501
+ 'async_results_failed': 'AsyncResultsFailed', # noqa: E501
'organization': 'Organization', # noqa: E501
+ 'workflow_info': 'WorkflowInfo', # noqa: E501
'account_moid': 'AccountMoid', # noqa: E501
'create_time': 'CreateTime', # noqa: E501
'domain_group_moid': 'DomainGroupMoid', # noqa: E501
@@ -216,11 +265,24 @@ def __init__(self, *args, **kwargs): # noqa: E501
Animal class but this time we won't travel
through its discriminator because we passed in
_visited_composed_classes = (Animal,)
+ action_on_error (str): The action to be taken when an error occurs during processing of the request. * `Stop` - Stop the processing of the request after the first error. * `Proceed` - Proceed with the processing of the request even when an error occurs.. [optional] if omitted the server will use the default value of "Stop" # noqa: E501
+ actions ([str], none_type): [optional] # noqa: E501
+ completion_time (str): The timestamp when the request processing completed.. [optional] # noqa: E501
+ headers ([BulkHttpHeader], none_type): [optional] # noqa: E501
+ num_sub_requests (int): The number of sub requests received in this request.. [optional] # noqa: E501
+ org_moid (str): The moid of the organization under which this request was issued.. [optional] # noqa: E501
+ request_received_time (str): The timestamp when the request was received.. [optional] # noqa: E501
requests ([BulkSubRequest], none_type): [optional] # noqa: E501
results ([BulkApiResult], none_type): [optional] # noqa: E501
- uri (str): The URI on which this bulk action is to be performed.. [optional] # noqa: E501
- verb (str): The type of operation to be performed. One of - Post (Create), Patch (Update) or Delete (Remove). * `POST` - Used to create a REST resource. * `PATCH` - Used to update a REST resource. * `DELETE` - Used to delete a REST resource.. [optional] if omitted the server will use the default value of "POST" # noqa: E501
+ skip_duplicates (bool): Skip the already present objects.. [optional] # noqa: E501
+ status (str): The processing status of the Request. * `NotStarted` - Indicates that the request processing has not begun yet. * `ObjPresenceCheckInProgress` - Indicates that the object presence check is in progress for this request. * `ObjPresenceCheckComplete` - Indicates that the object presence check is complete. * `ExecutionInProgress` - Indicates that the request processing is in progress. * `Completed` - Indicates that the request processing has been completed successfully. * `Failed` - Indicates that the processing of this request failed.. [optional] if omitted the server will use the default value of "NotStarted" # noqa: E501
+ status_message (str): The status message corresponding to the status.. [optional] # noqa: E501
+ uri (str): The URI on which this bulk action is to be performed. The value will be used when there is no override in the SubRequest.. [optional] # noqa: E501
+ verb (str): The type of operation to be performed. One of - Post (Create), Patch (Update) or Delete (Remove). The value will be used when there is no override in the SubRequest. * `POST` - Used to create a REST resource. * `PATCH` - Used to update a REST resource. * `DELETE` - Used to delete a REST resource.. [optional] if omitted the server will use the default value of "POST" # noqa: E501
+ async_results ([BulkSubRequestObjRelationship], none_type): An array of relationships to bulkSubRequestObj resources.. [optional] # noqa: E501
+ async_results_failed ([BulkSubRequestObjRelationship], none_type): An array of relationships to bulkSubRequestObj resources.. [optional] # noqa: E501
organization (OrganizationOrganizationRelationship): [optional] # noqa: E501
+ workflow_info (WorkflowWorkflowInfoRelationship): [optional] # noqa: E501
account_moid (str): The Account ID for this managed object.. [optional] # noqa: E501
create_time (datetime): The time when this managed object was created.. [optional] # noqa: E501
domain_group_moid (str): The DomainGroup ID for this managed object.. [optional] # noqa: E501
diff --git a/intersight/model/bulk_request_all_of.py b/intersight/model/bulk_request_all_of.py
index 7d9ece2fc1..32ebb3e31e 100644
--- a/intersight/model/bulk_request_all_of.py
+++ b/intersight/model/bulk_request_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
@@ -29,11 +29,17 @@
def lazy_import():
from intersight.model.bulk_api_result import BulkApiResult
+ from intersight.model.bulk_http_header import BulkHttpHeader
from intersight.model.bulk_sub_request import BulkSubRequest
+ from intersight.model.bulk_sub_request_obj_relationship import BulkSubRequestObjRelationship
from intersight.model.organization_organization_relationship import OrganizationOrganizationRelationship
+ from intersight.model.workflow_workflow_info_relationship import WorkflowWorkflowInfoRelationship
globals()['BulkApiResult'] = BulkApiResult
+ globals()['BulkHttpHeader'] = BulkHttpHeader
globals()['BulkSubRequest'] = BulkSubRequest
+ globals()['BulkSubRequestObjRelationship'] = BulkSubRequestObjRelationship
globals()['OrganizationOrganizationRelationship'] = OrganizationOrganizationRelationship
+ globals()['WorkflowWorkflowInfoRelationship'] = WorkflowWorkflowInfoRelationship
class BulkRequestAllOf(ModelNormal):
@@ -67,6 +73,23 @@ class BulkRequestAllOf(ModelNormal):
('object_type',): {
'BULK.REQUEST': "bulk.Request",
},
+ ('action_on_error',): {
+ 'STOP': "Stop",
+ 'PROCEED': "Proceed",
+ },
+ ('actions',): {
+ 'None': None,
+ 'CHECKOBJECTPRESENCE': "CheckObjectPresence",
+ 'EXECUTE': "Execute",
+ },
+ ('status',): {
+ 'NOTSTARTED': "NotStarted",
+ 'OBJPRESENCECHECKINPROGRESS': "ObjPresenceCheckInProgress",
+ 'OBJPRESENCECHECKCOMPLETE': "ObjPresenceCheckComplete",
+ 'EXECUTIONINPROGRESS': "ExecutionInProgress",
+ 'COMPLETED': "Completed",
+ 'FAILED': "Failed",
+ },
('verb',): {
'POST': "POST",
'PATCH': "PATCH",
@@ -95,11 +118,24 @@ def openapi_types():
return {
'class_id': (str,), # noqa: E501
'object_type': (str,), # noqa: E501
+ 'action_on_error': (str,), # noqa: E501
+ 'actions': ([str], none_type,), # noqa: E501
+ 'completion_time': (str,), # noqa: E501
+ 'headers': ([BulkHttpHeader], none_type,), # noqa: E501
+ 'num_sub_requests': (int,), # noqa: E501
+ 'org_moid': (str,), # noqa: E501
+ 'request_received_time': (str,), # noqa: E501
'requests': ([BulkSubRequest], none_type,), # noqa: E501
'results': ([BulkApiResult], none_type,), # noqa: E501
+ 'skip_duplicates': (bool,), # noqa: E501
+ 'status': (str,), # noqa: E501
+ 'status_message': (str,), # noqa: E501
'uri': (str,), # noqa: E501
'verb': (str,), # noqa: E501
+ 'async_results': ([BulkSubRequestObjRelationship], none_type,), # noqa: E501
+ 'async_results_failed': ([BulkSubRequestObjRelationship], none_type,), # noqa: E501
'organization': (OrganizationOrganizationRelationship,), # noqa: E501
+ 'workflow_info': (WorkflowWorkflowInfoRelationship,), # noqa: E501
}
@cached_property
@@ -110,11 +146,24 @@ def discriminator():
attribute_map = {
'class_id': 'ClassId', # noqa: E501
'object_type': 'ObjectType', # noqa: E501
+ 'action_on_error': 'ActionOnError', # noqa: E501
+ 'actions': 'Actions', # noqa: E501
+ 'completion_time': 'CompletionTime', # noqa: E501
+ 'headers': 'Headers', # noqa: E501
+ 'num_sub_requests': 'NumSubRequests', # noqa: E501
+ 'org_moid': 'OrgMoid', # noqa: E501
+ 'request_received_time': 'RequestReceivedTime', # noqa: E501
'requests': 'Requests', # noqa: E501
'results': 'Results', # noqa: E501
+ 'skip_duplicates': 'SkipDuplicates', # noqa: E501
+ 'status': 'Status', # noqa: E501
+ 'status_message': 'StatusMessage', # noqa: E501
'uri': 'Uri', # noqa: E501
'verb': 'Verb', # noqa: E501
+ 'async_results': 'AsyncResults', # noqa: E501
+ 'async_results_failed': 'AsyncResultsFailed', # noqa: E501
'organization': 'Organization', # noqa: E501
+ 'workflow_info': 'WorkflowInfo', # noqa: E501
}
_composed_schemas = {}
@@ -167,11 +216,24 @@ def __init__(self, *args, **kwargs): # noqa: E501
Animal class but this time we won't travel
through its discriminator because we passed in
_visited_composed_classes = (Animal,)
+ action_on_error (str): The action to be taken when an error occurs during processing of the request. * `Stop` - Stop the processing of the request after the first error. * `Proceed` - Proceed with the processing of the request even when an error occurs.. [optional] if omitted the server will use the default value of "Stop" # noqa: E501
+ actions ([str], none_type): [optional] # noqa: E501
+ completion_time (str): The timestamp when the request processing completed.. [optional] # noqa: E501
+ headers ([BulkHttpHeader], none_type): [optional] # noqa: E501
+ num_sub_requests (int): The number of sub requests received in this request.. [optional] # noqa: E501
+ org_moid (str): The moid of the organization under which this request was issued.. [optional] # noqa: E501
+ request_received_time (str): The timestamp when the request was received.. [optional] # noqa: E501
requests ([BulkSubRequest], none_type): [optional] # noqa: E501
results ([BulkApiResult], none_type): [optional] # noqa: E501
- uri (str): The URI on which this bulk action is to be performed.. [optional] # noqa: E501
- verb (str): The type of operation to be performed. One of - Post (Create), Patch (Update) or Delete (Remove). * `POST` - Used to create a REST resource. * `PATCH` - Used to update a REST resource. * `DELETE` - Used to delete a REST resource.. [optional] if omitted the server will use the default value of "POST" # noqa: E501
+ skip_duplicates (bool): Skip the already present objects.. [optional] # noqa: E501
+ status (str): The processing status of the Request. * `NotStarted` - Indicates that the request processing has not begun yet. * `ObjPresenceCheckInProgress` - Indicates that the object presence check is in progress for this request. * `ObjPresenceCheckComplete` - Indicates that the object presence check is complete. * `ExecutionInProgress` - Indicates that the request processing is in progress. * `Completed` - Indicates that the request processing has been completed successfully. * `Failed` - Indicates that the processing of this request failed.. [optional] if omitted the server will use the default value of "NotStarted" # noqa: E501
+ status_message (str): The status message corresponding to the status.. [optional] # noqa: E501
+ uri (str): The URI on which this bulk action is to be performed. The value will be used when there is no override in the SubRequest.. [optional] # noqa: E501
+ verb (str): The type of operation to be performed. One of - Post (Create), Patch (Update) or Delete (Remove). The value will be used when there is no override in the SubRequest. * `POST` - Used to create a REST resource. * `PATCH` - Used to update a REST resource. * `DELETE` - Used to delete a REST resource.. [optional] if omitted the server will use the default value of "POST" # noqa: E501
+ async_results ([BulkSubRequestObjRelationship], none_type): An array of relationships to bulkSubRequestObj resources.. [optional] # noqa: E501
+ async_results_failed ([BulkSubRequestObjRelationship], none_type): An array of relationships to bulkSubRequestObj resources.. [optional] # noqa: E501
organization (OrganizationOrganizationRelationship): [optional] # noqa: E501
+ workflow_info (WorkflowWorkflowInfoRelationship): [optional] # noqa: E501
"""
class_id = kwargs.get('class_id', "bulk.Request")
diff --git a/intersight/model/bulk_request_list.py b/intersight/model/bulk_request_list.py
new file mode 100644
index 0000000000..ade030265f
--- /dev/null
+++ b/intersight/model/bulk_request_list.py
@@ -0,0 +1,238 @@
+"""
+ Cisco Intersight
+
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
+
+ The version of the OpenAPI document: 1.0.9-4506
+ Contact: intersight@cisco.com
+ Generated by: https://openapi-generator.tech
+"""
+
+
+import re # noqa: F401
+import sys # noqa: F401
+
+from intersight.model_utils import ( # noqa: F401
+ ApiTypeError,
+ ModelComposed,
+ ModelNormal,
+ ModelSimple,
+ cached_property,
+ change_keys_js_to_python,
+ convert_js_args_to_python_args,
+ date,
+ datetime,
+ file_type,
+ none_type,
+ validate_get_composed_info,
+)
+
+def lazy_import():
+ from intersight.model.bulk_request import BulkRequest
+ from intersight.model.bulk_request_list_all_of import BulkRequestListAllOf
+ from intersight.model.mo_base_response import MoBaseResponse
+ globals()['BulkRequest'] = BulkRequest
+ globals()['BulkRequestListAllOf'] = BulkRequestListAllOf
+ globals()['MoBaseResponse'] = MoBaseResponse
+
+
+class BulkRequestList(ModelComposed):
+ """NOTE: This class is auto generated by OpenAPI Generator.
+ Ref: https://openapi-generator.tech
+
+ Do not edit the class manually.
+
+ Attributes:
+ allowed_values (dict): The key is the tuple path to the attribute
+ and the for var_name this is (var_name,). The value is a dict
+ with a capitalized key describing the allowed value and an allowed
+ value. These dicts store the allowed enum values.
+ attribute_map (dict): The key is attribute name
+ and the value is json key in definition.
+ discriminator_value_class_map (dict): A dict to go from the discriminator
+ variable value to the discriminator class name.
+ validations (dict): The key is the tuple path to the attribute
+ and the for var_name this is (var_name,). The value is a dict
+ that stores validations for max_length, min_length, max_items,
+ min_items, exclusive_maximum, inclusive_maximum, exclusive_minimum,
+ inclusive_minimum, and regex.
+ additional_properties_type (tuple): A tuple of classes accepted
+ as additional properties values.
+ """
+
+ allowed_values = {
+ }
+
+ validations = {
+ }
+
+ @cached_property
+ def additional_properties_type():
+ """
+ This must be a method because a model may have properties that are
+ of type self, this must run after the class is loaded
+ """
+ lazy_import()
+ return (bool, date, datetime, dict, float, int, list, str, none_type,) # noqa: E501
+
+ _nullable = False
+
+ @cached_property
+ def openapi_types():
+ """
+ This must be a method because a model may have properties that are
+ of type self, this must run after the class is loaded
+
+ Returns
+ openapi_types (dict): The key is attribute name
+ and the value is attribute type.
+ """
+ lazy_import()
+ return {
+ 'object_type': (str,), # noqa: E501
+ 'count': (int,), # noqa: E501
+ 'results': ([BulkRequest], none_type,), # noqa: E501
+ }
+
+ @cached_property
+ def discriminator():
+ val = {
+ }
+ if not val:
+ return None
+ return {'object_type': val}
+
+ attribute_map = {
+ 'object_type': 'ObjectType', # noqa: E501
+ 'count': 'Count', # noqa: E501
+ 'results': 'Results', # noqa: E501
+ }
+
+ required_properties = set([
+ '_data_store',
+ '_check_type',
+ '_spec_property_naming',
+ '_path_to_item',
+ '_configuration',
+ '_visited_composed_classes',
+ '_composed_instances',
+ '_var_name_to_model_instances',
+ '_additional_properties_model_instances',
+ ])
+
+ @convert_js_args_to_python_args
+ def __init__(self, object_type, *args, **kwargs): # noqa: E501
+ """BulkRequestList - a model defined in OpenAPI
+
+ Args:
+ object_type (str): A discriminator value to disambiguate the schema of a HTTP GET response body.
+
+ Keyword Args:
+ _check_type (bool): if True, values for parameters in openapi_types
+ will be type checked and a TypeError will be
+ raised if the wrong type is input.
+ Defaults to True
+ _path_to_item (tuple/list): This is a list of keys or values to
+ drill down to the model in received_data
+ when deserializing a response
+ _spec_property_naming (bool): True if the variable names in the input data
+ are serialized names, as specified in the OpenAPI document.
+ False if the variable names in the input data
+ are pythonic names, e.g. snake case (default)
+ _configuration (Configuration): the instance to use when
+ deserializing a file_type parameter.
+ If passed, type conversion is attempted
+ If omitted no type conversion is done.
+ _visited_composed_classes (tuple): This stores a tuple of
+ classes that we have traveled through so that
+ if we see that class again we will not use its
+ discriminator again.
+ When traveling through a discriminator, the
+ composed schema that is
+ is traveled through is added to this set.
+ For example if Animal has a discriminator
+ petType and we pass in "Dog", and the class Dog
+ allOf includes Animal, we move through Animal
+ once using the discriminator, and pick Dog.
+ Then in Dog, we will make an instance of the
+ Animal class but this time we won't travel
+ through its discriminator because we passed in
+ _visited_composed_classes = (Animal,)
+ count (int): The total number of 'bulk.Request' resources matching the request, accross all pages. The 'Count' attribute is included when the HTTP GET request includes the '$inlinecount' parameter.. [optional] # noqa: E501
+ results ([BulkRequest], none_type): The array of 'bulk.Request' resources matching the request.. [optional] # noqa: E501
+ """
+
+ _check_type = kwargs.pop('_check_type', True)
+ _spec_property_naming = kwargs.pop('_spec_property_naming', False)
+ _path_to_item = kwargs.pop('_path_to_item', ())
+ _configuration = kwargs.pop('_configuration', None)
+ _visited_composed_classes = kwargs.pop('_visited_composed_classes', ())
+
+ if args:
+ raise ApiTypeError(
+ "Invalid positional arguments=%s passed to %s. Remove those invalid positional arguments." % (
+ args,
+ self.__class__.__name__,
+ ),
+ path_to_item=_path_to_item,
+ valid_classes=(self.__class__,),
+ )
+
+ self._data_store = {}
+ self._check_type = _check_type
+ self._spec_property_naming = _spec_property_naming
+ self._path_to_item = _path_to_item
+ self._configuration = _configuration
+ self._visited_composed_classes = _visited_composed_classes + (self.__class__,)
+
+ constant_args = {
+ '_check_type': _check_type,
+ '_path_to_item': _path_to_item,
+ '_spec_property_naming': _spec_property_naming,
+ '_configuration': _configuration,
+ '_visited_composed_classes': self._visited_composed_classes,
+ }
+ required_args = {
+ 'object_type': object_type,
+ }
+ model_args = {}
+ model_args.update(required_args)
+ model_args.update(kwargs)
+ composed_info = validate_get_composed_info(
+ constant_args, model_args, self)
+ self._composed_instances = composed_info[0]
+ self._var_name_to_model_instances = composed_info[1]
+ self._additional_properties_model_instances = composed_info[2]
+ unused_args = composed_info[3]
+
+ for var_name, var_value in required_args.items():
+ setattr(self, var_name, var_value)
+ for var_name, var_value in kwargs.items():
+ if var_name in unused_args and \
+ self._configuration is not None and \
+ self._configuration.discard_unknown_keys and \
+ not self._additional_properties_model_instances:
+ # discard variable.
+ continue
+ setattr(self, var_name, var_value)
+
+ @cached_property
+ def _composed_schemas():
+ # we need this here to make our import statements work
+ # we must store _composed_schemas in here so the code is only run
+ # when we invoke this method. If we kept this at the class
+ # level we would get an error beause the class level
+ # code would be run when this module is imported, and these composed
+ # classes don't exist yet because their module has not finished
+ # loading
+ lazy_import()
+ return {
+ 'anyOf': [
+ ],
+ 'allOf': [
+ BulkRequestListAllOf,
+ MoBaseResponse,
+ ],
+ 'oneOf': [
+ ],
+ }
diff --git a/intersight/model/bulk_request_list_all_of.py b/intersight/model/bulk_request_list_all_of.py
new file mode 100644
index 0000000000..7e2488a749
--- /dev/null
+++ b/intersight/model/bulk_request_list_all_of.py
@@ -0,0 +1,175 @@
+"""
+ Cisco Intersight
+
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
+
+ The version of the OpenAPI document: 1.0.9-4506
+ Contact: intersight@cisco.com
+ Generated by: https://openapi-generator.tech
+"""
+
+
+import re # noqa: F401
+import sys # noqa: F401
+
+from intersight.model_utils import ( # noqa: F401
+ ApiTypeError,
+ ModelComposed,
+ ModelNormal,
+ ModelSimple,
+ cached_property,
+ change_keys_js_to_python,
+ convert_js_args_to_python_args,
+ date,
+ datetime,
+ file_type,
+ none_type,
+ validate_get_composed_info,
+)
+
+def lazy_import():
+ from intersight.model.bulk_request import BulkRequest
+ globals()['BulkRequest'] = BulkRequest
+
+
+class BulkRequestListAllOf(ModelNormal):
+ """NOTE: This class is auto generated by OpenAPI Generator.
+ Ref: https://openapi-generator.tech
+
+ Do not edit the class manually.
+
+ Attributes:
+ allowed_values (dict): The key is the tuple path to the attribute
+ and the for var_name this is (var_name,). The value is a dict
+ with a capitalized key describing the allowed value and an allowed
+ value. These dicts store the allowed enum values.
+ attribute_map (dict): The key is attribute name
+ and the value is json key in definition.
+ discriminator_value_class_map (dict): A dict to go from the discriminator
+ variable value to the discriminator class name.
+ validations (dict): The key is the tuple path to the attribute
+ and the for var_name this is (var_name,). The value is a dict
+ that stores validations for max_length, min_length, max_items,
+ min_items, exclusive_maximum, inclusive_maximum, exclusive_minimum,
+ inclusive_minimum, and regex.
+ additional_properties_type (tuple): A tuple of classes accepted
+ as additional properties values.
+ """
+
+ allowed_values = {
+ }
+
+ validations = {
+ }
+
+ additional_properties_type = None
+
+ _nullable = False
+
+ @cached_property
+ def openapi_types():
+ """
+ This must be a method because a model may have properties that are
+ of type self, this must run after the class is loaded
+
+ Returns
+ openapi_types (dict): The key is attribute name
+ and the value is attribute type.
+ """
+ lazy_import()
+ return {
+ 'count': (int,), # noqa: E501
+ 'results': ([BulkRequest], none_type,), # noqa: E501
+ }
+
+ @cached_property
+ def discriminator():
+ return None
+
+
+ attribute_map = {
+ 'count': 'Count', # noqa: E501
+ 'results': 'Results', # noqa: E501
+ }
+
+ _composed_schemas = {}
+
+ required_properties = set([
+ '_data_store',
+ '_check_type',
+ '_spec_property_naming',
+ '_path_to_item',
+ '_configuration',
+ '_visited_composed_classes',
+ ])
+
+ @convert_js_args_to_python_args
+ def __init__(self, *args, **kwargs): # noqa: E501
+ """BulkRequestListAllOf - a model defined in OpenAPI
+
+ Keyword Args:
+ _check_type (bool): if True, values for parameters in openapi_types
+ will be type checked and a TypeError will be
+ raised if the wrong type is input.
+ Defaults to True
+ _path_to_item (tuple/list): This is a list of keys or values to
+ drill down to the model in received_data
+ when deserializing a response
+ _spec_property_naming (bool): True if the variable names in the input data
+ are serialized names, as specified in the OpenAPI document.
+ False if the variable names in the input data
+ are pythonic names, e.g. snake case (default)
+ _configuration (Configuration): the instance to use when
+ deserializing a file_type parameter.
+ If passed, type conversion is attempted
+ If omitted no type conversion is done.
+ _visited_composed_classes (tuple): This stores a tuple of
+ classes that we have traveled through so that
+ if we see that class again we will not use its
+ discriminator again.
+ When traveling through a discriminator, the
+ composed schema that is
+ is traveled through is added to this set.
+ For example if Animal has a discriminator
+ petType and we pass in "Dog", and the class Dog
+ allOf includes Animal, we move through Animal
+ once using the discriminator, and pick Dog.
+ Then in Dog, we will make an instance of the
+ Animal class but this time we won't travel
+ through its discriminator because we passed in
+ _visited_composed_classes = (Animal,)
+ count (int): The total number of 'bulk.Request' resources matching the request, accross all pages. The 'Count' attribute is included when the HTTP GET request includes the '$inlinecount' parameter.. [optional] # noqa: E501
+ results ([BulkRequest], none_type): The array of 'bulk.Request' resources matching the request.. [optional] # noqa: E501
+ """
+
+ _check_type = kwargs.pop('_check_type', True)
+ _spec_property_naming = kwargs.pop('_spec_property_naming', False)
+ _path_to_item = kwargs.pop('_path_to_item', ())
+ _configuration = kwargs.pop('_configuration', None)
+ _visited_composed_classes = kwargs.pop('_visited_composed_classes', ())
+
+ if args:
+ raise ApiTypeError(
+ "Invalid positional arguments=%s passed to %s. Remove those invalid positional arguments." % (
+ args,
+ self.__class__.__name__,
+ ),
+ path_to_item=_path_to_item,
+ valid_classes=(self.__class__,),
+ )
+
+ self._data_store = {}
+ self._check_type = _check_type
+ self._spec_property_naming = _spec_property_naming
+ self._path_to_item = _path_to_item
+ self._configuration = _configuration
+ self._visited_composed_classes = _visited_composed_classes + (self.__class__,)
+
+ for var_name, var_value in kwargs.items():
+ if var_name not in self.attribute_map and \
+ self._configuration is not None and \
+ self._configuration.discard_unknown_keys and \
+ self.additional_properties_type is None:
+ # discard variable.
+ continue
+ setattr(self, var_name, var_value)
diff --git a/intersight/model/bulk_request_relationship.py b/intersight/model/bulk_request_relationship.py
new file mode 100644
index 0000000000..dded35fc8e
--- /dev/null
+++ b/intersight/model/bulk_request_relationship.py
@@ -0,0 +1,1141 @@
+"""
+ Cisco Intersight
+
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
+
+ The version of the OpenAPI document: 1.0.9-4506
+ Contact: intersight@cisco.com
+ Generated by: https://openapi-generator.tech
+"""
+
+
+import re # noqa: F401
+import sys # noqa: F401
+
+from intersight.model_utils import ( # noqa: F401
+ ApiTypeError,
+ ModelComposed,
+ ModelNormal,
+ ModelSimple,
+ cached_property,
+ change_keys_js_to_python,
+ convert_js_args_to_python_args,
+ date,
+ datetime,
+ file_type,
+ none_type,
+ validate_get_composed_info,
+)
+
+def lazy_import():
+ from intersight.model.bulk_api_result import BulkApiResult
+ from intersight.model.bulk_http_header import BulkHttpHeader
+ from intersight.model.bulk_request import BulkRequest
+ from intersight.model.bulk_sub_request import BulkSubRequest
+ from intersight.model.bulk_sub_request_obj_relationship import BulkSubRequestObjRelationship
+ from intersight.model.display_names import DisplayNames
+ from intersight.model.mo_base_mo_relationship import MoBaseMoRelationship
+ from intersight.model.mo_mo_ref import MoMoRef
+ from intersight.model.mo_tag import MoTag
+ from intersight.model.mo_version_context import MoVersionContext
+ from intersight.model.organization_organization_relationship import OrganizationOrganizationRelationship
+ from intersight.model.workflow_workflow_info_relationship import WorkflowWorkflowInfoRelationship
+ globals()['BulkApiResult'] = BulkApiResult
+ globals()['BulkHttpHeader'] = BulkHttpHeader
+ globals()['BulkRequest'] = BulkRequest
+ globals()['BulkSubRequest'] = BulkSubRequest
+ globals()['BulkSubRequestObjRelationship'] = BulkSubRequestObjRelationship
+ globals()['DisplayNames'] = DisplayNames
+ globals()['MoBaseMoRelationship'] = MoBaseMoRelationship
+ globals()['MoMoRef'] = MoMoRef
+ globals()['MoTag'] = MoTag
+ globals()['MoVersionContext'] = MoVersionContext
+ globals()['OrganizationOrganizationRelationship'] = OrganizationOrganizationRelationship
+ globals()['WorkflowWorkflowInfoRelationship'] = WorkflowWorkflowInfoRelationship
+
+
+class BulkRequestRelationship(ModelComposed):
+ """NOTE: This class is auto generated by OpenAPI Generator.
+ Ref: https://openapi-generator.tech
+
+ Do not edit the class manually.
+
+ Attributes:
+ allowed_values (dict): The key is the tuple path to the attribute
+ and the for var_name this is (var_name,). The value is a dict
+ with a capitalized key describing the allowed value and an allowed
+ value. These dicts store the allowed enum values.
+ attribute_map (dict): The key is attribute name
+ and the value is json key in definition.
+ discriminator_value_class_map (dict): A dict to go from the discriminator
+ variable value to the discriminator class name.
+ validations (dict): The key is the tuple path to the attribute
+ and the for var_name this is (var_name,). The value is a dict
+ that stores validations for max_length, min_length, max_items,
+ min_items, exclusive_maximum, inclusive_maximum, exclusive_minimum,
+ inclusive_minimum, and regex.
+ additional_properties_type (tuple): A tuple of classes accepted
+ as additional properties values.
+ """
+
+ allowed_values = {
+ ('class_id',): {
+ 'MO.MOREF': "mo.MoRef",
+ },
+ ('action_on_error',): {
+ 'STOP': "Stop",
+ 'PROCEED': "Proceed",
+ },
+ ('actions',): {
+ 'None': None,
+ 'CHECKOBJECTPRESENCE': "CheckObjectPresence",
+ 'EXECUTE': "Execute",
+ },
+ ('status',): {
+ 'NOTSTARTED': "NotStarted",
+ 'OBJPRESENCECHECKINPROGRESS': "ObjPresenceCheckInProgress",
+ 'OBJPRESENCECHECKCOMPLETE': "ObjPresenceCheckComplete",
+ 'EXECUTIONINPROGRESS': "ExecutionInProgress",
+ 'COMPLETED': "Completed",
+ 'FAILED': "Failed",
+ },
+ ('verb',): {
+ 'POST': "POST",
+ 'PATCH': "PATCH",
+ 'DELETE': "DELETE",
+ },
+ ('object_type',): {
+ 'AAA.AUDITRECORD': "aaa.AuditRecord",
+ 'AAA.RETENTIONCONFIG': "aaa.RetentionConfig",
+ 'AAA.RETENTIONPOLICY': "aaa.RetentionPolicy",
+ 'ACCESS.POLICY': "access.Policy",
+ 'ADAPTER.CONFIGPOLICY': "adapter.ConfigPolicy",
+ 'ADAPTER.EXTETHINTERFACE': "adapter.ExtEthInterface",
+ 'ADAPTER.HOSTETHINTERFACE': "adapter.HostEthInterface",
+ 'ADAPTER.HOSTFCINTERFACE': "adapter.HostFcInterface",
+ 'ADAPTER.HOSTISCSIINTERFACE': "adapter.HostIscsiInterface",
+ 'ADAPTER.UNIT': "adapter.Unit",
+ 'ADAPTER.UNITEXPANDER': "adapter.UnitExpander",
+ 'APPLIANCE.APPSTATUS': "appliance.AppStatus",
+ 'APPLIANCE.AUTORMAPOLICY': "appliance.AutoRmaPolicy",
+ 'APPLIANCE.BACKUP': "appliance.Backup",
+ 'APPLIANCE.BACKUPPOLICY': "appliance.BackupPolicy",
+ 'APPLIANCE.CERTIFICATESETTING': "appliance.CertificateSetting",
+ 'APPLIANCE.DATAEXPORTPOLICY': "appliance.DataExportPolicy",
+ 'APPLIANCE.DEVICECERTIFICATE': "appliance.DeviceCertificate",
+ 'APPLIANCE.DEVICECLAIM': "appliance.DeviceClaim",
+ 'APPLIANCE.DEVICEUPGRADEPOLICY': "appliance.DeviceUpgradePolicy",
+ 'APPLIANCE.DIAGSETTING': "appliance.DiagSetting",
+ 'APPLIANCE.EXTERNALSYSLOGSETTING': "appliance.ExternalSyslogSetting",
+ 'APPLIANCE.FILESYSTEMSTATUS': "appliance.FileSystemStatus",
+ 'APPLIANCE.GROUPSTATUS': "appliance.GroupStatus",
+ 'APPLIANCE.IMAGEBUNDLE': "appliance.ImageBundle",
+ 'APPLIANCE.NODEINFO': "appliance.NodeInfo",
+ 'APPLIANCE.NODESTATUS': "appliance.NodeStatus",
+ 'APPLIANCE.RELEASENOTE': "appliance.ReleaseNote",
+ 'APPLIANCE.REMOTEFILEIMPORT': "appliance.RemoteFileImport",
+ 'APPLIANCE.RESTORE': "appliance.Restore",
+ 'APPLIANCE.SETUPINFO': "appliance.SetupInfo",
+ 'APPLIANCE.SYSTEMINFO': "appliance.SystemInfo",
+ 'APPLIANCE.SYSTEMSTATUS': "appliance.SystemStatus",
+ 'APPLIANCE.UPGRADE': "appliance.Upgrade",
+ 'APPLIANCE.UPGRADEPOLICY': "appliance.UpgradePolicy",
+ 'ASSET.CLUSTERMEMBER': "asset.ClusterMember",
+ 'ASSET.DEPLOYMENT': "asset.Deployment",
+ 'ASSET.DEPLOYMENTDEVICE': "asset.DeploymentDevice",
+ 'ASSET.DEVICECLAIM': "asset.DeviceClaim",
+ 'ASSET.DEVICECONFIGURATION': "asset.DeviceConfiguration",
+ 'ASSET.DEVICECONNECTORMANAGER': "asset.DeviceConnectorManager",
+ 'ASSET.DEVICECONTRACTINFORMATION': "asset.DeviceContractInformation",
+ 'ASSET.DEVICEREGISTRATION': "asset.DeviceRegistration",
+ 'ASSET.SUBSCRIPTION': "asset.Subscription",
+ 'ASSET.SUBSCRIPTIONACCOUNT': "asset.SubscriptionAccount",
+ 'ASSET.SUBSCRIPTIONDEVICECONTRACTINFORMATION': "asset.SubscriptionDeviceContractInformation",
+ 'ASSET.TARGET': "asset.Target",
+ 'BIOS.BOOTDEVICE': "bios.BootDevice",
+ 'BIOS.BOOTMODE': "bios.BootMode",
+ 'BIOS.POLICY': "bios.Policy",
+ 'BIOS.SYSTEMBOOTORDER': "bios.SystemBootOrder",
+ 'BIOS.TOKENSETTINGS': "bios.TokenSettings",
+ 'BIOS.UNIT': "bios.Unit",
+ 'BIOS.VFSELECTMEMORYRASCONFIGURATION': "bios.VfSelectMemoryRasConfiguration",
+ 'BOOT.CDDDEVICE': "boot.CddDevice",
+ 'BOOT.DEVICEBOOTMODE': "boot.DeviceBootMode",
+ 'BOOT.DEVICEBOOTSECURITY': "boot.DeviceBootSecurity",
+ 'BOOT.HDDDEVICE': "boot.HddDevice",
+ 'BOOT.ISCSIDEVICE': "boot.IscsiDevice",
+ 'BOOT.NVMEDEVICE': "boot.NvmeDevice",
+ 'BOOT.PCHSTORAGEDEVICE': "boot.PchStorageDevice",
+ 'BOOT.PRECISIONPOLICY': "boot.PrecisionPolicy",
+ 'BOOT.PXEDEVICE': "boot.PxeDevice",
+ 'BOOT.SANDEVICE': "boot.SanDevice",
+ 'BOOT.SDDEVICE': "boot.SdDevice",
+ 'BOOT.UEFISHELLDEVICE': "boot.UefiShellDevice",
+ 'BOOT.USBDEVICE': "boot.UsbDevice",
+ 'BOOT.VMEDIADEVICE': "boot.VmediaDevice",
+ 'BULK.EXPORT': "bulk.Export",
+ 'BULK.EXPORTEDITEM': "bulk.ExportedItem",
+ 'BULK.MOCLONER': "bulk.MoCloner",
+ 'BULK.MOMERGER': "bulk.MoMerger",
+ 'BULK.REQUEST': "bulk.Request",
+ 'BULK.SUBREQUESTOBJ': "bulk.SubRequestObj",
+ 'CAPABILITY.ADAPTERUNITDESCRIPTOR': "capability.AdapterUnitDescriptor",
+ 'CAPABILITY.CATALOG': "capability.Catalog",
+ 'CAPABILITY.CHASSISDESCRIPTOR': "capability.ChassisDescriptor",
+ 'CAPABILITY.CHASSISMANUFACTURINGDEF': "capability.ChassisManufacturingDef",
+ 'CAPABILITY.CIMCFIRMWAREDESCRIPTOR': "capability.CimcFirmwareDescriptor",
+ 'CAPABILITY.EQUIPMENTPHYSICALDEF': "capability.EquipmentPhysicalDef",
+ 'CAPABILITY.EQUIPMENTSLOTARRAY': "capability.EquipmentSlotArray",
+ 'CAPABILITY.FANMODULEDESCRIPTOR': "capability.FanModuleDescriptor",
+ 'CAPABILITY.FANMODULEMANUFACTURINGDEF': "capability.FanModuleManufacturingDef",
+ 'CAPABILITY.IOCARDCAPABILITYDEF': "capability.IoCardCapabilityDef",
+ 'CAPABILITY.IOCARDDESCRIPTOR': "capability.IoCardDescriptor",
+ 'CAPABILITY.IOCARDMANUFACTURINGDEF': "capability.IoCardManufacturingDef",
+ 'CAPABILITY.PORTGROUPAGGREGATIONDEF': "capability.PortGroupAggregationDef",
+ 'CAPABILITY.PSUDESCRIPTOR': "capability.PsuDescriptor",
+ 'CAPABILITY.PSUMANUFACTURINGDEF': "capability.PsuManufacturingDef",
+ 'CAPABILITY.SERVERSCHEMADESCRIPTOR': "capability.ServerSchemaDescriptor",
+ 'CAPABILITY.SIOCMODULECAPABILITYDEF': "capability.SiocModuleCapabilityDef",
+ 'CAPABILITY.SIOCMODULEDESCRIPTOR': "capability.SiocModuleDescriptor",
+ 'CAPABILITY.SIOCMODULEMANUFACTURINGDEF': "capability.SiocModuleManufacturingDef",
+ 'CAPABILITY.SWITCHCAPABILITY': "capability.SwitchCapability",
+ 'CAPABILITY.SWITCHDESCRIPTOR': "capability.SwitchDescriptor",
+ 'CAPABILITY.SWITCHMANUFACTURINGDEF': "capability.SwitchManufacturingDef",
+ 'CERTIFICATEMANAGEMENT.POLICY': "certificatemanagement.Policy",
+ 'CHASSIS.CONFIGCHANGEDETAIL': "chassis.ConfigChangeDetail",
+ 'CHASSIS.CONFIGIMPORT': "chassis.ConfigImport",
+ 'CHASSIS.CONFIGRESULT': "chassis.ConfigResult",
+ 'CHASSIS.CONFIGRESULTENTRY': "chassis.ConfigResultEntry",
+ 'CHASSIS.IOMPROFILE': "chassis.IomProfile",
+ 'CHASSIS.PROFILE': "chassis.Profile",
+ 'CLOUD.AWSBILLINGUNIT': "cloud.AwsBillingUnit",
+ 'CLOUD.AWSKEYPAIR': "cloud.AwsKeyPair",
+ 'CLOUD.AWSNETWORKINTERFACE': "cloud.AwsNetworkInterface",
+ 'CLOUD.AWSORGANIZATIONALUNIT': "cloud.AwsOrganizationalUnit",
+ 'CLOUD.AWSSECURITYGROUP': "cloud.AwsSecurityGroup",
+ 'CLOUD.AWSSUBNET': "cloud.AwsSubnet",
+ 'CLOUD.AWSVIRTUALMACHINE': "cloud.AwsVirtualMachine",
+ 'CLOUD.AWSVOLUME': "cloud.AwsVolume",
+ 'CLOUD.AWSVPC': "cloud.AwsVpc",
+ 'CLOUD.COLLECTINVENTORY': "cloud.CollectInventory",
+ 'CLOUD.REGIONS': "cloud.Regions",
+ 'CLOUD.SKUCONTAINERTYPE': "cloud.SkuContainerType",
+ 'CLOUD.SKUDATABASETYPE': "cloud.SkuDatabaseType",
+ 'CLOUD.SKUINSTANCETYPE': "cloud.SkuInstanceType",
+ 'CLOUD.SKUNETWORKTYPE': "cloud.SkuNetworkType",
+ 'CLOUD.SKUVOLUMETYPE': "cloud.SkuVolumeType",
+ 'CLOUD.TFCAGENTPOOL': "cloud.TfcAgentpool",
+ 'CLOUD.TFCORGANIZATION': "cloud.TfcOrganization",
+ 'CLOUD.TFCWORKSPACE': "cloud.TfcWorkspace",
+ 'COMM.HTTPPROXYPOLICY': "comm.HttpProxyPolicy",
+ 'COMPUTE.BLADE': "compute.Blade",
+ 'COMPUTE.BLADEIDENTITY': "compute.BladeIdentity",
+ 'COMPUTE.BOARD': "compute.Board",
+ 'COMPUTE.MAPPING': "compute.Mapping",
+ 'COMPUTE.PHYSICALSUMMARY': "compute.PhysicalSummary",
+ 'COMPUTE.RACKUNIT': "compute.RackUnit",
+ 'COMPUTE.RACKUNITIDENTITY': "compute.RackUnitIdentity",
+ 'COMPUTE.SERVERSETTING': "compute.ServerSetting",
+ 'COMPUTE.VMEDIA': "compute.Vmedia",
+ 'COND.ALARM': "cond.Alarm",
+ 'COND.ALARMAGGREGATION': "cond.AlarmAggregation",
+ 'COND.HCLSTATUS': "cond.HclStatus",
+ 'COND.HCLSTATUSDETAIL': "cond.HclStatusDetail",
+ 'COND.HCLSTATUSJOB': "cond.HclStatusJob",
+ 'CONNECTORPACK.CONNECTORPACKUPGRADE': "connectorpack.ConnectorPackUpgrade",
+ 'CONNECTORPACK.UPGRADEIMPACT': "connectorpack.UpgradeImpact",
+ 'CRD.CUSTOMRESOURCE': "crd.CustomResource",
+ 'DEVICECONNECTOR.POLICY': "deviceconnector.Policy",
+ 'EQUIPMENT.CHASSIS': "equipment.Chassis",
+ 'EQUIPMENT.CHASSISIDENTITY': "equipment.ChassisIdentity",
+ 'EQUIPMENT.CHASSISOPERATION': "equipment.ChassisOperation",
+ 'EQUIPMENT.DEVICESUMMARY': "equipment.DeviceSummary",
+ 'EQUIPMENT.EXPANDERMODULE': "equipment.ExpanderModule",
+ 'EQUIPMENT.FAN': "equipment.Fan",
+ 'EQUIPMENT.FANCONTROL': "equipment.FanControl",
+ 'EQUIPMENT.FANMODULE': "equipment.FanModule",
+ 'EQUIPMENT.FEX': "equipment.Fex",
+ 'EQUIPMENT.FEXIDENTITY': "equipment.FexIdentity",
+ 'EQUIPMENT.FEXOPERATION': "equipment.FexOperation",
+ 'EQUIPMENT.FRU': "equipment.Fru",
+ 'EQUIPMENT.IDENTITYSUMMARY': "equipment.IdentitySummary",
+ 'EQUIPMENT.IOCARD': "equipment.IoCard",
+ 'EQUIPMENT.IOCARDOPERATION': "equipment.IoCardOperation",
+ 'EQUIPMENT.IOEXPANDER': "equipment.IoExpander",
+ 'EQUIPMENT.LOCATORLED': "equipment.LocatorLed",
+ 'EQUIPMENT.PSU': "equipment.Psu",
+ 'EQUIPMENT.PSUCONTROL': "equipment.PsuControl",
+ 'EQUIPMENT.RACKENCLOSURE': "equipment.RackEnclosure",
+ 'EQUIPMENT.RACKENCLOSURESLOT': "equipment.RackEnclosureSlot",
+ 'EQUIPMENT.SHAREDIOMODULE': "equipment.SharedIoModule",
+ 'EQUIPMENT.SWITCHCARD': "equipment.SwitchCard",
+ 'EQUIPMENT.SYSTEMIOCONTROLLER': "equipment.SystemIoController",
+ 'EQUIPMENT.TPM': "equipment.Tpm",
+ 'EQUIPMENT.TRANSCEIVER': "equipment.Transceiver",
+ 'ETHER.HOSTPORT': "ether.HostPort",
+ 'ETHER.NETWORKPORT': "ether.NetworkPort",
+ 'ETHER.PHYSICALPORT': "ether.PhysicalPort",
+ 'ETHER.PORTCHANNEL': "ether.PortChannel",
+ 'EXTERNALSITE.AUTHORIZATION': "externalsite.Authorization",
+ 'FABRIC.APPLIANCEPCROLE': "fabric.AppliancePcRole",
+ 'FABRIC.APPLIANCEROLE': "fabric.ApplianceRole",
+ 'FABRIC.CONFIGCHANGEDETAIL': "fabric.ConfigChangeDetail",
+ 'FABRIC.CONFIGRESULT': "fabric.ConfigResult",
+ 'FABRIC.CONFIGRESULTENTRY': "fabric.ConfigResultEntry",
+ 'FABRIC.ELEMENTIDENTITY': "fabric.ElementIdentity",
+ 'FABRIC.ESTIMATEIMPACT': "fabric.EstimateImpact",
+ 'FABRIC.ETHNETWORKCONTROLPOLICY': "fabric.EthNetworkControlPolicy",
+ 'FABRIC.ETHNETWORKGROUPPOLICY': "fabric.EthNetworkGroupPolicy",
+ 'FABRIC.ETHNETWORKPOLICY': "fabric.EthNetworkPolicy",
+ 'FABRIC.FCNETWORKPOLICY': "fabric.FcNetworkPolicy",
+ 'FABRIC.FCUPLINKPCROLE': "fabric.FcUplinkPcRole",
+ 'FABRIC.FCUPLINKROLE': "fabric.FcUplinkRole",
+ 'FABRIC.FCOEUPLINKPCROLE': "fabric.FcoeUplinkPcRole",
+ 'FABRIC.FCOEUPLINKROLE': "fabric.FcoeUplinkRole",
+ 'FABRIC.FLOWCONTROLPOLICY': "fabric.FlowControlPolicy",
+ 'FABRIC.LINKAGGREGATIONPOLICY': "fabric.LinkAggregationPolicy",
+ 'FABRIC.LINKCONTROLPOLICY': "fabric.LinkControlPolicy",
+ 'FABRIC.MULTICASTPOLICY': "fabric.MulticastPolicy",
+ 'FABRIC.PCMEMBER': "fabric.PcMember",
+ 'FABRIC.PCOPERATION': "fabric.PcOperation",
+ 'FABRIC.PORTMODE': "fabric.PortMode",
+ 'FABRIC.PORTOPERATION': "fabric.PortOperation",
+ 'FABRIC.PORTPOLICY': "fabric.PortPolicy",
+ 'FABRIC.SERVERROLE': "fabric.ServerRole",
+ 'FABRIC.SWITCHCLUSTERPROFILE': "fabric.SwitchClusterProfile",
+ 'FABRIC.SWITCHCONTROLPOLICY': "fabric.SwitchControlPolicy",
+ 'FABRIC.SWITCHPROFILE': "fabric.SwitchProfile",
+ 'FABRIC.SYSTEMQOSPOLICY': "fabric.SystemQosPolicy",
+ 'FABRIC.UPLINKPCROLE': "fabric.UplinkPcRole",
+ 'FABRIC.UPLINKROLE': "fabric.UplinkRole",
+ 'FABRIC.VLAN': "fabric.Vlan",
+ 'FABRIC.VSAN': "fabric.Vsan",
+ 'FAULT.INSTANCE': "fault.Instance",
+ 'FC.PHYSICALPORT': "fc.PhysicalPort",
+ 'FC.PORTCHANNEL': "fc.PortChannel",
+ 'FCPOOL.FCBLOCK': "fcpool.FcBlock",
+ 'FCPOOL.LEASE': "fcpool.Lease",
+ 'FCPOOL.POOL': "fcpool.Pool",
+ 'FCPOOL.POOLMEMBER': "fcpool.PoolMember",
+ 'FCPOOL.UNIVERSE': "fcpool.Universe",
+ 'FEEDBACK.FEEDBACKPOST': "feedback.FeedbackPost",
+ 'FIRMWARE.BIOSDESCRIPTOR': "firmware.BiosDescriptor",
+ 'FIRMWARE.BOARDCONTROLLERDESCRIPTOR': "firmware.BoardControllerDescriptor",
+ 'FIRMWARE.CHASSISUPGRADE': "firmware.ChassisUpgrade",
+ 'FIRMWARE.CIMCDESCRIPTOR': "firmware.CimcDescriptor",
+ 'FIRMWARE.DIMMDESCRIPTOR': "firmware.DimmDescriptor",
+ 'FIRMWARE.DISTRIBUTABLE': "firmware.Distributable",
+ 'FIRMWARE.DISTRIBUTABLEMETA': "firmware.DistributableMeta",
+ 'FIRMWARE.DRIVEDESCRIPTOR': "firmware.DriveDescriptor",
+ 'FIRMWARE.DRIVERDISTRIBUTABLE': "firmware.DriverDistributable",
+ 'FIRMWARE.EULA': "firmware.Eula",
+ 'FIRMWARE.FIRMWARESUMMARY': "firmware.FirmwareSummary",
+ 'FIRMWARE.GPUDESCRIPTOR': "firmware.GpuDescriptor",
+ 'FIRMWARE.HBADESCRIPTOR': "firmware.HbaDescriptor",
+ 'FIRMWARE.IOMDESCRIPTOR': "firmware.IomDescriptor",
+ 'FIRMWARE.MSWITCHDESCRIPTOR': "firmware.MswitchDescriptor",
+ 'FIRMWARE.NXOSDESCRIPTOR': "firmware.NxosDescriptor",
+ 'FIRMWARE.PCIEDESCRIPTOR': "firmware.PcieDescriptor",
+ 'FIRMWARE.PSUDESCRIPTOR': "firmware.PsuDescriptor",
+ 'FIRMWARE.RUNNINGFIRMWARE': "firmware.RunningFirmware",
+ 'FIRMWARE.SASEXPANDERDESCRIPTOR': "firmware.SasExpanderDescriptor",
+ 'FIRMWARE.SERVERCONFIGURATIONUTILITYDISTRIBUTABLE': "firmware.ServerConfigurationUtilityDistributable",
+ 'FIRMWARE.STORAGECONTROLLERDESCRIPTOR': "firmware.StorageControllerDescriptor",
+ 'FIRMWARE.SWITCHUPGRADE': "firmware.SwitchUpgrade",
+ 'FIRMWARE.UNSUPPORTEDVERSIONUPGRADE': "firmware.UnsupportedVersionUpgrade",
+ 'FIRMWARE.UPGRADE': "firmware.Upgrade",
+ 'FIRMWARE.UPGRADEIMPACT': "firmware.UpgradeImpact",
+ 'FIRMWARE.UPGRADEIMPACTSTATUS': "firmware.UpgradeImpactStatus",
+ 'FIRMWARE.UPGRADESTATUS': "firmware.UpgradeStatus",
+ 'FORECAST.CATALOG': "forecast.Catalog",
+ 'FORECAST.DEFINITION': "forecast.Definition",
+ 'FORECAST.INSTANCE': "forecast.Instance",
+ 'GRAPHICS.CARD': "graphics.Card",
+ 'GRAPHICS.CONTROLLER': "graphics.Controller",
+ 'HCL.COMPATIBILITYSTATUS': "hcl.CompatibilityStatus",
+ 'HCL.DRIVERIMAGE': "hcl.DriverImage",
+ 'HCL.EXEMPTEDCATALOG': "hcl.ExemptedCatalog",
+ 'HCL.HYPERFLEXSOFTWARECOMPATIBILITYINFO': "hcl.HyperflexSoftwareCompatibilityInfo",
+ 'HCL.OPERATINGSYSTEM': "hcl.OperatingSystem",
+ 'HCL.OPERATINGSYSTEMVENDOR': "hcl.OperatingSystemVendor",
+ 'HCL.SUPPORTEDDRIVERNAME': "hcl.SupportedDriverName",
+ 'HYPERFLEX.ALARM': "hyperflex.Alarm",
+ 'HYPERFLEX.APPCATALOG': "hyperflex.AppCatalog",
+ 'HYPERFLEX.AUTOSUPPORTPOLICY': "hyperflex.AutoSupportPolicy",
+ 'HYPERFLEX.BACKUPCLUSTER': "hyperflex.BackupCluster",
+ 'HYPERFLEX.CAPABILITYINFO': "hyperflex.CapabilityInfo",
+ 'HYPERFLEX.CISCOHYPERVISORMANAGER': "hyperflex.CiscoHypervisorManager",
+ 'HYPERFLEX.CLUSTER': "hyperflex.Cluster",
+ 'HYPERFLEX.CLUSTERBACKUPPOLICY': "hyperflex.ClusterBackupPolicy",
+ 'HYPERFLEX.CLUSTERBACKUPPOLICYDEPLOYMENT': "hyperflex.ClusterBackupPolicyDeployment",
+ 'HYPERFLEX.CLUSTERHEALTHCHECKEXECUTIONSNAPSHOT': "hyperflex.ClusterHealthCheckExecutionSnapshot",
+ 'HYPERFLEX.CLUSTERNETWORKPOLICY': "hyperflex.ClusterNetworkPolicy",
+ 'HYPERFLEX.CLUSTERPROFILE': "hyperflex.ClusterProfile",
+ 'HYPERFLEX.CLUSTERREPLICATIONNETWORKPOLICY': "hyperflex.ClusterReplicationNetworkPolicy",
+ 'HYPERFLEX.CLUSTERREPLICATIONNETWORKPOLICYDEPLOYMENT': "hyperflex.ClusterReplicationNetworkPolicyDeployment",
+ 'HYPERFLEX.CLUSTERSTORAGEPOLICY': "hyperflex.ClusterStoragePolicy",
+ 'HYPERFLEX.CONFIGRESULT': "hyperflex.ConfigResult",
+ 'HYPERFLEX.CONFIGRESULTENTRY': "hyperflex.ConfigResultEntry",
+ 'HYPERFLEX.DATAPROTECTIONPEER': "hyperflex.DataProtectionPeer",
+ 'HYPERFLEX.DATASTORESTATISTIC': "hyperflex.DatastoreStatistic",
+ 'HYPERFLEX.DEVICEPACKAGEDOWNLOADSTATE': "hyperflex.DevicePackageDownloadState",
+ 'HYPERFLEX.DRIVE': "hyperflex.Drive",
+ 'HYPERFLEX.EXTFCSTORAGEPOLICY': "hyperflex.ExtFcStoragePolicy",
+ 'HYPERFLEX.EXTISCSISTORAGEPOLICY': "hyperflex.ExtIscsiStoragePolicy",
+ 'HYPERFLEX.FEATURELIMITEXTERNAL': "hyperflex.FeatureLimitExternal",
+ 'HYPERFLEX.FEATURELIMITINTERNAL': "hyperflex.FeatureLimitInternal",
+ 'HYPERFLEX.HEALTH': "hyperflex.Health",
+ 'HYPERFLEX.HEALTHCHECKDEFINITION': "hyperflex.HealthCheckDefinition",
+ 'HYPERFLEX.HEALTHCHECKEXECUTION': "hyperflex.HealthCheckExecution",
+ 'HYPERFLEX.HEALTHCHECKEXECUTIONSNAPSHOT': "hyperflex.HealthCheckExecutionSnapshot",
+ 'HYPERFLEX.HEALTHCHECKPACKAGECHECKSUM': "hyperflex.HealthCheckPackageChecksum",
+ 'HYPERFLEX.HXAPCLUSTER': "hyperflex.HxapCluster",
+ 'HYPERFLEX.HXAPDATACENTER': "hyperflex.HxapDatacenter",
+ 'HYPERFLEX.HXAPDVUPLINK': "hyperflex.HxapDvUplink",
+ 'HYPERFLEX.HXAPDVSWITCH': "hyperflex.HxapDvswitch",
+ 'HYPERFLEX.HXAPHOST': "hyperflex.HxapHost",
+ 'HYPERFLEX.HXAPHOSTINTERFACE': "hyperflex.HxapHostInterface",
+ 'HYPERFLEX.HXAPHOSTVSWITCH': "hyperflex.HxapHostVswitch",
+ 'HYPERFLEX.HXAPNETWORK': "hyperflex.HxapNetwork",
+ 'HYPERFLEX.HXAPVIRTUALDISK': "hyperflex.HxapVirtualDisk",
+ 'HYPERFLEX.HXAPVIRTUALMACHINE': "hyperflex.HxapVirtualMachine",
+ 'HYPERFLEX.HXAPVIRTUALMACHINENETWORKINTERFACE': "hyperflex.HxapVirtualMachineNetworkInterface",
+ 'HYPERFLEX.HXDPVERSION': "hyperflex.HxdpVersion",
+ 'HYPERFLEX.LICENSE': "hyperflex.License",
+ 'HYPERFLEX.LOCALCREDENTIALPOLICY': "hyperflex.LocalCredentialPolicy",
+ 'HYPERFLEX.NODE': "hyperflex.Node",
+ 'HYPERFLEX.NODECONFIGPOLICY': "hyperflex.NodeConfigPolicy",
+ 'HYPERFLEX.NODEPROFILE': "hyperflex.NodeProfile",
+ 'HYPERFLEX.PROXYSETTINGPOLICY': "hyperflex.ProxySettingPolicy",
+ 'HYPERFLEX.SERVERFIRMWAREVERSION': "hyperflex.ServerFirmwareVersion",
+ 'HYPERFLEX.SERVERFIRMWAREVERSIONENTRY': "hyperflex.ServerFirmwareVersionEntry",
+ 'HYPERFLEX.SERVERMODEL': "hyperflex.ServerModel",
+ 'HYPERFLEX.SOFTWAREDISTRIBUTIONCOMPONENT': "hyperflex.SoftwareDistributionComponent",
+ 'HYPERFLEX.SOFTWAREDISTRIBUTIONENTRY': "hyperflex.SoftwareDistributionEntry",
+ 'HYPERFLEX.SOFTWAREDISTRIBUTIONVERSION': "hyperflex.SoftwareDistributionVersion",
+ 'HYPERFLEX.SOFTWAREVERSIONPOLICY': "hyperflex.SoftwareVersionPolicy",
+ 'HYPERFLEX.STORAGECONTAINER': "hyperflex.StorageContainer",
+ 'HYPERFLEX.SYSCONFIGPOLICY': "hyperflex.SysConfigPolicy",
+ 'HYPERFLEX.UCSMCONFIGPOLICY': "hyperflex.UcsmConfigPolicy",
+ 'HYPERFLEX.VCENTERCONFIGPOLICY': "hyperflex.VcenterConfigPolicy",
+ 'HYPERFLEX.VMBACKUPINFO': "hyperflex.VmBackupInfo",
+ 'HYPERFLEX.VMIMPORTOPERATION': "hyperflex.VmImportOperation",
+ 'HYPERFLEX.VMRESTOREOPERATION': "hyperflex.VmRestoreOperation",
+ 'HYPERFLEX.VMSNAPSHOTINFO': "hyperflex.VmSnapshotInfo",
+ 'HYPERFLEX.VOLUME': "hyperflex.Volume",
+ 'HYPERFLEX.WITNESSCONFIGURATION': "hyperflex.WitnessConfiguration",
+ 'IAAS.CONNECTORPACK': "iaas.ConnectorPack",
+ 'IAAS.DEVICESTATUS': "iaas.DeviceStatus",
+ 'IAAS.DIAGNOSTICMESSAGES': "iaas.DiagnosticMessages",
+ 'IAAS.LICENSEINFO': "iaas.LicenseInfo",
+ 'IAAS.MOSTRUNTASKS': "iaas.MostRunTasks",
+ 'IAAS.SERVICEREQUEST': "iaas.ServiceRequest",
+ 'IAAS.UCSDINFO': "iaas.UcsdInfo",
+ 'IAAS.UCSDMANAGEDINFRA': "iaas.UcsdManagedInfra",
+ 'IAAS.UCSDMESSAGES': "iaas.UcsdMessages",
+ 'IAM.ACCOUNT': "iam.Account",
+ 'IAM.ACCOUNTEXPERIENCE': "iam.AccountExperience",
+ 'IAM.APIKEY': "iam.ApiKey",
+ 'IAM.APPREGISTRATION': "iam.AppRegistration",
+ 'IAM.BANNERMESSAGE': "iam.BannerMessage",
+ 'IAM.CERTIFICATE': "iam.Certificate",
+ 'IAM.CERTIFICATEREQUEST': "iam.CertificateRequest",
+ 'IAM.DOMAINGROUP': "iam.DomainGroup",
+ 'IAM.ENDPOINTPRIVILEGE': "iam.EndPointPrivilege",
+ 'IAM.ENDPOINTROLE': "iam.EndPointRole",
+ 'IAM.ENDPOINTUSER': "iam.EndPointUser",
+ 'IAM.ENDPOINTUSERPOLICY': "iam.EndPointUserPolicy",
+ 'IAM.ENDPOINTUSERROLE': "iam.EndPointUserRole",
+ 'IAM.IDP': "iam.Idp",
+ 'IAM.IDPREFERENCE': "iam.IdpReference",
+ 'IAM.IPACCESSMANAGEMENT': "iam.IpAccessManagement",
+ 'IAM.IPADDRESS': "iam.IpAddress",
+ 'IAM.LDAPGROUP': "iam.LdapGroup",
+ 'IAM.LDAPPOLICY': "iam.LdapPolicy",
+ 'IAM.LDAPPROVIDER': "iam.LdapProvider",
+ 'IAM.LOCALUSERPASSWORD': "iam.LocalUserPassword",
+ 'IAM.LOCALUSERPASSWORDPOLICY': "iam.LocalUserPasswordPolicy",
+ 'IAM.OAUTHTOKEN': "iam.OAuthToken",
+ 'IAM.PERMISSION': "iam.Permission",
+ 'IAM.PRIVATEKEYSPEC': "iam.PrivateKeySpec",
+ 'IAM.PRIVILEGE': "iam.Privilege",
+ 'IAM.PRIVILEGESET': "iam.PrivilegeSet",
+ 'IAM.QUALIFIER': "iam.Qualifier",
+ 'IAM.RESOURCELIMITS': "iam.ResourceLimits",
+ 'IAM.RESOURCEPERMISSION': "iam.ResourcePermission",
+ 'IAM.RESOURCEROLES': "iam.ResourceRoles",
+ 'IAM.ROLE': "iam.Role",
+ 'IAM.SECURITYHOLDER': "iam.SecurityHolder",
+ 'IAM.SERVICEPROVIDER': "iam.ServiceProvider",
+ 'IAM.SESSION': "iam.Session",
+ 'IAM.SESSIONLIMITS': "iam.SessionLimits",
+ 'IAM.SYSTEM': "iam.System",
+ 'IAM.TRUSTPOINT': "iam.TrustPoint",
+ 'IAM.USER': "iam.User",
+ 'IAM.USERGROUP': "iam.UserGroup",
+ 'IAM.USERPREFERENCE': "iam.UserPreference",
+ 'INVENTORY.DEVICEINFO': "inventory.DeviceInfo",
+ 'INVENTORY.DNMOBINDING': "inventory.DnMoBinding",
+ 'INVENTORY.GENERICINVENTORY': "inventory.GenericInventory",
+ 'INVENTORY.GENERICINVENTORYHOLDER': "inventory.GenericInventoryHolder",
+ 'INVENTORY.REQUEST': "inventory.Request",
+ 'IPMIOVERLAN.POLICY': "ipmioverlan.Policy",
+ 'IPPOOL.BLOCKLEASE': "ippool.BlockLease",
+ 'IPPOOL.IPLEASE': "ippool.IpLease",
+ 'IPPOOL.POOL': "ippool.Pool",
+ 'IPPOOL.POOLMEMBER': "ippool.PoolMember",
+ 'IPPOOL.SHADOWBLOCK': "ippool.ShadowBlock",
+ 'IPPOOL.SHADOWPOOL': "ippool.ShadowPool",
+ 'IPPOOL.UNIVERSE': "ippool.Universe",
+ 'IQNPOOL.BLOCK': "iqnpool.Block",
+ 'IQNPOOL.LEASE': "iqnpool.Lease",
+ 'IQNPOOL.POOL': "iqnpool.Pool",
+ 'IQNPOOL.POOLMEMBER': "iqnpool.PoolMember",
+ 'IQNPOOL.UNIVERSE': "iqnpool.Universe",
+ 'IWOTENANT.TENANTSTATUS': "iwotenant.TenantStatus",
+ 'KUBERNETES.ACICNIAPIC': "kubernetes.AciCniApic",
+ 'KUBERNETES.ACICNIPROFILE': "kubernetes.AciCniProfile",
+ 'KUBERNETES.ACICNITENANTCLUSTERALLOCATION': "kubernetes.AciCniTenantClusterAllocation",
+ 'KUBERNETES.ADDONDEFINITION': "kubernetes.AddonDefinition",
+ 'KUBERNETES.ADDONPOLICY': "kubernetes.AddonPolicy",
+ 'KUBERNETES.ADDONREPOSITORY': "kubernetes.AddonRepository",
+ 'KUBERNETES.BAREMETALNODEPROFILE': "kubernetes.BaremetalNodeProfile",
+ 'KUBERNETES.CATALOG': "kubernetes.Catalog",
+ 'KUBERNETES.CLUSTER': "kubernetes.Cluster",
+ 'KUBERNETES.CLUSTERADDONPROFILE': "kubernetes.ClusterAddonProfile",
+ 'KUBERNETES.CLUSTERPROFILE': "kubernetes.ClusterProfile",
+ 'KUBERNETES.CONFIGRESULT': "kubernetes.ConfigResult",
+ 'KUBERNETES.CONFIGRESULTENTRY': "kubernetes.ConfigResultEntry",
+ 'KUBERNETES.CONTAINERRUNTIMEPOLICY': "kubernetes.ContainerRuntimePolicy",
+ 'KUBERNETES.DAEMONSET': "kubernetes.DaemonSet",
+ 'KUBERNETES.DEPLOYMENT': "kubernetes.Deployment",
+ 'KUBERNETES.INGRESS': "kubernetes.Ingress",
+ 'KUBERNETES.NETWORKPOLICY': "kubernetes.NetworkPolicy",
+ 'KUBERNETES.NODE': "kubernetes.Node",
+ 'KUBERNETES.NODEGROUPPROFILE': "kubernetes.NodeGroupProfile",
+ 'KUBERNETES.POD': "kubernetes.Pod",
+ 'KUBERNETES.SERVICE': "kubernetes.Service",
+ 'KUBERNETES.STATEFULSET': "kubernetes.StatefulSet",
+ 'KUBERNETES.SYSCONFIGPOLICY': "kubernetes.SysConfigPolicy",
+ 'KUBERNETES.TRUSTEDREGISTRIESPOLICY': "kubernetes.TrustedRegistriesPolicy",
+ 'KUBERNETES.VERSION': "kubernetes.Version",
+ 'KUBERNETES.VERSIONPOLICY': "kubernetes.VersionPolicy",
+ 'KUBERNETES.VIRTUALMACHINEINFRACONFIGPOLICY': "kubernetes.VirtualMachineInfraConfigPolicy",
+ 'KUBERNETES.VIRTUALMACHINEINFRASTRUCTUREPROVIDER': "kubernetes.VirtualMachineInfrastructureProvider",
+ 'KUBERNETES.VIRTUALMACHINEINSTANCETYPE': "kubernetes.VirtualMachineInstanceType",
+ 'KUBERNETES.VIRTUALMACHINENODEPROFILE': "kubernetes.VirtualMachineNodeProfile",
+ 'KVM.POLICY': "kvm.Policy",
+ 'KVM.SESSION': "kvm.Session",
+ 'KVM.TUNNEL': "kvm.Tunnel",
+ 'KVM.VMCONSOLE': "kvm.VmConsole",
+ 'LICENSE.ACCOUNTLICENSEDATA': "license.AccountLicenseData",
+ 'LICENSE.CUSTOMEROP': "license.CustomerOp",
+ 'LICENSE.IWOCUSTOMEROP': "license.IwoCustomerOp",
+ 'LICENSE.IWOLICENSECOUNT': "license.IwoLicenseCount",
+ 'LICENSE.LICENSEINFO': "license.LicenseInfo",
+ 'LICENSE.LICENSERESERVATIONOP': "license.LicenseReservationOp",
+ 'LICENSE.SMARTLICENSETOKEN': "license.SmartlicenseToken",
+ 'LS.SERVICEPROFILE': "ls.ServiceProfile",
+ 'MACPOOL.IDBLOCK': "macpool.IdBlock",
+ 'MACPOOL.LEASE': "macpool.Lease",
+ 'MACPOOL.POOL': "macpool.Pool",
+ 'MACPOOL.POOLMEMBER': "macpool.PoolMember",
+ 'MACPOOL.UNIVERSE': "macpool.Universe",
+ 'MANAGEMENT.CONTROLLER': "management.Controller",
+ 'MANAGEMENT.ENTITY': "management.Entity",
+ 'MANAGEMENT.INTERFACE': "management.Interface",
+ 'MEMORY.ARRAY': "memory.Array",
+ 'MEMORY.PERSISTENTMEMORYCONFIGRESULT': "memory.PersistentMemoryConfigResult",
+ 'MEMORY.PERSISTENTMEMORYCONFIGURATION': "memory.PersistentMemoryConfiguration",
+ 'MEMORY.PERSISTENTMEMORYNAMESPACE': "memory.PersistentMemoryNamespace",
+ 'MEMORY.PERSISTENTMEMORYNAMESPACECONFIGRESULT': "memory.PersistentMemoryNamespaceConfigResult",
+ 'MEMORY.PERSISTENTMEMORYPOLICY': "memory.PersistentMemoryPolicy",
+ 'MEMORY.PERSISTENTMEMORYREGION': "memory.PersistentMemoryRegion",
+ 'MEMORY.PERSISTENTMEMORYUNIT': "memory.PersistentMemoryUnit",
+ 'MEMORY.UNIT': "memory.Unit",
+ 'META.DEFINITION': "meta.Definition",
+ 'NETWORK.ELEMENT': "network.Element",
+ 'NETWORK.ELEMENTSUMMARY': "network.ElementSummary",
+ 'NETWORK.FCZONEINFO': "network.FcZoneInfo",
+ 'NETWORK.VLANPORTINFO': "network.VlanPortInfo",
+ 'NETWORKCONFIG.POLICY': "networkconfig.Policy",
+ 'NIAAPI.APICCCOPOST': "niaapi.ApicCcoPost",
+ 'NIAAPI.APICFIELDNOTICE': "niaapi.ApicFieldNotice",
+ 'NIAAPI.APICHWEOL': "niaapi.ApicHweol",
+ 'NIAAPI.APICLATESTMAINTAINEDRELEASE': "niaapi.ApicLatestMaintainedRelease",
+ 'NIAAPI.APICRELEASERECOMMEND': "niaapi.ApicReleaseRecommend",
+ 'NIAAPI.APICSWEOL': "niaapi.ApicSweol",
+ 'NIAAPI.DCNMCCOPOST': "niaapi.DcnmCcoPost",
+ 'NIAAPI.DCNMFIELDNOTICE': "niaapi.DcnmFieldNotice",
+ 'NIAAPI.DCNMHWEOL': "niaapi.DcnmHweol",
+ 'NIAAPI.DCNMLATESTMAINTAINEDRELEASE': "niaapi.DcnmLatestMaintainedRelease",
+ 'NIAAPI.DCNMRELEASERECOMMEND': "niaapi.DcnmReleaseRecommend",
+ 'NIAAPI.DCNMSWEOL': "niaapi.DcnmSweol",
+ 'NIAAPI.FILEDOWNLOADER': "niaapi.FileDownloader",
+ 'NIAAPI.NIAMETADATA': "niaapi.NiaMetadata",
+ 'NIAAPI.NIBFILEDOWNLOADER': "niaapi.NibFileDownloader",
+ 'NIAAPI.NIBMETADATA': "niaapi.NibMetadata",
+ 'NIAAPI.VERSIONREGEX': "niaapi.VersionRegex",
+ 'NIATELEMETRY.AAALDAPPROVIDERDETAILS': "niatelemetry.AaaLdapProviderDetails",
+ 'NIATELEMETRY.AAARADIUSPROVIDERDETAILS': "niatelemetry.AaaRadiusProviderDetails",
+ 'NIATELEMETRY.AAATACACSPROVIDERDETAILS': "niatelemetry.AaaTacacsProviderDetails",
+ 'NIATELEMETRY.APICCOREFILEDETAILS': "niatelemetry.ApicCoreFileDetails",
+ 'NIATELEMETRY.APICDBGEXPRSEXPORTDEST': "niatelemetry.ApicDbgexpRsExportDest",
+ 'NIATELEMETRY.APICDBGEXPRSTSSCHEDULER': "niatelemetry.ApicDbgexpRsTsScheduler",
+ 'NIATELEMETRY.APICFANDETAILS': "niatelemetry.ApicFanDetails",
+ 'NIATELEMETRY.APICFEXDETAILS': "niatelemetry.ApicFexDetails",
+ 'NIATELEMETRY.APICFLASHDETAILS': "niatelemetry.ApicFlashDetails",
+ 'NIATELEMETRY.APICNTPAUTH': "niatelemetry.ApicNtpAuth",
+ 'NIATELEMETRY.APICPSUDETAILS': "niatelemetry.ApicPsuDetails",
+ 'NIATELEMETRY.APICREALMDETAILS': "niatelemetry.ApicRealmDetails",
+ 'NIATELEMETRY.APICSNMPCOMMUNITYACCESSDETAILS': "niatelemetry.ApicSnmpCommunityAccessDetails",
+ 'NIATELEMETRY.APICSNMPCOMMUNITYDETAILS': "niatelemetry.ApicSnmpCommunityDetails",
+ 'NIATELEMETRY.APICSNMPTRAPDETAILS': "niatelemetry.ApicSnmpTrapDetails",
+ 'NIATELEMETRY.APICSNMPVERSIONTHREEDETAILS': "niatelemetry.ApicSnmpVersionThreeDetails",
+ 'NIATELEMETRY.APICSYSLOGGRP': "niatelemetry.ApicSysLogGrp",
+ 'NIATELEMETRY.APICSYSLOGSRC': "niatelemetry.ApicSysLogSrc",
+ 'NIATELEMETRY.APICTRANSCEIVERDETAILS': "niatelemetry.ApicTransceiverDetails",
+ 'NIATELEMETRY.APICUIPAGECOUNTS': "niatelemetry.ApicUiPageCounts",
+ 'NIATELEMETRY.APPDETAILS': "niatelemetry.AppDetails",
+ 'NIATELEMETRY.DCNMFANDETAILS': "niatelemetry.DcnmFanDetails",
+ 'NIATELEMETRY.DCNMFEXDETAILS': "niatelemetry.DcnmFexDetails",
+ 'NIATELEMETRY.DCNMMODULEDETAILS': "niatelemetry.DcnmModuleDetails",
+ 'NIATELEMETRY.DCNMPSUDETAILS': "niatelemetry.DcnmPsuDetails",
+ 'NIATELEMETRY.DCNMTRANSCEIVERDETAILS': "niatelemetry.DcnmTransceiverDetails",
+ 'NIATELEMETRY.EPG': "niatelemetry.Epg",
+ 'NIATELEMETRY.FABRICMODULEDETAILS': "niatelemetry.FabricModuleDetails",
+ 'NIATELEMETRY.FAULT': "niatelemetry.Fault",
+ 'NIATELEMETRY.HTTPSACLCONTRACTDETAILS': "niatelemetry.HttpsAclContractDetails",
+ 'NIATELEMETRY.HTTPSACLCONTRACTFILTERMAP': "niatelemetry.HttpsAclContractFilterMap",
+ 'NIATELEMETRY.HTTPSACLEPGCONTRACTMAP': "niatelemetry.HttpsAclEpgContractMap",
+ 'NIATELEMETRY.HTTPSACLEPGDETAILS': "niatelemetry.HttpsAclEpgDetails",
+ 'NIATELEMETRY.HTTPSACLFILTERDETAILS': "niatelemetry.HttpsAclFilterDetails",
+ 'NIATELEMETRY.LC': "niatelemetry.Lc",
+ 'NIATELEMETRY.MSOCONTRACTDETAILS': "niatelemetry.MsoContractDetails",
+ 'NIATELEMETRY.MSOEPGDETAILS': "niatelemetry.MsoEpgDetails",
+ 'NIATELEMETRY.MSOSCHEMADETAILS': "niatelemetry.MsoSchemaDetails",
+ 'NIATELEMETRY.MSOSITEDETAILS': "niatelemetry.MsoSiteDetails",
+ 'NIATELEMETRY.MSOTENANTDETAILS': "niatelemetry.MsoTenantDetails",
+ 'NIATELEMETRY.NEXUSDASHBOARDCONTROLLERDETAILS': "niatelemetry.NexusDashboardControllerDetails",
+ 'NIATELEMETRY.NEXUSDASHBOARDDETAILS': "niatelemetry.NexusDashboardDetails",
+ 'NIATELEMETRY.NEXUSDASHBOARDMEMORYDETAILS': "niatelemetry.NexusDashboardMemoryDetails",
+ 'NIATELEMETRY.NEXUSDASHBOARDS': "niatelemetry.NexusDashboards",
+ 'NIATELEMETRY.NIAFEATUREUSAGE': "niatelemetry.NiaFeatureUsage",
+ 'NIATELEMETRY.NIAINVENTORY': "niatelemetry.NiaInventory",
+ 'NIATELEMETRY.NIAINVENTORYDCNM': "niatelemetry.NiaInventoryDcnm",
+ 'NIATELEMETRY.NIAINVENTORYFABRIC': "niatelemetry.NiaInventoryFabric",
+ 'NIATELEMETRY.NIALICENSESTATE': "niatelemetry.NiaLicenseState",
+ 'NIATELEMETRY.PASSWORDSTRENGTHCHECK': "niatelemetry.PasswordStrengthCheck",
+ 'NIATELEMETRY.SITEINVENTORY': "niatelemetry.SiteInventory",
+ 'NIATELEMETRY.SSHVERSIONTWO': "niatelemetry.SshVersionTwo",
+ 'NIATELEMETRY.SUPERVISORMODULEDETAILS': "niatelemetry.SupervisorModuleDetails",
+ 'NIATELEMETRY.SYSTEMCONTROLLERDETAILS': "niatelemetry.SystemControllerDetails",
+ 'NIATELEMETRY.TENANT': "niatelemetry.Tenant",
+ 'NOTIFICATION.ACCOUNTSUBSCRIPTION': "notification.AccountSubscription",
+ 'NTP.POLICY': "ntp.Policy",
+ 'OPRS.DEPLOYMENT': "oprs.Deployment",
+ 'OPRS.SYNCTARGETLISTMESSAGE': "oprs.SyncTargetListMessage",
+ 'ORGANIZATION.ORGANIZATION': "organization.Organization",
+ 'OS.BULKINSTALLINFO': "os.BulkInstallInfo",
+ 'OS.CATALOG': "os.Catalog",
+ 'OS.CONFIGURATIONFILE': "os.ConfigurationFile",
+ 'OS.DISTRIBUTION': "os.Distribution",
+ 'OS.INSTALL': "os.Install",
+ 'OS.OSSUPPORT': "os.OsSupport",
+ 'OS.SUPPORTEDVERSION': "os.SupportedVersion",
+ 'OS.TEMPLATEFILE': "os.TemplateFile",
+ 'OS.VALIDINSTALLTARGET': "os.ValidInstallTarget",
+ 'PCI.COPROCESSORCARD': "pci.CoprocessorCard",
+ 'PCI.DEVICE': "pci.Device",
+ 'PCI.LINK': "pci.Link",
+ 'PCI.SWITCH': "pci.Switch",
+ 'PORT.GROUP': "port.Group",
+ 'PORT.MACBINDING': "port.MacBinding",
+ 'PORT.SUBGROUP': "port.SubGroup",
+ 'POWER.CONTROLSTATE': "power.ControlState",
+ 'POWER.POLICY': "power.Policy",
+ 'PROCESSOR.UNIT': "processor.Unit",
+ 'RECOMMENDATION.CAPACITYRUNWAY': "recommendation.CapacityRunway",
+ 'RECOMMENDATION.PHYSICALITEM': "recommendation.PhysicalItem",
+ 'RECOVERY.BACKUPCONFIGPOLICY': "recovery.BackupConfigPolicy",
+ 'RECOVERY.BACKUPPROFILE': "recovery.BackupProfile",
+ 'RECOVERY.CONFIGRESULT': "recovery.ConfigResult",
+ 'RECOVERY.CONFIGRESULTENTRY': "recovery.ConfigResultEntry",
+ 'RECOVERY.ONDEMANDBACKUP': "recovery.OnDemandBackup",
+ 'RECOVERY.RESTORE': "recovery.Restore",
+ 'RECOVERY.SCHEDULECONFIGPOLICY': "recovery.ScheduleConfigPolicy",
+ 'RESOURCE.GROUP': "resource.Group",
+ 'RESOURCE.GROUPMEMBER': "resource.GroupMember",
+ 'RESOURCE.LICENSERESOURCECOUNT': "resource.LicenseResourceCount",
+ 'RESOURCE.MEMBERSHIP': "resource.Membership",
+ 'RESOURCE.MEMBERSHIPHOLDER': "resource.MembershipHolder",
+ 'RESOURCEPOOL.LEASE': "resourcepool.Lease",
+ 'RESOURCEPOOL.LEASERESOURCE': "resourcepool.LeaseResource",
+ 'RESOURCEPOOL.POOL': "resourcepool.Pool",
+ 'RESOURCEPOOL.POOLMEMBER': "resourcepool.PoolMember",
+ 'RESOURCEPOOL.UNIVERSE': "resourcepool.Universe",
+ 'RPROXY.REVERSEPROXY': "rproxy.ReverseProxy",
+ 'SDCARD.POLICY': "sdcard.Policy",
+ 'SDWAN.PROFILE': "sdwan.Profile",
+ 'SDWAN.ROUTERNODE': "sdwan.RouterNode",
+ 'SDWAN.ROUTERPOLICY': "sdwan.RouterPolicy",
+ 'SDWAN.VMANAGEACCOUNTPOLICY': "sdwan.VmanageAccountPolicy",
+ 'SEARCH.SEARCHITEM': "search.SearchItem",
+ 'SEARCH.TAGITEM': "search.TagItem",
+ 'SECURITY.UNIT': "security.Unit",
+ 'SERVER.CONFIGCHANGEDETAIL': "server.ConfigChangeDetail",
+ 'SERVER.CONFIGIMPORT': "server.ConfigImport",
+ 'SERVER.CONFIGRESULT': "server.ConfigResult",
+ 'SERVER.CONFIGRESULTENTRY': "server.ConfigResultEntry",
+ 'SERVER.PROFILE': "server.Profile",
+ 'SERVER.PROFILETEMPLATE': "server.ProfileTemplate",
+ 'SMTP.POLICY': "smtp.Policy",
+ 'SNMP.POLICY': "snmp.Policy",
+ 'SOFTWARE.APPLIANCEDISTRIBUTABLE': "software.ApplianceDistributable",
+ 'SOFTWARE.DOWNLOADHISTORY': "software.DownloadHistory",
+ 'SOFTWARE.HCLMETA': "software.HclMeta",
+ 'SOFTWARE.HYPERFLEXBUNDLEDISTRIBUTABLE': "software.HyperflexBundleDistributable",
+ 'SOFTWARE.HYPERFLEXDISTRIBUTABLE': "software.HyperflexDistributable",
+ 'SOFTWARE.RELEASEMETA': "software.ReleaseMeta",
+ 'SOFTWARE.SOLUTIONDISTRIBUTABLE': "software.SolutionDistributable",
+ 'SOFTWARE.UCSDBUNDLEDISTRIBUTABLE': "software.UcsdBundleDistributable",
+ 'SOFTWARE.UCSDDISTRIBUTABLE': "software.UcsdDistributable",
+ 'SOFTWAREREPOSITORY.AUTHORIZATION': "softwarerepository.Authorization",
+ 'SOFTWAREREPOSITORY.CACHEDIMAGE': "softwarerepository.CachedImage",
+ 'SOFTWAREREPOSITORY.CATALOG': "softwarerepository.Catalog",
+ 'SOFTWAREREPOSITORY.CATEGORYMAPPER': "softwarerepository.CategoryMapper",
+ 'SOFTWAREREPOSITORY.CATEGORYMAPPERMODEL': "softwarerepository.CategoryMapperModel",
+ 'SOFTWAREREPOSITORY.CATEGORYSUPPORTCONSTRAINT': "softwarerepository.CategorySupportConstraint",
+ 'SOFTWAREREPOSITORY.DOWNLOADSPEC': "softwarerepository.DownloadSpec",
+ 'SOFTWAREREPOSITORY.OPERATINGSYSTEMFILE': "softwarerepository.OperatingSystemFile",
+ 'SOFTWAREREPOSITORY.RELEASE': "softwarerepository.Release",
+ 'SOL.POLICY': "sol.Policy",
+ 'SSH.POLICY': "ssh.Policy",
+ 'STORAGE.CONTROLLER': "storage.Controller",
+ 'STORAGE.DISKGROUP': "storage.DiskGroup",
+ 'STORAGE.DISKSLOT': "storage.DiskSlot",
+ 'STORAGE.DRIVEGROUP': "storage.DriveGroup",
+ 'STORAGE.ENCLOSURE': "storage.Enclosure",
+ 'STORAGE.ENCLOSUREDISK': "storage.EnclosureDisk",
+ 'STORAGE.ENCLOSUREDISKSLOTEP': "storage.EnclosureDiskSlotEp",
+ 'STORAGE.FLEXFLASHCONTROLLER': "storage.FlexFlashController",
+ 'STORAGE.FLEXFLASHCONTROLLERPROPS': "storage.FlexFlashControllerProps",
+ 'STORAGE.FLEXFLASHPHYSICALDRIVE': "storage.FlexFlashPhysicalDrive",
+ 'STORAGE.FLEXFLASHVIRTUALDRIVE': "storage.FlexFlashVirtualDrive",
+ 'STORAGE.FLEXUTILCONTROLLER': "storage.FlexUtilController",
+ 'STORAGE.FLEXUTILPHYSICALDRIVE': "storage.FlexUtilPhysicalDrive",
+ 'STORAGE.FLEXUTILVIRTUALDRIVE': "storage.FlexUtilVirtualDrive",
+ 'STORAGE.HITACHIARRAY': "storage.HitachiArray",
+ 'STORAGE.HITACHICONTROLLER': "storage.HitachiController",
+ 'STORAGE.HITACHIDISK': "storage.HitachiDisk",
+ 'STORAGE.HITACHIHOST': "storage.HitachiHost",
+ 'STORAGE.HITACHIHOSTLUN': "storage.HitachiHostLun",
+ 'STORAGE.HITACHIPARITYGROUP': "storage.HitachiParityGroup",
+ 'STORAGE.HITACHIPOOL': "storage.HitachiPool",
+ 'STORAGE.HITACHIPORT': "storage.HitachiPort",
+ 'STORAGE.HITACHIVOLUME': "storage.HitachiVolume",
+ 'STORAGE.HYPERFLEXSTORAGECONTAINER': "storage.HyperFlexStorageContainer",
+ 'STORAGE.HYPERFLEXVOLUME': "storage.HyperFlexVolume",
+ 'STORAGE.ITEM': "storage.Item",
+ 'STORAGE.NETAPPAGGREGATE': "storage.NetAppAggregate",
+ 'STORAGE.NETAPPBASEDISK': "storage.NetAppBaseDisk",
+ 'STORAGE.NETAPPCLUSTER': "storage.NetAppCluster",
+ 'STORAGE.NETAPPETHERNETPORT': "storage.NetAppEthernetPort",
+ 'STORAGE.NETAPPEXPORTPOLICY': "storage.NetAppExportPolicy",
+ 'STORAGE.NETAPPFCINTERFACE': "storage.NetAppFcInterface",
+ 'STORAGE.NETAPPFCPORT': "storage.NetAppFcPort",
+ 'STORAGE.NETAPPINITIATORGROUP': "storage.NetAppInitiatorGroup",
+ 'STORAGE.NETAPPIPINTERFACE': "storage.NetAppIpInterface",
+ 'STORAGE.NETAPPLICENSE': "storage.NetAppLicense",
+ 'STORAGE.NETAPPLUN': "storage.NetAppLun",
+ 'STORAGE.NETAPPLUNMAP': "storage.NetAppLunMap",
+ 'STORAGE.NETAPPNODE': "storage.NetAppNode",
+ 'STORAGE.NETAPPSTORAGEVM': "storage.NetAppStorageVm",
+ 'STORAGE.NETAPPVOLUME': "storage.NetAppVolume",
+ 'STORAGE.NETAPPVOLUMESNAPSHOT': "storage.NetAppVolumeSnapshot",
+ 'STORAGE.PHYSICALDISK': "storage.PhysicalDisk",
+ 'STORAGE.PHYSICALDISKEXTENSION': "storage.PhysicalDiskExtension",
+ 'STORAGE.PHYSICALDISKUSAGE': "storage.PhysicalDiskUsage",
+ 'STORAGE.PUREARRAY': "storage.PureArray",
+ 'STORAGE.PURECONTROLLER': "storage.PureController",
+ 'STORAGE.PUREDISK': "storage.PureDisk",
+ 'STORAGE.PUREHOST': "storage.PureHost",
+ 'STORAGE.PUREHOSTGROUP': "storage.PureHostGroup",
+ 'STORAGE.PUREHOSTLUN': "storage.PureHostLun",
+ 'STORAGE.PUREPORT': "storage.PurePort",
+ 'STORAGE.PUREPROTECTIONGROUP': "storage.PureProtectionGroup",
+ 'STORAGE.PUREPROTECTIONGROUPSNAPSHOT': "storage.PureProtectionGroupSnapshot",
+ 'STORAGE.PUREREPLICATIONSCHEDULE': "storage.PureReplicationSchedule",
+ 'STORAGE.PURESNAPSHOTSCHEDULE': "storage.PureSnapshotSchedule",
+ 'STORAGE.PUREVOLUME': "storage.PureVolume",
+ 'STORAGE.PUREVOLUMESNAPSHOT': "storage.PureVolumeSnapshot",
+ 'STORAGE.SASEXPANDER': "storage.SasExpander",
+ 'STORAGE.SASPORT': "storage.SasPort",
+ 'STORAGE.SPAN': "storage.Span",
+ 'STORAGE.STORAGEPOLICY': "storage.StoragePolicy",
+ 'STORAGE.VDMEMBEREP': "storage.VdMemberEp",
+ 'STORAGE.VIRTUALDRIVE': "storage.VirtualDrive",
+ 'STORAGE.VIRTUALDRIVECONTAINER': "storage.VirtualDriveContainer",
+ 'STORAGE.VIRTUALDRIVEEXTENSION': "storage.VirtualDriveExtension",
+ 'STORAGE.VIRTUALDRIVEIDENTITY': "storage.VirtualDriveIdentity",
+ 'SYSLOG.POLICY': "syslog.Policy",
+ 'TAM.ADVISORYCOUNT': "tam.AdvisoryCount",
+ 'TAM.ADVISORYDEFINITION': "tam.AdvisoryDefinition",
+ 'TAM.ADVISORYINFO': "tam.AdvisoryInfo",
+ 'TAM.ADVISORYINSTANCE': "tam.AdvisoryInstance",
+ 'TAM.SECURITYADVISORY': "tam.SecurityAdvisory",
+ 'TASK.HITACHISCOPEDINVENTORY': "task.HitachiScopedInventory",
+ 'TASK.HXAPSCOPEDINVENTORY': "task.HxapScopedInventory",
+ 'TASK.NETAPPSCOPEDINVENTORY': "task.NetAppScopedInventory",
+ 'TASK.PUBLICCLOUDSCOPEDINVENTORY': "task.PublicCloudScopedInventory",
+ 'TASK.PURESCOPEDINVENTORY': "task.PureScopedInventory",
+ 'TASK.SERVERSCOPEDINVENTORY': "task.ServerScopedInventory",
+ 'TECHSUPPORTMANAGEMENT.COLLECTIONCONTROLPOLICY': "techsupportmanagement.CollectionControlPolicy",
+ 'TECHSUPPORTMANAGEMENT.DOWNLOAD': "techsupportmanagement.Download",
+ 'TECHSUPPORTMANAGEMENT.TECHSUPPORTBUNDLE': "techsupportmanagement.TechSupportBundle",
+ 'TECHSUPPORTMANAGEMENT.TECHSUPPORTSTATUS': "techsupportmanagement.TechSupportStatus",
+ 'TERMINAL.AUDITLOG': "terminal.AuditLog",
+ 'THERMAL.POLICY': "thermal.Policy",
+ 'TOP.SYSTEM': "top.System",
+ 'UCSD.BACKUPINFO': "ucsd.BackupInfo",
+ 'UUIDPOOL.BLOCK': "uuidpool.Block",
+ 'UUIDPOOL.POOL': "uuidpool.Pool",
+ 'UUIDPOOL.POOLMEMBER': "uuidpool.PoolMember",
+ 'UUIDPOOL.UNIVERSE': "uuidpool.Universe",
+ 'UUIDPOOL.UUIDLEASE': "uuidpool.UuidLease",
+ 'VIRTUALIZATION.HOST': "virtualization.Host",
+ 'VIRTUALIZATION.VIRTUALDISK': "virtualization.VirtualDisk",
+ 'VIRTUALIZATION.VIRTUALMACHINE': "virtualization.VirtualMachine",
+ 'VIRTUALIZATION.VMWARECLUSTER': "virtualization.VmwareCluster",
+ 'VIRTUALIZATION.VMWAREDATACENTER': "virtualization.VmwareDatacenter",
+ 'VIRTUALIZATION.VMWAREDATASTORE': "virtualization.VmwareDatastore",
+ 'VIRTUALIZATION.VMWAREDATASTORECLUSTER': "virtualization.VmwareDatastoreCluster",
+ 'VIRTUALIZATION.VMWAREDISTRIBUTEDNETWORK': "virtualization.VmwareDistributedNetwork",
+ 'VIRTUALIZATION.VMWAREDISTRIBUTEDSWITCH': "virtualization.VmwareDistributedSwitch",
+ 'VIRTUALIZATION.VMWAREFOLDER': "virtualization.VmwareFolder",
+ 'VIRTUALIZATION.VMWAREHOST': "virtualization.VmwareHost",
+ 'VIRTUALIZATION.VMWAREKERNELNETWORK': "virtualization.VmwareKernelNetwork",
+ 'VIRTUALIZATION.VMWARENETWORK': "virtualization.VmwareNetwork",
+ 'VIRTUALIZATION.VMWAREPHYSICALNETWORKINTERFACE': "virtualization.VmwarePhysicalNetworkInterface",
+ 'VIRTUALIZATION.VMWAREUPLINKPORT': "virtualization.VmwareUplinkPort",
+ 'VIRTUALIZATION.VMWAREVCENTER': "virtualization.VmwareVcenter",
+ 'VIRTUALIZATION.VMWAREVIRTUALDISK': "virtualization.VmwareVirtualDisk",
+ 'VIRTUALIZATION.VMWAREVIRTUALMACHINE': "virtualization.VmwareVirtualMachine",
+ 'VIRTUALIZATION.VMWAREVIRTUALMACHINESNAPSHOT': "virtualization.VmwareVirtualMachineSnapshot",
+ 'VIRTUALIZATION.VMWAREVIRTUALNETWORKINTERFACE': "virtualization.VmwareVirtualNetworkInterface",
+ 'VIRTUALIZATION.VMWAREVIRTUALSWITCH': "virtualization.VmwareVirtualSwitch",
+ 'VMEDIA.POLICY': "vmedia.Policy",
+ 'VMRC.CONSOLE': "vmrc.Console",
+ 'VNIC.ETHADAPTERPOLICY': "vnic.EthAdapterPolicy",
+ 'VNIC.ETHIF': "vnic.EthIf",
+ 'VNIC.ETHNETWORKPOLICY': "vnic.EthNetworkPolicy",
+ 'VNIC.ETHQOSPOLICY': "vnic.EthQosPolicy",
+ 'VNIC.FCADAPTERPOLICY': "vnic.FcAdapterPolicy",
+ 'VNIC.FCIF': "vnic.FcIf",
+ 'VNIC.FCNETWORKPOLICY': "vnic.FcNetworkPolicy",
+ 'VNIC.FCQOSPOLICY': "vnic.FcQosPolicy",
+ 'VNIC.ISCSIADAPTERPOLICY': "vnic.IscsiAdapterPolicy",
+ 'VNIC.ISCSIBOOTPOLICY': "vnic.IscsiBootPolicy",
+ 'VNIC.ISCSISTATICTARGETPOLICY': "vnic.IscsiStaticTargetPolicy",
+ 'VNIC.LANCONNECTIVITYPOLICY': "vnic.LanConnectivityPolicy",
+ 'VNIC.LCPSTATUS': "vnic.LcpStatus",
+ 'VNIC.SANCONNECTIVITYPOLICY': "vnic.SanConnectivityPolicy",
+ 'VNIC.SCPSTATUS': "vnic.ScpStatus",
+ 'VRF.VRF': "vrf.Vrf",
+ 'WORKFLOW.BATCHAPIEXECUTOR': "workflow.BatchApiExecutor",
+ 'WORKFLOW.BUILDTASKMETA': "workflow.BuildTaskMeta",
+ 'WORKFLOW.BUILDTASKMETAOWNER': "workflow.BuildTaskMetaOwner",
+ 'WORKFLOW.CATALOG': "workflow.Catalog",
+ 'WORKFLOW.CUSTOMDATATYPEDEFINITION': "workflow.CustomDataTypeDefinition",
+ 'WORKFLOW.ERRORRESPONSEHANDLER': "workflow.ErrorResponseHandler",
+ 'WORKFLOW.PENDINGDYNAMICWORKFLOWINFO': "workflow.PendingDynamicWorkflowInfo",
+ 'WORKFLOW.ROLLBACKWORKFLOW': "workflow.RollbackWorkflow",
+ 'WORKFLOW.TASKDEBUGLOG': "workflow.TaskDebugLog",
+ 'WORKFLOW.TASKDEFINITION': "workflow.TaskDefinition",
+ 'WORKFLOW.TASKINFO': "workflow.TaskInfo",
+ 'WORKFLOW.TASKMETADATA': "workflow.TaskMetadata",
+ 'WORKFLOW.TASKNOTIFICATION': "workflow.TaskNotification",
+ 'WORKFLOW.TEMPLATEEVALUATION': "workflow.TemplateEvaluation",
+ 'WORKFLOW.TEMPLATEFUNCTIONMETA': "workflow.TemplateFunctionMeta",
+ 'WORKFLOW.WORKFLOWDEFINITION': "workflow.WorkflowDefinition",
+ 'WORKFLOW.WORKFLOWINFO': "workflow.WorkflowInfo",
+ 'WORKFLOW.WORKFLOWMETA': "workflow.WorkflowMeta",
+ 'WORKFLOW.WORKFLOWMETADATA': "workflow.WorkflowMetadata",
+ 'WORKFLOW.WORKFLOWNOTIFICATION': "workflow.WorkflowNotification",
+ },
+ }
+
+ validations = {
+ }
+
+ @cached_property
+ def additional_properties_type():
+ """
+ This must be a method because a model may have properties that are
+ of type self, this must run after the class is loaded
+ """
+ lazy_import()
+ return (bool, date, datetime, dict, float, int, list, str, none_type,) # noqa: E501
+
+ _nullable = False
+
+ @cached_property
+ def openapi_types():
+ """
+ This must be a method because a model may have properties that are
+ of type self, this must run after the class is loaded
+
+ Returns
+ openapi_types (dict): The key is attribute name
+ and the value is attribute type.
+ """
+ lazy_import()
+ return {
+ 'class_id': (str,), # noqa: E501
+ 'moid': (str,), # noqa: E501
+ 'selector': (str,), # noqa: E501
+ 'link': (str,), # noqa: E501
+ 'account_moid': (str,), # noqa: E501
+ 'create_time': (datetime,), # noqa: E501
+ 'domain_group_moid': (str,), # noqa: E501
+ 'mod_time': (datetime,), # noqa: E501
+ 'owners': ([str], none_type,), # noqa: E501
+ 'shared_scope': (str,), # noqa: E501
+ 'tags': ([MoTag], none_type,), # noqa: E501
+ 'version_context': (MoVersionContext,), # noqa: E501
+ 'ancestors': ([MoBaseMoRelationship], none_type,), # noqa: E501
+ 'parent': (MoBaseMoRelationship,), # noqa: E501
+ 'permission_resources': ([MoBaseMoRelationship], none_type,), # noqa: E501
+ 'display_names': (DisplayNames,), # noqa: E501
+ 'action_on_error': (str,), # noqa: E501
+ 'actions': ([str], none_type,), # noqa: E501
+ 'completion_time': (str,), # noqa: E501
+ 'headers': ([BulkHttpHeader], none_type,), # noqa: E501
+ 'num_sub_requests': (int,), # noqa: E501
+ 'org_moid': (str,), # noqa: E501
+ 'request_received_time': (str,), # noqa: E501
+ 'requests': ([BulkSubRequest], none_type,), # noqa: E501
+ 'results': ([BulkApiResult], none_type,), # noqa: E501
+ 'skip_duplicates': (bool,), # noqa: E501
+ 'status': (str,), # noqa: E501
+ 'status_message': (str,), # noqa: E501
+ 'uri': (str,), # noqa: E501
+ 'verb': (str,), # noqa: E501
+ 'async_results': ([BulkSubRequestObjRelationship], none_type,), # noqa: E501
+ 'async_results_failed': ([BulkSubRequestObjRelationship], none_type,), # noqa: E501
+ 'organization': (OrganizationOrganizationRelationship,), # noqa: E501
+ 'workflow_info': (WorkflowWorkflowInfoRelationship,), # noqa: E501
+ 'object_type': (str,), # noqa: E501
+ }
+
+ @cached_property
+ def discriminator():
+ lazy_import()
+ val = {
+ 'bulk.Request': BulkRequest,
+ 'mo.MoRef': MoMoRef,
+ }
+ if not val:
+ return None
+ return {'class_id': val}
+
+ attribute_map = {
+ 'class_id': 'ClassId', # noqa: E501
+ 'moid': 'Moid', # noqa: E501
+ 'selector': 'Selector', # noqa: E501
+ 'link': 'link', # noqa: E501
+ 'account_moid': 'AccountMoid', # noqa: E501
+ 'create_time': 'CreateTime', # noqa: E501
+ 'domain_group_moid': 'DomainGroupMoid', # noqa: E501
+ 'mod_time': 'ModTime', # noqa: E501
+ 'owners': 'Owners', # noqa: E501
+ 'shared_scope': 'SharedScope', # noqa: E501
+ 'tags': 'Tags', # noqa: E501
+ 'version_context': 'VersionContext', # noqa: E501
+ 'ancestors': 'Ancestors', # noqa: E501
+ 'parent': 'Parent', # noqa: E501
+ 'permission_resources': 'PermissionResources', # noqa: E501
+ 'display_names': 'DisplayNames', # noqa: E501
+ 'action_on_error': 'ActionOnError', # noqa: E501
+ 'actions': 'Actions', # noqa: E501
+ 'completion_time': 'CompletionTime', # noqa: E501
+ 'headers': 'Headers', # noqa: E501
+ 'num_sub_requests': 'NumSubRequests', # noqa: E501
+ 'org_moid': 'OrgMoid', # noqa: E501
+ 'request_received_time': 'RequestReceivedTime', # noqa: E501
+ 'requests': 'Requests', # noqa: E501
+ 'results': 'Results', # noqa: E501
+ 'skip_duplicates': 'SkipDuplicates', # noqa: E501
+ 'status': 'Status', # noqa: E501
+ 'status_message': 'StatusMessage', # noqa: E501
+ 'uri': 'Uri', # noqa: E501
+ 'verb': 'Verb', # noqa: E501
+ 'async_results': 'AsyncResults', # noqa: E501
+ 'async_results_failed': 'AsyncResultsFailed', # noqa: E501
+ 'organization': 'Organization', # noqa: E501
+ 'workflow_info': 'WorkflowInfo', # noqa: E501
+ 'object_type': 'ObjectType', # noqa: E501
+ }
+
+ required_properties = set([
+ '_data_store',
+ '_check_type',
+ '_spec_property_naming',
+ '_path_to_item',
+ '_configuration',
+ '_visited_composed_classes',
+ '_composed_instances',
+ '_var_name_to_model_instances',
+ '_additional_properties_model_instances',
+ ])
+
+ @convert_js_args_to_python_args
+ def __init__(self, *args, **kwargs): # noqa: E501
+ """BulkRequestRelationship - a model defined in OpenAPI
+
+ Args:
+
+ Keyword Args:
+ class_id (str): The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.. defaults to "mo.MoRef", must be one of ["mo.MoRef", ] # noqa: E501
+ _check_type (bool): if True, values for parameters in openapi_types
+ will be type checked and a TypeError will be
+ raised if the wrong type is input.
+ Defaults to True
+ _path_to_item (tuple/list): This is a list of keys or values to
+ drill down to the model in received_data
+ when deserializing a response
+ _spec_property_naming (bool): True if the variable names in the input data
+ are serialized names, as specified in the OpenAPI document.
+ False if the variable names in the input data
+ are pythonic names, e.g. snake case (default)
+ _configuration (Configuration): the instance to use when
+ deserializing a file_type parameter.
+ If passed, type conversion is attempted
+ If omitted no type conversion is done.
+ _visited_composed_classes (tuple): This stores a tuple of
+ classes that we have traveled through so that
+ if we see that class again we will not use its
+ discriminator again.
+ When traveling through a discriminator, the
+ composed schema that is
+ is traveled through is added to this set.
+ For example if Animal has a discriminator
+ petType and we pass in "Dog", and the class Dog
+ allOf includes Animal, we move through Animal
+ once using the discriminator, and pick Dog.
+ Then in Dog, we will make an instance of the
+ Animal class but this time we won't travel
+ through its discriminator because we passed in
+ _visited_composed_classes = (Animal,)
+ moid (str): The Moid of the referenced REST resource.. [optional] # noqa: E501
+ selector (str): An OData $filter expression which describes the REST resource to be referenced. This field may be set instead of 'moid' by clients. 1. If 'moid' is set this field is ignored. 1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of the resource matching the filter expression and populates it in the MoRef that is part of the object instance being inserted/updated to fulfill the REST request. An error is returned if the filter matches zero or more than one REST resource. An example filter string is: Serial eq '3AA8B7T11'.. [optional] # noqa: E501
+ link (str): A URL to an instance of the 'mo.MoRef' class.. [optional] # noqa: E501
+ account_moid (str): The Account ID for this managed object.. [optional] # noqa: E501
+ create_time (datetime): The time when this managed object was created.. [optional] # noqa: E501
+ domain_group_moid (str): The DomainGroup ID for this managed object.. [optional] # noqa: E501
+ mod_time (datetime): The time when this managed object was last modified.. [optional] # noqa: E501
+ owners ([str], none_type): [optional] # noqa: E501
+ shared_scope (str): Intersight provides pre-built workflows, tasks and policies to end users through global catalogs. Objects that are made available through global catalogs are said to have a 'shared' ownership. Shared objects are either made globally available to all end users or restricted to end users based on their license entitlement. Users can use this property to differentiate the scope (global or a specific license tier) to which a shared MO belongs.. [optional] # noqa: E501
+ tags ([MoTag], none_type): [optional] # noqa: E501
+ version_context (MoVersionContext): [optional] # noqa: E501
+ ancestors ([MoBaseMoRelationship], none_type): An array of relationships to moBaseMo resources.. [optional] # noqa: E501
+ parent (MoBaseMoRelationship): [optional] # noqa: E501
+ permission_resources ([MoBaseMoRelationship], none_type): An array of relationships to moBaseMo resources.. [optional] # noqa: E501
+ display_names (DisplayNames): [optional] # noqa: E501
+ action_on_error (str): The action to be taken when an error occurs during processing of the request. * `Stop` - Stop the processing of the request after the first error. * `Proceed` - Proceed with the processing of the request even when an error occurs.. [optional] if omitted the server will use the default value of "Stop" # noqa: E501
+ actions ([str], none_type): [optional] # noqa: E501
+ completion_time (str): The timestamp when the request processing completed.. [optional] # noqa: E501
+ headers ([BulkHttpHeader], none_type): [optional] # noqa: E501
+ num_sub_requests (int): The number of sub requests received in this request.. [optional] # noqa: E501
+ org_moid (str): The moid of the organization under which this request was issued.. [optional] # noqa: E501
+ request_received_time (str): The timestamp when the request was received.. [optional] # noqa: E501
+ requests ([BulkSubRequest], none_type): [optional] # noqa: E501
+ results ([BulkApiResult], none_type): [optional] # noqa: E501
+ skip_duplicates (bool): Skip the already present objects.. [optional] # noqa: E501
+ status (str): The processing status of the Request. * `NotStarted` - Indicates that the request processing has not begun yet. * `ObjPresenceCheckInProgress` - Indicates that the object presence check is in progress for this request. * `ObjPresenceCheckComplete` - Indicates that the object presence check is complete. * `ExecutionInProgress` - Indicates that the request processing is in progress. * `Completed` - Indicates that the request processing has been completed successfully. * `Failed` - Indicates that the processing of this request failed.. [optional] if omitted the server will use the default value of "NotStarted" # noqa: E501
+ status_message (str): The status message corresponding to the status.. [optional] # noqa: E501
+ uri (str): The URI on which this bulk action is to be performed. The value will be used when there is no override in the SubRequest.. [optional] # noqa: E501
+ verb (str): The type of operation to be performed. One of - Post (Create), Patch (Update) or Delete (Remove). The value will be used when there is no override in the SubRequest. * `POST` - Used to create a REST resource. * `PATCH` - Used to update a REST resource. * `DELETE` - Used to delete a REST resource.. [optional] if omitted the server will use the default value of "POST" # noqa: E501
+ async_results ([BulkSubRequestObjRelationship], none_type): An array of relationships to bulkSubRequestObj resources.. [optional] # noqa: E501
+ async_results_failed ([BulkSubRequestObjRelationship], none_type): An array of relationships to bulkSubRequestObj resources.. [optional] # noqa: E501
+ organization (OrganizationOrganizationRelationship): [optional] # noqa: E501
+ workflow_info (WorkflowWorkflowInfoRelationship): [optional] # noqa: E501
+ object_type (str): The fully-qualified name of the remote type referred by this relationship.. [optional] # noqa: E501
+ """
+
+ class_id = kwargs.get('class_id', "mo.MoRef")
+ _check_type = kwargs.pop('_check_type', True)
+ _spec_property_naming = kwargs.pop('_spec_property_naming', False)
+ _path_to_item = kwargs.pop('_path_to_item', ())
+ _configuration = kwargs.pop('_configuration', None)
+ _visited_composed_classes = kwargs.pop('_visited_composed_classes', ())
+
+ if args:
+ raise ApiTypeError(
+ "Invalid positional arguments=%s passed to %s. Remove those invalid positional arguments." % (
+ args,
+ self.__class__.__name__,
+ ),
+ path_to_item=_path_to_item,
+ valid_classes=(self.__class__,),
+ )
+
+ self._data_store = {}
+ self._check_type = _check_type
+ self._spec_property_naming = _spec_property_naming
+ self._path_to_item = _path_to_item
+ self._configuration = _configuration
+ self._visited_composed_classes = _visited_composed_classes + (self.__class__,)
+
+ constant_args = {
+ '_check_type': _check_type,
+ '_path_to_item': _path_to_item,
+ '_spec_property_naming': _spec_property_naming,
+ '_configuration': _configuration,
+ '_visited_composed_classes': self._visited_composed_classes,
+ }
+ required_args = {
+ 'class_id': class_id,
+ }
+ model_args = {}
+ model_args.update(required_args)
+ model_args.update(kwargs)
+ composed_info = validate_get_composed_info(
+ constant_args, model_args, self)
+ self._composed_instances = composed_info[0]
+ self._var_name_to_model_instances = composed_info[1]
+ self._additional_properties_model_instances = composed_info[2]
+ unused_args = composed_info[3]
+
+ for var_name, var_value in required_args.items():
+ setattr(self, var_name, var_value)
+ for var_name, var_value in kwargs.items():
+ if var_name in unused_args and \
+ self._configuration is not None and \
+ self._configuration.discard_unknown_keys and \
+ not self._additional_properties_model_instances:
+ # discard variable.
+ continue
+ setattr(self, var_name, var_value)
+
+ @cached_property
+ def _composed_schemas():
+ # we need this here to make our import statements work
+ # we must store _composed_schemas in here so the code is only run
+ # when we invoke this method. If we kept this at the class
+ # level we would get an error beause the class level
+ # code would be run when this module is imported, and these composed
+ # classes don't exist yet because their module has not finished
+ # loading
+ lazy_import()
+ return {
+ 'anyOf': [
+ ],
+ 'allOf': [
+ ],
+ 'oneOf': [
+ BulkRequest,
+ MoMoRef,
+ none_type,
+ ],
+ }
diff --git a/intersight/model/bulk_request_response.py b/intersight/model/bulk_request_response.py
new file mode 100644
index 0000000000..919af9ef8b
--- /dev/null
+++ b/intersight/model/bulk_request_response.py
@@ -0,0 +1,249 @@
+"""
+ Cisco Intersight
+
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
+
+ The version of the OpenAPI document: 1.0.9-4506
+ Contact: intersight@cisco.com
+ Generated by: https://openapi-generator.tech
+"""
+
+
+import re # noqa: F401
+import sys # noqa: F401
+
+from intersight.model_utils import ( # noqa: F401
+ ApiTypeError,
+ ModelComposed,
+ ModelNormal,
+ ModelSimple,
+ cached_property,
+ change_keys_js_to_python,
+ convert_js_args_to_python_args,
+ date,
+ datetime,
+ file_type,
+ none_type,
+ validate_get_composed_info,
+)
+
+def lazy_import():
+ from intersight.model.bulk_request_list import BulkRequestList
+ from intersight.model.mo_aggregate_transform import MoAggregateTransform
+ from intersight.model.mo_document_count import MoDocumentCount
+ from intersight.model.mo_tag_key_summary import MoTagKeySummary
+ from intersight.model.mo_tag_summary import MoTagSummary
+ globals()['BulkRequestList'] = BulkRequestList
+ globals()['MoAggregateTransform'] = MoAggregateTransform
+ globals()['MoDocumentCount'] = MoDocumentCount
+ globals()['MoTagKeySummary'] = MoTagKeySummary
+ globals()['MoTagSummary'] = MoTagSummary
+
+
+class BulkRequestResponse(ModelComposed):
+ """NOTE: This class is auto generated by OpenAPI Generator.
+ Ref: https://openapi-generator.tech
+
+ Do not edit the class manually.
+
+ Attributes:
+ allowed_values (dict): The key is the tuple path to the attribute
+ and the for var_name this is (var_name,). The value is a dict
+ with a capitalized key describing the allowed value and an allowed
+ value. These dicts store the allowed enum values.
+ attribute_map (dict): The key is attribute name
+ and the value is json key in definition.
+ discriminator_value_class_map (dict): A dict to go from the discriminator
+ variable value to the discriminator class name.
+ validations (dict): The key is the tuple path to the attribute
+ and the for var_name this is (var_name,). The value is a dict
+ that stores validations for max_length, min_length, max_items,
+ min_items, exclusive_maximum, inclusive_maximum, exclusive_minimum,
+ inclusive_minimum, and regex.
+ additional_properties_type (tuple): A tuple of classes accepted
+ as additional properties values.
+ """
+
+ allowed_values = {
+ }
+
+ validations = {
+ }
+
+ @cached_property
+ def additional_properties_type():
+ """
+ This must be a method because a model may have properties that are
+ of type self, this must run after the class is loaded
+ """
+ lazy_import()
+ return (bool, date, datetime, dict, float, int, list, str, none_type,) # noqa: E501
+
+ _nullable = False
+
+ @cached_property
+ def openapi_types():
+ """
+ This must be a method because a model may have properties that are
+ of type self, this must run after the class is loaded
+
+ Returns
+ openapi_types (dict): The key is attribute name
+ and the value is attribute type.
+ """
+ lazy_import()
+ return {
+ 'object_type': (str,), # noqa: E501
+ 'count': (int,), # noqa: E501
+ 'results': ([MoTagKeySummary], none_type,), # noqa: E501
+ }
+
+ @cached_property
+ def discriminator():
+ lazy_import()
+ val = {
+ 'bulk.Request.List': BulkRequestList,
+ 'mo.AggregateTransform': MoAggregateTransform,
+ 'mo.DocumentCount': MoDocumentCount,
+ 'mo.TagSummary': MoTagSummary,
+ }
+ if not val:
+ return None
+ return {'object_type': val}
+
+ attribute_map = {
+ 'object_type': 'ObjectType', # noqa: E501
+ 'count': 'Count', # noqa: E501
+ 'results': 'Results', # noqa: E501
+ }
+
+ required_properties = set([
+ '_data_store',
+ '_check_type',
+ '_spec_property_naming',
+ '_path_to_item',
+ '_configuration',
+ '_visited_composed_classes',
+ '_composed_instances',
+ '_var_name_to_model_instances',
+ '_additional_properties_model_instances',
+ ])
+
+ @convert_js_args_to_python_args
+ def __init__(self, object_type, *args, **kwargs): # noqa: E501
+ """BulkRequestResponse - a model defined in OpenAPI
+
+ Args:
+ object_type (str): A discriminator value to disambiguate the schema of a HTTP GET response body.
+
+ Keyword Args:
+ _check_type (bool): if True, values for parameters in openapi_types
+ will be type checked and a TypeError will be
+ raised if the wrong type is input.
+ Defaults to True
+ _path_to_item (tuple/list): This is a list of keys or values to
+ drill down to the model in received_data
+ when deserializing a response
+ _spec_property_naming (bool): True if the variable names in the input data
+ are serialized names, as specified in the OpenAPI document.
+ False if the variable names in the input data
+ are pythonic names, e.g. snake case (default)
+ _configuration (Configuration): the instance to use when
+ deserializing a file_type parameter.
+ If passed, type conversion is attempted
+ If omitted no type conversion is done.
+ _visited_composed_classes (tuple): This stores a tuple of
+ classes that we have traveled through so that
+ if we see that class again we will not use its
+ discriminator again.
+ When traveling through a discriminator, the
+ composed schema that is
+ is traveled through is added to this set.
+ For example if Animal has a discriminator
+ petType and we pass in "Dog", and the class Dog
+ allOf includes Animal, we move through Animal
+ once using the discriminator, and pick Dog.
+ Then in Dog, we will make an instance of the
+ Animal class but this time we won't travel
+ through its discriminator because we passed in
+ _visited_composed_classes = (Animal,)
+ count (int): The total number of 'bulk.Request' resources matching the request, accross all pages. The 'Count' attribute is included when the HTTP GET request includes the '$inlinecount' parameter.. [optional] # noqa: E501
+ results ([MoTagKeySummary], none_type): [optional] # noqa: E501
+ """
+
+ _check_type = kwargs.pop('_check_type', True)
+ _spec_property_naming = kwargs.pop('_spec_property_naming', False)
+ _path_to_item = kwargs.pop('_path_to_item', ())
+ _configuration = kwargs.pop('_configuration', None)
+ _visited_composed_classes = kwargs.pop('_visited_composed_classes', ())
+
+ if args:
+ raise ApiTypeError(
+ "Invalid positional arguments=%s passed to %s. Remove those invalid positional arguments." % (
+ args,
+ self.__class__.__name__,
+ ),
+ path_to_item=_path_to_item,
+ valid_classes=(self.__class__,),
+ )
+
+ self._data_store = {}
+ self._check_type = _check_type
+ self._spec_property_naming = _spec_property_naming
+ self._path_to_item = _path_to_item
+ self._configuration = _configuration
+ self._visited_composed_classes = _visited_composed_classes + (self.__class__,)
+
+ constant_args = {
+ '_check_type': _check_type,
+ '_path_to_item': _path_to_item,
+ '_spec_property_naming': _spec_property_naming,
+ '_configuration': _configuration,
+ '_visited_composed_classes': self._visited_composed_classes,
+ }
+ required_args = {
+ 'object_type': object_type,
+ }
+ model_args = {}
+ model_args.update(required_args)
+ model_args.update(kwargs)
+ composed_info = validate_get_composed_info(
+ constant_args, model_args, self)
+ self._composed_instances = composed_info[0]
+ self._var_name_to_model_instances = composed_info[1]
+ self._additional_properties_model_instances = composed_info[2]
+ unused_args = composed_info[3]
+
+ for var_name, var_value in required_args.items():
+ setattr(self, var_name, var_value)
+ for var_name, var_value in kwargs.items():
+ if var_name in unused_args and \
+ self._configuration is not None and \
+ self._configuration.discard_unknown_keys and \
+ not self._additional_properties_model_instances:
+ # discard variable.
+ continue
+ setattr(self, var_name, var_value)
+
+ @cached_property
+ def _composed_schemas():
+ # we need this here to make our import statements work
+ # we must store _composed_schemas in here so the code is only run
+ # when we invoke this method. If we kept this at the class
+ # level we would get an error beause the class level
+ # code would be run when this module is imported, and these composed
+ # classes don't exist yet because their module has not finished
+ # loading
+ lazy_import()
+ return {
+ 'anyOf': [
+ ],
+ 'allOf': [
+ ],
+ 'oneOf': [
+ BulkRequestList,
+ MoAggregateTransform,
+ MoDocumentCount,
+ MoTagSummary,
+ ],
+ }
diff --git a/intersight/model/bulk_rest_result.py b/intersight/model/bulk_rest_result.py
index 2e9faf6c1a..f33770840d 100644
--- a/intersight/model/bulk_rest_result.py
+++ b/intersight/model/bulk_rest_result.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
@@ -98,6 +98,7 @@ def openapi_types():
'class_id': (str,), # noqa: E501
'object_type': (str,), # noqa: E501
'body': (MoBaseMo,), # noqa: E501
+ 'body_string': (str,), # noqa: E501
'status': (int,), # noqa: E501
}
@@ -113,6 +114,7 @@ def discriminator():
'class_id': 'ClassId', # noqa: E501
'object_type': 'ObjectType', # noqa: E501
'body': 'Body', # noqa: E501
+ 'body_string': 'BodyString', # noqa: E501
'status': 'Status', # noqa: E501
}
@@ -168,6 +170,7 @@ def __init__(self, *args, **kwargs): # noqa: E501
through its discriminator because we passed in
_visited_composed_classes = (Animal,)
body (MoBaseMo): [optional] # noqa: E501
+ body_string (str): The response string for an individual REST API action.. [optional] # noqa: E501
status (int): The http return status of the individual API action.. [optional] # noqa: E501
"""
diff --git a/intersight/model/bulk_rest_result_all_of.py b/intersight/model/bulk_rest_result_all_of.py
index ae9d72b4d5..8888e526ff 100644
--- a/intersight/model/bulk_rest_result_all_of.py
+++ b/intersight/model/bulk_rest_result_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
@@ -87,6 +87,7 @@ def openapi_types():
'class_id': (str,), # noqa: E501
'object_type': (str,), # noqa: E501
'body': (MoBaseMo,), # noqa: E501
+ 'body_string': (str,), # noqa: E501
}
@cached_property
@@ -98,6 +99,7 @@ def discriminator():
'class_id': 'ClassId', # noqa: E501
'object_type': 'ObjectType', # noqa: E501
'body': 'Body', # noqa: E501
+ 'body_string': 'BodyString', # noqa: E501
}
_composed_schemas = {}
@@ -151,6 +153,7 @@ def __init__(self, *args, **kwargs): # noqa: E501
through its discriminator because we passed in
_visited_composed_classes = (Animal,)
body (MoBaseMo): [optional] # noqa: E501
+ body_string (str): The response string for an individual REST API action.. [optional] # noqa: E501
"""
class_id = kwargs.get('class_id', "bulk.RestResult")
diff --git a/intersight/model/bulk_rest_sub_request.py b/intersight/model/bulk_rest_sub_request.py
index 88287bb4c2..ead5097229 100644
--- a/intersight/model/bulk_rest_sub_request.py
+++ b/intersight/model/bulk_rest_sub_request.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
@@ -67,6 +67,11 @@ class BulkRestSubRequest(ModelComposed):
('object_type',): {
'BULK.RESTSUBREQUEST': "bulk.RestSubRequest",
},
+ ('verb',): {
+ 'POST': "POST",
+ 'PATCH': "PATCH",
+ 'DELETE': "DELETE",
+ },
}
validations = {
@@ -99,6 +104,8 @@ def openapi_types():
'object_type': (str,), # noqa: E501
'body': (MoBaseMo,), # noqa: E501
'target_moid': (str,), # noqa: E501
+ 'uri': (str,), # noqa: E501
+ 'verb': (str,), # noqa: E501
}
@cached_property
@@ -114,6 +121,8 @@ def discriminator():
'object_type': 'ObjectType', # noqa: E501
'body': 'Body', # noqa: E501
'target_moid': 'TargetMoid', # noqa: E501
+ 'uri': 'Uri', # noqa: E501
+ 'verb': 'Verb', # noqa: E501
}
required_properties = set([
@@ -169,6 +178,8 @@ def __init__(self, *args, **kwargs): # noqa: E501
_visited_composed_classes = (Animal,)
body (MoBaseMo): [optional] # noqa: E501
target_moid (str): Used with PATCH & DELETE actions. The moid of an existing object instance.. [optional] # noqa: E501
+ uri (str): The URI on which this action is to be performed.. [optional] # noqa: E501
+ verb (str): The type of operation to be performed. One of - Post (Create), Patch (Update) or Delete (Remove). The value is used to override the top level verb. * `POST` - Used to create a REST resource. * `PATCH` - Used to update a REST resource. * `DELETE` - Used to delete a REST resource.. [optional] if omitted the server will use the default value of "POST" # noqa: E501
"""
class_id = kwargs.get('class_id', "bulk.RestSubRequest")
diff --git a/intersight/model/bulk_rest_sub_request_all_of.py b/intersight/model/bulk_rest_sub_request_all_of.py
index 4b0546cf52..cf9d67a836 100644
--- a/intersight/model/bulk_rest_sub_request_all_of.py
+++ b/intersight/model/bulk_rest_sub_request_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/bulk_sub_request.py b/intersight/model/bulk_sub_request.py
index 0abe864d97..5a9bc05d14 100644
--- a/intersight/model/bulk_sub_request.py
+++ b/intersight/model/bulk_sub_request.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
@@ -29,8 +29,10 @@
def lazy_import():
from intersight.model.bulk_rest_sub_request import BulkRestSubRequest
+ from intersight.model.bulk_sub_request_all_of import BulkSubRequestAllOf
from intersight.model.mo_base_complex_type import MoBaseComplexType
globals()['BulkRestSubRequest'] = BulkRestSubRequest
+ globals()['BulkSubRequestAllOf'] = BulkSubRequestAllOf
globals()['MoBaseComplexType'] = MoBaseComplexType
@@ -60,1018 +62,15 @@ class BulkSubRequest(ModelComposed):
allowed_values = {
('class_id',): {
- 'ACCESS.ADDRESSTYPE': "access.AddressType",
- 'ADAPTER.ADAPTERCONFIG': "adapter.AdapterConfig",
- 'ADAPTER.DCEINTERFACESETTINGS': "adapter.DceInterfaceSettings",
- 'ADAPTER.ETHSETTINGS': "adapter.EthSettings",
- 'ADAPTER.FCSETTINGS': "adapter.FcSettings",
- 'ADAPTER.PORTCHANNELSETTINGS': "adapter.PortChannelSettings",
- 'APPLIANCE.APISTATUS': "appliance.ApiStatus",
- 'APPLIANCE.CERTRENEWALPHASE': "appliance.CertRenewalPhase",
- 'APPLIANCE.KEYVALUEPAIR': "appliance.KeyValuePair",
- 'APPLIANCE.STATUSCHECK': "appliance.StatusCheck",
- 'ASSET.ADDRESSINFORMATION': "asset.AddressInformation",
- 'ASSET.APIKEYCREDENTIAL': "asset.ApiKeyCredential",
- 'ASSET.CLIENTCERTIFICATECREDENTIAL': "asset.ClientCertificateCredential",
- 'ASSET.CLOUDCONNECTION': "asset.CloudConnection",
- 'ASSET.CONNECTIONCONTROLMESSAGE': "asset.ConnectionControlMessage",
- 'ASSET.CONTRACTINFORMATION': "asset.ContractInformation",
- 'ASSET.CUSTOMERINFORMATION': "asset.CustomerInformation",
- 'ASSET.DEPLOYMENTDEVICEINFORMATION': "asset.DeploymentDeviceInformation",
- 'ASSET.DEVICEINFORMATION': "asset.DeviceInformation",
- 'ASSET.DEVICESTATISTICS': "asset.DeviceStatistics",
- 'ASSET.DEVICETRANSACTION': "asset.DeviceTransaction",
- 'ASSET.GLOBALULTIMATE': "asset.GlobalUltimate",
- 'ASSET.HTTPCONNECTION': "asset.HttpConnection",
- 'ASSET.INTERSIGHTDEVICECONNECTORCONNECTION': "asset.IntersightDeviceConnectorConnection",
- 'ASSET.METERINGTYPE': "asset.MeteringType",
- 'ASSET.NOAUTHENTICATIONCREDENTIAL': "asset.NoAuthenticationCredential",
- 'ASSET.OAUTHBEARERTOKENCREDENTIAL': "asset.OauthBearerTokenCredential",
- 'ASSET.OAUTHCLIENTIDSECRETCREDENTIAL': "asset.OauthClientIdSecretCredential",
- 'ASSET.ORCHESTRATIONHITACHIVIRTUALSTORAGEPLATFORMOPTIONS': "asset.OrchestrationHitachiVirtualStoragePlatformOptions",
- 'ASSET.ORCHESTRATIONSERVICE': "asset.OrchestrationService",
- 'ASSET.PARENTCONNECTIONSIGNATURE': "asset.ParentConnectionSignature",
- 'ASSET.PRODUCTINFORMATION': "asset.ProductInformation",
- 'ASSET.SUDIINFO': "asset.SudiInfo",
- 'ASSET.TARGETKEY': "asset.TargetKey",
- 'ASSET.TARGETSIGNATURE': "asset.TargetSignature",
- 'ASSET.TARGETSTATUSDETAILS': "asset.TargetStatusDetails",
- 'ASSET.TERRAFORMINTEGRATIONSERVICE': "asset.TerraformIntegrationService",
- 'ASSET.TERRAFORMINTEGRATIONTERRAFORMAGENTOPTIONS': "asset.TerraformIntegrationTerraformAgentOptions",
- 'ASSET.TERRAFORMINTEGRATIONTERRAFORMCLOUDOPTIONS': "asset.TerraformIntegrationTerraformCloudOptions",
- 'ASSET.USERNAMEPASSWORDCREDENTIAL': "asset.UsernamePasswordCredential",
- 'ASSET.VIRTUALIZATIONAMAZONWEBSERVICEOPTIONS': "asset.VirtualizationAmazonWebServiceOptions",
- 'ASSET.VIRTUALIZATIONSERVICE': "asset.VirtualizationService",
- 'ASSET.VMHOST': "asset.VmHost",
- 'ASSET.WORKLOADOPTIMIZERAMAZONWEBSERVICESBILLINGOPTIONS': "asset.WorkloadOptimizerAmazonWebServicesBillingOptions",
- 'ASSET.WORKLOADOPTIMIZERHYPERVOPTIONS': "asset.WorkloadOptimizerHypervOptions",
- 'ASSET.WORKLOADOPTIMIZERMICROSOFTAZUREAPPLICATIONINSIGHTSOPTIONS': "asset.WorkloadOptimizerMicrosoftAzureApplicationInsightsOptions",
- 'ASSET.WORKLOADOPTIMIZERMICROSOFTAZUREENTERPRISEAGREEMENTOPTIONS': "asset.WorkloadOptimizerMicrosoftAzureEnterpriseAgreementOptions",
- 'ASSET.WORKLOADOPTIMIZERMICROSOFTAZURESERVICEPRINCIPALOPTIONS': "asset.WorkloadOptimizerMicrosoftAzureServicePrincipalOptions",
- 'ASSET.WORKLOADOPTIMIZEROPENSTACKOPTIONS': "asset.WorkloadOptimizerOpenStackOptions",
- 'ASSET.WORKLOADOPTIMIZERREDHATOPENSTACKOPTIONS': "asset.WorkloadOptimizerRedHatOpenStackOptions",
- 'ASSET.WORKLOADOPTIMIZERSERVICE': "asset.WorkloadOptimizerService",
- 'ASSET.WORKLOADOPTIMIZERVMWAREVCENTEROPTIONS': "asset.WorkloadOptimizerVmwareVcenterOptions",
- 'BOOT.BOOTLOADER': "boot.Bootloader",
- 'BOOT.ISCSI': "boot.Iscsi",
- 'BOOT.LOCALCDD': "boot.LocalCdd",
- 'BOOT.LOCALDISK': "boot.LocalDisk",
- 'BOOT.NVME': "boot.Nvme",
- 'BOOT.PCHSTORAGE': "boot.PchStorage",
- 'BOOT.PXE': "boot.Pxe",
- 'BOOT.SAN': "boot.San",
- 'BOOT.SDCARD': "boot.SdCard",
- 'BOOT.UEFISHELL': "boot.UefiShell",
- 'BOOT.USB': "boot.Usb",
- 'BOOT.VIRTUALMEDIA': "boot.VirtualMedia",
- 'BULK.RESTRESULT': "bulk.RestResult",
'BULK.RESTSUBREQUEST': "bulk.RestSubRequest",
- 'CAPABILITY.PORTRANGE': "capability.PortRange",
- 'CAPABILITY.SWITCHNETWORKLIMITS': "capability.SwitchNetworkLimits",
- 'CAPABILITY.SWITCHSTORAGELIMITS': "capability.SwitchStorageLimits",
- 'CAPABILITY.SWITCHSYSTEMLIMITS': "capability.SwitchSystemLimits",
- 'CAPABILITY.SWITCHINGMODECAPABILITY': "capability.SwitchingModeCapability",
- 'CERTIFICATEMANAGEMENT.IMC': "certificatemanagement.Imc",
- 'CLOUD.AVAILABILITYZONE': "cloud.AvailabilityZone",
- 'CLOUD.BILLINGUNIT': "cloud.BillingUnit",
- 'CLOUD.CLOUDREGION': "cloud.CloudRegion",
- 'CLOUD.CLOUDTAG': "cloud.CloudTag",
- 'CLOUD.CUSTOMATTRIBUTES': "cloud.CustomAttributes",
- 'CLOUD.IMAGEREFERENCE': "cloud.ImageReference",
- 'CLOUD.INSTANCETYPE': "cloud.InstanceType",
- 'CLOUD.NETWORKACCESSCONFIG': "cloud.NetworkAccessConfig",
- 'CLOUD.NETWORKADDRESS': "cloud.NetworkAddress",
- 'CLOUD.NETWORKINSTANCEATTACHMENT': "cloud.NetworkInstanceAttachment",
- 'CLOUD.NETWORKINTERFACEATTACHMENT': "cloud.NetworkInterfaceAttachment",
- 'CLOUD.SECURITYGROUPRULE': "cloud.SecurityGroupRule",
- 'CLOUD.TFCWORKSPACEVARIABLES': "cloud.TfcWorkspaceVariables",
- 'CLOUD.VOLUMEATTACHMENT': "cloud.VolumeAttachment",
- 'CLOUD.VOLUMEINSTANCEATTACHMENT': "cloud.VolumeInstanceAttachment",
- 'CLOUD.VOLUMEIOPSINFO': "cloud.VolumeIopsInfo",
- 'CLOUD.VOLUMETYPE': "cloud.VolumeType",
- 'CMRF.CMRF': "cmrf.CmRf",
- 'COMM.IPV4ADDRESSBLOCK': "comm.IpV4AddressBlock",
- 'COMM.IPV4INTERFACE': "comm.IpV4Interface",
- 'COMM.IPV6INTERFACE': "comm.IpV6Interface",
- 'COMPUTE.ALARMSUMMARY': "compute.AlarmSummary",
- 'COMPUTE.IPADDRESS': "compute.IpAddress",
- 'COMPUTE.PERSISTENTMEMORYMODULE': "compute.PersistentMemoryModule",
- 'COMPUTE.PERSISTENTMEMORYOPERATION': "compute.PersistentMemoryOperation",
- 'COMPUTE.SERVERCONFIG': "compute.ServerConfig",
- 'COMPUTE.STORAGECONTROLLEROPERATION': "compute.StorageControllerOperation",
- 'COMPUTE.STORAGEPHYSICALDRIVE': "compute.StoragePhysicalDrive",
- 'COMPUTE.STORAGEPHYSICALDRIVEOPERATION': "compute.StoragePhysicalDriveOperation",
- 'COMPUTE.STORAGEVIRTUALDRIVE': "compute.StorageVirtualDrive",
- 'COMPUTE.STORAGEVIRTUALDRIVEOPERATION': "compute.StorageVirtualDriveOperation",
- 'COND.ALARMSUMMARY': "cond.AlarmSummary",
- 'CONFIG.MOREF': "config.MoRef",
- 'CONNECTOR.CLOSESTREAMMESSAGE': "connector.CloseStreamMessage",
- 'CONNECTOR.COMMANDCONTROLMESSAGE': "connector.CommandControlMessage",
- 'CONNECTOR.COMMANDTERMINALSTREAM': "connector.CommandTerminalStream",
- 'CONNECTOR.EXPECTPROMPT': "connector.ExpectPrompt",
- 'CONNECTOR.FETCHSTREAMMESSAGE': "connector.FetchStreamMessage",
- 'CONNECTOR.FILECHECKSUM': "connector.FileChecksum",
- 'CONNECTOR.FILEMESSAGE': "connector.FileMessage",
- 'CONNECTOR.HTTPREQUEST': "connector.HttpRequest",
- 'CONNECTOR.SSHCONFIG': "connector.SshConfig",
- 'CONNECTOR.SSHMESSAGE': "connector.SshMessage",
- 'CONNECTOR.STARTSTREAM': "connector.StartStream",
- 'CONNECTOR.STARTSTREAMFROMDEVICE': "connector.StartStreamFromDevice",
- 'CONNECTOR.STREAMACKNOWLEDGE': "connector.StreamAcknowledge",
- 'CONNECTOR.STREAMINPUT': "connector.StreamInput",
- 'CONNECTOR.STREAMKEEPALIVE': "connector.StreamKeepalive",
- 'CONNECTOR.URL': "connector.Url",
- 'CONNECTOR.XMLAPIMESSAGE': "connector.XmlApiMessage",
- 'CONNECTORPACK.CONNECTORPACKUPDATE': "connectorpack.ConnectorPackUpdate",
- 'CONTENT.COMPLEXTYPE': "content.ComplexType",
- 'CONTENT.PARAMETER': "content.Parameter",
- 'CONTENT.TEXTPARAMETER': "content.TextParameter",
- 'CRD.CUSTOMRESOURCECONFIGPROPERTY': "crd.CustomResourceConfigProperty",
- 'EQUIPMENT.IOCARDIDENTITY': "equipment.IoCardIdentity",
- 'FABRIC.LLDPSETTINGS': "fabric.LldpSettings",
- 'FABRIC.MACAGINGSETTINGS': "fabric.MacAgingSettings",
- 'FABRIC.PORTIDENTIFIER': "fabric.PortIdentifier",
- 'FABRIC.QOSCLASS': "fabric.QosClass",
- 'FABRIC.UDLDGLOBALSETTINGS': "fabric.UdldGlobalSettings",
- 'FABRIC.UDLDSETTINGS': "fabric.UdldSettings",
- 'FABRIC.VLANSETTINGS': "fabric.VlanSettings",
- 'FCPOOL.BLOCK': "fcpool.Block",
- 'FEEDBACK.FEEDBACKDATA': "feedback.FeedbackData",
- 'FIRMWARE.CHASSISUPGRADEIMPACT': "firmware.ChassisUpgradeImpact",
- 'FIRMWARE.CIFSSERVER': "firmware.CifsServer",
- 'FIRMWARE.COMPONENTIMPACT': "firmware.ComponentImpact",
- 'FIRMWARE.COMPONENTMETA': "firmware.ComponentMeta",
- 'FIRMWARE.DIRECTDOWNLOAD': "firmware.DirectDownload",
- 'FIRMWARE.FABRICUPGRADEIMPACT': "firmware.FabricUpgradeImpact",
- 'FIRMWARE.FIRMWAREINVENTORY': "firmware.FirmwareInventory",
- 'FIRMWARE.HTTPSERVER': "firmware.HttpServer",
- 'FIRMWARE.NETWORKSHARE': "firmware.NetworkShare",
- 'FIRMWARE.NFSSERVER': "firmware.NfsServer",
- 'FIRMWARE.SERVERUPGRADEIMPACT': "firmware.ServerUpgradeImpact",
- 'FORECAST.MODEL': "forecast.Model",
- 'HCL.CONSTRAINT': "hcl.Constraint",
- 'HCL.FIRMWARE': "hcl.Firmware",
- 'HCL.HARDWARECOMPATIBILITYPROFILE': "hcl.HardwareCompatibilityProfile",
- 'HCL.PRODUCT': "hcl.Product",
- 'HYPERFLEX.ALARMSUMMARY': "hyperflex.AlarmSummary",
- 'HYPERFLEX.APPSETTINGCONSTRAINT': "hyperflex.AppSettingConstraint",
- 'HYPERFLEX.BONDSTATE': "hyperflex.BondState",
- 'HYPERFLEX.DATASTOREINFO': "hyperflex.DatastoreInfo",
- 'HYPERFLEX.DISKSTATUS': "hyperflex.DiskStatus",
- 'HYPERFLEX.ENTITYREFERENCE': "hyperflex.EntityReference",
- 'HYPERFLEX.ERRORSTACK': "hyperflex.ErrorStack",
- 'HYPERFLEX.FEATURELIMITENTRY': "hyperflex.FeatureLimitEntry",
- 'HYPERFLEX.FILEPATH': "hyperflex.FilePath",
- 'HYPERFLEX.HEALTHCHECKSCRIPTINFO': "hyperflex.HealthCheckScriptInfo",
- 'HYPERFLEX.HXHOSTMOUNTSTATUSDT': "hyperflex.HxHostMountStatusDt",
- 'HYPERFLEX.HXLICENSEAUTHORIZATIONDETAILSDT': "hyperflex.HxLicenseAuthorizationDetailsDt",
- 'HYPERFLEX.HXLINKDT': "hyperflex.HxLinkDt",
- 'HYPERFLEX.HXNETWORKADDRESSDT': "hyperflex.HxNetworkAddressDt",
- 'HYPERFLEX.HXPLATFORMDATASTORECONFIGDT': "hyperflex.HxPlatformDatastoreConfigDt",
- 'HYPERFLEX.HXREGISTRATIONDETAILSDT': "hyperflex.HxRegistrationDetailsDt",
- 'HYPERFLEX.HXRESILIENCYINFODT': "hyperflex.HxResiliencyInfoDt",
- 'HYPERFLEX.HXSITEDT': "hyperflex.HxSiteDt",
- 'HYPERFLEX.HXUUIDDT': "hyperflex.HxUuIdDt",
- 'HYPERFLEX.HXZONEINFODT': "hyperflex.HxZoneInfoDt",
- 'HYPERFLEX.HXZONERESILIENCYINFODT': "hyperflex.HxZoneResiliencyInfoDt",
- 'HYPERFLEX.IPADDRRANGE': "hyperflex.IpAddrRange",
- 'HYPERFLEX.LOGICALAVAILABILITYZONE': "hyperflex.LogicalAvailabilityZone",
- 'HYPERFLEX.MACADDRPREFIXRANGE': "hyperflex.MacAddrPrefixRange",
- 'HYPERFLEX.MAPCLUSTERIDTOPROTECTIONINFO': "hyperflex.MapClusterIdToProtectionInfo",
- 'HYPERFLEX.MAPCLUSTERIDTOSTSNAPSHOTPOINT': "hyperflex.MapClusterIdToStSnapshotPoint",
- 'HYPERFLEX.MAPUUIDTOTRACKEDDISK': "hyperflex.MapUuidToTrackedDisk",
- 'HYPERFLEX.NAMEDVLAN': "hyperflex.NamedVlan",
- 'HYPERFLEX.NAMEDVSAN': "hyperflex.NamedVsan",
- 'HYPERFLEX.NETWORKPORT': "hyperflex.NetworkPort",
- 'HYPERFLEX.PORTTYPETOPORTNUMBERMAP': "hyperflex.PortTypeToPortNumberMap",
- 'HYPERFLEX.PROTECTIONINFO': "hyperflex.ProtectionInfo",
- 'HYPERFLEX.REPLICATIONCLUSTERREFERENCETOSCHEDULE': "hyperflex.ReplicationClusterReferenceToSchedule",
- 'HYPERFLEX.REPLICATIONPEERINFO': "hyperflex.ReplicationPeerInfo",
- 'HYPERFLEX.REPLICATIONPLATDATASTORE': "hyperflex.ReplicationPlatDatastore",
- 'HYPERFLEX.REPLICATIONPLATDATASTOREPAIR': "hyperflex.ReplicationPlatDatastorePair",
- 'HYPERFLEX.REPLICATIONSCHEDULE': "hyperflex.ReplicationSchedule",
- 'HYPERFLEX.REPLICATIONSTATUS': "hyperflex.ReplicationStatus",
- 'HYPERFLEX.RPOSTATUS': "hyperflex.RpoStatus",
- 'HYPERFLEX.SERVERFIRMWAREVERSIONINFO': "hyperflex.ServerFirmwareVersionInfo",
- 'HYPERFLEX.SERVERMODELENTRY': "hyperflex.ServerModelEntry",
- 'HYPERFLEX.SNAPSHOTFILES': "hyperflex.SnapshotFiles",
- 'HYPERFLEX.SNAPSHOTINFOBRIEF': "hyperflex.SnapshotInfoBrief",
- 'HYPERFLEX.SNAPSHOTPOINT': "hyperflex.SnapshotPoint",
- 'HYPERFLEX.SNAPSHOTSTATUS': "hyperflex.SnapshotStatus",
- 'HYPERFLEX.STPLATFORMCLUSTERHEALINGINFO': "hyperflex.StPlatformClusterHealingInfo",
- 'HYPERFLEX.STPLATFORMCLUSTERRESILIENCYINFO': "hyperflex.StPlatformClusterResiliencyInfo",
- 'HYPERFLEX.SUMMARY': "hyperflex.Summary",
- 'HYPERFLEX.TRACKEDDISK': "hyperflex.TrackedDisk",
- 'HYPERFLEX.TRACKEDFILE': "hyperflex.TrackedFile",
- 'HYPERFLEX.VDISKCONFIG': "hyperflex.VdiskConfig",
- 'HYPERFLEX.VIRTUALMACHINE': "hyperflex.VirtualMachine",
- 'HYPERFLEX.VIRTUALMACHINERUNTIMEINFO': "hyperflex.VirtualMachineRuntimeInfo",
- 'HYPERFLEX.VMDISK': "hyperflex.VmDisk",
- 'HYPERFLEX.VMINTERFACE': "hyperflex.VmInterface",
- 'HYPERFLEX.VMPROTECTIONSPACEUSAGE': "hyperflex.VmProtectionSpaceUsage",
- 'HYPERFLEX.WWXNPREFIXRANGE': "hyperflex.WwxnPrefixRange",
- 'I18N.MESSAGE': "i18n.Message",
- 'I18N.MESSAGEPARAM': "i18n.MessageParam",
- 'IAAS.LICENSEKEYSINFO': "iaas.LicenseKeysInfo",
- 'IAAS.LICENSEUTILIZATIONINFO': "iaas.LicenseUtilizationInfo",
- 'IAAS.WORKFLOWSTEPS': "iaas.WorkflowSteps",
- 'IAM.ACCOUNTPERMISSIONS': "iam.AccountPermissions",
- 'IAM.CLIENTMETA': "iam.ClientMeta",
- 'IAM.ENDPOINTPASSWORDPROPERTIES': "iam.EndPointPasswordProperties",
- 'IAM.FEATUREDEFINITION': "iam.FeatureDefinition",
- 'IAM.GROUPPERMISSIONTOROLES': "iam.GroupPermissionToRoles",
- 'IAM.LDAPBASEPROPERTIES': "iam.LdapBaseProperties",
- 'IAM.LDAPDNSPARAMETERS': "iam.LdapDnsParameters",
- 'IAM.PERMISSIONREFERENCE': "iam.PermissionReference",
- 'IAM.PERMISSIONTOROLES': "iam.PermissionToRoles",
- 'IAM.RULE': "iam.Rule",
- 'IAM.SAMLSPCONNECTION': "iam.SamlSpConnection",
- 'IAM.SSOSESSIONATTRIBUTES': "iam.SsoSessionAttributes",
- 'IMCCONNECTOR.WEBUIMESSAGE': "imcconnector.WebUiMessage",
- 'INFRA.HARDWAREINFO': "infra.HardwareInfo",
- 'INFRA.METADATA': "infra.MetaData",
- 'INVENTORY.INVENTORYMO': "inventory.InventoryMo",
- 'INVENTORY.UEMINFO': "inventory.UemInfo",
- 'IPPOOL.IPV4BLOCK': "ippool.IpV4Block",
- 'IPPOOL.IPV4CONFIG': "ippool.IpV4Config",
- 'IPPOOL.IPV6BLOCK': "ippool.IpV6Block",
- 'IPPOOL.IPV6CONFIG': "ippool.IpV6Config",
- 'IQNPOOL.IQNSUFFIXBLOCK': "iqnpool.IqnSuffixBlock",
- 'KUBERNETES.ACTIONINFO': "kubernetes.ActionInfo",
- 'KUBERNETES.ADDON': "kubernetes.Addon",
- 'KUBERNETES.ADDONCONFIGURATION': "kubernetes.AddonConfiguration",
- 'KUBERNETES.CALICOCONFIG': "kubernetes.CalicoConfig",
- 'KUBERNETES.CLUSTERCERTIFICATECONFIGURATION': "kubernetes.ClusterCertificateConfiguration",
- 'KUBERNETES.CLUSTERMANAGEMENTCONFIG': "kubernetes.ClusterManagementConfig",
- 'KUBERNETES.CONFIGURATION': "kubernetes.Configuration",
- 'KUBERNETES.DAEMONSETSTATUS': "kubernetes.DaemonSetStatus",
- 'KUBERNETES.DEPLOYMENTSTATUS': "kubernetes.DeploymentStatus",
- 'KUBERNETES.ESSENTIALADDON': "kubernetes.EssentialAddon",
- 'KUBERNETES.ESXIVIRTUALMACHINEINFRACONFIG': "kubernetes.EsxiVirtualMachineInfraConfig",
- 'KUBERNETES.HYPERFLEXAPVIRTUALMACHINEINFRACONFIG': "kubernetes.HyperFlexApVirtualMachineInfraConfig",
- 'KUBERNETES.INGRESSSTATUS': "kubernetes.IngressStatus",
- 'KUBERNETES.KEYVALUE': "kubernetes.KeyValue",
- 'KUBERNETES.LOADBALANCER': "kubernetes.LoadBalancer",
- 'KUBERNETES.NODEADDRESS': "kubernetes.NodeAddress",
- 'KUBERNETES.NODEGROUPLABEL': "kubernetes.NodeGroupLabel",
- 'KUBERNETES.NODEGROUPTAINT': "kubernetes.NodeGroupTaint",
- 'KUBERNETES.NODEINFO': "kubernetes.NodeInfo",
- 'KUBERNETES.NODESPEC': "kubernetes.NodeSpec",
- 'KUBERNETES.NODESTATUS': "kubernetes.NodeStatus",
- 'KUBERNETES.OBJECTMETA': "kubernetes.ObjectMeta",
- 'KUBERNETES.PODSTATUS': "kubernetes.PodStatus",
- 'KUBERNETES.PROXYCONFIG': "kubernetes.ProxyConfig",
- 'KUBERNETES.SERVICESTATUS': "kubernetes.ServiceStatus",
- 'KUBERNETES.STATEFULSETSTATUS': "kubernetes.StatefulSetStatus",
- 'KUBERNETES.TAINT': "kubernetes.Taint",
- 'MACPOOL.BLOCK': "macpool.Block",
- 'MEMORY.PERSISTENTMEMORYGOAL': "memory.PersistentMemoryGoal",
- 'MEMORY.PERSISTENTMEMORYLOCALSECURITY': "memory.PersistentMemoryLocalSecurity",
- 'MEMORY.PERSISTENTMEMORYLOGICALNAMESPACE': "memory.PersistentMemoryLogicalNamespace",
- 'META.ACCESSPRIVILEGE': "meta.AccessPrivilege",
- 'META.DISPLAYNAMEDEFINITION': "meta.DisplayNameDefinition",
- 'META.PROPDEFINITION': "meta.PropDefinition",
- 'META.RELATIONSHIPDEFINITION': "meta.RelationshipDefinition",
- 'MO.MOREF': "mo.MoRef",
- 'MO.TAG': "mo.Tag",
- 'MO.VERSIONCONTEXT': "mo.VersionContext",
- 'NIAAPI.DETAIL': "niaapi.Detail",
- 'NIAAPI.NEWRELEASEDETAIL': "niaapi.NewReleaseDetail",
- 'NIAAPI.REVISIONINFO': "niaapi.RevisionInfo",
- 'NIAAPI.SOFTWAREREGEX': "niaapi.SoftwareRegex",
- 'NIAAPI.VERSIONREGEXPLATFORM': "niaapi.VersionRegexPlatform",
- 'NIATELEMETRY.BOOTFLASHDETAILS': "niatelemetry.BootflashDetails",
- 'NIATELEMETRY.DISKINFO': "niatelemetry.Diskinfo",
- 'NIATELEMETRY.INTERFACE': "niatelemetry.Interface",
- 'NIATELEMETRY.INTERFACEELEMENT': "niatelemetry.InterfaceElement",
- 'NIATELEMETRY.LOGICALLINK': "niatelemetry.LogicalLink",
- 'NIATELEMETRY.NVEPACKETCOUNTERS': "niatelemetry.NvePacketCounters",
- 'NIATELEMETRY.NVEVNI': "niatelemetry.NveVni",
- 'NIATELEMETRY.NXOSBGPMVPN': "niatelemetry.NxosBgpMvpn",
- 'NIATELEMETRY.NXOSVTP': "niatelemetry.NxosVtp",
- 'NIATELEMETRY.SMARTLICENSE': "niatelemetry.SmartLicense",
- 'NOTIFICATION.ALARMMOCONDITION': "notification.AlarmMoCondition",
- 'NOTIFICATION.SENDEMAIL': "notification.SendEmail",
- 'NTP.AUTHNTPSERVER': "ntp.AuthNtpServer",
- 'ONPREM.IMAGEPACKAGE': "onprem.ImagePackage",
- 'ONPREM.SCHEDULE': "onprem.Schedule",
- 'ONPREM.UPGRADENOTE': "onprem.UpgradeNote",
- 'ONPREM.UPGRADEPHASE': "onprem.UpgradePhase",
- 'OPRS.KVPAIR': "oprs.Kvpair",
- 'OS.ANSWERS': "os.Answers",
- 'OS.GLOBALCONFIG': "os.GlobalConfig",
- 'OS.IPV4CONFIGURATION': "os.Ipv4Configuration",
- 'OS.IPV6CONFIGURATION': "os.Ipv6Configuration",
- 'OS.PHYSICALDISK': "os.PhysicalDisk",
- 'OS.PHYSICALDISKRESPONSE': "os.PhysicalDiskResponse",
- 'OS.PLACEHOLDER': "os.PlaceHolder",
- 'OS.SERVERCONFIG': "os.ServerConfig",
- 'OS.VALIDATIONINFORMATION': "os.ValidationInformation",
- 'OS.VIRTUALDRIVE': "os.VirtualDrive",
- 'OS.VIRTUALDRIVERESPONSE': "os.VirtualDriveResponse",
- 'OS.WINDOWSPARAMETERS': "os.WindowsParameters",
- 'PKIX.DISTINGUISHEDNAME': "pkix.DistinguishedName",
- 'PKIX.ECDSAKEYSPEC': "pkix.EcdsaKeySpec",
- 'PKIX.EDDSAKEYSPEC': "pkix.EddsaKeySpec",
- 'PKIX.RSAALGORITHM': "pkix.RsaAlgorithm",
- 'PKIX.SUBJECTALTERNATENAME': "pkix.SubjectAlternateName",
- 'POLICY.ACTIONQUALIFIER': "policy.ActionQualifier",
- 'POLICY.CONFIGCHANGE': "policy.ConfigChange",
- 'POLICY.CONFIGCHANGECONTEXT': "policy.ConfigChangeContext",
- 'POLICY.CONFIGCONTEXT': "policy.ConfigContext",
- 'POLICY.CONFIGRESULTCONTEXT': "policy.ConfigResultContext",
- 'POLICY.QUALIFIER': "policy.Qualifier",
- 'POLICYINVENTORY.JOBINFO': "policyinventory.JobInfo",
- 'RECOVERY.BACKUPSCHEDULE': "recovery.BackupSchedule",
- 'RESOURCE.PERTYPECOMBINEDSELECTOR': "resource.PerTypeCombinedSelector",
- 'RESOURCE.SELECTOR': "resource.Selector",
- 'RESOURCE.SOURCETOPERMISSIONRESOURCES': "resource.SourceToPermissionResources",
- 'RESOURCE.SOURCETOPERMISSIONRESOURCESHOLDER': "resource.SourceToPermissionResourcesHolder",
- 'SDCARD.DIAGNOSTICS': "sdcard.Diagnostics",
- 'SDCARD.DRIVERS': "sdcard.Drivers",
- 'SDCARD.HOSTUPGRADEUTILITY': "sdcard.HostUpgradeUtility",
- 'SDCARD.OPERATINGSYSTEM': "sdcard.OperatingSystem",
- 'SDCARD.PARTITION': "sdcard.Partition",
- 'SDCARD.SERVERCONFIGURATIONUTILITY': "sdcard.ServerConfigurationUtility",
- 'SDCARD.USERPARTITION': "sdcard.UserPartition",
- 'SDWAN.NETWORKCONFIGURATIONTYPE': "sdwan.NetworkConfigurationType",
- 'SDWAN.TEMPLATEINPUTSTYPE': "sdwan.TemplateInputsType",
- 'SNMP.TRAP': "snmp.Trap",
- 'SNMP.USER': "snmp.User",
- 'SOFTWAREREPOSITORY.APPLIANCEUPLOAD': "softwarerepository.ApplianceUpload",
- 'SOFTWAREREPOSITORY.CIFSSERVER': "softwarerepository.CifsServer",
- 'SOFTWAREREPOSITORY.CONSTRAINTMODELS': "softwarerepository.ConstraintModels",
- 'SOFTWAREREPOSITORY.HTTPSERVER': "softwarerepository.HttpServer",
- 'SOFTWAREREPOSITORY.IMPORTRESULT': "softwarerepository.ImportResult",
- 'SOFTWAREREPOSITORY.LOCALMACHINE': "softwarerepository.LocalMachine",
- 'SOFTWAREREPOSITORY.NFSSERVER': "softwarerepository.NfsServer",
- 'STORAGE.AUTOMATICDRIVEGROUP': "storage.AutomaticDriveGroup",
- 'STORAGE.HITACHIARRAYUTILIZATION': "storage.HitachiArrayUtilization",
- 'STORAGE.HITACHICAPACITY': "storage.HitachiCapacity",
- 'STORAGE.HITACHIINITIATOR': "storage.HitachiInitiator",
- 'STORAGE.INITIATOR': "storage.Initiator",
- 'STORAGE.KEYSETTING': "storage.KeySetting",
- 'STORAGE.LOCALKEYSETTING': "storage.LocalKeySetting",
- 'STORAGE.M2VIRTUALDRIVECONFIG': "storage.M2VirtualDriveConfig",
- 'STORAGE.MANUALDRIVEGROUP': "storage.ManualDriveGroup",
- 'STORAGE.NETAPPEXPORTPOLICYRULE': "storage.NetAppExportPolicyRule",
- 'STORAGE.NETAPPSTORAGEUTILIZATION': "storage.NetAppStorageUtilization",
- 'STORAGE.PUREARRAYUTILIZATION': "storage.PureArrayUtilization",
- 'STORAGE.PUREDISKUTILIZATION': "storage.PureDiskUtilization",
- 'STORAGE.PUREHOSTUTILIZATION': "storage.PureHostUtilization",
- 'STORAGE.PUREREPLICATIONBLACKOUT': "storage.PureReplicationBlackout",
- 'STORAGE.PUREVOLUMEUTILIZATION': "storage.PureVolumeUtilization",
- 'STORAGE.R0DRIVE': "storage.R0Drive",
- 'STORAGE.REMOTEKEYSETTING': "storage.RemoteKeySetting",
- 'STORAGE.SPANDRIVES': "storage.SpanDrives",
- 'STORAGE.STORAGECONTAINERUTILIZATION': "storage.StorageContainerUtilization",
- 'STORAGE.VIRTUALDRIVECONFIGURATION': "storage.VirtualDriveConfiguration",
- 'STORAGE.VIRTUALDRIVEPOLICY': "storage.VirtualDrivePolicy",
- 'STORAGE.VOLUMEUTILIZATION': "storage.VolumeUtilization",
- 'SYSLOG.LOCALFILELOGGINGCLIENT': "syslog.LocalFileLoggingClient",
- 'SYSLOG.REMOTELOGGINGCLIENT': "syslog.RemoteLoggingClient",
- 'TAM.ACTION': "tam.Action",
- 'TAM.APIDATASOURCE': "tam.ApiDataSource",
- 'TAM.IDENTIFIERS': "tam.Identifiers",
- 'TAM.PSIRTSEVERITY': "tam.PsirtSeverity",
- 'TAM.QUERYENTRY': "tam.QueryEntry",
- 'TAM.S3DATASOURCE': "tam.S3DataSource",
- 'TAM.SECURITYADVISORYDETAILS': "tam.SecurityAdvisoryDetails",
- 'TAM.TEXTFSMTEMPLATEDATASOURCE': "tam.TextFsmTemplateDataSource",
- 'TECHSUPPORTMANAGEMENT.APPLIANCEPARAM': "techsupportmanagement.ApplianceParam",
- 'TECHSUPPORTMANAGEMENT.NIAPARAM': "techsupportmanagement.NiaParam",
- 'TECHSUPPORTMANAGEMENT.PLATFORMPARAM': "techsupportmanagement.PlatformParam",
- 'TEMPLATE.TRANSFORMATIONSTAGE': "template.TransformationStage",
- 'UCSD.CONNECTORPACK': "ucsd.ConnectorPack",
- 'UCSD.UCSDRESTOREPARAMETERS': "ucsd.UcsdRestoreParameters",
- 'UCSDCONNECTOR.RESTCLIENTMESSAGE': "ucsdconnector.RestClientMessage",
- 'UUIDPOOL.UUIDBLOCK': "uuidpool.UuidBlock",
- 'VIRTUALIZATION.ACTIONINFO': "virtualization.ActionInfo",
- 'VIRTUALIZATION.CLOUDINITCONFIG': "virtualization.CloudInitConfig",
- 'VIRTUALIZATION.COMPUTECAPACITY': "virtualization.ComputeCapacity",
- 'VIRTUALIZATION.CPUALLOCATION': "virtualization.CpuAllocation",
- 'VIRTUALIZATION.CPUINFO': "virtualization.CpuInfo",
- 'VIRTUALIZATION.ESXICLONECUSTOMSPEC': "virtualization.EsxiCloneCustomSpec",
- 'VIRTUALIZATION.ESXIOVACUSTOMSPEC': "virtualization.EsxiOvaCustomSpec",
- 'VIRTUALIZATION.ESXIVMCOMPUTECONFIGURATION': "virtualization.EsxiVmComputeConfiguration",
- 'VIRTUALIZATION.ESXIVMCONFIGURATION': "virtualization.EsxiVmConfiguration",
- 'VIRTUALIZATION.ESXIVMNETWORKCONFIGURATION': "virtualization.EsxiVmNetworkConfiguration",
- 'VIRTUALIZATION.ESXIVMSTORAGECONFIGURATION': "virtualization.EsxiVmStorageConfiguration",
- 'VIRTUALIZATION.GUESTINFO': "virtualization.GuestInfo",
- 'VIRTUALIZATION.HXAPVMCONFIGURATION': "virtualization.HxapVmConfiguration",
- 'VIRTUALIZATION.MEMORYALLOCATION': "virtualization.MemoryAllocation",
- 'VIRTUALIZATION.MEMORYCAPACITY': "virtualization.MemoryCapacity",
- 'VIRTUALIZATION.NETWORKINTERFACE': "virtualization.NetworkInterface",
- 'VIRTUALIZATION.PRODUCTINFO': "virtualization.ProductInfo",
- 'VIRTUALIZATION.STORAGECAPACITY': "virtualization.StorageCapacity",
- 'VIRTUALIZATION.VIRTUALDISKCONFIG': "virtualization.VirtualDiskConfig",
- 'VIRTUALIZATION.VIRTUALMACHINEDISK': "virtualization.VirtualMachineDisk",
- 'VIRTUALIZATION.VMESXIDISK': "virtualization.VmEsxiDisk",
- 'VIRTUALIZATION.VMWAREREMOTEDISPLAYINFO': "virtualization.VmwareRemoteDisplayInfo",
- 'VIRTUALIZATION.VMWARERESOURCECONSUMPTION': "virtualization.VmwareResourceConsumption",
- 'VIRTUALIZATION.VMWARESHARESINFO': "virtualization.VmwareSharesInfo",
- 'VIRTUALIZATION.VMWARETEAMINGANDFAILOVER': "virtualization.VmwareTeamingAndFailover",
- 'VIRTUALIZATION.VMWAREVLANRANGE': "virtualization.VmwareVlanRange",
- 'VIRTUALIZATION.VMWAREVMCPUSHAREINFO': "virtualization.VmwareVmCpuShareInfo",
- 'VIRTUALIZATION.VMWAREVMCPUSOCKETINFO': "virtualization.VmwareVmCpuSocketInfo",
- 'VIRTUALIZATION.VMWAREVMDISKCOMMITINFO': "virtualization.VmwareVmDiskCommitInfo",
- 'VIRTUALIZATION.VMWAREVMMEMORYSHAREINFO': "virtualization.VmwareVmMemoryShareInfo",
- 'VMEDIA.MAPPING': "vmedia.Mapping",
- 'VNIC.ARFSSETTINGS': "vnic.ArfsSettings",
- 'VNIC.CDN': "vnic.Cdn",
- 'VNIC.COMPLETIONQUEUESETTINGS': "vnic.CompletionQueueSettings",
- 'VNIC.ETHINTERRUPTSETTINGS': "vnic.EthInterruptSettings",
- 'VNIC.ETHRXQUEUESETTINGS': "vnic.EthRxQueueSettings",
- 'VNIC.ETHTXQUEUESETTINGS': "vnic.EthTxQueueSettings",
- 'VNIC.FCERRORRECOVERYSETTINGS': "vnic.FcErrorRecoverySettings",
- 'VNIC.FCINTERRUPTSETTINGS': "vnic.FcInterruptSettings",
- 'VNIC.FCQUEUESETTINGS': "vnic.FcQueueSettings",
- 'VNIC.FLOGISETTINGS': "vnic.FlogiSettings",
- 'VNIC.ISCSIAUTHPROFILE': "vnic.IscsiAuthProfile",
- 'VNIC.LUN': "vnic.Lun",
- 'VNIC.NVGRESETTINGS': "vnic.NvgreSettings",
- 'VNIC.PLACEMENTSETTINGS': "vnic.PlacementSettings",
- 'VNIC.PLOGISETTINGS': "vnic.PlogiSettings",
- 'VNIC.ROCESETTINGS': "vnic.RoceSettings",
- 'VNIC.RSSHASHSETTINGS': "vnic.RssHashSettings",
- 'VNIC.SCSIQUEUESETTINGS': "vnic.ScsiQueueSettings",
- 'VNIC.TCPOFFLOADSETTINGS': "vnic.TcpOffloadSettings",
- 'VNIC.USNICSETTINGS': "vnic.UsnicSettings",
- 'VNIC.VIFSTATUS': "vnic.VifStatus",
- 'VNIC.VLANSETTINGS': "vnic.VlanSettings",
- 'VNIC.VMQSETTINGS': "vnic.VmqSettings",
- 'VNIC.VSANSETTINGS': "vnic.VsanSettings",
- 'VNIC.VXLANSETTINGS': "vnic.VxlanSettings",
- 'WORKFLOW.ARRAYDATATYPE': "workflow.ArrayDataType",
- 'WORKFLOW.ASSOCIATEDROLES': "workflow.AssociatedRoles",
- 'WORKFLOW.CLICOMMAND': "workflow.CliCommand",
- 'WORKFLOW.COMMENTS': "workflow.Comments",
- 'WORKFLOW.CONSTRAINTS': "workflow.Constraints",
- 'WORKFLOW.CUSTOMARRAYITEM': "workflow.CustomArrayItem",
- 'WORKFLOW.CUSTOMDATAPROPERTY': "workflow.CustomDataProperty",
- 'WORKFLOW.CUSTOMDATATYPE': "workflow.CustomDataType",
- 'WORKFLOW.CUSTOMDATATYPEPROPERTIES': "workflow.CustomDataTypeProperties",
- 'WORKFLOW.DECISIONCASE': "workflow.DecisionCase",
- 'WORKFLOW.DECISIONTASK': "workflow.DecisionTask",
- 'WORKFLOW.DEFAULTVALUE': "workflow.DefaultValue",
- 'WORKFLOW.DISPLAYMETA': "workflow.DisplayMeta",
- 'WORKFLOW.DYNAMICWORKFLOWACTIONTASKLIST': "workflow.DynamicWorkflowActionTaskList",
- 'WORKFLOW.ENUMENTRY': "workflow.EnumEntry",
- 'WORKFLOW.EXPECTPROMPT': "workflow.ExpectPrompt",
- 'WORKFLOW.FAILUREENDTASK': "workflow.FailureEndTask",
- 'WORKFLOW.FILEDOWNLOADOP': "workflow.FileDownloadOp",
- 'WORKFLOW.FILEOPERATIONS': "workflow.FileOperations",
- 'WORKFLOW.FILETEMPLATEOP': "workflow.FileTemplateOp",
- 'WORKFLOW.FILETRANSFER': "workflow.FileTransfer",
- 'WORKFLOW.FORKTASK': "workflow.ForkTask",
- 'WORKFLOW.INITIATORCONTEXT': "workflow.InitiatorContext",
- 'WORKFLOW.INTERNALPROPERTIES': "workflow.InternalProperties",
- 'WORKFLOW.JOINTASK': "workflow.JoinTask",
- 'WORKFLOW.LOOPTASK': "workflow.LoopTask",
- 'WORKFLOW.MESSAGE': "workflow.Message",
- 'WORKFLOW.MOREFERENCEARRAYITEM': "workflow.MoReferenceArrayItem",
- 'WORKFLOW.MOREFERENCEDATATYPE': "workflow.MoReferenceDataType",
- 'WORKFLOW.MOREFERENCEPROPERTY': "workflow.MoReferenceProperty",
- 'WORKFLOW.PARAMETERSET': "workflow.ParameterSet",
- 'WORKFLOW.PRIMITIVEARRAYITEM': "workflow.PrimitiveArrayItem",
- 'WORKFLOW.PRIMITIVEDATAPROPERTY': "workflow.PrimitiveDataProperty",
- 'WORKFLOW.PRIMITIVEDATATYPE': "workflow.PrimitiveDataType",
- 'WORKFLOW.PROPERTIES': "workflow.Properties",
- 'WORKFLOW.RESULTHANDLER': "workflow.ResultHandler",
- 'WORKFLOW.ROLLBACKTASK': "workflow.RollbackTask",
- 'WORKFLOW.ROLLBACKWORKFLOWTASK': "workflow.RollbackWorkflowTask",
- 'WORKFLOW.SELECTORPROPERTY': "workflow.SelectorProperty",
- 'WORKFLOW.SSHCMD': "workflow.SshCmd",
- 'WORKFLOW.SSHCONFIG': "workflow.SshConfig",
- 'WORKFLOW.SSHSESSION': "workflow.SshSession",
- 'WORKFLOW.STARTTASK': "workflow.StartTask",
- 'WORKFLOW.SUBWORKFLOWTASK': "workflow.SubWorkflowTask",
- 'WORKFLOW.SUCCESSENDTASK': "workflow.SuccessEndTask",
- 'WORKFLOW.TARGETCONTEXT': "workflow.TargetContext",
- 'WORKFLOW.TARGETDATATYPE': "workflow.TargetDataType",
- 'WORKFLOW.TARGETPROPERTY': "workflow.TargetProperty",
- 'WORKFLOW.TASKCONSTRAINTS': "workflow.TaskConstraints",
- 'WORKFLOW.TASKRETRYINFO': "workflow.TaskRetryInfo",
- 'WORKFLOW.UIINPUTFILTER': "workflow.UiInputFilter",
- 'WORKFLOW.VALIDATIONERROR': "workflow.ValidationError",
- 'WORKFLOW.VALIDATIONINFORMATION': "workflow.ValidationInformation",
- 'WORKFLOW.WAITTASK': "workflow.WaitTask",
- 'WORKFLOW.WAITTASKPROMPT': "workflow.WaitTaskPrompt",
- 'WORKFLOW.WEBAPI': "workflow.WebApi",
- 'WORKFLOW.WORKERTASK': "workflow.WorkerTask",
- 'WORKFLOW.WORKFLOWCTX': "workflow.WorkflowCtx",
- 'WORKFLOW.WORKFLOWENGINEPROPERTIES': "workflow.WorkflowEngineProperties",
- 'WORKFLOW.WORKFLOWINFOPROPERTIES': "workflow.WorkflowInfoProperties",
- 'WORKFLOW.WORKFLOWPROPERTIES': "workflow.WorkflowProperties",
- 'WORKFLOW.XMLAPI': "workflow.XmlApi",
- 'X509.CERTIFICATE': "x509.Certificate",
},
('object_type',): {
- 'ACCESS.ADDRESSTYPE': "access.AddressType",
- 'ADAPTER.ADAPTERCONFIG': "adapter.AdapterConfig",
- 'ADAPTER.DCEINTERFACESETTINGS': "adapter.DceInterfaceSettings",
- 'ADAPTER.ETHSETTINGS': "adapter.EthSettings",
- 'ADAPTER.FCSETTINGS': "adapter.FcSettings",
- 'ADAPTER.PORTCHANNELSETTINGS': "adapter.PortChannelSettings",
- 'APPLIANCE.APISTATUS': "appliance.ApiStatus",
- 'APPLIANCE.CERTRENEWALPHASE': "appliance.CertRenewalPhase",
- 'APPLIANCE.KEYVALUEPAIR': "appliance.KeyValuePair",
- 'APPLIANCE.STATUSCHECK': "appliance.StatusCheck",
- 'ASSET.ADDRESSINFORMATION': "asset.AddressInformation",
- 'ASSET.APIKEYCREDENTIAL': "asset.ApiKeyCredential",
- 'ASSET.CLIENTCERTIFICATECREDENTIAL': "asset.ClientCertificateCredential",
- 'ASSET.CLOUDCONNECTION': "asset.CloudConnection",
- 'ASSET.CONNECTIONCONTROLMESSAGE': "asset.ConnectionControlMessage",
- 'ASSET.CONTRACTINFORMATION': "asset.ContractInformation",
- 'ASSET.CUSTOMERINFORMATION': "asset.CustomerInformation",
- 'ASSET.DEPLOYMENTDEVICEINFORMATION': "asset.DeploymentDeviceInformation",
- 'ASSET.DEVICEINFORMATION': "asset.DeviceInformation",
- 'ASSET.DEVICESTATISTICS': "asset.DeviceStatistics",
- 'ASSET.DEVICETRANSACTION': "asset.DeviceTransaction",
- 'ASSET.GLOBALULTIMATE': "asset.GlobalUltimate",
- 'ASSET.HTTPCONNECTION': "asset.HttpConnection",
- 'ASSET.INTERSIGHTDEVICECONNECTORCONNECTION': "asset.IntersightDeviceConnectorConnection",
- 'ASSET.METERINGTYPE': "asset.MeteringType",
- 'ASSET.NOAUTHENTICATIONCREDENTIAL': "asset.NoAuthenticationCredential",
- 'ASSET.OAUTHBEARERTOKENCREDENTIAL': "asset.OauthBearerTokenCredential",
- 'ASSET.OAUTHCLIENTIDSECRETCREDENTIAL': "asset.OauthClientIdSecretCredential",
- 'ASSET.ORCHESTRATIONHITACHIVIRTUALSTORAGEPLATFORMOPTIONS': "asset.OrchestrationHitachiVirtualStoragePlatformOptions",
- 'ASSET.ORCHESTRATIONSERVICE': "asset.OrchestrationService",
- 'ASSET.PARENTCONNECTIONSIGNATURE': "asset.ParentConnectionSignature",
- 'ASSET.PRODUCTINFORMATION': "asset.ProductInformation",
- 'ASSET.SUDIINFO': "asset.SudiInfo",
- 'ASSET.TARGETKEY': "asset.TargetKey",
- 'ASSET.TARGETSIGNATURE': "asset.TargetSignature",
- 'ASSET.TARGETSTATUSDETAILS': "asset.TargetStatusDetails",
- 'ASSET.TERRAFORMINTEGRATIONSERVICE': "asset.TerraformIntegrationService",
- 'ASSET.TERRAFORMINTEGRATIONTERRAFORMAGENTOPTIONS': "asset.TerraformIntegrationTerraformAgentOptions",
- 'ASSET.TERRAFORMINTEGRATIONTERRAFORMCLOUDOPTIONS': "asset.TerraformIntegrationTerraformCloudOptions",
- 'ASSET.USERNAMEPASSWORDCREDENTIAL': "asset.UsernamePasswordCredential",
- 'ASSET.VIRTUALIZATIONAMAZONWEBSERVICEOPTIONS': "asset.VirtualizationAmazonWebServiceOptions",
- 'ASSET.VIRTUALIZATIONSERVICE': "asset.VirtualizationService",
- 'ASSET.VMHOST': "asset.VmHost",
- 'ASSET.WORKLOADOPTIMIZERAMAZONWEBSERVICESBILLINGOPTIONS': "asset.WorkloadOptimizerAmazonWebServicesBillingOptions",
- 'ASSET.WORKLOADOPTIMIZERHYPERVOPTIONS': "asset.WorkloadOptimizerHypervOptions",
- 'ASSET.WORKLOADOPTIMIZERMICROSOFTAZUREAPPLICATIONINSIGHTSOPTIONS': "asset.WorkloadOptimizerMicrosoftAzureApplicationInsightsOptions",
- 'ASSET.WORKLOADOPTIMIZERMICROSOFTAZUREENTERPRISEAGREEMENTOPTIONS': "asset.WorkloadOptimizerMicrosoftAzureEnterpriseAgreementOptions",
- 'ASSET.WORKLOADOPTIMIZERMICROSOFTAZURESERVICEPRINCIPALOPTIONS': "asset.WorkloadOptimizerMicrosoftAzureServicePrincipalOptions",
- 'ASSET.WORKLOADOPTIMIZEROPENSTACKOPTIONS': "asset.WorkloadOptimizerOpenStackOptions",
- 'ASSET.WORKLOADOPTIMIZERREDHATOPENSTACKOPTIONS': "asset.WorkloadOptimizerRedHatOpenStackOptions",
- 'ASSET.WORKLOADOPTIMIZERSERVICE': "asset.WorkloadOptimizerService",
- 'ASSET.WORKLOADOPTIMIZERVMWAREVCENTEROPTIONS': "asset.WorkloadOptimizerVmwareVcenterOptions",
- 'BOOT.BOOTLOADER': "boot.Bootloader",
- 'BOOT.ISCSI': "boot.Iscsi",
- 'BOOT.LOCALCDD': "boot.LocalCdd",
- 'BOOT.LOCALDISK': "boot.LocalDisk",
- 'BOOT.NVME': "boot.Nvme",
- 'BOOT.PCHSTORAGE': "boot.PchStorage",
- 'BOOT.PXE': "boot.Pxe",
- 'BOOT.SAN': "boot.San",
- 'BOOT.SDCARD': "boot.SdCard",
- 'BOOT.UEFISHELL': "boot.UefiShell",
- 'BOOT.USB': "boot.Usb",
- 'BOOT.VIRTUALMEDIA': "boot.VirtualMedia",
- 'BULK.RESTRESULT': "bulk.RestResult",
'BULK.RESTSUBREQUEST': "bulk.RestSubRequest",
- 'CAPABILITY.PORTRANGE': "capability.PortRange",
- 'CAPABILITY.SWITCHNETWORKLIMITS': "capability.SwitchNetworkLimits",
- 'CAPABILITY.SWITCHSTORAGELIMITS': "capability.SwitchStorageLimits",
- 'CAPABILITY.SWITCHSYSTEMLIMITS': "capability.SwitchSystemLimits",
- 'CAPABILITY.SWITCHINGMODECAPABILITY': "capability.SwitchingModeCapability",
- 'CERTIFICATEMANAGEMENT.IMC': "certificatemanagement.Imc",
- 'CLOUD.AVAILABILITYZONE': "cloud.AvailabilityZone",
- 'CLOUD.BILLINGUNIT': "cloud.BillingUnit",
- 'CLOUD.CLOUDREGION': "cloud.CloudRegion",
- 'CLOUD.CLOUDTAG': "cloud.CloudTag",
- 'CLOUD.CUSTOMATTRIBUTES': "cloud.CustomAttributes",
- 'CLOUD.IMAGEREFERENCE': "cloud.ImageReference",
- 'CLOUD.INSTANCETYPE': "cloud.InstanceType",
- 'CLOUD.NETWORKACCESSCONFIG': "cloud.NetworkAccessConfig",
- 'CLOUD.NETWORKADDRESS': "cloud.NetworkAddress",
- 'CLOUD.NETWORKINSTANCEATTACHMENT': "cloud.NetworkInstanceAttachment",
- 'CLOUD.NETWORKINTERFACEATTACHMENT': "cloud.NetworkInterfaceAttachment",
- 'CLOUD.SECURITYGROUPRULE': "cloud.SecurityGroupRule",
- 'CLOUD.TFCWORKSPACEVARIABLES': "cloud.TfcWorkspaceVariables",
- 'CLOUD.VOLUMEATTACHMENT': "cloud.VolumeAttachment",
- 'CLOUD.VOLUMEINSTANCEATTACHMENT': "cloud.VolumeInstanceAttachment",
- 'CLOUD.VOLUMEIOPSINFO': "cloud.VolumeIopsInfo",
- 'CLOUD.VOLUMETYPE': "cloud.VolumeType",
- 'CMRF.CMRF': "cmrf.CmRf",
- 'COMM.IPV4ADDRESSBLOCK': "comm.IpV4AddressBlock",
- 'COMM.IPV4INTERFACE': "comm.IpV4Interface",
- 'COMM.IPV6INTERFACE': "comm.IpV6Interface",
- 'COMPUTE.ALARMSUMMARY': "compute.AlarmSummary",
- 'COMPUTE.IPADDRESS': "compute.IpAddress",
- 'COMPUTE.PERSISTENTMEMORYMODULE': "compute.PersistentMemoryModule",
- 'COMPUTE.PERSISTENTMEMORYOPERATION': "compute.PersistentMemoryOperation",
- 'COMPUTE.SERVERCONFIG': "compute.ServerConfig",
- 'COMPUTE.STORAGECONTROLLEROPERATION': "compute.StorageControllerOperation",
- 'COMPUTE.STORAGEPHYSICALDRIVE': "compute.StoragePhysicalDrive",
- 'COMPUTE.STORAGEPHYSICALDRIVEOPERATION': "compute.StoragePhysicalDriveOperation",
- 'COMPUTE.STORAGEVIRTUALDRIVE': "compute.StorageVirtualDrive",
- 'COMPUTE.STORAGEVIRTUALDRIVEOPERATION': "compute.StorageVirtualDriveOperation",
- 'COND.ALARMSUMMARY': "cond.AlarmSummary",
- 'CONFIG.MOREF': "config.MoRef",
- 'CONNECTOR.CLOSESTREAMMESSAGE': "connector.CloseStreamMessage",
- 'CONNECTOR.COMMANDCONTROLMESSAGE': "connector.CommandControlMessage",
- 'CONNECTOR.COMMANDTERMINALSTREAM': "connector.CommandTerminalStream",
- 'CONNECTOR.EXPECTPROMPT': "connector.ExpectPrompt",
- 'CONNECTOR.FETCHSTREAMMESSAGE': "connector.FetchStreamMessage",
- 'CONNECTOR.FILECHECKSUM': "connector.FileChecksum",
- 'CONNECTOR.FILEMESSAGE': "connector.FileMessage",
- 'CONNECTOR.HTTPREQUEST': "connector.HttpRequest",
- 'CONNECTOR.SSHCONFIG': "connector.SshConfig",
- 'CONNECTOR.SSHMESSAGE': "connector.SshMessage",
- 'CONNECTOR.STARTSTREAM': "connector.StartStream",
- 'CONNECTOR.STARTSTREAMFROMDEVICE': "connector.StartStreamFromDevice",
- 'CONNECTOR.STREAMACKNOWLEDGE': "connector.StreamAcknowledge",
- 'CONNECTOR.STREAMINPUT': "connector.StreamInput",
- 'CONNECTOR.STREAMKEEPALIVE': "connector.StreamKeepalive",
- 'CONNECTOR.URL': "connector.Url",
- 'CONNECTOR.XMLAPIMESSAGE': "connector.XmlApiMessage",
- 'CONNECTORPACK.CONNECTORPACKUPDATE': "connectorpack.ConnectorPackUpdate",
- 'CONTENT.COMPLEXTYPE': "content.ComplexType",
- 'CONTENT.PARAMETER': "content.Parameter",
- 'CONTENT.TEXTPARAMETER': "content.TextParameter",
- 'CRD.CUSTOMRESOURCECONFIGPROPERTY': "crd.CustomResourceConfigProperty",
- 'EQUIPMENT.IOCARDIDENTITY': "equipment.IoCardIdentity",
- 'FABRIC.LLDPSETTINGS': "fabric.LldpSettings",
- 'FABRIC.MACAGINGSETTINGS': "fabric.MacAgingSettings",
- 'FABRIC.PORTIDENTIFIER': "fabric.PortIdentifier",
- 'FABRIC.QOSCLASS': "fabric.QosClass",
- 'FABRIC.UDLDGLOBALSETTINGS': "fabric.UdldGlobalSettings",
- 'FABRIC.UDLDSETTINGS': "fabric.UdldSettings",
- 'FABRIC.VLANSETTINGS': "fabric.VlanSettings",
- 'FCPOOL.BLOCK': "fcpool.Block",
- 'FEEDBACK.FEEDBACKDATA': "feedback.FeedbackData",
- 'FIRMWARE.CHASSISUPGRADEIMPACT': "firmware.ChassisUpgradeImpact",
- 'FIRMWARE.CIFSSERVER': "firmware.CifsServer",
- 'FIRMWARE.COMPONENTIMPACT': "firmware.ComponentImpact",
- 'FIRMWARE.COMPONENTMETA': "firmware.ComponentMeta",
- 'FIRMWARE.DIRECTDOWNLOAD': "firmware.DirectDownload",
- 'FIRMWARE.FABRICUPGRADEIMPACT': "firmware.FabricUpgradeImpact",
- 'FIRMWARE.FIRMWAREINVENTORY': "firmware.FirmwareInventory",
- 'FIRMWARE.HTTPSERVER': "firmware.HttpServer",
- 'FIRMWARE.NETWORKSHARE': "firmware.NetworkShare",
- 'FIRMWARE.NFSSERVER': "firmware.NfsServer",
- 'FIRMWARE.SERVERUPGRADEIMPACT': "firmware.ServerUpgradeImpact",
- 'FORECAST.MODEL': "forecast.Model",
- 'HCL.CONSTRAINT': "hcl.Constraint",
- 'HCL.FIRMWARE': "hcl.Firmware",
- 'HCL.HARDWARECOMPATIBILITYPROFILE': "hcl.HardwareCompatibilityProfile",
- 'HCL.PRODUCT': "hcl.Product",
- 'HYPERFLEX.ALARMSUMMARY': "hyperflex.AlarmSummary",
- 'HYPERFLEX.APPSETTINGCONSTRAINT': "hyperflex.AppSettingConstraint",
- 'HYPERFLEX.BONDSTATE': "hyperflex.BondState",
- 'HYPERFLEX.DATASTOREINFO': "hyperflex.DatastoreInfo",
- 'HYPERFLEX.DISKSTATUS': "hyperflex.DiskStatus",
- 'HYPERFLEX.ENTITYREFERENCE': "hyperflex.EntityReference",
- 'HYPERFLEX.ERRORSTACK': "hyperflex.ErrorStack",
- 'HYPERFLEX.FEATURELIMITENTRY': "hyperflex.FeatureLimitEntry",
- 'HYPERFLEX.FILEPATH': "hyperflex.FilePath",
- 'HYPERFLEX.HEALTHCHECKSCRIPTINFO': "hyperflex.HealthCheckScriptInfo",
- 'HYPERFLEX.HXHOSTMOUNTSTATUSDT': "hyperflex.HxHostMountStatusDt",
- 'HYPERFLEX.HXLICENSEAUTHORIZATIONDETAILSDT': "hyperflex.HxLicenseAuthorizationDetailsDt",
- 'HYPERFLEX.HXLINKDT': "hyperflex.HxLinkDt",
- 'HYPERFLEX.HXNETWORKADDRESSDT': "hyperflex.HxNetworkAddressDt",
- 'HYPERFLEX.HXPLATFORMDATASTORECONFIGDT': "hyperflex.HxPlatformDatastoreConfigDt",
- 'HYPERFLEX.HXREGISTRATIONDETAILSDT': "hyperflex.HxRegistrationDetailsDt",
- 'HYPERFLEX.HXRESILIENCYINFODT': "hyperflex.HxResiliencyInfoDt",
- 'HYPERFLEX.HXSITEDT': "hyperflex.HxSiteDt",
- 'HYPERFLEX.HXUUIDDT': "hyperflex.HxUuIdDt",
- 'HYPERFLEX.HXZONEINFODT': "hyperflex.HxZoneInfoDt",
- 'HYPERFLEX.HXZONERESILIENCYINFODT': "hyperflex.HxZoneResiliencyInfoDt",
- 'HYPERFLEX.IPADDRRANGE': "hyperflex.IpAddrRange",
- 'HYPERFLEX.LOGICALAVAILABILITYZONE': "hyperflex.LogicalAvailabilityZone",
- 'HYPERFLEX.MACADDRPREFIXRANGE': "hyperflex.MacAddrPrefixRange",
- 'HYPERFLEX.MAPCLUSTERIDTOPROTECTIONINFO': "hyperflex.MapClusterIdToProtectionInfo",
- 'HYPERFLEX.MAPCLUSTERIDTOSTSNAPSHOTPOINT': "hyperflex.MapClusterIdToStSnapshotPoint",
- 'HYPERFLEX.MAPUUIDTOTRACKEDDISK': "hyperflex.MapUuidToTrackedDisk",
- 'HYPERFLEX.NAMEDVLAN': "hyperflex.NamedVlan",
- 'HYPERFLEX.NAMEDVSAN': "hyperflex.NamedVsan",
- 'HYPERFLEX.NETWORKPORT': "hyperflex.NetworkPort",
- 'HYPERFLEX.PORTTYPETOPORTNUMBERMAP': "hyperflex.PortTypeToPortNumberMap",
- 'HYPERFLEX.PROTECTIONINFO': "hyperflex.ProtectionInfo",
- 'HYPERFLEX.REPLICATIONCLUSTERREFERENCETOSCHEDULE': "hyperflex.ReplicationClusterReferenceToSchedule",
- 'HYPERFLEX.REPLICATIONPEERINFO': "hyperflex.ReplicationPeerInfo",
- 'HYPERFLEX.REPLICATIONPLATDATASTORE': "hyperflex.ReplicationPlatDatastore",
- 'HYPERFLEX.REPLICATIONPLATDATASTOREPAIR': "hyperflex.ReplicationPlatDatastorePair",
- 'HYPERFLEX.REPLICATIONSCHEDULE': "hyperflex.ReplicationSchedule",
- 'HYPERFLEX.REPLICATIONSTATUS': "hyperflex.ReplicationStatus",
- 'HYPERFLEX.RPOSTATUS': "hyperflex.RpoStatus",
- 'HYPERFLEX.SERVERFIRMWAREVERSIONINFO': "hyperflex.ServerFirmwareVersionInfo",
- 'HYPERFLEX.SERVERMODELENTRY': "hyperflex.ServerModelEntry",
- 'HYPERFLEX.SNAPSHOTFILES': "hyperflex.SnapshotFiles",
- 'HYPERFLEX.SNAPSHOTINFOBRIEF': "hyperflex.SnapshotInfoBrief",
- 'HYPERFLEX.SNAPSHOTPOINT': "hyperflex.SnapshotPoint",
- 'HYPERFLEX.SNAPSHOTSTATUS': "hyperflex.SnapshotStatus",
- 'HYPERFLEX.STPLATFORMCLUSTERHEALINGINFO': "hyperflex.StPlatformClusterHealingInfo",
- 'HYPERFLEX.STPLATFORMCLUSTERRESILIENCYINFO': "hyperflex.StPlatformClusterResiliencyInfo",
- 'HYPERFLEX.SUMMARY': "hyperflex.Summary",
- 'HYPERFLEX.TRACKEDDISK': "hyperflex.TrackedDisk",
- 'HYPERFLEX.TRACKEDFILE': "hyperflex.TrackedFile",
- 'HYPERFLEX.VDISKCONFIG': "hyperflex.VdiskConfig",
- 'HYPERFLEX.VIRTUALMACHINE': "hyperflex.VirtualMachine",
- 'HYPERFLEX.VIRTUALMACHINERUNTIMEINFO': "hyperflex.VirtualMachineRuntimeInfo",
- 'HYPERFLEX.VMDISK': "hyperflex.VmDisk",
- 'HYPERFLEX.VMINTERFACE': "hyperflex.VmInterface",
- 'HYPERFLEX.VMPROTECTIONSPACEUSAGE': "hyperflex.VmProtectionSpaceUsage",
- 'HYPERFLEX.WWXNPREFIXRANGE': "hyperflex.WwxnPrefixRange",
- 'I18N.MESSAGE': "i18n.Message",
- 'I18N.MESSAGEPARAM': "i18n.MessageParam",
- 'IAAS.LICENSEKEYSINFO': "iaas.LicenseKeysInfo",
- 'IAAS.LICENSEUTILIZATIONINFO': "iaas.LicenseUtilizationInfo",
- 'IAAS.WORKFLOWSTEPS': "iaas.WorkflowSteps",
- 'IAM.ACCOUNTPERMISSIONS': "iam.AccountPermissions",
- 'IAM.CLIENTMETA': "iam.ClientMeta",
- 'IAM.ENDPOINTPASSWORDPROPERTIES': "iam.EndPointPasswordProperties",
- 'IAM.FEATUREDEFINITION': "iam.FeatureDefinition",
- 'IAM.GROUPPERMISSIONTOROLES': "iam.GroupPermissionToRoles",
- 'IAM.LDAPBASEPROPERTIES': "iam.LdapBaseProperties",
- 'IAM.LDAPDNSPARAMETERS': "iam.LdapDnsParameters",
- 'IAM.PERMISSIONREFERENCE': "iam.PermissionReference",
- 'IAM.PERMISSIONTOROLES': "iam.PermissionToRoles",
- 'IAM.RULE': "iam.Rule",
- 'IAM.SAMLSPCONNECTION': "iam.SamlSpConnection",
- 'IAM.SSOSESSIONATTRIBUTES': "iam.SsoSessionAttributes",
- 'IMCCONNECTOR.WEBUIMESSAGE': "imcconnector.WebUiMessage",
- 'INFRA.HARDWAREINFO': "infra.HardwareInfo",
- 'INFRA.METADATA': "infra.MetaData",
- 'INVENTORY.INVENTORYMO': "inventory.InventoryMo",
- 'INVENTORY.UEMINFO': "inventory.UemInfo",
- 'IPPOOL.IPV4BLOCK': "ippool.IpV4Block",
- 'IPPOOL.IPV4CONFIG': "ippool.IpV4Config",
- 'IPPOOL.IPV6BLOCK': "ippool.IpV6Block",
- 'IPPOOL.IPV6CONFIG': "ippool.IpV6Config",
- 'IQNPOOL.IQNSUFFIXBLOCK': "iqnpool.IqnSuffixBlock",
- 'KUBERNETES.ACTIONINFO': "kubernetes.ActionInfo",
- 'KUBERNETES.ADDON': "kubernetes.Addon",
- 'KUBERNETES.ADDONCONFIGURATION': "kubernetes.AddonConfiguration",
- 'KUBERNETES.CALICOCONFIG': "kubernetes.CalicoConfig",
- 'KUBERNETES.CLUSTERCERTIFICATECONFIGURATION': "kubernetes.ClusterCertificateConfiguration",
- 'KUBERNETES.CLUSTERMANAGEMENTCONFIG': "kubernetes.ClusterManagementConfig",
- 'KUBERNETES.CONFIGURATION': "kubernetes.Configuration",
- 'KUBERNETES.DAEMONSETSTATUS': "kubernetes.DaemonSetStatus",
- 'KUBERNETES.DEPLOYMENTSTATUS': "kubernetes.DeploymentStatus",
- 'KUBERNETES.ESSENTIALADDON': "kubernetes.EssentialAddon",
- 'KUBERNETES.ESXIVIRTUALMACHINEINFRACONFIG': "kubernetes.EsxiVirtualMachineInfraConfig",
- 'KUBERNETES.HYPERFLEXAPVIRTUALMACHINEINFRACONFIG': "kubernetes.HyperFlexApVirtualMachineInfraConfig",
- 'KUBERNETES.INGRESSSTATUS': "kubernetes.IngressStatus",
- 'KUBERNETES.KEYVALUE': "kubernetes.KeyValue",
- 'KUBERNETES.LOADBALANCER': "kubernetes.LoadBalancer",
- 'KUBERNETES.NODEADDRESS': "kubernetes.NodeAddress",
- 'KUBERNETES.NODEGROUPLABEL': "kubernetes.NodeGroupLabel",
- 'KUBERNETES.NODEGROUPTAINT': "kubernetes.NodeGroupTaint",
- 'KUBERNETES.NODEINFO': "kubernetes.NodeInfo",
- 'KUBERNETES.NODESPEC': "kubernetes.NodeSpec",
- 'KUBERNETES.NODESTATUS': "kubernetes.NodeStatus",
- 'KUBERNETES.OBJECTMETA': "kubernetes.ObjectMeta",
- 'KUBERNETES.PODSTATUS': "kubernetes.PodStatus",
- 'KUBERNETES.PROXYCONFIG': "kubernetes.ProxyConfig",
- 'KUBERNETES.SERVICESTATUS': "kubernetes.ServiceStatus",
- 'KUBERNETES.STATEFULSETSTATUS': "kubernetes.StatefulSetStatus",
- 'KUBERNETES.TAINT': "kubernetes.Taint",
- 'MACPOOL.BLOCK': "macpool.Block",
- 'MEMORY.PERSISTENTMEMORYGOAL': "memory.PersistentMemoryGoal",
- 'MEMORY.PERSISTENTMEMORYLOCALSECURITY': "memory.PersistentMemoryLocalSecurity",
- 'MEMORY.PERSISTENTMEMORYLOGICALNAMESPACE': "memory.PersistentMemoryLogicalNamespace",
- 'META.ACCESSPRIVILEGE': "meta.AccessPrivilege",
- 'META.DISPLAYNAMEDEFINITION': "meta.DisplayNameDefinition",
- 'META.PROPDEFINITION': "meta.PropDefinition",
- 'META.RELATIONSHIPDEFINITION': "meta.RelationshipDefinition",
- 'MO.MOREF': "mo.MoRef",
- 'MO.TAG': "mo.Tag",
- 'MO.VERSIONCONTEXT': "mo.VersionContext",
- 'NIAAPI.DETAIL': "niaapi.Detail",
- 'NIAAPI.NEWRELEASEDETAIL': "niaapi.NewReleaseDetail",
- 'NIAAPI.REVISIONINFO': "niaapi.RevisionInfo",
- 'NIAAPI.SOFTWAREREGEX': "niaapi.SoftwareRegex",
- 'NIAAPI.VERSIONREGEXPLATFORM': "niaapi.VersionRegexPlatform",
- 'NIATELEMETRY.BOOTFLASHDETAILS': "niatelemetry.BootflashDetails",
- 'NIATELEMETRY.DISKINFO': "niatelemetry.Diskinfo",
- 'NIATELEMETRY.INTERFACE': "niatelemetry.Interface",
- 'NIATELEMETRY.INTERFACEELEMENT': "niatelemetry.InterfaceElement",
- 'NIATELEMETRY.LOGICALLINK': "niatelemetry.LogicalLink",
- 'NIATELEMETRY.NVEPACKETCOUNTERS': "niatelemetry.NvePacketCounters",
- 'NIATELEMETRY.NVEVNI': "niatelemetry.NveVni",
- 'NIATELEMETRY.NXOSBGPMVPN': "niatelemetry.NxosBgpMvpn",
- 'NIATELEMETRY.NXOSVTP': "niatelemetry.NxosVtp",
- 'NIATELEMETRY.SMARTLICENSE': "niatelemetry.SmartLicense",
- 'NOTIFICATION.ALARMMOCONDITION': "notification.AlarmMoCondition",
- 'NOTIFICATION.SENDEMAIL': "notification.SendEmail",
- 'NTP.AUTHNTPSERVER': "ntp.AuthNtpServer",
- 'ONPREM.IMAGEPACKAGE': "onprem.ImagePackage",
- 'ONPREM.SCHEDULE': "onprem.Schedule",
- 'ONPREM.UPGRADENOTE': "onprem.UpgradeNote",
- 'ONPREM.UPGRADEPHASE': "onprem.UpgradePhase",
- 'OPRS.KVPAIR': "oprs.Kvpair",
- 'OS.ANSWERS': "os.Answers",
- 'OS.GLOBALCONFIG': "os.GlobalConfig",
- 'OS.IPV4CONFIGURATION': "os.Ipv4Configuration",
- 'OS.IPV6CONFIGURATION': "os.Ipv6Configuration",
- 'OS.PHYSICALDISK': "os.PhysicalDisk",
- 'OS.PHYSICALDISKRESPONSE': "os.PhysicalDiskResponse",
- 'OS.PLACEHOLDER': "os.PlaceHolder",
- 'OS.SERVERCONFIG': "os.ServerConfig",
- 'OS.VALIDATIONINFORMATION': "os.ValidationInformation",
- 'OS.VIRTUALDRIVE': "os.VirtualDrive",
- 'OS.VIRTUALDRIVERESPONSE': "os.VirtualDriveResponse",
- 'OS.WINDOWSPARAMETERS': "os.WindowsParameters",
- 'PKIX.DISTINGUISHEDNAME': "pkix.DistinguishedName",
- 'PKIX.ECDSAKEYSPEC': "pkix.EcdsaKeySpec",
- 'PKIX.EDDSAKEYSPEC': "pkix.EddsaKeySpec",
- 'PKIX.RSAALGORITHM': "pkix.RsaAlgorithm",
- 'PKIX.SUBJECTALTERNATENAME': "pkix.SubjectAlternateName",
- 'POLICY.ACTIONQUALIFIER': "policy.ActionQualifier",
- 'POLICY.CONFIGCHANGE': "policy.ConfigChange",
- 'POLICY.CONFIGCHANGECONTEXT': "policy.ConfigChangeContext",
- 'POLICY.CONFIGCONTEXT': "policy.ConfigContext",
- 'POLICY.CONFIGRESULTCONTEXT': "policy.ConfigResultContext",
- 'POLICY.QUALIFIER': "policy.Qualifier",
- 'POLICYINVENTORY.JOBINFO': "policyinventory.JobInfo",
- 'RECOVERY.BACKUPSCHEDULE': "recovery.BackupSchedule",
- 'RESOURCE.PERTYPECOMBINEDSELECTOR': "resource.PerTypeCombinedSelector",
- 'RESOURCE.SELECTOR': "resource.Selector",
- 'RESOURCE.SOURCETOPERMISSIONRESOURCES': "resource.SourceToPermissionResources",
- 'RESOURCE.SOURCETOPERMISSIONRESOURCESHOLDER': "resource.SourceToPermissionResourcesHolder",
- 'SDCARD.DIAGNOSTICS': "sdcard.Diagnostics",
- 'SDCARD.DRIVERS': "sdcard.Drivers",
- 'SDCARD.HOSTUPGRADEUTILITY': "sdcard.HostUpgradeUtility",
- 'SDCARD.OPERATINGSYSTEM': "sdcard.OperatingSystem",
- 'SDCARD.PARTITION': "sdcard.Partition",
- 'SDCARD.SERVERCONFIGURATIONUTILITY': "sdcard.ServerConfigurationUtility",
- 'SDCARD.USERPARTITION': "sdcard.UserPartition",
- 'SDWAN.NETWORKCONFIGURATIONTYPE': "sdwan.NetworkConfigurationType",
- 'SDWAN.TEMPLATEINPUTSTYPE': "sdwan.TemplateInputsType",
- 'SNMP.TRAP': "snmp.Trap",
- 'SNMP.USER': "snmp.User",
- 'SOFTWAREREPOSITORY.APPLIANCEUPLOAD': "softwarerepository.ApplianceUpload",
- 'SOFTWAREREPOSITORY.CIFSSERVER': "softwarerepository.CifsServer",
- 'SOFTWAREREPOSITORY.CONSTRAINTMODELS': "softwarerepository.ConstraintModels",
- 'SOFTWAREREPOSITORY.HTTPSERVER': "softwarerepository.HttpServer",
- 'SOFTWAREREPOSITORY.IMPORTRESULT': "softwarerepository.ImportResult",
- 'SOFTWAREREPOSITORY.LOCALMACHINE': "softwarerepository.LocalMachine",
- 'SOFTWAREREPOSITORY.NFSSERVER': "softwarerepository.NfsServer",
- 'STORAGE.AUTOMATICDRIVEGROUP': "storage.AutomaticDriveGroup",
- 'STORAGE.HITACHIARRAYUTILIZATION': "storage.HitachiArrayUtilization",
- 'STORAGE.HITACHICAPACITY': "storage.HitachiCapacity",
- 'STORAGE.HITACHIINITIATOR': "storage.HitachiInitiator",
- 'STORAGE.INITIATOR': "storage.Initiator",
- 'STORAGE.KEYSETTING': "storage.KeySetting",
- 'STORAGE.LOCALKEYSETTING': "storage.LocalKeySetting",
- 'STORAGE.M2VIRTUALDRIVECONFIG': "storage.M2VirtualDriveConfig",
- 'STORAGE.MANUALDRIVEGROUP': "storage.ManualDriveGroup",
- 'STORAGE.NETAPPEXPORTPOLICYRULE': "storage.NetAppExportPolicyRule",
- 'STORAGE.NETAPPSTORAGEUTILIZATION': "storage.NetAppStorageUtilization",
- 'STORAGE.PUREARRAYUTILIZATION': "storage.PureArrayUtilization",
- 'STORAGE.PUREDISKUTILIZATION': "storage.PureDiskUtilization",
- 'STORAGE.PUREHOSTUTILIZATION': "storage.PureHostUtilization",
- 'STORAGE.PUREREPLICATIONBLACKOUT': "storage.PureReplicationBlackout",
- 'STORAGE.PUREVOLUMEUTILIZATION': "storage.PureVolumeUtilization",
- 'STORAGE.R0DRIVE': "storage.R0Drive",
- 'STORAGE.REMOTEKEYSETTING': "storage.RemoteKeySetting",
- 'STORAGE.SPANDRIVES': "storage.SpanDrives",
- 'STORAGE.STORAGECONTAINERUTILIZATION': "storage.StorageContainerUtilization",
- 'STORAGE.VIRTUALDRIVECONFIGURATION': "storage.VirtualDriveConfiguration",
- 'STORAGE.VIRTUALDRIVEPOLICY': "storage.VirtualDrivePolicy",
- 'STORAGE.VOLUMEUTILIZATION': "storage.VolumeUtilization",
- 'SYSLOG.LOCALFILELOGGINGCLIENT': "syslog.LocalFileLoggingClient",
- 'SYSLOG.REMOTELOGGINGCLIENT': "syslog.RemoteLoggingClient",
- 'TAM.ACTION': "tam.Action",
- 'TAM.APIDATASOURCE': "tam.ApiDataSource",
- 'TAM.IDENTIFIERS': "tam.Identifiers",
- 'TAM.PSIRTSEVERITY': "tam.PsirtSeverity",
- 'TAM.QUERYENTRY': "tam.QueryEntry",
- 'TAM.S3DATASOURCE': "tam.S3DataSource",
- 'TAM.SECURITYADVISORYDETAILS': "tam.SecurityAdvisoryDetails",
- 'TAM.TEXTFSMTEMPLATEDATASOURCE': "tam.TextFsmTemplateDataSource",
- 'TECHSUPPORTMANAGEMENT.APPLIANCEPARAM': "techsupportmanagement.ApplianceParam",
- 'TECHSUPPORTMANAGEMENT.NIAPARAM': "techsupportmanagement.NiaParam",
- 'TECHSUPPORTMANAGEMENT.PLATFORMPARAM': "techsupportmanagement.PlatformParam",
- 'TEMPLATE.TRANSFORMATIONSTAGE': "template.TransformationStage",
- 'UCSD.CONNECTORPACK': "ucsd.ConnectorPack",
- 'UCSD.UCSDRESTOREPARAMETERS': "ucsd.UcsdRestoreParameters",
- 'UCSDCONNECTOR.RESTCLIENTMESSAGE': "ucsdconnector.RestClientMessage",
- 'UUIDPOOL.UUIDBLOCK': "uuidpool.UuidBlock",
- 'VIRTUALIZATION.ACTIONINFO': "virtualization.ActionInfo",
- 'VIRTUALIZATION.CLOUDINITCONFIG': "virtualization.CloudInitConfig",
- 'VIRTUALIZATION.COMPUTECAPACITY': "virtualization.ComputeCapacity",
- 'VIRTUALIZATION.CPUALLOCATION': "virtualization.CpuAllocation",
- 'VIRTUALIZATION.CPUINFO': "virtualization.CpuInfo",
- 'VIRTUALIZATION.ESXICLONECUSTOMSPEC': "virtualization.EsxiCloneCustomSpec",
- 'VIRTUALIZATION.ESXIOVACUSTOMSPEC': "virtualization.EsxiOvaCustomSpec",
- 'VIRTUALIZATION.ESXIVMCOMPUTECONFIGURATION': "virtualization.EsxiVmComputeConfiguration",
- 'VIRTUALIZATION.ESXIVMCONFIGURATION': "virtualization.EsxiVmConfiguration",
- 'VIRTUALIZATION.ESXIVMNETWORKCONFIGURATION': "virtualization.EsxiVmNetworkConfiguration",
- 'VIRTUALIZATION.ESXIVMSTORAGECONFIGURATION': "virtualization.EsxiVmStorageConfiguration",
- 'VIRTUALIZATION.GUESTINFO': "virtualization.GuestInfo",
- 'VIRTUALIZATION.HXAPVMCONFIGURATION': "virtualization.HxapVmConfiguration",
- 'VIRTUALIZATION.MEMORYALLOCATION': "virtualization.MemoryAllocation",
- 'VIRTUALIZATION.MEMORYCAPACITY': "virtualization.MemoryCapacity",
- 'VIRTUALIZATION.NETWORKINTERFACE': "virtualization.NetworkInterface",
- 'VIRTUALIZATION.PRODUCTINFO': "virtualization.ProductInfo",
- 'VIRTUALIZATION.STORAGECAPACITY': "virtualization.StorageCapacity",
- 'VIRTUALIZATION.VIRTUALDISKCONFIG': "virtualization.VirtualDiskConfig",
- 'VIRTUALIZATION.VIRTUALMACHINEDISK': "virtualization.VirtualMachineDisk",
- 'VIRTUALIZATION.VMESXIDISK': "virtualization.VmEsxiDisk",
- 'VIRTUALIZATION.VMWAREREMOTEDISPLAYINFO': "virtualization.VmwareRemoteDisplayInfo",
- 'VIRTUALIZATION.VMWARERESOURCECONSUMPTION': "virtualization.VmwareResourceConsumption",
- 'VIRTUALIZATION.VMWARESHARESINFO': "virtualization.VmwareSharesInfo",
- 'VIRTUALIZATION.VMWARETEAMINGANDFAILOVER': "virtualization.VmwareTeamingAndFailover",
- 'VIRTUALIZATION.VMWAREVLANRANGE': "virtualization.VmwareVlanRange",
- 'VIRTUALIZATION.VMWAREVMCPUSHAREINFO': "virtualization.VmwareVmCpuShareInfo",
- 'VIRTUALIZATION.VMWAREVMCPUSOCKETINFO': "virtualization.VmwareVmCpuSocketInfo",
- 'VIRTUALIZATION.VMWAREVMDISKCOMMITINFO': "virtualization.VmwareVmDiskCommitInfo",
- 'VIRTUALIZATION.VMWAREVMMEMORYSHAREINFO': "virtualization.VmwareVmMemoryShareInfo",
- 'VMEDIA.MAPPING': "vmedia.Mapping",
- 'VNIC.ARFSSETTINGS': "vnic.ArfsSettings",
- 'VNIC.CDN': "vnic.Cdn",
- 'VNIC.COMPLETIONQUEUESETTINGS': "vnic.CompletionQueueSettings",
- 'VNIC.ETHINTERRUPTSETTINGS': "vnic.EthInterruptSettings",
- 'VNIC.ETHRXQUEUESETTINGS': "vnic.EthRxQueueSettings",
- 'VNIC.ETHTXQUEUESETTINGS': "vnic.EthTxQueueSettings",
- 'VNIC.FCERRORRECOVERYSETTINGS': "vnic.FcErrorRecoverySettings",
- 'VNIC.FCINTERRUPTSETTINGS': "vnic.FcInterruptSettings",
- 'VNIC.FCQUEUESETTINGS': "vnic.FcQueueSettings",
- 'VNIC.FLOGISETTINGS': "vnic.FlogiSettings",
- 'VNIC.ISCSIAUTHPROFILE': "vnic.IscsiAuthProfile",
- 'VNIC.LUN': "vnic.Lun",
- 'VNIC.NVGRESETTINGS': "vnic.NvgreSettings",
- 'VNIC.PLACEMENTSETTINGS': "vnic.PlacementSettings",
- 'VNIC.PLOGISETTINGS': "vnic.PlogiSettings",
- 'VNIC.ROCESETTINGS': "vnic.RoceSettings",
- 'VNIC.RSSHASHSETTINGS': "vnic.RssHashSettings",
- 'VNIC.SCSIQUEUESETTINGS': "vnic.ScsiQueueSettings",
- 'VNIC.TCPOFFLOADSETTINGS': "vnic.TcpOffloadSettings",
- 'VNIC.USNICSETTINGS': "vnic.UsnicSettings",
- 'VNIC.VIFSTATUS': "vnic.VifStatus",
- 'VNIC.VLANSETTINGS': "vnic.VlanSettings",
- 'VNIC.VMQSETTINGS': "vnic.VmqSettings",
- 'VNIC.VSANSETTINGS': "vnic.VsanSettings",
- 'VNIC.VXLANSETTINGS': "vnic.VxlanSettings",
- 'WORKFLOW.ARRAYDATATYPE': "workflow.ArrayDataType",
- 'WORKFLOW.ASSOCIATEDROLES': "workflow.AssociatedRoles",
- 'WORKFLOW.CLICOMMAND': "workflow.CliCommand",
- 'WORKFLOW.COMMENTS': "workflow.Comments",
- 'WORKFLOW.CONSTRAINTS': "workflow.Constraints",
- 'WORKFLOW.CUSTOMARRAYITEM': "workflow.CustomArrayItem",
- 'WORKFLOW.CUSTOMDATAPROPERTY': "workflow.CustomDataProperty",
- 'WORKFLOW.CUSTOMDATATYPE': "workflow.CustomDataType",
- 'WORKFLOW.CUSTOMDATATYPEPROPERTIES': "workflow.CustomDataTypeProperties",
- 'WORKFLOW.DECISIONCASE': "workflow.DecisionCase",
- 'WORKFLOW.DECISIONTASK': "workflow.DecisionTask",
- 'WORKFLOW.DEFAULTVALUE': "workflow.DefaultValue",
- 'WORKFLOW.DISPLAYMETA': "workflow.DisplayMeta",
- 'WORKFLOW.DYNAMICWORKFLOWACTIONTASKLIST': "workflow.DynamicWorkflowActionTaskList",
- 'WORKFLOW.ENUMENTRY': "workflow.EnumEntry",
- 'WORKFLOW.EXPECTPROMPT': "workflow.ExpectPrompt",
- 'WORKFLOW.FAILUREENDTASK': "workflow.FailureEndTask",
- 'WORKFLOW.FILEDOWNLOADOP': "workflow.FileDownloadOp",
- 'WORKFLOW.FILEOPERATIONS': "workflow.FileOperations",
- 'WORKFLOW.FILETEMPLATEOP': "workflow.FileTemplateOp",
- 'WORKFLOW.FILETRANSFER': "workflow.FileTransfer",
- 'WORKFLOW.FORKTASK': "workflow.ForkTask",
- 'WORKFLOW.INITIATORCONTEXT': "workflow.InitiatorContext",
- 'WORKFLOW.INTERNALPROPERTIES': "workflow.InternalProperties",
- 'WORKFLOW.JOINTASK': "workflow.JoinTask",
- 'WORKFLOW.LOOPTASK': "workflow.LoopTask",
- 'WORKFLOW.MESSAGE': "workflow.Message",
- 'WORKFLOW.MOREFERENCEARRAYITEM': "workflow.MoReferenceArrayItem",
- 'WORKFLOW.MOREFERENCEDATATYPE': "workflow.MoReferenceDataType",
- 'WORKFLOW.MOREFERENCEPROPERTY': "workflow.MoReferenceProperty",
- 'WORKFLOW.PARAMETERSET': "workflow.ParameterSet",
- 'WORKFLOW.PRIMITIVEARRAYITEM': "workflow.PrimitiveArrayItem",
- 'WORKFLOW.PRIMITIVEDATAPROPERTY': "workflow.PrimitiveDataProperty",
- 'WORKFLOW.PRIMITIVEDATATYPE': "workflow.PrimitiveDataType",
- 'WORKFLOW.PROPERTIES': "workflow.Properties",
- 'WORKFLOW.RESULTHANDLER': "workflow.ResultHandler",
- 'WORKFLOW.ROLLBACKTASK': "workflow.RollbackTask",
- 'WORKFLOW.ROLLBACKWORKFLOWTASK': "workflow.RollbackWorkflowTask",
- 'WORKFLOW.SELECTORPROPERTY': "workflow.SelectorProperty",
- 'WORKFLOW.SSHCMD': "workflow.SshCmd",
- 'WORKFLOW.SSHCONFIG': "workflow.SshConfig",
- 'WORKFLOW.SSHSESSION': "workflow.SshSession",
- 'WORKFLOW.STARTTASK': "workflow.StartTask",
- 'WORKFLOW.SUBWORKFLOWTASK': "workflow.SubWorkflowTask",
- 'WORKFLOW.SUCCESSENDTASK': "workflow.SuccessEndTask",
- 'WORKFLOW.TARGETCONTEXT': "workflow.TargetContext",
- 'WORKFLOW.TARGETDATATYPE': "workflow.TargetDataType",
- 'WORKFLOW.TARGETPROPERTY': "workflow.TargetProperty",
- 'WORKFLOW.TASKCONSTRAINTS': "workflow.TaskConstraints",
- 'WORKFLOW.TASKRETRYINFO': "workflow.TaskRetryInfo",
- 'WORKFLOW.UIINPUTFILTER': "workflow.UiInputFilter",
- 'WORKFLOW.VALIDATIONERROR': "workflow.ValidationError",
- 'WORKFLOW.VALIDATIONINFORMATION': "workflow.ValidationInformation",
- 'WORKFLOW.WAITTASK': "workflow.WaitTask",
- 'WORKFLOW.WAITTASKPROMPT': "workflow.WaitTaskPrompt",
- 'WORKFLOW.WEBAPI': "workflow.WebApi",
- 'WORKFLOW.WORKERTASK': "workflow.WorkerTask",
- 'WORKFLOW.WORKFLOWCTX': "workflow.WorkflowCtx",
- 'WORKFLOW.WORKFLOWENGINEPROPERTIES': "workflow.WorkflowEngineProperties",
- 'WORKFLOW.WORKFLOWINFOPROPERTIES': "workflow.WorkflowInfoProperties",
- 'WORKFLOW.WORKFLOWPROPERTIES': "workflow.WorkflowProperties",
- 'WORKFLOW.XMLAPI': "workflow.XmlApi",
- 'X509.CERTIFICATE': "x509.Certificate",
+ },
+ ('verb',): {
+ 'POST': "POST",
+ 'PATCH': "PATCH",
+ 'DELETE': "DELETE",
},
}
@@ -1103,6 +102,8 @@ def openapi_types():
return {
'class_id': (str,), # noqa: E501
'object_type': (str,), # noqa: E501
+ 'uri': (str,), # noqa: E501
+ 'verb': (str,), # noqa: E501
}
@cached_property
@@ -1118,6 +119,8 @@ def discriminator():
attribute_map = {
'class_id': 'ClassId', # noqa: E501
'object_type': 'ObjectType', # noqa: E501
+ 'uri': 'Uri', # noqa: E501
+ 'verb': 'Verb', # noqa: E501
}
required_properties = set([
@@ -1133,14 +136,14 @@ def discriminator():
])
@convert_js_args_to_python_args
- def __init__(self, class_id, object_type, *args, **kwargs): # noqa: E501
+ def __init__(self, *args, **kwargs): # noqa: E501
"""BulkSubRequest - a model defined in OpenAPI
Args:
- class_id (str): The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data. The enum values provides the list of concrete types that can be instantiated from this abstract type.
- object_type (str): The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. The enum values provides the list of concrete types that can be instantiated from this abstract type.
Keyword Args:
+ class_id (str): The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data. The enum values provides the list of concrete types that can be instantiated from this abstract type.. defaults to "bulk.RestSubRequest", must be one of ["bulk.RestSubRequest", ] # noqa: E501
+ object_type (str): The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. The enum values provides the list of concrete types that can be instantiated from this abstract type.. defaults to "bulk.RestSubRequest", must be one of ["bulk.RestSubRequest", ] # noqa: E501
_check_type (bool): if True, values for parameters in openapi_types
will be type checked and a TypeError will be
raised if the wrong type is input.
@@ -1171,8 +174,12 @@ def __init__(self, class_id, object_type, *args, **kwargs): # noqa: E501
Animal class but this time we won't travel
through its discriminator because we passed in
_visited_composed_classes = (Animal,)
+ uri (str): The URI on which this action is to be performed.. [optional] # noqa: E501
+ verb (str): The type of operation to be performed. One of - Post (Create), Patch (Update) or Delete (Remove). The value is used to override the top level verb. * `POST` - Used to create a REST resource. * `PATCH` - Used to update a REST resource. * `DELETE` - Used to delete a REST resource.. [optional] if omitted the server will use the default value of "POST" # noqa: E501
"""
+ class_id = kwargs.get('class_id', "bulk.RestSubRequest")
+ object_type = kwargs.get('object_type', "bulk.RestSubRequest")
_check_type = kwargs.pop('_check_type', True)
_spec_property_naming = kwargs.pop('_spec_property_naming', False)
_path_to_item = kwargs.pop('_path_to_item', ())
@@ -1242,6 +249,7 @@ def _composed_schemas():
'anyOf': [
],
'allOf': [
+ BulkSubRequestAllOf,
MoBaseComplexType,
],
'oneOf': [
diff --git a/intersight/model/bulk_sub_request_all_of.py b/intersight/model/bulk_sub_request_all_of.py
new file mode 100644
index 0000000000..d647524f9a
--- /dev/null
+++ b/intersight/model/bulk_sub_request_all_of.py
@@ -0,0 +1,193 @@
+"""
+ Cisco Intersight
+
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
+
+ The version of the OpenAPI document: 1.0.9-4506
+ Contact: intersight@cisco.com
+ Generated by: https://openapi-generator.tech
+"""
+
+
+import re # noqa: F401
+import sys # noqa: F401
+
+from intersight.model_utils import ( # noqa: F401
+ ApiTypeError,
+ ModelComposed,
+ ModelNormal,
+ ModelSimple,
+ cached_property,
+ change_keys_js_to_python,
+ convert_js_args_to_python_args,
+ date,
+ datetime,
+ file_type,
+ none_type,
+ validate_get_composed_info,
+)
+
+
+class BulkSubRequestAllOf(ModelNormal):
+ """NOTE: This class is auto generated by OpenAPI Generator.
+ Ref: https://openapi-generator.tech
+
+ Do not edit the class manually.
+
+ Attributes:
+ allowed_values (dict): The key is the tuple path to the attribute
+ and the for var_name this is (var_name,). The value is a dict
+ with a capitalized key describing the allowed value and an allowed
+ value. These dicts store the allowed enum values.
+ attribute_map (dict): The key is attribute name
+ and the value is json key in definition.
+ discriminator_value_class_map (dict): A dict to go from the discriminator
+ variable value to the discriminator class name.
+ validations (dict): The key is the tuple path to the attribute
+ and the for var_name this is (var_name,). The value is a dict
+ that stores validations for max_length, min_length, max_items,
+ min_items, exclusive_maximum, inclusive_maximum, exclusive_minimum,
+ inclusive_minimum, and regex.
+ additional_properties_type (tuple): A tuple of classes accepted
+ as additional properties values.
+ """
+
+ allowed_values = {
+ ('class_id',): {
+ 'BULK.RESTSUBREQUEST': "bulk.RestSubRequest",
+ },
+ ('object_type',): {
+ 'BULK.RESTSUBREQUEST': "bulk.RestSubRequest",
+ },
+ ('verb',): {
+ 'POST': "POST",
+ 'PATCH': "PATCH",
+ 'DELETE': "DELETE",
+ },
+ }
+
+ validations = {
+ }
+
+ additional_properties_type = None
+
+ _nullable = False
+
+ @cached_property
+ def openapi_types():
+ """
+ This must be a method because a model may have properties that are
+ of type self, this must run after the class is loaded
+
+ Returns
+ openapi_types (dict): The key is attribute name
+ and the value is attribute type.
+ """
+ return {
+ 'class_id': (str,), # noqa: E501
+ 'object_type': (str,), # noqa: E501
+ 'uri': (str,), # noqa: E501
+ 'verb': (str,), # noqa: E501
+ }
+
+ @cached_property
+ def discriminator():
+ return None
+
+
+ attribute_map = {
+ 'class_id': 'ClassId', # noqa: E501
+ 'object_type': 'ObjectType', # noqa: E501
+ 'uri': 'Uri', # noqa: E501
+ 'verb': 'Verb', # noqa: E501
+ }
+
+ _composed_schemas = {}
+
+ required_properties = set([
+ '_data_store',
+ '_check_type',
+ '_spec_property_naming',
+ '_path_to_item',
+ '_configuration',
+ '_visited_composed_classes',
+ ])
+
+ @convert_js_args_to_python_args
+ def __init__(self, *args, **kwargs): # noqa: E501
+ """BulkSubRequestAllOf - a model defined in OpenAPI
+
+ Args:
+
+ Keyword Args:
+ class_id (str): The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data. The enum values provides the list of concrete types that can be instantiated from this abstract type.. defaults to "bulk.RestSubRequest", must be one of ["bulk.RestSubRequest", ] # noqa: E501
+ object_type (str): The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. The enum values provides the list of concrete types that can be instantiated from this abstract type.. defaults to "bulk.RestSubRequest", must be one of ["bulk.RestSubRequest", ] # noqa: E501
+ _check_type (bool): if True, values for parameters in openapi_types
+ will be type checked and a TypeError will be
+ raised if the wrong type is input.
+ Defaults to True
+ _path_to_item (tuple/list): This is a list of keys or values to
+ drill down to the model in received_data
+ when deserializing a response
+ _spec_property_naming (bool): True if the variable names in the input data
+ are serialized names, as specified in the OpenAPI document.
+ False if the variable names in the input data
+ are pythonic names, e.g. snake case (default)
+ _configuration (Configuration): the instance to use when
+ deserializing a file_type parameter.
+ If passed, type conversion is attempted
+ If omitted no type conversion is done.
+ _visited_composed_classes (tuple): This stores a tuple of
+ classes that we have traveled through so that
+ if we see that class again we will not use its
+ discriminator again.
+ When traveling through a discriminator, the
+ composed schema that is
+ is traveled through is added to this set.
+ For example if Animal has a discriminator
+ petType and we pass in "Dog", and the class Dog
+ allOf includes Animal, we move through Animal
+ once using the discriminator, and pick Dog.
+ Then in Dog, we will make an instance of the
+ Animal class but this time we won't travel
+ through its discriminator because we passed in
+ _visited_composed_classes = (Animal,)
+ uri (str): The URI on which this action is to be performed.. [optional] # noqa: E501
+ verb (str): The type of operation to be performed. One of - Post (Create), Patch (Update) or Delete (Remove). The value is used to override the top level verb. * `POST` - Used to create a REST resource. * `PATCH` - Used to update a REST resource. * `DELETE` - Used to delete a REST resource.. [optional] if omitted the server will use the default value of "POST" # noqa: E501
+ """
+
+ class_id = kwargs.get('class_id', "bulk.RestSubRequest")
+ object_type = kwargs.get('object_type', "bulk.RestSubRequest")
+ _check_type = kwargs.pop('_check_type', True)
+ _spec_property_naming = kwargs.pop('_spec_property_naming', False)
+ _path_to_item = kwargs.pop('_path_to_item', ())
+ _configuration = kwargs.pop('_configuration', None)
+ _visited_composed_classes = kwargs.pop('_visited_composed_classes', ())
+
+ if args:
+ raise ApiTypeError(
+ "Invalid positional arguments=%s passed to %s. Remove those invalid positional arguments." % (
+ args,
+ self.__class__.__name__,
+ ),
+ path_to_item=_path_to_item,
+ valid_classes=(self.__class__,),
+ )
+
+ self._data_store = {}
+ self._check_type = _check_type
+ self._spec_property_naming = _spec_property_naming
+ self._path_to_item = _path_to_item
+ self._configuration = _configuration
+ self._visited_composed_classes = _visited_composed_classes + (self.__class__,)
+
+ self.class_id = class_id
+ self.object_type = object_type
+ for var_name, var_value in kwargs.items():
+ if var_name not in self.attribute_map and \
+ self._configuration is not None and \
+ self._configuration.discard_unknown_keys and \
+ self.additional_properties_type is None:
+ # discard variable.
+ continue
+ setattr(self, var_name, var_value)
diff --git a/intersight/model/bulk_sub_request_obj.py b/intersight/model/bulk_sub_request_obj.py
new file mode 100644
index 0000000000..514a32db0f
--- /dev/null
+++ b/intersight/model/bulk_sub_request_obj.py
@@ -0,0 +1,347 @@
+"""
+ Cisco Intersight
+
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
+
+ The version of the OpenAPI document: 1.0.9-4506
+ Contact: intersight@cisco.com
+ Generated by: https://openapi-generator.tech
+"""
+
+
+import re # noqa: F401
+import sys # noqa: F401
+
+from intersight.model_utils import ( # noqa: F401
+ ApiTypeError,
+ ModelComposed,
+ ModelNormal,
+ ModelSimple,
+ cached_property,
+ change_keys_js_to_python,
+ convert_js_args_to_python_args,
+ date,
+ datetime,
+ file_type,
+ none_type,
+ validate_get_composed_info,
+)
+
+def lazy_import():
+ from intersight.model.bulk_api_result import BulkApiResult
+ from intersight.model.bulk_request_relationship import BulkRequestRelationship
+ from intersight.model.bulk_sub_request_obj_all_of import BulkSubRequestObjAllOf
+ from intersight.model.display_names import DisplayNames
+ from intersight.model.mo_base_mo import MoBaseMo
+ from intersight.model.mo_base_mo_relationship import MoBaseMoRelationship
+ from intersight.model.mo_tag import MoTag
+ from intersight.model.mo_version_context import MoVersionContext
+ globals()['BulkApiResult'] = BulkApiResult
+ globals()['BulkRequestRelationship'] = BulkRequestRelationship
+ globals()['BulkSubRequestObjAllOf'] = BulkSubRequestObjAllOf
+ globals()['DisplayNames'] = DisplayNames
+ globals()['MoBaseMo'] = MoBaseMo
+ globals()['MoBaseMoRelationship'] = MoBaseMoRelationship
+ globals()['MoTag'] = MoTag
+ globals()['MoVersionContext'] = MoVersionContext
+
+
+class BulkSubRequestObj(ModelComposed):
+ """NOTE: This class is auto generated by OpenAPI Generator.
+ Ref: https://openapi-generator.tech
+
+ Do not edit the class manually.
+
+ Attributes:
+ allowed_values (dict): The key is the tuple path to the attribute
+ and the for var_name this is (var_name,). The value is a dict
+ with a capitalized key describing the allowed value and an allowed
+ value. These dicts store the allowed enum values.
+ attribute_map (dict): The key is attribute name
+ and the value is json key in definition.
+ discriminator_value_class_map (dict): A dict to go from the discriminator
+ variable value to the discriminator class name.
+ validations (dict): The key is the tuple path to the attribute
+ and the for var_name this is (var_name,). The value is a dict
+ that stores validations for max_length, min_length, max_items,
+ min_items, exclusive_maximum, inclusive_maximum, exclusive_minimum,
+ inclusive_minimum, and regex.
+ additional_properties_type (tuple): A tuple of classes accepted
+ as additional properties values.
+ """
+
+ allowed_values = {
+ ('class_id',): {
+ 'BULK.SUBREQUESTOBJ': "bulk.SubRequestObj",
+ },
+ ('object_type',): {
+ 'BULK.SUBREQUESTOBJ': "bulk.SubRequestObj",
+ },
+ ('status',): {
+ 'PENDING': "Pending",
+ 'OBJPRESENCECHECKINPROGRESS': "ObjPresenceCheckInProgress",
+ 'OBJPRESENCECHECKINCOMPLETE': "ObjPresenceCheckInComplete",
+ 'OBJPRESENCECHECKFAILED': "ObjPresenceCheckFailed",
+ 'PROCESSING': "Processing",
+ 'TIMEDOUT': "TimedOut",
+ 'COMPLETED': "Completed",
+ 'SKIPPED': "Skipped",
+ },
+ ('verb',): {
+ 'POST': "POST",
+ 'PATCH': "PATCH",
+ 'DELETE': "DELETE",
+ },
+ }
+
+ validations = {
+ }
+
+ @cached_property
+ def additional_properties_type():
+ """
+ This must be a method because a model may have properties that are
+ of type self, this must run after the class is loaded
+ """
+ lazy_import()
+ return (bool, date, datetime, dict, float, int, list, str, none_type,) # noqa: E501
+
+ _nullable = False
+
+ @cached_property
+ def openapi_types():
+ """
+ This must be a method because a model may have properties that are
+ of type self, this must run after the class is loaded
+
+ Returns
+ openapi_types (dict): The key is attribute name
+ and the value is attribute type.
+ """
+ lazy_import()
+ return {
+ 'class_id': (str,), # noqa: E501
+ 'object_type': (str,), # noqa: E501
+ 'body': (MoBaseMo,), # noqa: E501
+ 'body_string': (str,), # noqa: E501
+ 'execution_completion_time': (str,), # noqa: E501
+ 'execution_start_time': (str,), # noqa: E501
+ 'is_object_present': (bool,), # noqa: E501
+ 'result': (BulkApiResult,), # noqa: E501
+ 'skip_duplicates': (bool,), # noqa: E501
+ 'status': (str,), # noqa: E501
+ 'system_defined_object_detected': (bool,), # noqa: E501
+ 'target_moid': (str,), # noqa: E501
+ 'uri': (str,), # noqa: E501
+ 'verb': (str,), # noqa: E501
+ 'request': (BulkRequestRelationship,), # noqa: E501
+ 'account_moid': (str,), # noqa: E501
+ 'create_time': (datetime,), # noqa: E501
+ 'domain_group_moid': (str,), # noqa: E501
+ 'mod_time': (datetime,), # noqa: E501
+ 'moid': (str,), # noqa: E501
+ 'owners': ([str], none_type,), # noqa: E501
+ 'shared_scope': (str,), # noqa: E501
+ 'tags': ([MoTag], none_type,), # noqa: E501
+ 'version_context': (MoVersionContext,), # noqa: E501
+ 'ancestors': ([MoBaseMoRelationship], none_type,), # noqa: E501
+ 'parent': (MoBaseMoRelationship,), # noqa: E501
+ 'permission_resources': ([MoBaseMoRelationship], none_type,), # noqa: E501
+ 'display_names': (DisplayNames,), # noqa: E501
+ }
+
+ @cached_property
+ def discriminator():
+ val = {
+ }
+ if not val:
+ return None
+ return {'class_id': val}
+
+ attribute_map = {
+ 'class_id': 'ClassId', # noqa: E501
+ 'object_type': 'ObjectType', # noqa: E501
+ 'body': 'Body', # noqa: E501
+ 'body_string': 'BodyString', # noqa: E501
+ 'execution_completion_time': 'ExecutionCompletionTime', # noqa: E501
+ 'execution_start_time': 'ExecutionStartTime', # noqa: E501
+ 'is_object_present': 'IsObjectPresent', # noqa: E501
+ 'result': 'Result', # noqa: E501
+ 'skip_duplicates': 'SkipDuplicates', # noqa: E501
+ 'status': 'Status', # noqa: E501
+ 'system_defined_object_detected': 'SystemDefinedObjectDetected', # noqa: E501
+ 'target_moid': 'TargetMoid', # noqa: E501
+ 'uri': 'Uri', # noqa: E501
+ 'verb': 'Verb', # noqa: E501
+ 'request': 'Request', # noqa: E501
+ 'account_moid': 'AccountMoid', # noqa: E501
+ 'create_time': 'CreateTime', # noqa: E501
+ 'domain_group_moid': 'DomainGroupMoid', # noqa: E501
+ 'mod_time': 'ModTime', # noqa: E501
+ 'moid': 'Moid', # noqa: E501
+ 'owners': 'Owners', # noqa: E501
+ 'shared_scope': 'SharedScope', # noqa: E501
+ 'tags': 'Tags', # noqa: E501
+ 'version_context': 'VersionContext', # noqa: E501
+ 'ancestors': 'Ancestors', # noqa: E501
+ 'parent': 'Parent', # noqa: E501
+ 'permission_resources': 'PermissionResources', # noqa: E501
+ 'display_names': 'DisplayNames', # noqa: E501
+ }
+
+ required_properties = set([
+ '_data_store',
+ '_check_type',
+ '_spec_property_naming',
+ '_path_to_item',
+ '_configuration',
+ '_visited_composed_classes',
+ '_composed_instances',
+ '_var_name_to_model_instances',
+ '_additional_properties_model_instances',
+ ])
+
+ @convert_js_args_to_python_args
+ def __init__(self, *args, **kwargs): # noqa: E501
+ """BulkSubRequestObj - a model defined in OpenAPI
+
+ Args:
+
+ Keyword Args:
+ class_id (str): The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.. defaults to "bulk.SubRequestObj", must be one of ["bulk.SubRequestObj", ] # noqa: E501
+ object_type (str): The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.. defaults to "bulk.SubRequestObj", must be one of ["bulk.SubRequestObj", ] # noqa: E501
+ _check_type (bool): if True, values for parameters in openapi_types
+ will be type checked and a TypeError will be
+ raised if the wrong type is input.
+ Defaults to True
+ _path_to_item (tuple/list): This is a list of keys or values to
+ drill down to the model in received_data
+ when deserializing a response
+ _spec_property_naming (bool): True if the variable names in the input data
+ are serialized names, as specified in the OpenAPI document.
+ False if the variable names in the input data
+ are pythonic names, e.g. snake case (default)
+ _configuration (Configuration): the instance to use when
+ deserializing a file_type parameter.
+ If passed, type conversion is attempted
+ If omitted no type conversion is done.
+ _visited_composed_classes (tuple): This stores a tuple of
+ classes that we have traveled through so that
+ if we see that class again we will not use its
+ discriminator again.
+ When traveling through a discriminator, the
+ composed schema that is
+ is traveled through is added to this set.
+ For example if Animal has a discriminator
+ petType and we pass in "Dog", and the class Dog
+ allOf includes Animal, we move through Animal
+ once using the discriminator, and pick Dog.
+ Then in Dog, we will make an instance of the
+ Animal class but this time we won't travel
+ through its discriminator because we passed in
+ _visited_composed_classes = (Animal,)
+ body (MoBaseMo): [optional] # noqa: E501
+ body_string (str): The body of the sub-request in string format.. [optional] # noqa: E501
+ execution_completion_time (str): The time at which processing of this request completed.. [optional] # noqa: E501
+ execution_start_time (str): The time at which processing of this request started.. [optional] # noqa: E501
+ is_object_present (bool): This flag indicates if an already existing object was found or not after execution of the action CheckObjectPresence.. [optional] # noqa: E501
+ result (BulkApiResult): [optional] # noqa: E501
+ skip_duplicates (bool): Skip the already present objects. The value from the Request.. [optional] # noqa: E501
+ status (str): The status of the request. * `Pending` - Indicates that the request is yet to be processed. * `ObjPresenceCheckInProgress` - Indicates that the checking for object presence is in progress. * `ObjPresenceCheckInComplete` - Indicates that the request is being processed. * `ObjPresenceCheckFailed` - Indicates that the checking for object presence failed. * `Processing` - Indicates that the request is being processed. * `TimedOut` - Indicates that the request processing timed out. * `Completed` - Indicates that the request processing is complete. * `Skipped` - Indicates that the request was skipped.. [optional] if omitted the server will use the default value of "Pending" # noqa: E501
+ system_defined_object_detected (bool): This flag indicates if the a system defined object was detected after execution of the action CheckObjectPresence.. [optional] # noqa: E501
+ target_moid (str): Used with PATCH & DELETE actions. The moid of an existing object instance.. [optional] # noqa: E501
+ uri (str): The URI on which this bulk action is to be performed.. [optional] # noqa: E501
+ verb (str): The type of operation to be performed. One of - Post (Create), Patch (Update) or Delete (Remove). * `POST` - Used to create a REST resource. * `PATCH` - Used to update a REST resource. * `DELETE` - Used to delete a REST resource.. [optional] if omitted the server will use the default value of "POST" # noqa: E501
+ request (BulkRequestRelationship): [optional] # noqa: E501
+ account_moid (str): The Account ID for this managed object.. [optional] # noqa: E501
+ create_time (datetime): The time when this managed object was created.. [optional] # noqa: E501
+ domain_group_moid (str): The DomainGroup ID for this managed object.. [optional] # noqa: E501
+ mod_time (datetime): The time when this managed object was last modified.. [optional] # noqa: E501
+ moid (str): The unique identifier of this Managed Object instance.. [optional] # noqa: E501
+ owners ([str], none_type): [optional] # noqa: E501
+ shared_scope (str): Intersight provides pre-built workflows, tasks and policies to end users through global catalogs. Objects that are made available through global catalogs are said to have a 'shared' ownership. Shared objects are either made globally available to all end users or restricted to end users based on their license entitlement. Users can use this property to differentiate the scope (global or a specific license tier) to which a shared MO belongs.. [optional] # noqa: E501
+ tags ([MoTag], none_type): [optional] # noqa: E501
+ version_context (MoVersionContext): [optional] # noqa: E501
+ ancestors ([MoBaseMoRelationship], none_type): An array of relationships to moBaseMo resources.. [optional] # noqa: E501
+ parent (MoBaseMoRelationship): [optional] # noqa: E501
+ permission_resources ([MoBaseMoRelationship], none_type): An array of relationships to moBaseMo resources.. [optional] # noqa: E501
+ display_names (DisplayNames): [optional] # noqa: E501
+ """
+
+ class_id = kwargs.get('class_id', "bulk.SubRequestObj")
+ object_type = kwargs.get('object_type', "bulk.SubRequestObj")
+ _check_type = kwargs.pop('_check_type', True)
+ _spec_property_naming = kwargs.pop('_spec_property_naming', False)
+ _path_to_item = kwargs.pop('_path_to_item', ())
+ _configuration = kwargs.pop('_configuration', None)
+ _visited_composed_classes = kwargs.pop('_visited_composed_classes', ())
+
+ if args:
+ raise ApiTypeError(
+ "Invalid positional arguments=%s passed to %s. Remove those invalid positional arguments." % (
+ args,
+ self.__class__.__name__,
+ ),
+ path_to_item=_path_to_item,
+ valid_classes=(self.__class__,),
+ )
+
+ self._data_store = {}
+ self._check_type = _check_type
+ self._spec_property_naming = _spec_property_naming
+ self._path_to_item = _path_to_item
+ self._configuration = _configuration
+ self._visited_composed_classes = _visited_composed_classes + (self.__class__,)
+
+ constant_args = {
+ '_check_type': _check_type,
+ '_path_to_item': _path_to_item,
+ '_spec_property_naming': _spec_property_naming,
+ '_configuration': _configuration,
+ '_visited_composed_classes': self._visited_composed_classes,
+ }
+ required_args = {
+ 'class_id': class_id,
+ 'object_type': object_type,
+ }
+ model_args = {}
+ model_args.update(required_args)
+ model_args.update(kwargs)
+ composed_info = validate_get_composed_info(
+ constant_args, model_args, self)
+ self._composed_instances = composed_info[0]
+ self._var_name_to_model_instances = composed_info[1]
+ self._additional_properties_model_instances = composed_info[2]
+ unused_args = composed_info[3]
+
+ for var_name, var_value in required_args.items():
+ setattr(self, var_name, var_value)
+ for var_name, var_value in kwargs.items():
+ if var_name in unused_args and \
+ self._configuration is not None and \
+ self._configuration.discard_unknown_keys and \
+ not self._additional_properties_model_instances:
+ # discard variable.
+ continue
+ setattr(self, var_name, var_value)
+
+ @cached_property
+ def _composed_schemas():
+ # we need this here to make our import statements work
+ # we must store _composed_schemas in here so the code is only run
+ # when we invoke this method. If we kept this at the class
+ # level we would get an error beause the class level
+ # code would be run when this module is imported, and these composed
+ # classes don't exist yet because their module has not finished
+ # loading
+ lazy_import()
+ return {
+ 'anyOf': [
+ ],
+ 'allOf': [
+ BulkSubRequestObjAllOf,
+ MoBaseMo,
+ ],
+ 'oneOf': [
+ ],
+ }
diff --git a/intersight/model/bulk_sub_request_obj_all_of.py b/intersight/model/bulk_sub_request_obj_all_of.py
new file mode 100644
index 0000000000..fd58e08f9a
--- /dev/null
+++ b/intersight/model/bulk_sub_request_obj_all_of.py
@@ -0,0 +1,245 @@
+"""
+ Cisco Intersight
+
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
+
+ The version of the OpenAPI document: 1.0.9-4506
+ Contact: intersight@cisco.com
+ Generated by: https://openapi-generator.tech
+"""
+
+
+import re # noqa: F401
+import sys # noqa: F401
+
+from intersight.model_utils import ( # noqa: F401
+ ApiTypeError,
+ ModelComposed,
+ ModelNormal,
+ ModelSimple,
+ cached_property,
+ change_keys_js_to_python,
+ convert_js_args_to_python_args,
+ date,
+ datetime,
+ file_type,
+ none_type,
+ validate_get_composed_info,
+)
+
+def lazy_import():
+ from intersight.model.bulk_api_result import BulkApiResult
+ from intersight.model.bulk_request_relationship import BulkRequestRelationship
+ from intersight.model.mo_base_mo import MoBaseMo
+ globals()['BulkApiResult'] = BulkApiResult
+ globals()['BulkRequestRelationship'] = BulkRequestRelationship
+ globals()['MoBaseMo'] = MoBaseMo
+
+
+class BulkSubRequestObjAllOf(ModelNormal):
+ """NOTE: This class is auto generated by OpenAPI Generator.
+ Ref: https://openapi-generator.tech
+
+ Do not edit the class manually.
+
+ Attributes:
+ allowed_values (dict): The key is the tuple path to the attribute
+ and the for var_name this is (var_name,). The value is a dict
+ with a capitalized key describing the allowed value and an allowed
+ value. These dicts store the allowed enum values.
+ attribute_map (dict): The key is attribute name
+ and the value is json key in definition.
+ discriminator_value_class_map (dict): A dict to go from the discriminator
+ variable value to the discriminator class name.
+ validations (dict): The key is the tuple path to the attribute
+ and the for var_name this is (var_name,). The value is a dict
+ that stores validations for max_length, min_length, max_items,
+ min_items, exclusive_maximum, inclusive_maximum, exclusive_minimum,
+ inclusive_minimum, and regex.
+ additional_properties_type (tuple): A tuple of classes accepted
+ as additional properties values.
+ """
+
+ allowed_values = {
+ ('class_id',): {
+ 'BULK.SUBREQUESTOBJ': "bulk.SubRequestObj",
+ },
+ ('object_type',): {
+ 'BULK.SUBREQUESTOBJ': "bulk.SubRequestObj",
+ },
+ ('status',): {
+ 'PENDING': "Pending",
+ 'OBJPRESENCECHECKINPROGRESS': "ObjPresenceCheckInProgress",
+ 'OBJPRESENCECHECKINCOMPLETE': "ObjPresenceCheckInComplete",
+ 'OBJPRESENCECHECKFAILED': "ObjPresenceCheckFailed",
+ 'PROCESSING': "Processing",
+ 'TIMEDOUT': "TimedOut",
+ 'COMPLETED': "Completed",
+ 'SKIPPED': "Skipped",
+ },
+ ('verb',): {
+ 'POST': "POST",
+ 'PATCH': "PATCH",
+ 'DELETE': "DELETE",
+ },
+ }
+
+ validations = {
+ }
+
+ additional_properties_type = None
+
+ _nullable = False
+
+ @cached_property
+ def openapi_types():
+ """
+ This must be a method because a model may have properties that are
+ of type self, this must run after the class is loaded
+
+ Returns
+ openapi_types (dict): The key is attribute name
+ and the value is attribute type.
+ """
+ lazy_import()
+ return {
+ 'class_id': (str,), # noqa: E501
+ 'object_type': (str,), # noqa: E501
+ 'body': (MoBaseMo,), # noqa: E501
+ 'body_string': (str,), # noqa: E501
+ 'execution_completion_time': (str,), # noqa: E501
+ 'execution_start_time': (str,), # noqa: E501
+ 'is_object_present': (bool,), # noqa: E501
+ 'result': (BulkApiResult,), # noqa: E501
+ 'skip_duplicates': (bool,), # noqa: E501
+ 'status': (str,), # noqa: E501
+ 'system_defined_object_detected': (bool,), # noqa: E501
+ 'target_moid': (str,), # noqa: E501
+ 'uri': (str,), # noqa: E501
+ 'verb': (str,), # noqa: E501
+ 'request': (BulkRequestRelationship,), # noqa: E501
+ }
+
+ @cached_property
+ def discriminator():
+ return None
+
+
+ attribute_map = {
+ 'class_id': 'ClassId', # noqa: E501
+ 'object_type': 'ObjectType', # noqa: E501
+ 'body': 'Body', # noqa: E501
+ 'body_string': 'BodyString', # noqa: E501
+ 'execution_completion_time': 'ExecutionCompletionTime', # noqa: E501
+ 'execution_start_time': 'ExecutionStartTime', # noqa: E501
+ 'is_object_present': 'IsObjectPresent', # noqa: E501
+ 'result': 'Result', # noqa: E501
+ 'skip_duplicates': 'SkipDuplicates', # noqa: E501
+ 'status': 'Status', # noqa: E501
+ 'system_defined_object_detected': 'SystemDefinedObjectDetected', # noqa: E501
+ 'target_moid': 'TargetMoid', # noqa: E501
+ 'uri': 'Uri', # noqa: E501
+ 'verb': 'Verb', # noqa: E501
+ 'request': 'Request', # noqa: E501
+ }
+
+ _composed_schemas = {}
+
+ required_properties = set([
+ '_data_store',
+ '_check_type',
+ '_spec_property_naming',
+ '_path_to_item',
+ '_configuration',
+ '_visited_composed_classes',
+ ])
+
+ @convert_js_args_to_python_args
+ def __init__(self, *args, **kwargs): # noqa: E501
+ """BulkSubRequestObjAllOf - a model defined in OpenAPI
+
+ Args:
+
+ Keyword Args:
+ class_id (str): The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.. defaults to "bulk.SubRequestObj", must be one of ["bulk.SubRequestObj", ] # noqa: E501
+ object_type (str): The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.. defaults to "bulk.SubRequestObj", must be one of ["bulk.SubRequestObj", ] # noqa: E501
+ _check_type (bool): if True, values for parameters in openapi_types
+ will be type checked and a TypeError will be
+ raised if the wrong type is input.
+ Defaults to True
+ _path_to_item (tuple/list): This is a list of keys or values to
+ drill down to the model in received_data
+ when deserializing a response
+ _spec_property_naming (bool): True if the variable names in the input data
+ are serialized names, as specified in the OpenAPI document.
+ False if the variable names in the input data
+ are pythonic names, e.g. snake case (default)
+ _configuration (Configuration): the instance to use when
+ deserializing a file_type parameter.
+ If passed, type conversion is attempted
+ If omitted no type conversion is done.
+ _visited_composed_classes (tuple): This stores a tuple of
+ classes that we have traveled through so that
+ if we see that class again we will not use its
+ discriminator again.
+ When traveling through a discriminator, the
+ composed schema that is
+ is traveled through is added to this set.
+ For example if Animal has a discriminator
+ petType and we pass in "Dog", and the class Dog
+ allOf includes Animal, we move through Animal
+ once using the discriminator, and pick Dog.
+ Then in Dog, we will make an instance of the
+ Animal class but this time we won't travel
+ through its discriminator because we passed in
+ _visited_composed_classes = (Animal,)
+ body (MoBaseMo): [optional] # noqa: E501
+ body_string (str): The body of the sub-request in string format.. [optional] # noqa: E501
+ execution_completion_time (str): The time at which processing of this request completed.. [optional] # noqa: E501
+ execution_start_time (str): The time at which processing of this request started.. [optional] # noqa: E501
+ is_object_present (bool): This flag indicates if an already existing object was found or not after execution of the action CheckObjectPresence.. [optional] # noqa: E501
+ result (BulkApiResult): [optional] # noqa: E501
+ skip_duplicates (bool): Skip the already present objects. The value from the Request.. [optional] # noqa: E501
+ status (str): The status of the request. * `Pending` - Indicates that the request is yet to be processed. * `ObjPresenceCheckInProgress` - Indicates that the checking for object presence is in progress. * `ObjPresenceCheckInComplete` - Indicates that the request is being processed. * `ObjPresenceCheckFailed` - Indicates that the checking for object presence failed. * `Processing` - Indicates that the request is being processed. * `TimedOut` - Indicates that the request processing timed out. * `Completed` - Indicates that the request processing is complete. * `Skipped` - Indicates that the request was skipped.. [optional] if omitted the server will use the default value of "Pending" # noqa: E501
+ system_defined_object_detected (bool): This flag indicates if the a system defined object was detected after execution of the action CheckObjectPresence.. [optional] # noqa: E501
+ target_moid (str): Used with PATCH & DELETE actions. The moid of an existing object instance.. [optional] # noqa: E501
+ uri (str): The URI on which this bulk action is to be performed.. [optional] # noqa: E501
+ verb (str): The type of operation to be performed. One of - Post (Create), Patch (Update) or Delete (Remove). * `POST` - Used to create a REST resource. * `PATCH` - Used to update a REST resource. * `DELETE` - Used to delete a REST resource.. [optional] if omitted the server will use the default value of "POST" # noqa: E501
+ request (BulkRequestRelationship): [optional] # noqa: E501
+ """
+
+ class_id = kwargs.get('class_id', "bulk.SubRequestObj")
+ object_type = kwargs.get('object_type', "bulk.SubRequestObj")
+ _check_type = kwargs.pop('_check_type', True)
+ _spec_property_naming = kwargs.pop('_spec_property_naming', False)
+ _path_to_item = kwargs.pop('_path_to_item', ())
+ _configuration = kwargs.pop('_configuration', None)
+ _visited_composed_classes = kwargs.pop('_visited_composed_classes', ())
+
+ if args:
+ raise ApiTypeError(
+ "Invalid positional arguments=%s passed to %s. Remove those invalid positional arguments." % (
+ args,
+ self.__class__.__name__,
+ ),
+ path_to_item=_path_to_item,
+ valid_classes=(self.__class__,),
+ )
+
+ self._data_store = {}
+ self._check_type = _check_type
+ self._spec_property_naming = _spec_property_naming
+ self._path_to_item = _path_to_item
+ self._configuration = _configuration
+ self._visited_composed_classes = _visited_composed_classes + (self.__class__,)
+
+ self.class_id = class_id
+ self.object_type = object_type
+ for var_name, var_value in kwargs.items():
+ if var_name not in self.attribute_map and \
+ self._configuration is not None and \
+ self._configuration.discard_unknown_keys and \
+ self.additional_properties_type is None:
+ # discard variable.
+ continue
+ setattr(self, var_name, var_value)
diff --git a/intersight/model/bulk_sub_request_obj_list.py b/intersight/model/bulk_sub_request_obj_list.py
new file mode 100644
index 0000000000..cf05971ff7
--- /dev/null
+++ b/intersight/model/bulk_sub_request_obj_list.py
@@ -0,0 +1,238 @@
+"""
+ Cisco Intersight
+
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
+
+ The version of the OpenAPI document: 1.0.9-4506
+ Contact: intersight@cisco.com
+ Generated by: https://openapi-generator.tech
+"""
+
+
+import re # noqa: F401
+import sys # noqa: F401
+
+from intersight.model_utils import ( # noqa: F401
+ ApiTypeError,
+ ModelComposed,
+ ModelNormal,
+ ModelSimple,
+ cached_property,
+ change_keys_js_to_python,
+ convert_js_args_to_python_args,
+ date,
+ datetime,
+ file_type,
+ none_type,
+ validate_get_composed_info,
+)
+
+def lazy_import():
+ from intersight.model.bulk_sub_request_obj import BulkSubRequestObj
+ from intersight.model.bulk_sub_request_obj_list_all_of import BulkSubRequestObjListAllOf
+ from intersight.model.mo_base_response import MoBaseResponse
+ globals()['BulkSubRequestObj'] = BulkSubRequestObj
+ globals()['BulkSubRequestObjListAllOf'] = BulkSubRequestObjListAllOf
+ globals()['MoBaseResponse'] = MoBaseResponse
+
+
+class BulkSubRequestObjList(ModelComposed):
+ """NOTE: This class is auto generated by OpenAPI Generator.
+ Ref: https://openapi-generator.tech
+
+ Do not edit the class manually.
+
+ Attributes:
+ allowed_values (dict): The key is the tuple path to the attribute
+ and the for var_name this is (var_name,). The value is a dict
+ with a capitalized key describing the allowed value and an allowed
+ value. These dicts store the allowed enum values.
+ attribute_map (dict): The key is attribute name
+ and the value is json key in definition.
+ discriminator_value_class_map (dict): A dict to go from the discriminator
+ variable value to the discriminator class name.
+ validations (dict): The key is the tuple path to the attribute
+ and the for var_name this is (var_name,). The value is a dict
+ that stores validations for max_length, min_length, max_items,
+ min_items, exclusive_maximum, inclusive_maximum, exclusive_minimum,
+ inclusive_minimum, and regex.
+ additional_properties_type (tuple): A tuple of classes accepted
+ as additional properties values.
+ """
+
+ allowed_values = {
+ }
+
+ validations = {
+ }
+
+ @cached_property
+ def additional_properties_type():
+ """
+ This must be a method because a model may have properties that are
+ of type self, this must run after the class is loaded
+ """
+ lazy_import()
+ return (bool, date, datetime, dict, float, int, list, str, none_type,) # noqa: E501
+
+ _nullable = False
+
+ @cached_property
+ def openapi_types():
+ """
+ This must be a method because a model may have properties that are
+ of type self, this must run after the class is loaded
+
+ Returns
+ openapi_types (dict): The key is attribute name
+ and the value is attribute type.
+ """
+ lazy_import()
+ return {
+ 'object_type': (str,), # noqa: E501
+ 'count': (int,), # noqa: E501
+ 'results': ([BulkSubRequestObj], none_type,), # noqa: E501
+ }
+
+ @cached_property
+ def discriminator():
+ val = {
+ }
+ if not val:
+ return None
+ return {'object_type': val}
+
+ attribute_map = {
+ 'object_type': 'ObjectType', # noqa: E501
+ 'count': 'Count', # noqa: E501
+ 'results': 'Results', # noqa: E501
+ }
+
+ required_properties = set([
+ '_data_store',
+ '_check_type',
+ '_spec_property_naming',
+ '_path_to_item',
+ '_configuration',
+ '_visited_composed_classes',
+ '_composed_instances',
+ '_var_name_to_model_instances',
+ '_additional_properties_model_instances',
+ ])
+
+ @convert_js_args_to_python_args
+ def __init__(self, object_type, *args, **kwargs): # noqa: E501
+ """BulkSubRequestObjList - a model defined in OpenAPI
+
+ Args:
+ object_type (str): A discriminator value to disambiguate the schema of a HTTP GET response body.
+
+ Keyword Args:
+ _check_type (bool): if True, values for parameters in openapi_types
+ will be type checked and a TypeError will be
+ raised if the wrong type is input.
+ Defaults to True
+ _path_to_item (tuple/list): This is a list of keys or values to
+ drill down to the model in received_data
+ when deserializing a response
+ _spec_property_naming (bool): True if the variable names in the input data
+ are serialized names, as specified in the OpenAPI document.
+ False if the variable names in the input data
+ are pythonic names, e.g. snake case (default)
+ _configuration (Configuration): the instance to use when
+ deserializing a file_type parameter.
+ If passed, type conversion is attempted
+ If omitted no type conversion is done.
+ _visited_composed_classes (tuple): This stores a tuple of
+ classes that we have traveled through so that
+ if we see that class again we will not use its
+ discriminator again.
+ When traveling through a discriminator, the
+ composed schema that is
+ is traveled through is added to this set.
+ For example if Animal has a discriminator
+ petType and we pass in "Dog", and the class Dog
+ allOf includes Animal, we move through Animal
+ once using the discriminator, and pick Dog.
+ Then in Dog, we will make an instance of the
+ Animal class but this time we won't travel
+ through its discriminator because we passed in
+ _visited_composed_classes = (Animal,)
+ count (int): The total number of 'bulk.SubRequestObj' resources matching the request, accross all pages. The 'Count' attribute is included when the HTTP GET request includes the '$inlinecount' parameter.. [optional] # noqa: E501
+ results ([BulkSubRequestObj], none_type): The array of 'bulk.SubRequestObj' resources matching the request.. [optional] # noqa: E501
+ """
+
+ _check_type = kwargs.pop('_check_type', True)
+ _spec_property_naming = kwargs.pop('_spec_property_naming', False)
+ _path_to_item = kwargs.pop('_path_to_item', ())
+ _configuration = kwargs.pop('_configuration', None)
+ _visited_composed_classes = kwargs.pop('_visited_composed_classes', ())
+
+ if args:
+ raise ApiTypeError(
+ "Invalid positional arguments=%s passed to %s. Remove those invalid positional arguments." % (
+ args,
+ self.__class__.__name__,
+ ),
+ path_to_item=_path_to_item,
+ valid_classes=(self.__class__,),
+ )
+
+ self._data_store = {}
+ self._check_type = _check_type
+ self._spec_property_naming = _spec_property_naming
+ self._path_to_item = _path_to_item
+ self._configuration = _configuration
+ self._visited_composed_classes = _visited_composed_classes + (self.__class__,)
+
+ constant_args = {
+ '_check_type': _check_type,
+ '_path_to_item': _path_to_item,
+ '_spec_property_naming': _spec_property_naming,
+ '_configuration': _configuration,
+ '_visited_composed_classes': self._visited_composed_classes,
+ }
+ required_args = {
+ 'object_type': object_type,
+ }
+ model_args = {}
+ model_args.update(required_args)
+ model_args.update(kwargs)
+ composed_info = validate_get_composed_info(
+ constant_args, model_args, self)
+ self._composed_instances = composed_info[0]
+ self._var_name_to_model_instances = composed_info[1]
+ self._additional_properties_model_instances = composed_info[2]
+ unused_args = composed_info[3]
+
+ for var_name, var_value in required_args.items():
+ setattr(self, var_name, var_value)
+ for var_name, var_value in kwargs.items():
+ if var_name in unused_args and \
+ self._configuration is not None and \
+ self._configuration.discard_unknown_keys and \
+ not self._additional_properties_model_instances:
+ # discard variable.
+ continue
+ setattr(self, var_name, var_value)
+
+ @cached_property
+ def _composed_schemas():
+ # we need this here to make our import statements work
+ # we must store _composed_schemas in here so the code is only run
+ # when we invoke this method. If we kept this at the class
+ # level we would get an error beause the class level
+ # code would be run when this module is imported, and these composed
+ # classes don't exist yet because their module has not finished
+ # loading
+ lazy_import()
+ return {
+ 'anyOf': [
+ ],
+ 'allOf': [
+ BulkSubRequestObjListAllOf,
+ MoBaseResponse,
+ ],
+ 'oneOf': [
+ ],
+ }
diff --git a/intersight/model/bulk_sub_request_obj_list_all_of.py b/intersight/model/bulk_sub_request_obj_list_all_of.py
new file mode 100644
index 0000000000..c1119108f0
--- /dev/null
+++ b/intersight/model/bulk_sub_request_obj_list_all_of.py
@@ -0,0 +1,175 @@
+"""
+ Cisco Intersight
+
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
+
+ The version of the OpenAPI document: 1.0.9-4506
+ Contact: intersight@cisco.com
+ Generated by: https://openapi-generator.tech
+"""
+
+
+import re # noqa: F401
+import sys # noqa: F401
+
+from intersight.model_utils import ( # noqa: F401
+ ApiTypeError,
+ ModelComposed,
+ ModelNormal,
+ ModelSimple,
+ cached_property,
+ change_keys_js_to_python,
+ convert_js_args_to_python_args,
+ date,
+ datetime,
+ file_type,
+ none_type,
+ validate_get_composed_info,
+)
+
+def lazy_import():
+ from intersight.model.bulk_sub_request_obj import BulkSubRequestObj
+ globals()['BulkSubRequestObj'] = BulkSubRequestObj
+
+
+class BulkSubRequestObjListAllOf(ModelNormal):
+ """NOTE: This class is auto generated by OpenAPI Generator.
+ Ref: https://openapi-generator.tech
+
+ Do not edit the class manually.
+
+ Attributes:
+ allowed_values (dict): The key is the tuple path to the attribute
+ and the for var_name this is (var_name,). The value is a dict
+ with a capitalized key describing the allowed value and an allowed
+ value. These dicts store the allowed enum values.
+ attribute_map (dict): The key is attribute name
+ and the value is json key in definition.
+ discriminator_value_class_map (dict): A dict to go from the discriminator
+ variable value to the discriminator class name.
+ validations (dict): The key is the tuple path to the attribute
+ and the for var_name this is (var_name,). The value is a dict
+ that stores validations for max_length, min_length, max_items,
+ min_items, exclusive_maximum, inclusive_maximum, exclusive_minimum,
+ inclusive_minimum, and regex.
+ additional_properties_type (tuple): A tuple of classes accepted
+ as additional properties values.
+ """
+
+ allowed_values = {
+ }
+
+ validations = {
+ }
+
+ additional_properties_type = None
+
+ _nullable = False
+
+ @cached_property
+ def openapi_types():
+ """
+ This must be a method because a model may have properties that are
+ of type self, this must run after the class is loaded
+
+ Returns
+ openapi_types (dict): The key is attribute name
+ and the value is attribute type.
+ """
+ lazy_import()
+ return {
+ 'count': (int,), # noqa: E501
+ 'results': ([BulkSubRequestObj], none_type,), # noqa: E501
+ }
+
+ @cached_property
+ def discriminator():
+ return None
+
+
+ attribute_map = {
+ 'count': 'Count', # noqa: E501
+ 'results': 'Results', # noqa: E501
+ }
+
+ _composed_schemas = {}
+
+ required_properties = set([
+ '_data_store',
+ '_check_type',
+ '_spec_property_naming',
+ '_path_to_item',
+ '_configuration',
+ '_visited_composed_classes',
+ ])
+
+ @convert_js_args_to_python_args
+ def __init__(self, *args, **kwargs): # noqa: E501
+ """BulkSubRequestObjListAllOf - a model defined in OpenAPI
+
+ Keyword Args:
+ _check_type (bool): if True, values for parameters in openapi_types
+ will be type checked and a TypeError will be
+ raised if the wrong type is input.
+ Defaults to True
+ _path_to_item (tuple/list): This is a list of keys or values to
+ drill down to the model in received_data
+ when deserializing a response
+ _spec_property_naming (bool): True if the variable names in the input data
+ are serialized names, as specified in the OpenAPI document.
+ False if the variable names in the input data
+ are pythonic names, e.g. snake case (default)
+ _configuration (Configuration): the instance to use when
+ deserializing a file_type parameter.
+ If passed, type conversion is attempted
+ If omitted no type conversion is done.
+ _visited_composed_classes (tuple): This stores a tuple of
+ classes that we have traveled through so that
+ if we see that class again we will not use its
+ discriminator again.
+ When traveling through a discriminator, the
+ composed schema that is
+ is traveled through is added to this set.
+ For example if Animal has a discriminator
+ petType and we pass in "Dog", and the class Dog
+ allOf includes Animal, we move through Animal
+ once using the discriminator, and pick Dog.
+ Then in Dog, we will make an instance of the
+ Animal class but this time we won't travel
+ through its discriminator because we passed in
+ _visited_composed_classes = (Animal,)
+ count (int): The total number of 'bulk.SubRequestObj' resources matching the request, accross all pages. The 'Count' attribute is included when the HTTP GET request includes the '$inlinecount' parameter.. [optional] # noqa: E501
+ results ([BulkSubRequestObj], none_type): The array of 'bulk.SubRequestObj' resources matching the request.. [optional] # noqa: E501
+ """
+
+ _check_type = kwargs.pop('_check_type', True)
+ _spec_property_naming = kwargs.pop('_spec_property_naming', False)
+ _path_to_item = kwargs.pop('_path_to_item', ())
+ _configuration = kwargs.pop('_configuration', None)
+ _visited_composed_classes = kwargs.pop('_visited_composed_classes', ())
+
+ if args:
+ raise ApiTypeError(
+ "Invalid positional arguments=%s passed to %s. Remove those invalid positional arguments." % (
+ args,
+ self.__class__.__name__,
+ ),
+ path_to_item=_path_to_item,
+ valid_classes=(self.__class__,),
+ )
+
+ self._data_store = {}
+ self._check_type = _check_type
+ self._spec_property_naming = _spec_property_naming
+ self._path_to_item = _path_to_item
+ self._configuration = _configuration
+ self._visited_composed_classes = _visited_composed_classes + (self.__class__,)
+
+ for var_name, var_value in kwargs.items():
+ if var_name not in self.attribute_map and \
+ self._configuration is not None and \
+ self._configuration.discard_unknown_keys and \
+ self.additional_properties_type is None:
+ # discard variable.
+ continue
+ setattr(self, var_name, var_value)
diff --git a/intersight/model/bulk_sub_request_obj_relationship.py b/intersight/model/bulk_sub_request_obj_relationship.py
new file mode 100644
index 0000000000..1f46575360
--- /dev/null
+++ b/intersight/model/bulk_sub_request_obj_relationship.py
@@ -0,0 +1,1113 @@
+"""
+ Cisco Intersight
+
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
+
+ The version of the OpenAPI document: 1.0.9-4506
+ Contact: intersight@cisco.com
+ Generated by: https://openapi-generator.tech
+"""
+
+
+import re # noqa: F401
+import sys # noqa: F401
+
+from intersight.model_utils import ( # noqa: F401
+ ApiTypeError,
+ ModelComposed,
+ ModelNormal,
+ ModelSimple,
+ cached_property,
+ change_keys_js_to_python,
+ convert_js_args_to_python_args,
+ date,
+ datetime,
+ file_type,
+ none_type,
+ validate_get_composed_info,
+)
+
+def lazy_import():
+ from intersight.model.bulk_api_result import BulkApiResult
+ from intersight.model.bulk_request_relationship import BulkRequestRelationship
+ from intersight.model.bulk_sub_request_obj import BulkSubRequestObj
+ from intersight.model.display_names import DisplayNames
+ from intersight.model.mo_base_mo import MoBaseMo
+ from intersight.model.mo_base_mo_relationship import MoBaseMoRelationship
+ from intersight.model.mo_mo_ref import MoMoRef
+ from intersight.model.mo_tag import MoTag
+ from intersight.model.mo_version_context import MoVersionContext
+ globals()['BulkApiResult'] = BulkApiResult
+ globals()['BulkRequestRelationship'] = BulkRequestRelationship
+ globals()['BulkSubRequestObj'] = BulkSubRequestObj
+ globals()['DisplayNames'] = DisplayNames
+ globals()['MoBaseMo'] = MoBaseMo
+ globals()['MoBaseMoRelationship'] = MoBaseMoRelationship
+ globals()['MoMoRef'] = MoMoRef
+ globals()['MoTag'] = MoTag
+ globals()['MoVersionContext'] = MoVersionContext
+
+
+class BulkSubRequestObjRelationship(ModelComposed):
+ """NOTE: This class is auto generated by OpenAPI Generator.
+ Ref: https://openapi-generator.tech
+
+ Do not edit the class manually.
+
+ Attributes:
+ allowed_values (dict): The key is the tuple path to the attribute
+ and the for var_name this is (var_name,). The value is a dict
+ with a capitalized key describing the allowed value and an allowed
+ value. These dicts store the allowed enum values.
+ attribute_map (dict): The key is attribute name
+ and the value is json key in definition.
+ discriminator_value_class_map (dict): A dict to go from the discriminator
+ variable value to the discriminator class name.
+ validations (dict): The key is the tuple path to the attribute
+ and the for var_name this is (var_name,). The value is a dict
+ that stores validations for max_length, min_length, max_items,
+ min_items, exclusive_maximum, inclusive_maximum, exclusive_minimum,
+ inclusive_minimum, and regex.
+ additional_properties_type (tuple): A tuple of classes accepted
+ as additional properties values.
+ """
+
+ allowed_values = {
+ ('class_id',): {
+ 'MO.MOREF': "mo.MoRef",
+ },
+ ('status',): {
+ 'PENDING': "Pending",
+ 'OBJPRESENCECHECKINPROGRESS': "ObjPresenceCheckInProgress",
+ 'OBJPRESENCECHECKINCOMPLETE': "ObjPresenceCheckInComplete",
+ 'OBJPRESENCECHECKFAILED': "ObjPresenceCheckFailed",
+ 'PROCESSING': "Processing",
+ 'TIMEDOUT': "TimedOut",
+ 'COMPLETED': "Completed",
+ 'SKIPPED': "Skipped",
+ },
+ ('verb',): {
+ 'POST': "POST",
+ 'PATCH': "PATCH",
+ 'DELETE': "DELETE",
+ },
+ ('object_type',): {
+ 'AAA.AUDITRECORD': "aaa.AuditRecord",
+ 'AAA.RETENTIONCONFIG': "aaa.RetentionConfig",
+ 'AAA.RETENTIONPOLICY': "aaa.RetentionPolicy",
+ 'ACCESS.POLICY': "access.Policy",
+ 'ADAPTER.CONFIGPOLICY': "adapter.ConfigPolicy",
+ 'ADAPTER.EXTETHINTERFACE': "adapter.ExtEthInterface",
+ 'ADAPTER.HOSTETHINTERFACE': "adapter.HostEthInterface",
+ 'ADAPTER.HOSTFCINTERFACE': "adapter.HostFcInterface",
+ 'ADAPTER.HOSTISCSIINTERFACE': "adapter.HostIscsiInterface",
+ 'ADAPTER.UNIT': "adapter.Unit",
+ 'ADAPTER.UNITEXPANDER': "adapter.UnitExpander",
+ 'APPLIANCE.APPSTATUS': "appliance.AppStatus",
+ 'APPLIANCE.AUTORMAPOLICY': "appliance.AutoRmaPolicy",
+ 'APPLIANCE.BACKUP': "appliance.Backup",
+ 'APPLIANCE.BACKUPPOLICY': "appliance.BackupPolicy",
+ 'APPLIANCE.CERTIFICATESETTING': "appliance.CertificateSetting",
+ 'APPLIANCE.DATAEXPORTPOLICY': "appliance.DataExportPolicy",
+ 'APPLIANCE.DEVICECERTIFICATE': "appliance.DeviceCertificate",
+ 'APPLIANCE.DEVICECLAIM': "appliance.DeviceClaim",
+ 'APPLIANCE.DEVICEUPGRADEPOLICY': "appliance.DeviceUpgradePolicy",
+ 'APPLIANCE.DIAGSETTING': "appliance.DiagSetting",
+ 'APPLIANCE.EXTERNALSYSLOGSETTING': "appliance.ExternalSyslogSetting",
+ 'APPLIANCE.FILESYSTEMSTATUS': "appliance.FileSystemStatus",
+ 'APPLIANCE.GROUPSTATUS': "appliance.GroupStatus",
+ 'APPLIANCE.IMAGEBUNDLE': "appliance.ImageBundle",
+ 'APPLIANCE.NODEINFO': "appliance.NodeInfo",
+ 'APPLIANCE.NODESTATUS': "appliance.NodeStatus",
+ 'APPLIANCE.RELEASENOTE': "appliance.ReleaseNote",
+ 'APPLIANCE.REMOTEFILEIMPORT': "appliance.RemoteFileImport",
+ 'APPLIANCE.RESTORE': "appliance.Restore",
+ 'APPLIANCE.SETUPINFO': "appliance.SetupInfo",
+ 'APPLIANCE.SYSTEMINFO': "appliance.SystemInfo",
+ 'APPLIANCE.SYSTEMSTATUS': "appliance.SystemStatus",
+ 'APPLIANCE.UPGRADE': "appliance.Upgrade",
+ 'APPLIANCE.UPGRADEPOLICY': "appliance.UpgradePolicy",
+ 'ASSET.CLUSTERMEMBER': "asset.ClusterMember",
+ 'ASSET.DEPLOYMENT': "asset.Deployment",
+ 'ASSET.DEPLOYMENTDEVICE': "asset.DeploymentDevice",
+ 'ASSET.DEVICECLAIM': "asset.DeviceClaim",
+ 'ASSET.DEVICECONFIGURATION': "asset.DeviceConfiguration",
+ 'ASSET.DEVICECONNECTORMANAGER': "asset.DeviceConnectorManager",
+ 'ASSET.DEVICECONTRACTINFORMATION': "asset.DeviceContractInformation",
+ 'ASSET.DEVICEREGISTRATION': "asset.DeviceRegistration",
+ 'ASSET.SUBSCRIPTION': "asset.Subscription",
+ 'ASSET.SUBSCRIPTIONACCOUNT': "asset.SubscriptionAccount",
+ 'ASSET.SUBSCRIPTIONDEVICECONTRACTINFORMATION': "asset.SubscriptionDeviceContractInformation",
+ 'ASSET.TARGET': "asset.Target",
+ 'BIOS.BOOTDEVICE': "bios.BootDevice",
+ 'BIOS.BOOTMODE': "bios.BootMode",
+ 'BIOS.POLICY': "bios.Policy",
+ 'BIOS.SYSTEMBOOTORDER': "bios.SystemBootOrder",
+ 'BIOS.TOKENSETTINGS': "bios.TokenSettings",
+ 'BIOS.UNIT': "bios.Unit",
+ 'BIOS.VFSELECTMEMORYRASCONFIGURATION': "bios.VfSelectMemoryRasConfiguration",
+ 'BOOT.CDDDEVICE': "boot.CddDevice",
+ 'BOOT.DEVICEBOOTMODE': "boot.DeviceBootMode",
+ 'BOOT.DEVICEBOOTSECURITY': "boot.DeviceBootSecurity",
+ 'BOOT.HDDDEVICE': "boot.HddDevice",
+ 'BOOT.ISCSIDEVICE': "boot.IscsiDevice",
+ 'BOOT.NVMEDEVICE': "boot.NvmeDevice",
+ 'BOOT.PCHSTORAGEDEVICE': "boot.PchStorageDevice",
+ 'BOOT.PRECISIONPOLICY': "boot.PrecisionPolicy",
+ 'BOOT.PXEDEVICE': "boot.PxeDevice",
+ 'BOOT.SANDEVICE': "boot.SanDevice",
+ 'BOOT.SDDEVICE': "boot.SdDevice",
+ 'BOOT.UEFISHELLDEVICE': "boot.UefiShellDevice",
+ 'BOOT.USBDEVICE': "boot.UsbDevice",
+ 'BOOT.VMEDIADEVICE': "boot.VmediaDevice",
+ 'BULK.EXPORT': "bulk.Export",
+ 'BULK.EXPORTEDITEM': "bulk.ExportedItem",
+ 'BULK.MOCLONER': "bulk.MoCloner",
+ 'BULK.MOMERGER': "bulk.MoMerger",
+ 'BULK.REQUEST': "bulk.Request",
+ 'BULK.SUBREQUESTOBJ': "bulk.SubRequestObj",
+ 'CAPABILITY.ADAPTERUNITDESCRIPTOR': "capability.AdapterUnitDescriptor",
+ 'CAPABILITY.CATALOG': "capability.Catalog",
+ 'CAPABILITY.CHASSISDESCRIPTOR': "capability.ChassisDescriptor",
+ 'CAPABILITY.CHASSISMANUFACTURINGDEF': "capability.ChassisManufacturingDef",
+ 'CAPABILITY.CIMCFIRMWAREDESCRIPTOR': "capability.CimcFirmwareDescriptor",
+ 'CAPABILITY.EQUIPMENTPHYSICALDEF': "capability.EquipmentPhysicalDef",
+ 'CAPABILITY.EQUIPMENTSLOTARRAY': "capability.EquipmentSlotArray",
+ 'CAPABILITY.FANMODULEDESCRIPTOR': "capability.FanModuleDescriptor",
+ 'CAPABILITY.FANMODULEMANUFACTURINGDEF': "capability.FanModuleManufacturingDef",
+ 'CAPABILITY.IOCARDCAPABILITYDEF': "capability.IoCardCapabilityDef",
+ 'CAPABILITY.IOCARDDESCRIPTOR': "capability.IoCardDescriptor",
+ 'CAPABILITY.IOCARDMANUFACTURINGDEF': "capability.IoCardManufacturingDef",
+ 'CAPABILITY.PORTGROUPAGGREGATIONDEF': "capability.PortGroupAggregationDef",
+ 'CAPABILITY.PSUDESCRIPTOR': "capability.PsuDescriptor",
+ 'CAPABILITY.PSUMANUFACTURINGDEF': "capability.PsuManufacturingDef",
+ 'CAPABILITY.SERVERSCHEMADESCRIPTOR': "capability.ServerSchemaDescriptor",
+ 'CAPABILITY.SIOCMODULECAPABILITYDEF': "capability.SiocModuleCapabilityDef",
+ 'CAPABILITY.SIOCMODULEDESCRIPTOR': "capability.SiocModuleDescriptor",
+ 'CAPABILITY.SIOCMODULEMANUFACTURINGDEF': "capability.SiocModuleManufacturingDef",
+ 'CAPABILITY.SWITCHCAPABILITY': "capability.SwitchCapability",
+ 'CAPABILITY.SWITCHDESCRIPTOR': "capability.SwitchDescriptor",
+ 'CAPABILITY.SWITCHMANUFACTURINGDEF': "capability.SwitchManufacturingDef",
+ 'CERTIFICATEMANAGEMENT.POLICY': "certificatemanagement.Policy",
+ 'CHASSIS.CONFIGCHANGEDETAIL': "chassis.ConfigChangeDetail",
+ 'CHASSIS.CONFIGIMPORT': "chassis.ConfigImport",
+ 'CHASSIS.CONFIGRESULT': "chassis.ConfigResult",
+ 'CHASSIS.CONFIGRESULTENTRY': "chassis.ConfigResultEntry",
+ 'CHASSIS.IOMPROFILE': "chassis.IomProfile",
+ 'CHASSIS.PROFILE': "chassis.Profile",
+ 'CLOUD.AWSBILLINGUNIT': "cloud.AwsBillingUnit",
+ 'CLOUD.AWSKEYPAIR': "cloud.AwsKeyPair",
+ 'CLOUD.AWSNETWORKINTERFACE': "cloud.AwsNetworkInterface",
+ 'CLOUD.AWSORGANIZATIONALUNIT': "cloud.AwsOrganizationalUnit",
+ 'CLOUD.AWSSECURITYGROUP': "cloud.AwsSecurityGroup",
+ 'CLOUD.AWSSUBNET': "cloud.AwsSubnet",
+ 'CLOUD.AWSVIRTUALMACHINE': "cloud.AwsVirtualMachine",
+ 'CLOUD.AWSVOLUME': "cloud.AwsVolume",
+ 'CLOUD.AWSVPC': "cloud.AwsVpc",
+ 'CLOUD.COLLECTINVENTORY': "cloud.CollectInventory",
+ 'CLOUD.REGIONS': "cloud.Regions",
+ 'CLOUD.SKUCONTAINERTYPE': "cloud.SkuContainerType",
+ 'CLOUD.SKUDATABASETYPE': "cloud.SkuDatabaseType",
+ 'CLOUD.SKUINSTANCETYPE': "cloud.SkuInstanceType",
+ 'CLOUD.SKUNETWORKTYPE': "cloud.SkuNetworkType",
+ 'CLOUD.SKUVOLUMETYPE': "cloud.SkuVolumeType",
+ 'CLOUD.TFCAGENTPOOL': "cloud.TfcAgentpool",
+ 'CLOUD.TFCORGANIZATION': "cloud.TfcOrganization",
+ 'CLOUD.TFCWORKSPACE': "cloud.TfcWorkspace",
+ 'COMM.HTTPPROXYPOLICY': "comm.HttpProxyPolicy",
+ 'COMPUTE.BLADE': "compute.Blade",
+ 'COMPUTE.BLADEIDENTITY': "compute.BladeIdentity",
+ 'COMPUTE.BOARD': "compute.Board",
+ 'COMPUTE.MAPPING': "compute.Mapping",
+ 'COMPUTE.PHYSICALSUMMARY': "compute.PhysicalSummary",
+ 'COMPUTE.RACKUNIT': "compute.RackUnit",
+ 'COMPUTE.RACKUNITIDENTITY': "compute.RackUnitIdentity",
+ 'COMPUTE.SERVERSETTING': "compute.ServerSetting",
+ 'COMPUTE.VMEDIA': "compute.Vmedia",
+ 'COND.ALARM': "cond.Alarm",
+ 'COND.ALARMAGGREGATION': "cond.AlarmAggregation",
+ 'COND.HCLSTATUS': "cond.HclStatus",
+ 'COND.HCLSTATUSDETAIL': "cond.HclStatusDetail",
+ 'COND.HCLSTATUSJOB': "cond.HclStatusJob",
+ 'CONNECTORPACK.CONNECTORPACKUPGRADE': "connectorpack.ConnectorPackUpgrade",
+ 'CONNECTORPACK.UPGRADEIMPACT': "connectorpack.UpgradeImpact",
+ 'CRD.CUSTOMRESOURCE': "crd.CustomResource",
+ 'DEVICECONNECTOR.POLICY': "deviceconnector.Policy",
+ 'EQUIPMENT.CHASSIS': "equipment.Chassis",
+ 'EQUIPMENT.CHASSISIDENTITY': "equipment.ChassisIdentity",
+ 'EQUIPMENT.CHASSISOPERATION': "equipment.ChassisOperation",
+ 'EQUIPMENT.DEVICESUMMARY': "equipment.DeviceSummary",
+ 'EQUIPMENT.EXPANDERMODULE': "equipment.ExpanderModule",
+ 'EQUIPMENT.FAN': "equipment.Fan",
+ 'EQUIPMENT.FANCONTROL': "equipment.FanControl",
+ 'EQUIPMENT.FANMODULE': "equipment.FanModule",
+ 'EQUIPMENT.FEX': "equipment.Fex",
+ 'EQUIPMENT.FEXIDENTITY': "equipment.FexIdentity",
+ 'EQUIPMENT.FEXOPERATION': "equipment.FexOperation",
+ 'EQUIPMENT.FRU': "equipment.Fru",
+ 'EQUIPMENT.IDENTITYSUMMARY': "equipment.IdentitySummary",
+ 'EQUIPMENT.IOCARD': "equipment.IoCard",
+ 'EQUIPMENT.IOCARDOPERATION': "equipment.IoCardOperation",
+ 'EQUIPMENT.IOEXPANDER': "equipment.IoExpander",
+ 'EQUIPMENT.LOCATORLED': "equipment.LocatorLed",
+ 'EQUIPMENT.PSU': "equipment.Psu",
+ 'EQUIPMENT.PSUCONTROL': "equipment.PsuControl",
+ 'EQUIPMENT.RACKENCLOSURE': "equipment.RackEnclosure",
+ 'EQUIPMENT.RACKENCLOSURESLOT': "equipment.RackEnclosureSlot",
+ 'EQUIPMENT.SHAREDIOMODULE': "equipment.SharedIoModule",
+ 'EQUIPMENT.SWITCHCARD': "equipment.SwitchCard",
+ 'EQUIPMENT.SYSTEMIOCONTROLLER': "equipment.SystemIoController",
+ 'EQUIPMENT.TPM': "equipment.Tpm",
+ 'EQUIPMENT.TRANSCEIVER': "equipment.Transceiver",
+ 'ETHER.HOSTPORT': "ether.HostPort",
+ 'ETHER.NETWORKPORT': "ether.NetworkPort",
+ 'ETHER.PHYSICALPORT': "ether.PhysicalPort",
+ 'ETHER.PORTCHANNEL': "ether.PortChannel",
+ 'EXTERNALSITE.AUTHORIZATION': "externalsite.Authorization",
+ 'FABRIC.APPLIANCEPCROLE': "fabric.AppliancePcRole",
+ 'FABRIC.APPLIANCEROLE': "fabric.ApplianceRole",
+ 'FABRIC.CONFIGCHANGEDETAIL': "fabric.ConfigChangeDetail",
+ 'FABRIC.CONFIGRESULT': "fabric.ConfigResult",
+ 'FABRIC.CONFIGRESULTENTRY': "fabric.ConfigResultEntry",
+ 'FABRIC.ELEMENTIDENTITY': "fabric.ElementIdentity",
+ 'FABRIC.ESTIMATEIMPACT': "fabric.EstimateImpact",
+ 'FABRIC.ETHNETWORKCONTROLPOLICY': "fabric.EthNetworkControlPolicy",
+ 'FABRIC.ETHNETWORKGROUPPOLICY': "fabric.EthNetworkGroupPolicy",
+ 'FABRIC.ETHNETWORKPOLICY': "fabric.EthNetworkPolicy",
+ 'FABRIC.FCNETWORKPOLICY': "fabric.FcNetworkPolicy",
+ 'FABRIC.FCUPLINKPCROLE': "fabric.FcUplinkPcRole",
+ 'FABRIC.FCUPLINKROLE': "fabric.FcUplinkRole",
+ 'FABRIC.FCOEUPLINKPCROLE': "fabric.FcoeUplinkPcRole",
+ 'FABRIC.FCOEUPLINKROLE': "fabric.FcoeUplinkRole",
+ 'FABRIC.FLOWCONTROLPOLICY': "fabric.FlowControlPolicy",
+ 'FABRIC.LINKAGGREGATIONPOLICY': "fabric.LinkAggregationPolicy",
+ 'FABRIC.LINKCONTROLPOLICY': "fabric.LinkControlPolicy",
+ 'FABRIC.MULTICASTPOLICY': "fabric.MulticastPolicy",
+ 'FABRIC.PCMEMBER': "fabric.PcMember",
+ 'FABRIC.PCOPERATION': "fabric.PcOperation",
+ 'FABRIC.PORTMODE': "fabric.PortMode",
+ 'FABRIC.PORTOPERATION': "fabric.PortOperation",
+ 'FABRIC.PORTPOLICY': "fabric.PortPolicy",
+ 'FABRIC.SERVERROLE': "fabric.ServerRole",
+ 'FABRIC.SWITCHCLUSTERPROFILE': "fabric.SwitchClusterProfile",
+ 'FABRIC.SWITCHCONTROLPOLICY': "fabric.SwitchControlPolicy",
+ 'FABRIC.SWITCHPROFILE': "fabric.SwitchProfile",
+ 'FABRIC.SYSTEMQOSPOLICY': "fabric.SystemQosPolicy",
+ 'FABRIC.UPLINKPCROLE': "fabric.UplinkPcRole",
+ 'FABRIC.UPLINKROLE': "fabric.UplinkRole",
+ 'FABRIC.VLAN': "fabric.Vlan",
+ 'FABRIC.VSAN': "fabric.Vsan",
+ 'FAULT.INSTANCE': "fault.Instance",
+ 'FC.PHYSICALPORT': "fc.PhysicalPort",
+ 'FC.PORTCHANNEL': "fc.PortChannel",
+ 'FCPOOL.FCBLOCK': "fcpool.FcBlock",
+ 'FCPOOL.LEASE': "fcpool.Lease",
+ 'FCPOOL.POOL': "fcpool.Pool",
+ 'FCPOOL.POOLMEMBER': "fcpool.PoolMember",
+ 'FCPOOL.UNIVERSE': "fcpool.Universe",
+ 'FEEDBACK.FEEDBACKPOST': "feedback.FeedbackPost",
+ 'FIRMWARE.BIOSDESCRIPTOR': "firmware.BiosDescriptor",
+ 'FIRMWARE.BOARDCONTROLLERDESCRIPTOR': "firmware.BoardControllerDescriptor",
+ 'FIRMWARE.CHASSISUPGRADE': "firmware.ChassisUpgrade",
+ 'FIRMWARE.CIMCDESCRIPTOR': "firmware.CimcDescriptor",
+ 'FIRMWARE.DIMMDESCRIPTOR': "firmware.DimmDescriptor",
+ 'FIRMWARE.DISTRIBUTABLE': "firmware.Distributable",
+ 'FIRMWARE.DISTRIBUTABLEMETA': "firmware.DistributableMeta",
+ 'FIRMWARE.DRIVEDESCRIPTOR': "firmware.DriveDescriptor",
+ 'FIRMWARE.DRIVERDISTRIBUTABLE': "firmware.DriverDistributable",
+ 'FIRMWARE.EULA': "firmware.Eula",
+ 'FIRMWARE.FIRMWARESUMMARY': "firmware.FirmwareSummary",
+ 'FIRMWARE.GPUDESCRIPTOR': "firmware.GpuDescriptor",
+ 'FIRMWARE.HBADESCRIPTOR': "firmware.HbaDescriptor",
+ 'FIRMWARE.IOMDESCRIPTOR': "firmware.IomDescriptor",
+ 'FIRMWARE.MSWITCHDESCRIPTOR': "firmware.MswitchDescriptor",
+ 'FIRMWARE.NXOSDESCRIPTOR': "firmware.NxosDescriptor",
+ 'FIRMWARE.PCIEDESCRIPTOR': "firmware.PcieDescriptor",
+ 'FIRMWARE.PSUDESCRIPTOR': "firmware.PsuDescriptor",
+ 'FIRMWARE.RUNNINGFIRMWARE': "firmware.RunningFirmware",
+ 'FIRMWARE.SASEXPANDERDESCRIPTOR': "firmware.SasExpanderDescriptor",
+ 'FIRMWARE.SERVERCONFIGURATIONUTILITYDISTRIBUTABLE': "firmware.ServerConfigurationUtilityDistributable",
+ 'FIRMWARE.STORAGECONTROLLERDESCRIPTOR': "firmware.StorageControllerDescriptor",
+ 'FIRMWARE.SWITCHUPGRADE': "firmware.SwitchUpgrade",
+ 'FIRMWARE.UNSUPPORTEDVERSIONUPGRADE': "firmware.UnsupportedVersionUpgrade",
+ 'FIRMWARE.UPGRADE': "firmware.Upgrade",
+ 'FIRMWARE.UPGRADEIMPACT': "firmware.UpgradeImpact",
+ 'FIRMWARE.UPGRADEIMPACTSTATUS': "firmware.UpgradeImpactStatus",
+ 'FIRMWARE.UPGRADESTATUS': "firmware.UpgradeStatus",
+ 'FORECAST.CATALOG': "forecast.Catalog",
+ 'FORECAST.DEFINITION': "forecast.Definition",
+ 'FORECAST.INSTANCE': "forecast.Instance",
+ 'GRAPHICS.CARD': "graphics.Card",
+ 'GRAPHICS.CONTROLLER': "graphics.Controller",
+ 'HCL.COMPATIBILITYSTATUS': "hcl.CompatibilityStatus",
+ 'HCL.DRIVERIMAGE': "hcl.DriverImage",
+ 'HCL.EXEMPTEDCATALOG': "hcl.ExemptedCatalog",
+ 'HCL.HYPERFLEXSOFTWARECOMPATIBILITYINFO': "hcl.HyperflexSoftwareCompatibilityInfo",
+ 'HCL.OPERATINGSYSTEM': "hcl.OperatingSystem",
+ 'HCL.OPERATINGSYSTEMVENDOR': "hcl.OperatingSystemVendor",
+ 'HCL.SUPPORTEDDRIVERNAME': "hcl.SupportedDriverName",
+ 'HYPERFLEX.ALARM': "hyperflex.Alarm",
+ 'HYPERFLEX.APPCATALOG': "hyperflex.AppCatalog",
+ 'HYPERFLEX.AUTOSUPPORTPOLICY': "hyperflex.AutoSupportPolicy",
+ 'HYPERFLEX.BACKUPCLUSTER': "hyperflex.BackupCluster",
+ 'HYPERFLEX.CAPABILITYINFO': "hyperflex.CapabilityInfo",
+ 'HYPERFLEX.CISCOHYPERVISORMANAGER': "hyperflex.CiscoHypervisorManager",
+ 'HYPERFLEX.CLUSTER': "hyperflex.Cluster",
+ 'HYPERFLEX.CLUSTERBACKUPPOLICY': "hyperflex.ClusterBackupPolicy",
+ 'HYPERFLEX.CLUSTERBACKUPPOLICYDEPLOYMENT': "hyperflex.ClusterBackupPolicyDeployment",
+ 'HYPERFLEX.CLUSTERHEALTHCHECKEXECUTIONSNAPSHOT': "hyperflex.ClusterHealthCheckExecutionSnapshot",
+ 'HYPERFLEX.CLUSTERNETWORKPOLICY': "hyperflex.ClusterNetworkPolicy",
+ 'HYPERFLEX.CLUSTERPROFILE': "hyperflex.ClusterProfile",
+ 'HYPERFLEX.CLUSTERREPLICATIONNETWORKPOLICY': "hyperflex.ClusterReplicationNetworkPolicy",
+ 'HYPERFLEX.CLUSTERREPLICATIONNETWORKPOLICYDEPLOYMENT': "hyperflex.ClusterReplicationNetworkPolicyDeployment",
+ 'HYPERFLEX.CLUSTERSTORAGEPOLICY': "hyperflex.ClusterStoragePolicy",
+ 'HYPERFLEX.CONFIGRESULT': "hyperflex.ConfigResult",
+ 'HYPERFLEX.CONFIGRESULTENTRY': "hyperflex.ConfigResultEntry",
+ 'HYPERFLEX.DATAPROTECTIONPEER': "hyperflex.DataProtectionPeer",
+ 'HYPERFLEX.DATASTORESTATISTIC': "hyperflex.DatastoreStatistic",
+ 'HYPERFLEX.DEVICEPACKAGEDOWNLOADSTATE': "hyperflex.DevicePackageDownloadState",
+ 'HYPERFLEX.DRIVE': "hyperflex.Drive",
+ 'HYPERFLEX.EXTFCSTORAGEPOLICY': "hyperflex.ExtFcStoragePolicy",
+ 'HYPERFLEX.EXTISCSISTORAGEPOLICY': "hyperflex.ExtIscsiStoragePolicy",
+ 'HYPERFLEX.FEATURELIMITEXTERNAL': "hyperflex.FeatureLimitExternal",
+ 'HYPERFLEX.FEATURELIMITINTERNAL': "hyperflex.FeatureLimitInternal",
+ 'HYPERFLEX.HEALTH': "hyperflex.Health",
+ 'HYPERFLEX.HEALTHCHECKDEFINITION': "hyperflex.HealthCheckDefinition",
+ 'HYPERFLEX.HEALTHCHECKEXECUTION': "hyperflex.HealthCheckExecution",
+ 'HYPERFLEX.HEALTHCHECKEXECUTIONSNAPSHOT': "hyperflex.HealthCheckExecutionSnapshot",
+ 'HYPERFLEX.HEALTHCHECKPACKAGECHECKSUM': "hyperflex.HealthCheckPackageChecksum",
+ 'HYPERFLEX.HXAPCLUSTER': "hyperflex.HxapCluster",
+ 'HYPERFLEX.HXAPDATACENTER': "hyperflex.HxapDatacenter",
+ 'HYPERFLEX.HXAPDVUPLINK': "hyperflex.HxapDvUplink",
+ 'HYPERFLEX.HXAPDVSWITCH': "hyperflex.HxapDvswitch",
+ 'HYPERFLEX.HXAPHOST': "hyperflex.HxapHost",
+ 'HYPERFLEX.HXAPHOSTINTERFACE': "hyperflex.HxapHostInterface",
+ 'HYPERFLEX.HXAPHOSTVSWITCH': "hyperflex.HxapHostVswitch",
+ 'HYPERFLEX.HXAPNETWORK': "hyperflex.HxapNetwork",
+ 'HYPERFLEX.HXAPVIRTUALDISK': "hyperflex.HxapVirtualDisk",
+ 'HYPERFLEX.HXAPVIRTUALMACHINE': "hyperflex.HxapVirtualMachine",
+ 'HYPERFLEX.HXAPVIRTUALMACHINENETWORKINTERFACE': "hyperflex.HxapVirtualMachineNetworkInterface",
+ 'HYPERFLEX.HXDPVERSION': "hyperflex.HxdpVersion",
+ 'HYPERFLEX.LICENSE': "hyperflex.License",
+ 'HYPERFLEX.LOCALCREDENTIALPOLICY': "hyperflex.LocalCredentialPolicy",
+ 'HYPERFLEX.NODE': "hyperflex.Node",
+ 'HYPERFLEX.NODECONFIGPOLICY': "hyperflex.NodeConfigPolicy",
+ 'HYPERFLEX.NODEPROFILE': "hyperflex.NodeProfile",
+ 'HYPERFLEX.PROXYSETTINGPOLICY': "hyperflex.ProxySettingPolicy",
+ 'HYPERFLEX.SERVERFIRMWAREVERSION': "hyperflex.ServerFirmwareVersion",
+ 'HYPERFLEX.SERVERFIRMWAREVERSIONENTRY': "hyperflex.ServerFirmwareVersionEntry",
+ 'HYPERFLEX.SERVERMODEL': "hyperflex.ServerModel",
+ 'HYPERFLEX.SOFTWAREDISTRIBUTIONCOMPONENT': "hyperflex.SoftwareDistributionComponent",
+ 'HYPERFLEX.SOFTWAREDISTRIBUTIONENTRY': "hyperflex.SoftwareDistributionEntry",
+ 'HYPERFLEX.SOFTWAREDISTRIBUTIONVERSION': "hyperflex.SoftwareDistributionVersion",
+ 'HYPERFLEX.SOFTWAREVERSIONPOLICY': "hyperflex.SoftwareVersionPolicy",
+ 'HYPERFLEX.STORAGECONTAINER': "hyperflex.StorageContainer",
+ 'HYPERFLEX.SYSCONFIGPOLICY': "hyperflex.SysConfigPolicy",
+ 'HYPERFLEX.UCSMCONFIGPOLICY': "hyperflex.UcsmConfigPolicy",
+ 'HYPERFLEX.VCENTERCONFIGPOLICY': "hyperflex.VcenterConfigPolicy",
+ 'HYPERFLEX.VMBACKUPINFO': "hyperflex.VmBackupInfo",
+ 'HYPERFLEX.VMIMPORTOPERATION': "hyperflex.VmImportOperation",
+ 'HYPERFLEX.VMRESTOREOPERATION': "hyperflex.VmRestoreOperation",
+ 'HYPERFLEX.VMSNAPSHOTINFO': "hyperflex.VmSnapshotInfo",
+ 'HYPERFLEX.VOLUME': "hyperflex.Volume",
+ 'HYPERFLEX.WITNESSCONFIGURATION': "hyperflex.WitnessConfiguration",
+ 'IAAS.CONNECTORPACK': "iaas.ConnectorPack",
+ 'IAAS.DEVICESTATUS': "iaas.DeviceStatus",
+ 'IAAS.DIAGNOSTICMESSAGES': "iaas.DiagnosticMessages",
+ 'IAAS.LICENSEINFO': "iaas.LicenseInfo",
+ 'IAAS.MOSTRUNTASKS': "iaas.MostRunTasks",
+ 'IAAS.SERVICEREQUEST': "iaas.ServiceRequest",
+ 'IAAS.UCSDINFO': "iaas.UcsdInfo",
+ 'IAAS.UCSDMANAGEDINFRA': "iaas.UcsdManagedInfra",
+ 'IAAS.UCSDMESSAGES': "iaas.UcsdMessages",
+ 'IAM.ACCOUNT': "iam.Account",
+ 'IAM.ACCOUNTEXPERIENCE': "iam.AccountExperience",
+ 'IAM.APIKEY': "iam.ApiKey",
+ 'IAM.APPREGISTRATION': "iam.AppRegistration",
+ 'IAM.BANNERMESSAGE': "iam.BannerMessage",
+ 'IAM.CERTIFICATE': "iam.Certificate",
+ 'IAM.CERTIFICATEREQUEST': "iam.CertificateRequest",
+ 'IAM.DOMAINGROUP': "iam.DomainGroup",
+ 'IAM.ENDPOINTPRIVILEGE': "iam.EndPointPrivilege",
+ 'IAM.ENDPOINTROLE': "iam.EndPointRole",
+ 'IAM.ENDPOINTUSER': "iam.EndPointUser",
+ 'IAM.ENDPOINTUSERPOLICY': "iam.EndPointUserPolicy",
+ 'IAM.ENDPOINTUSERROLE': "iam.EndPointUserRole",
+ 'IAM.IDP': "iam.Idp",
+ 'IAM.IDPREFERENCE': "iam.IdpReference",
+ 'IAM.IPACCESSMANAGEMENT': "iam.IpAccessManagement",
+ 'IAM.IPADDRESS': "iam.IpAddress",
+ 'IAM.LDAPGROUP': "iam.LdapGroup",
+ 'IAM.LDAPPOLICY': "iam.LdapPolicy",
+ 'IAM.LDAPPROVIDER': "iam.LdapProvider",
+ 'IAM.LOCALUSERPASSWORD': "iam.LocalUserPassword",
+ 'IAM.LOCALUSERPASSWORDPOLICY': "iam.LocalUserPasswordPolicy",
+ 'IAM.OAUTHTOKEN': "iam.OAuthToken",
+ 'IAM.PERMISSION': "iam.Permission",
+ 'IAM.PRIVATEKEYSPEC': "iam.PrivateKeySpec",
+ 'IAM.PRIVILEGE': "iam.Privilege",
+ 'IAM.PRIVILEGESET': "iam.PrivilegeSet",
+ 'IAM.QUALIFIER': "iam.Qualifier",
+ 'IAM.RESOURCELIMITS': "iam.ResourceLimits",
+ 'IAM.RESOURCEPERMISSION': "iam.ResourcePermission",
+ 'IAM.RESOURCEROLES': "iam.ResourceRoles",
+ 'IAM.ROLE': "iam.Role",
+ 'IAM.SECURITYHOLDER': "iam.SecurityHolder",
+ 'IAM.SERVICEPROVIDER': "iam.ServiceProvider",
+ 'IAM.SESSION': "iam.Session",
+ 'IAM.SESSIONLIMITS': "iam.SessionLimits",
+ 'IAM.SYSTEM': "iam.System",
+ 'IAM.TRUSTPOINT': "iam.TrustPoint",
+ 'IAM.USER': "iam.User",
+ 'IAM.USERGROUP': "iam.UserGroup",
+ 'IAM.USERPREFERENCE': "iam.UserPreference",
+ 'INVENTORY.DEVICEINFO': "inventory.DeviceInfo",
+ 'INVENTORY.DNMOBINDING': "inventory.DnMoBinding",
+ 'INVENTORY.GENERICINVENTORY': "inventory.GenericInventory",
+ 'INVENTORY.GENERICINVENTORYHOLDER': "inventory.GenericInventoryHolder",
+ 'INVENTORY.REQUEST': "inventory.Request",
+ 'IPMIOVERLAN.POLICY': "ipmioverlan.Policy",
+ 'IPPOOL.BLOCKLEASE': "ippool.BlockLease",
+ 'IPPOOL.IPLEASE': "ippool.IpLease",
+ 'IPPOOL.POOL': "ippool.Pool",
+ 'IPPOOL.POOLMEMBER': "ippool.PoolMember",
+ 'IPPOOL.SHADOWBLOCK': "ippool.ShadowBlock",
+ 'IPPOOL.SHADOWPOOL': "ippool.ShadowPool",
+ 'IPPOOL.UNIVERSE': "ippool.Universe",
+ 'IQNPOOL.BLOCK': "iqnpool.Block",
+ 'IQNPOOL.LEASE': "iqnpool.Lease",
+ 'IQNPOOL.POOL': "iqnpool.Pool",
+ 'IQNPOOL.POOLMEMBER': "iqnpool.PoolMember",
+ 'IQNPOOL.UNIVERSE': "iqnpool.Universe",
+ 'IWOTENANT.TENANTSTATUS': "iwotenant.TenantStatus",
+ 'KUBERNETES.ACICNIAPIC': "kubernetes.AciCniApic",
+ 'KUBERNETES.ACICNIPROFILE': "kubernetes.AciCniProfile",
+ 'KUBERNETES.ACICNITENANTCLUSTERALLOCATION': "kubernetes.AciCniTenantClusterAllocation",
+ 'KUBERNETES.ADDONDEFINITION': "kubernetes.AddonDefinition",
+ 'KUBERNETES.ADDONPOLICY': "kubernetes.AddonPolicy",
+ 'KUBERNETES.ADDONREPOSITORY': "kubernetes.AddonRepository",
+ 'KUBERNETES.BAREMETALNODEPROFILE': "kubernetes.BaremetalNodeProfile",
+ 'KUBERNETES.CATALOG': "kubernetes.Catalog",
+ 'KUBERNETES.CLUSTER': "kubernetes.Cluster",
+ 'KUBERNETES.CLUSTERADDONPROFILE': "kubernetes.ClusterAddonProfile",
+ 'KUBERNETES.CLUSTERPROFILE': "kubernetes.ClusterProfile",
+ 'KUBERNETES.CONFIGRESULT': "kubernetes.ConfigResult",
+ 'KUBERNETES.CONFIGRESULTENTRY': "kubernetes.ConfigResultEntry",
+ 'KUBERNETES.CONTAINERRUNTIMEPOLICY': "kubernetes.ContainerRuntimePolicy",
+ 'KUBERNETES.DAEMONSET': "kubernetes.DaemonSet",
+ 'KUBERNETES.DEPLOYMENT': "kubernetes.Deployment",
+ 'KUBERNETES.INGRESS': "kubernetes.Ingress",
+ 'KUBERNETES.NETWORKPOLICY': "kubernetes.NetworkPolicy",
+ 'KUBERNETES.NODE': "kubernetes.Node",
+ 'KUBERNETES.NODEGROUPPROFILE': "kubernetes.NodeGroupProfile",
+ 'KUBERNETES.POD': "kubernetes.Pod",
+ 'KUBERNETES.SERVICE': "kubernetes.Service",
+ 'KUBERNETES.STATEFULSET': "kubernetes.StatefulSet",
+ 'KUBERNETES.SYSCONFIGPOLICY': "kubernetes.SysConfigPolicy",
+ 'KUBERNETES.TRUSTEDREGISTRIESPOLICY': "kubernetes.TrustedRegistriesPolicy",
+ 'KUBERNETES.VERSION': "kubernetes.Version",
+ 'KUBERNETES.VERSIONPOLICY': "kubernetes.VersionPolicy",
+ 'KUBERNETES.VIRTUALMACHINEINFRACONFIGPOLICY': "kubernetes.VirtualMachineInfraConfigPolicy",
+ 'KUBERNETES.VIRTUALMACHINEINFRASTRUCTUREPROVIDER': "kubernetes.VirtualMachineInfrastructureProvider",
+ 'KUBERNETES.VIRTUALMACHINEINSTANCETYPE': "kubernetes.VirtualMachineInstanceType",
+ 'KUBERNETES.VIRTUALMACHINENODEPROFILE': "kubernetes.VirtualMachineNodeProfile",
+ 'KVM.POLICY': "kvm.Policy",
+ 'KVM.SESSION': "kvm.Session",
+ 'KVM.TUNNEL': "kvm.Tunnel",
+ 'KVM.VMCONSOLE': "kvm.VmConsole",
+ 'LICENSE.ACCOUNTLICENSEDATA': "license.AccountLicenseData",
+ 'LICENSE.CUSTOMEROP': "license.CustomerOp",
+ 'LICENSE.IWOCUSTOMEROP': "license.IwoCustomerOp",
+ 'LICENSE.IWOLICENSECOUNT': "license.IwoLicenseCount",
+ 'LICENSE.LICENSEINFO': "license.LicenseInfo",
+ 'LICENSE.LICENSERESERVATIONOP': "license.LicenseReservationOp",
+ 'LICENSE.SMARTLICENSETOKEN': "license.SmartlicenseToken",
+ 'LS.SERVICEPROFILE': "ls.ServiceProfile",
+ 'MACPOOL.IDBLOCK': "macpool.IdBlock",
+ 'MACPOOL.LEASE': "macpool.Lease",
+ 'MACPOOL.POOL': "macpool.Pool",
+ 'MACPOOL.POOLMEMBER': "macpool.PoolMember",
+ 'MACPOOL.UNIVERSE': "macpool.Universe",
+ 'MANAGEMENT.CONTROLLER': "management.Controller",
+ 'MANAGEMENT.ENTITY': "management.Entity",
+ 'MANAGEMENT.INTERFACE': "management.Interface",
+ 'MEMORY.ARRAY': "memory.Array",
+ 'MEMORY.PERSISTENTMEMORYCONFIGRESULT': "memory.PersistentMemoryConfigResult",
+ 'MEMORY.PERSISTENTMEMORYCONFIGURATION': "memory.PersistentMemoryConfiguration",
+ 'MEMORY.PERSISTENTMEMORYNAMESPACE': "memory.PersistentMemoryNamespace",
+ 'MEMORY.PERSISTENTMEMORYNAMESPACECONFIGRESULT': "memory.PersistentMemoryNamespaceConfigResult",
+ 'MEMORY.PERSISTENTMEMORYPOLICY': "memory.PersistentMemoryPolicy",
+ 'MEMORY.PERSISTENTMEMORYREGION': "memory.PersistentMemoryRegion",
+ 'MEMORY.PERSISTENTMEMORYUNIT': "memory.PersistentMemoryUnit",
+ 'MEMORY.UNIT': "memory.Unit",
+ 'META.DEFINITION': "meta.Definition",
+ 'NETWORK.ELEMENT': "network.Element",
+ 'NETWORK.ELEMENTSUMMARY': "network.ElementSummary",
+ 'NETWORK.FCZONEINFO': "network.FcZoneInfo",
+ 'NETWORK.VLANPORTINFO': "network.VlanPortInfo",
+ 'NETWORKCONFIG.POLICY': "networkconfig.Policy",
+ 'NIAAPI.APICCCOPOST': "niaapi.ApicCcoPost",
+ 'NIAAPI.APICFIELDNOTICE': "niaapi.ApicFieldNotice",
+ 'NIAAPI.APICHWEOL': "niaapi.ApicHweol",
+ 'NIAAPI.APICLATESTMAINTAINEDRELEASE': "niaapi.ApicLatestMaintainedRelease",
+ 'NIAAPI.APICRELEASERECOMMEND': "niaapi.ApicReleaseRecommend",
+ 'NIAAPI.APICSWEOL': "niaapi.ApicSweol",
+ 'NIAAPI.DCNMCCOPOST': "niaapi.DcnmCcoPost",
+ 'NIAAPI.DCNMFIELDNOTICE': "niaapi.DcnmFieldNotice",
+ 'NIAAPI.DCNMHWEOL': "niaapi.DcnmHweol",
+ 'NIAAPI.DCNMLATESTMAINTAINEDRELEASE': "niaapi.DcnmLatestMaintainedRelease",
+ 'NIAAPI.DCNMRELEASERECOMMEND': "niaapi.DcnmReleaseRecommend",
+ 'NIAAPI.DCNMSWEOL': "niaapi.DcnmSweol",
+ 'NIAAPI.FILEDOWNLOADER': "niaapi.FileDownloader",
+ 'NIAAPI.NIAMETADATA': "niaapi.NiaMetadata",
+ 'NIAAPI.NIBFILEDOWNLOADER': "niaapi.NibFileDownloader",
+ 'NIAAPI.NIBMETADATA': "niaapi.NibMetadata",
+ 'NIAAPI.VERSIONREGEX': "niaapi.VersionRegex",
+ 'NIATELEMETRY.AAALDAPPROVIDERDETAILS': "niatelemetry.AaaLdapProviderDetails",
+ 'NIATELEMETRY.AAARADIUSPROVIDERDETAILS': "niatelemetry.AaaRadiusProviderDetails",
+ 'NIATELEMETRY.AAATACACSPROVIDERDETAILS': "niatelemetry.AaaTacacsProviderDetails",
+ 'NIATELEMETRY.APICCOREFILEDETAILS': "niatelemetry.ApicCoreFileDetails",
+ 'NIATELEMETRY.APICDBGEXPRSEXPORTDEST': "niatelemetry.ApicDbgexpRsExportDest",
+ 'NIATELEMETRY.APICDBGEXPRSTSSCHEDULER': "niatelemetry.ApicDbgexpRsTsScheduler",
+ 'NIATELEMETRY.APICFANDETAILS': "niatelemetry.ApicFanDetails",
+ 'NIATELEMETRY.APICFEXDETAILS': "niatelemetry.ApicFexDetails",
+ 'NIATELEMETRY.APICFLASHDETAILS': "niatelemetry.ApicFlashDetails",
+ 'NIATELEMETRY.APICNTPAUTH': "niatelemetry.ApicNtpAuth",
+ 'NIATELEMETRY.APICPSUDETAILS': "niatelemetry.ApicPsuDetails",
+ 'NIATELEMETRY.APICREALMDETAILS': "niatelemetry.ApicRealmDetails",
+ 'NIATELEMETRY.APICSNMPCOMMUNITYACCESSDETAILS': "niatelemetry.ApicSnmpCommunityAccessDetails",
+ 'NIATELEMETRY.APICSNMPCOMMUNITYDETAILS': "niatelemetry.ApicSnmpCommunityDetails",
+ 'NIATELEMETRY.APICSNMPTRAPDETAILS': "niatelemetry.ApicSnmpTrapDetails",
+ 'NIATELEMETRY.APICSNMPVERSIONTHREEDETAILS': "niatelemetry.ApicSnmpVersionThreeDetails",
+ 'NIATELEMETRY.APICSYSLOGGRP': "niatelemetry.ApicSysLogGrp",
+ 'NIATELEMETRY.APICSYSLOGSRC': "niatelemetry.ApicSysLogSrc",
+ 'NIATELEMETRY.APICTRANSCEIVERDETAILS': "niatelemetry.ApicTransceiverDetails",
+ 'NIATELEMETRY.APICUIPAGECOUNTS': "niatelemetry.ApicUiPageCounts",
+ 'NIATELEMETRY.APPDETAILS': "niatelemetry.AppDetails",
+ 'NIATELEMETRY.DCNMFANDETAILS': "niatelemetry.DcnmFanDetails",
+ 'NIATELEMETRY.DCNMFEXDETAILS': "niatelemetry.DcnmFexDetails",
+ 'NIATELEMETRY.DCNMMODULEDETAILS': "niatelemetry.DcnmModuleDetails",
+ 'NIATELEMETRY.DCNMPSUDETAILS': "niatelemetry.DcnmPsuDetails",
+ 'NIATELEMETRY.DCNMTRANSCEIVERDETAILS': "niatelemetry.DcnmTransceiverDetails",
+ 'NIATELEMETRY.EPG': "niatelemetry.Epg",
+ 'NIATELEMETRY.FABRICMODULEDETAILS': "niatelemetry.FabricModuleDetails",
+ 'NIATELEMETRY.FAULT': "niatelemetry.Fault",
+ 'NIATELEMETRY.HTTPSACLCONTRACTDETAILS': "niatelemetry.HttpsAclContractDetails",
+ 'NIATELEMETRY.HTTPSACLCONTRACTFILTERMAP': "niatelemetry.HttpsAclContractFilterMap",
+ 'NIATELEMETRY.HTTPSACLEPGCONTRACTMAP': "niatelemetry.HttpsAclEpgContractMap",
+ 'NIATELEMETRY.HTTPSACLEPGDETAILS': "niatelemetry.HttpsAclEpgDetails",
+ 'NIATELEMETRY.HTTPSACLFILTERDETAILS': "niatelemetry.HttpsAclFilterDetails",
+ 'NIATELEMETRY.LC': "niatelemetry.Lc",
+ 'NIATELEMETRY.MSOCONTRACTDETAILS': "niatelemetry.MsoContractDetails",
+ 'NIATELEMETRY.MSOEPGDETAILS': "niatelemetry.MsoEpgDetails",
+ 'NIATELEMETRY.MSOSCHEMADETAILS': "niatelemetry.MsoSchemaDetails",
+ 'NIATELEMETRY.MSOSITEDETAILS': "niatelemetry.MsoSiteDetails",
+ 'NIATELEMETRY.MSOTENANTDETAILS': "niatelemetry.MsoTenantDetails",
+ 'NIATELEMETRY.NEXUSDASHBOARDCONTROLLERDETAILS': "niatelemetry.NexusDashboardControllerDetails",
+ 'NIATELEMETRY.NEXUSDASHBOARDDETAILS': "niatelemetry.NexusDashboardDetails",
+ 'NIATELEMETRY.NEXUSDASHBOARDMEMORYDETAILS': "niatelemetry.NexusDashboardMemoryDetails",
+ 'NIATELEMETRY.NEXUSDASHBOARDS': "niatelemetry.NexusDashboards",
+ 'NIATELEMETRY.NIAFEATUREUSAGE': "niatelemetry.NiaFeatureUsage",
+ 'NIATELEMETRY.NIAINVENTORY': "niatelemetry.NiaInventory",
+ 'NIATELEMETRY.NIAINVENTORYDCNM': "niatelemetry.NiaInventoryDcnm",
+ 'NIATELEMETRY.NIAINVENTORYFABRIC': "niatelemetry.NiaInventoryFabric",
+ 'NIATELEMETRY.NIALICENSESTATE': "niatelemetry.NiaLicenseState",
+ 'NIATELEMETRY.PASSWORDSTRENGTHCHECK': "niatelemetry.PasswordStrengthCheck",
+ 'NIATELEMETRY.SITEINVENTORY': "niatelemetry.SiteInventory",
+ 'NIATELEMETRY.SSHVERSIONTWO': "niatelemetry.SshVersionTwo",
+ 'NIATELEMETRY.SUPERVISORMODULEDETAILS': "niatelemetry.SupervisorModuleDetails",
+ 'NIATELEMETRY.SYSTEMCONTROLLERDETAILS': "niatelemetry.SystemControllerDetails",
+ 'NIATELEMETRY.TENANT': "niatelemetry.Tenant",
+ 'NOTIFICATION.ACCOUNTSUBSCRIPTION': "notification.AccountSubscription",
+ 'NTP.POLICY': "ntp.Policy",
+ 'OPRS.DEPLOYMENT': "oprs.Deployment",
+ 'OPRS.SYNCTARGETLISTMESSAGE': "oprs.SyncTargetListMessage",
+ 'ORGANIZATION.ORGANIZATION': "organization.Organization",
+ 'OS.BULKINSTALLINFO': "os.BulkInstallInfo",
+ 'OS.CATALOG': "os.Catalog",
+ 'OS.CONFIGURATIONFILE': "os.ConfigurationFile",
+ 'OS.DISTRIBUTION': "os.Distribution",
+ 'OS.INSTALL': "os.Install",
+ 'OS.OSSUPPORT': "os.OsSupport",
+ 'OS.SUPPORTEDVERSION': "os.SupportedVersion",
+ 'OS.TEMPLATEFILE': "os.TemplateFile",
+ 'OS.VALIDINSTALLTARGET': "os.ValidInstallTarget",
+ 'PCI.COPROCESSORCARD': "pci.CoprocessorCard",
+ 'PCI.DEVICE': "pci.Device",
+ 'PCI.LINK': "pci.Link",
+ 'PCI.SWITCH': "pci.Switch",
+ 'PORT.GROUP': "port.Group",
+ 'PORT.MACBINDING': "port.MacBinding",
+ 'PORT.SUBGROUP': "port.SubGroup",
+ 'POWER.CONTROLSTATE': "power.ControlState",
+ 'POWER.POLICY': "power.Policy",
+ 'PROCESSOR.UNIT': "processor.Unit",
+ 'RECOMMENDATION.CAPACITYRUNWAY': "recommendation.CapacityRunway",
+ 'RECOMMENDATION.PHYSICALITEM': "recommendation.PhysicalItem",
+ 'RECOVERY.BACKUPCONFIGPOLICY': "recovery.BackupConfigPolicy",
+ 'RECOVERY.BACKUPPROFILE': "recovery.BackupProfile",
+ 'RECOVERY.CONFIGRESULT': "recovery.ConfigResult",
+ 'RECOVERY.CONFIGRESULTENTRY': "recovery.ConfigResultEntry",
+ 'RECOVERY.ONDEMANDBACKUP': "recovery.OnDemandBackup",
+ 'RECOVERY.RESTORE': "recovery.Restore",
+ 'RECOVERY.SCHEDULECONFIGPOLICY': "recovery.ScheduleConfigPolicy",
+ 'RESOURCE.GROUP': "resource.Group",
+ 'RESOURCE.GROUPMEMBER': "resource.GroupMember",
+ 'RESOURCE.LICENSERESOURCECOUNT': "resource.LicenseResourceCount",
+ 'RESOURCE.MEMBERSHIP': "resource.Membership",
+ 'RESOURCE.MEMBERSHIPHOLDER': "resource.MembershipHolder",
+ 'RESOURCEPOOL.LEASE': "resourcepool.Lease",
+ 'RESOURCEPOOL.LEASERESOURCE': "resourcepool.LeaseResource",
+ 'RESOURCEPOOL.POOL': "resourcepool.Pool",
+ 'RESOURCEPOOL.POOLMEMBER': "resourcepool.PoolMember",
+ 'RESOURCEPOOL.UNIVERSE': "resourcepool.Universe",
+ 'RPROXY.REVERSEPROXY': "rproxy.ReverseProxy",
+ 'SDCARD.POLICY': "sdcard.Policy",
+ 'SDWAN.PROFILE': "sdwan.Profile",
+ 'SDWAN.ROUTERNODE': "sdwan.RouterNode",
+ 'SDWAN.ROUTERPOLICY': "sdwan.RouterPolicy",
+ 'SDWAN.VMANAGEACCOUNTPOLICY': "sdwan.VmanageAccountPolicy",
+ 'SEARCH.SEARCHITEM': "search.SearchItem",
+ 'SEARCH.TAGITEM': "search.TagItem",
+ 'SECURITY.UNIT': "security.Unit",
+ 'SERVER.CONFIGCHANGEDETAIL': "server.ConfigChangeDetail",
+ 'SERVER.CONFIGIMPORT': "server.ConfigImport",
+ 'SERVER.CONFIGRESULT': "server.ConfigResult",
+ 'SERVER.CONFIGRESULTENTRY': "server.ConfigResultEntry",
+ 'SERVER.PROFILE': "server.Profile",
+ 'SERVER.PROFILETEMPLATE': "server.ProfileTemplate",
+ 'SMTP.POLICY': "smtp.Policy",
+ 'SNMP.POLICY': "snmp.Policy",
+ 'SOFTWARE.APPLIANCEDISTRIBUTABLE': "software.ApplianceDistributable",
+ 'SOFTWARE.DOWNLOADHISTORY': "software.DownloadHistory",
+ 'SOFTWARE.HCLMETA': "software.HclMeta",
+ 'SOFTWARE.HYPERFLEXBUNDLEDISTRIBUTABLE': "software.HyperflexBundleDistributable",
+ 'SOFTWARE.HYPERFLEXDISTRIBUTABLE': "software.HyperflexDistributable",
+ 'SOFTWARE.RELEASEMETA': "software.ReleaseMeta",
+ 'SOFTWARE.SOLUTIONDISTRIBUTABLE': "software.SolutionDistributable",
+ 'SOFTWARE.UCSDBUNDLEDISTRIBUTABLE': "software.UcsdBundleDistributable",
+ 'SOFTWARE.UCSDDISTRIBUTABLE': "software.UcsdDistributable",
+ 'SOFTWAREREPOSITORY.AUTHORIZATION': "softwarerepository.Authorization",
+ 'SOFTWAREREPOSITORY.CACHEDIMAGE': "softwarerepository.CachedImage",
+ 'SOFTWAREREPOSITORY.CATALOG': "softwarerepository.Catalog",
+ 'SOFTWAREREPOSITORY.CATEGORYMAPPER': "softwarerepository.CategoryMapper",
+ 'SOFTWAREREPOSITORY.CATEGORYMAPPERMODEL': "softwarerepository.CategoryMapperModel",
+ 'SOFTWAREREPOSITORY.CATEGORYSUPPORTCONSTRAINT': "softwarerepository.CategorySupportConstraint",
+ 'SOFTWAREREPOSITORY.DOWNLOADSPEC': "softwarerepository.DownloadSpec",
+ 'SOFTWAREREPOSITORY.OPERATINGSYSTEMFILE': "softwarerepository.OperatingSystemFile",
+ 'SOFTWAREREPOSITORY.RELEASE': "softwarerepository.Release",
+ 'SOL.POLICY': "sol.Policy",
+ 'SSH.POLICY': "ssh.Policy",
+ 'STORAGE.CONTROLLER': "storage.Controller",
+ 'STORAGE.DISKGROUP': "storage.DiskGroup",
+ 'STORAGE.DISKSLOT': "storage.DiskSlot",
+ 'STORAGE.DRIVEGROUP': "storage.DriveGroup",
+ 'STORAGE.ENCLOSURE': "storage.Enclosure",
+ 'STORAGE.ENCLOSUREDISK': "storage.EnclosureDisk",
+ 'STORAGE.ENCLOSUREDISKSLOTEP': "storage.EnclosureDiskSlotEp",
+ 'STORAGE.FLEXFLASHCONTROLLER': "storage.FlexFlashController",
+ 'STORAGE.FLEXFLASHCONTROLLERPROPS': "storage.FlexFlashControllerProps",
+ 'STORAGE.FLEXFLASHPHYSICALDRIVE': "storage.FlexFlashPhysicalDrive",
+ 'STORAGE.FLEXFLASHVIRTUALDRIVE': "storage.FlexFlashVirtualDrive",
+ 'STORAGE.FLEXUTILCONTROLLER': "storage.FlexUtilController",
+ 'STORAGE.FLEXUTILPHYSICALDRIVE': "storage.FlexUtilPhysicalDrive",
+ 'STORAGE.FLEXUTILVIRTUALDRIVE': "storage.FlexUtilVirtualDrive",
+ 'STORAGE.HITACHIARRAY': "storage.HitachiArray",
+ 'STORAGE.HITACHICONTROLLER': "storage.HitachiController",
+ 'STORAGE.HITACHIDISK': "storage.HitachiDisk",
+ 'STORAGE.HITACHIHOST': "storage.HitachiHost",
+ 'STORAGE.HITACHIHOSTLUN': "storage.HitachiHostLun",
+ 'STORAGE.HITACHIPARITYGROUP': "storage.HitachiParityGroup",
+ 'STORAGE.HITACHIPOOL': "storage.HitachiPool",
+ 'STORAGE.HITACHIPORT': "storage.HitachiPort",
+ 'STORAGE.HITACHIVOLUME': "storage.HitachiVolume",
+ 'STORAGE.HYPERFLEXSTORAGECONTAINER': "storage.HyperFlexStorageContainer",
+ 'STORAGE.HYPERFLEXVOLUME': "storage.HyperFlexVolume",
+ 'STORAGE.ITEM': "storage.Item",
+ 'STORAGE.NETAPPAGGREGATE': "storage.NetAppAggregate",
+ 'STORAGE.NETAPPBASEDISK': "storage.NetAppBaseDisk",
+ 'STORAGE.NETAPPCLUSTER': "storage.NetAppCluster",
+ 'STORAGE.NETAPPETHERNETPORT': "storage.NetAppEthernetPort",
+ 'STORAGE.NETAPPEXPORTPOLICY': "storage.NetAppExportPolicy",
+ 'STORAGE.NETAPPFCINTERFACE': "storage.NetAppFcInterface",
+ 'STORAGE.NETAPPFCPORT': "storage.NetAppFcPort",
+ 'STORAGE.NETAPPINITIATORGROUP': "storage.NetAppInitiatorGroup",
+ 'STORAGE.NETAPPIPINTERFACE': "storage.NetAppIpInterface",
+ 'STORAGE.NETAPPLICENSE': "storage.NetAppLicense",
+ 'STORAGE.NETAPPLUN': "storage.NetAppLun",
+ 'STORAGE.NETAPPLUNMAP': "storage.NetAppLunMap",
+ 'STORAGE.NETAPPNODE': "storage.NetAppNode",
+ 'STORAGE.NETAPPSTORAGEVM': "storage.NetAppStorageVm",
+ 'STORAGE.NETAPPVOLUME': "storage.NetAppVolume",
+ 'STORAGE.NETAPPVOLUMESNAPSHOT': "storage.NetAppVolumeSnapshot",
+ 'STORAGE.PHYSICALDISK': "storage.PhysicalDisk",
+ 'STORAGE.PHYSICALDISKEXTENSION': "storage.PhysicalDiskExtension",
+ 'STORAGE.PHYSICALDISKUSAGE': "storage.PhysicalDiskUsage",
+ 'STORAGE.PUREARRAY': "storage.PureArray",
+ 'STORAGE.PURECONTROLLER': "storage.PureController",
+ 'STORAGE.PUREDISK': "storage.PureDisk",
+ 'STORAGE.PUREHOST': "storage.PureHost",
+ 'STORAGE.PUREHOSTGROUP': "storage.PureHostGroup",
+ 'STORAGE.PUREHOSTLUN': "storage.PureHostLun",
+ 'STORAGE.PUREPORT': "storage.PurePort",
+ 'STORAGE.PUREPROTECTIONGROUP': "storage.PureProtectionGroup",
+ 'STORAGE.PUREPROTECTIONGROUPSNAPSHOT': "storage.PureProtectionGroupSnapshot",
+ 'STORAGE.PUREREPLICATIONSCHEDULE': "storage.PureReplicationSchedule",
+ 'STORAGE.PURESNAPSHOTSCHEDULE': "storage.PureSnapshotSchedule",
+ 'STORAGE.PUREVOLUME': "storage.PureVolume",
+ 'STORAGE.PUREVOLUMESNAPSHOT': "storage.PureVolumeSnapshot",
+ 'STORAGE.SASEXPANDER': "storage.SasExpander",
+ 'STORAGE.SASPORT': "storage.SasPort",
+ 'STORAGE.SPAN': "storage.Span",
+ 'STORAGE.STORAGEPOLICY': "storage.StoragePolicy",
+ 'STORAGE.VDMEMBEREP': "storage.VdMemberEp",
+ 'STORAGE.VIRTUALDRIVE': "storage.VirtualDrive",
+ 'STORAGE.VIRTUALDRIVECONTAINER': "storage.VirtualDriveContainer",
+ 'STORAGE.VIRTUALDRIVEEXTENSION': "storage.VirtualDriveExtension",
+ 'STORAGE.VIRTUALDRIVEIDENTITY': "storage.VirtualDriveIdentity",
+ 'SYSLOG.POLICY': "syslog.Policy",
+ 'TAM.ADVISORYCOUNT': "tam.AdvisoryCount",
+ 'TAM.ADVISORYDEFINITION': "tam.AdvisoryDefinition",
+ 'TAM.ADVISORYINFO': "tam.AdvisoryInfo",
+ 'TAM.ADVISORYINSTANCE': "tam.AdvisoryInstance",
+ 'TAM.SECURITYADVISORY': "tam.SecurityAdvisory",
+ 'TASK.HITACHISCOPEDINVENTORY': "task.HitachiScopedInventory",
+ 'TASK.HXAPSCOPEDINVENTORY': "task.HxapScopedInventory",
+ 'TASK.NETAPPSCOPEDINVENTORY': "task.NetAppScopedInventory",
+ 'TASK.PUBLICCLOUDSCOPEDINVENTORY': "task.PublicCloudScopedInventory",
+ 'TASK.PURESCOPEDINVENTORY': "task.PureScopedInventory",
+ 'TASK.SERVERSCOPEDINVENTORY': "task.ServerScopedInventory",
+ 'TECHSUPPORTMANAGEMENT.COLLECTIONCONTROLPOLICY': "techsupportmanagement.CollectionControlPolicy",
+ 'TECHSUPPORTMANAGEMENT.DOWNLOAD': "techsupportmanagement.Download",
+ 'TECHSUPPORTMANAGEMENT.TECHSUPPORTBUNDLE': "techsupportmanagement.TechSupportBundle",
+ 'TECHSUPPORTMANAGEMENT.TECHSUPPORTSTATUS': "techsupportmanagement.TechSupportStatus",
+ 'TERMINAL.AUDITLOG': "terminal.AuditLog",
+ 'THERMAL.POLICY': "thermal.Policy",
+ 'TOP.SYSTEM': "top.System",
+ 'UCSD.BACKUPINFO': "ucsd.BackupInfo",
+ 'UUIDPOOL.BLOCK': "uuidpool.Block",
+ 'UUIDPOOL.POOL': "uuidpool.Pool",
+ 'UUIDPOOL.POOLMEMBER': "uuidpool.PoolMember",
+ 'UUIDPOOL.UNIVERSE': "uuidpool.Universe",
+ 'UUIDPOOL.UUIDLEASE': "uuidpool.UuidLease",
+ 'VIRTUALIZATION.HOST': "virtualization.Host",
+ 'VIRTUALIZATION.VIRTUALDISK': "virtualization.VirtualDisk",
+ 'VIRTUALIZATION.VIRTUALMACHINE': "virtualization.VirtualMachine",
+ 'VIRTUALIZATION.VMWARECLUSTER': "virtualization.VmwareCluster",
+ 'VIRTUALIZATION.VMWAREDATACENTER': "virtualization.VmwareDatacenter",
+ 'VIRTUALIZATION.VMWAREDATASTORE': "virtualization.VmwareDatastore",
+ 'VIRTUALIZATION.VMWAREDATASTORECLUSTER': "virtualization.VmwareDatastoreCluster",
+ 'VIRTUALIZATION.VMWAREDISTRIBUTEDNETWORK': "virtualization.VmwareDistributedNetwork",
+ 'VIRTUALIZATION.VMWAREDISTRIBUTEDSWITCH': "virtualization.VmwareDistributedSwitch",
+ 'VIRTUALIZATION.VMWAREFOLDER': "virtualization.VmwareFolder",
+ 'VIRTUALIZATION.VMWAREHOST': "virtualization.VmwareHost",
+ 'VIRTUALIZATION.VMWAREKERNELNETWORK': "virtualization.VmwareKernelNetwork",
+ 'VIRTUALIZATION.VMWARENETWORK': "virtualization.VmwareNetwork",
+ 'VIRTUALIZATION.VMWAREPHYSICALNETWORKINTERFACE': "virtualization.VmwarePhysicalNetworkInterface",
+ 'VIRTUALIZATION.VMWAREUPLINKPORT': "virtualization.VmwareUplinkPort",
+ 'VIRTUALIZATION.VMWAREVCENTER': "virtualization.VmwareVcenter",
+ 'VIRTUALIZATION.VMWAREVIRTUALDISK': "virtualization.VmwareVirtualDisk",
+ 'VIRTUALIZATION.VMWAREVIRTUALMACHINE': "virtualization.VmwareVirtualMachine",
+ 'VIRTUALIZATION.VMWAREVIRTUALMACHINESNAPSHOT': "virtualization.VmwareVirtualMachineSnapshot",
+ 'VIRTUALIZATION.VMWAREVIRTUALNETWORKINTERFACE': "virtualization.VmwareVirtualNetworkInterface",
+ 'VIRTUALIZATION.VMWAREVIRTUALSWITCH': "virtualization.VmwareVirtualSwitch",
+ 'VMEDIA.POLICY': "vmedia.Policy",
+ 'VMRC.CONSOLE': "vmrc.Console",
+ 'VNIC.ETHADAPTERPOLICY': "vnic.EthAdapterPolicy",
+ 'VNIC.ETHIF': "vnic.EthIf",
+ 'VNIC.ETHNETWORKPOLICY': "vnic.EthNetworkPolicy",
+ 'VNIC.ETHQOSPOLICY': "vnic.EthQosPolicy",
+ 'VNIC.FCADAPTERPOLICY': "vnic.FcAdapterPolicy",
+ 'VNIC.FCIF': "vnic.FcIf",
+ 'VNIC.FCNETWORKPOLICY': "vnic.FcNetworkPolicy",
+ 'VNIC.FCQOSPOLICY': "vnic.FcQosPolicy",
+ 'VNIC.ISCSIADAPTERPOLICY': "vnic.IscsiAdapterPolicy",
+ 'VNIC.ISCSIBOOTPOLICY': "vnic.IscsiBootPolicy",
+ 'VNIC.ISCSISTATICTARGETPOLICY': "vnic.IscsiStaticTargetPolicy",
+ 'VNIC.LANCONNECTIVITYPOLICY': "vnic.LanConnectivityPolicy",
+ 'VNIC.LCPSTATUS': "vnic.LcpStatus",
+ 'VNIC.SANCONNECTIVITYPOLICY': "vnic.SanConnectivityPolicy",
+ 'VNIC.SCPSTATUS': "vnic.ScpStatus",
+ 'VRF.VRF': "vrf.Vrf",
+ 'WORKFLOW.BATCHAPIEXECUTOR': "workflow.BatchApiExecutor",
+ 'WORKFLOW.BUILDTASKMETA': "workflow.BuildTaskMeta",
+ 'WORKFLOW.BUILDTASKMETAOWNER': "workflow.BuildTaskMetaOwner",
+ 'WORKFLOW.CATALOG': "workflow.Catalog",
+ 'WORKFLOW.CUSTOMDATATYPEDEFINITION': "workflow.CustomDataTypeDefinition",
+ 'WORKFLOW.ERRORRESPONSEHANDLER': "workflow.ErrorResponseHandler",
+ 'WORKFLOW.PENDINGDYNAMICWORKFLOWINFO': "workflow.PendingDynamicWorkflowInfo",
+ 'WORKFLOW.ROLLBACKWORKFLOW': "workflow.RollbackWorkflow",
+ 'WORKFLOW.TASKDEBUGLOG': "workflow.TaskDebugLog",
+ 'WORKFLOW.TASKDEFINITION': "workflow.TaskDefinition",
+ 'WORKFLOW.TASKINFO': "workflow.TaskInfo",
+ 'WORKFLOW.TASKMETADATA': "workflow.TaskMetadata",
+ 'WORKFLOW.TASKNOTIFICATION': "workflow.TaskNotification",
+ 'WORKFLOW.TEMPLATEEVALUATION': "workflow.TemplateEvaluation",
+ 'WORKFLOW.TEMPLATEFUNCTIONMETA': "workflow.TemplateFunctionMeta",
+ 'WORKFLOW.WORKFLOWDEFINITION': "workflow.WorkflowDefinition",
+ 'WORKFLOW.WORKFLOWINFO': "workflow.WorkflowInfo",
+ 'WORKFLOW.WORKFLOWMETA': "workflow.WorkflowMeta",
+ 'WORKFLOW.WORKFLOWMETADATA': "workflow.WorkflowMetadata",
+ 'WORKFLOW.WORKFLOWNOTIFICATION': "workflow.WorkflowNotification",
+ },
+ }
+
+ validations = {
+ }
+
+ @cached_property
+ def additional_properties_type():
+ """
+ This must be a method because a model may have properties that are
+ of type self, this must run after the class is loaded
+ """
+ lazy_import()
+ return (bool, date, datetime, dict, float, int, list, str, none_type,) # noqa: E501
+
+ _nullable = False
+
+ @cached_property
+ def openapi_types():
+ """
+ This must be a method because a model may have properties that are
+ of type self, this must run after the class is loaded
+
+ Returns
+ openapi_types (dict): The key is attribute name
+ and the value is attribute type.
+ """
+ lazy_import()
+ return {
+ 'class_id': (str,), # noqa: E501
+ 'moid': (str,), # noqa: E501
+ 'selector': (str,), # noqa: E501
+ 'link': (str,), # noqa: E501
+ 'account_moid': (str,), # noqa: E501
+ 'create_time': (datetime,), # noqa: E501
+ 'domain_group_moid': (str,), # noqa: E501
+ 'mod_time': (datetime,), # noqa: E501
+ 'owners': ([str], none_type,), # noqa: E501
+ 'shared_scope': (str,), # noqa: E501
+ 'tags': ([MoTag], none_type,), # noqa: E501
+ 'version_context': (MoVersionContext,), # noqa: E501
+ 'ancestors': ([MoBaseMoRelationship], none_type,), # noqa: E501
+ 'parent': (MoBaseMoRelationship,), # noqa: E501
+ 'permission_resources': ([MoBaseMoRelationship], none_type,), # noqa: E501
+ 'display_names': (DisplayNames,), # noqa: E501
+ 'body': (MoBaseMo,), # noqa: E501
+ 'body_string': (str,), # noqa: E501
+ 'execution_completion_time': (str,), # noqa: E501
+ 'execution_start_time': (str,), # noqa: E501
+ 'is_object_present': (bool,), # noqa: E501
+ 'result': (BulkApiResult,), # noqa: E501
+ 'skip_duplicates': (bool,), # noqa: E501
+ 'status': (str,), # noqa: E501
+ 'system_defined_object_detected': (bool,), # noqa: E501
+ 'target_moid': (str,), # noqa: E501
+ 'uri': (str,), # noqa: E501
+ 'verb': (str,), # noqa: E501
+ 'request': (BulkRequestRelationship,), # noqa: E501
+ 'object_type': (str,), # noqa: E501
+ }
+
+ @cached_property
+ def discriminator():
+ lazy_import()
+ val = {
+ 'bulk.SubRequestObj': BulkSubRequestObj,
+ 'mo.MoRef': MoMoRef,
+ }
+ if not val:
+ return None
+ return {'class_id': val}
+
+ attribute_map = {
+ 'class_id': 'ClassId', # noqa: E501
+ 'moid': 'Moid', # noqa: E501
+ 'selector': 'Selector', # noqa: E501
+ 'link': 'link', # noqa: E501
+ 'account_moid': 'AccountMoid', # noqa: E501
+ 'create_time': 'CreateTime', # noqa: E501
+ 'domain_group_moid': 'DomainGroupMoid', # noqa: E501
+ 'mod_time': 'ModTime', # noqa: E501
+ 'owners': 'Owners', # noqa: E501
+ 'shared_scope': 'SharedScope', # noqa: E501
+ 'tags': 'Tags', # noqa: E501
+ 'version_context': 'VersionContext', # noqa: E501
+ 'ancestors': 'Ancestors', # noqa: E501
+ 'parent': 'Parent', # noqa: E501
+ 'permission_resources': 'PermissionResources', # noqa: E501
+ 'display_names': 'DisplayNames', # noqa: E501
+ 'body': 'Body', # noqa: E501
+ 'body_string': 'BodyString', # noqa: E501
+ 'execution_completion_time': 'ExecutionCompletionTime', # noqa: E501
+ 'execution_start_time': 'ExecutionStartTime', # noqa: E501
+ 'is_object_present': 'IsObjectPresent', # noqa: E501
+ 'result': 'Result', # noqa: E501
+ 'skip_duplicates': 'SkipDuplicates', # noqa: E501
+ 'status': 'Status', # noqa: E501
+ 'system_defined_object_detected': 'SystemDefinedObjectDetected', # noqa: E501
+ 'target_moid': 'TargetMoid', # noqa: E501
+ 'uri': 'Uri', # noqa: E501
+ 'verb': 'Verb', # noqa: E501
+ 'request': 'Request', # noqa: E501
+ 'object_type': 'ObjectType', # noqa: E501
+ }
+
+ required_properties = set([
+ '_data_store',
+ '_check_type',
+ '_spec_property_naming',
+ '_path_to_item',
+ '_configuration',
+ '_visited_composed_classes',
+ '_composed_instances',
+ '_var_name_to_model_instances',
+ '_additional_properties_model_instances',
+ ])
+
+ @convert_js_args_to_python_args
+ def __init__(self, *args, **kwargs): # noqa: E501
+ """BulkSubRequestObjRelationship - a model defined in OpenAPI
+
+ Args:
+
+ Keyword Args:
+ class_id (str): The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.. defaults to "mo.MoRef", must be one of ["mo.MoRef", ] # noqa: E501
+ _check_type (bool): if True, values for parameters in openapi_types
+ will be type checked and a TypeError will be
+ raised if the wrong type is input.
+ Defaults to True
+ _path_to_item (tuple/list): This is a list of keys or values to
+ drill down to the model in received_data
+ when deserializing a response
+ _spec_property_naming (bool): True if the variable names in the input data
+ are serialized names, as specified in the OpenAPI document.
+ False if the variable names in the input data
+ are pythonic names, e.g. snake case (default)
+ _configuration (Configuration): the instance to use when
+ deserializing a file_type parameter.
+ If passed, type conversion is attempted
+ If omitted no type conversion is done.
+ _visited_composed_classes (tuple): This stores a tuple of
+ classes that we have traveled through so that
+ if we see that class again we will not use its
+ discriminator again.
+ When traveling through a discriminator, the
+ composed schema that is
+ is traveled through is added to this set.
+ For example if Animal has a discriminator
+ petType and we pass in "Dog", and the class Dog
+ allOf includes Animal, we move through Animal
+ once using the discriminator, and pick Dog.
+ Then in Dog, we will make an instance of the
+ Animal class but this time we won't travel
+ through its discriminator because we passed in
+ _visited_composed_classes = (Animal,)
+ moid (str): The Moid of the referenced REST resource.. [optional] # noqa: E501
+ selector (str): An OData $filter expression which describes the REST resource to be referenced. This field may be set instead of 'moid' by clients. 1. If 'moid' is set this field is ignored. 1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of the resource matching the filter expression and populates it in the MoRef that is part of the object instance being inserted/updated to fulfill the REST request. An error is returned if the filter matches zero or more than one REST resource. An example filter string is: Serial eq '3AA8B7T11'.. [optional] # noqa: E501
+ link (str): A URL to an instance of the 'mo.MoRef' class.. [optional] # noqa: E501
+ account_moid (str): The Account ID for this managed object.. [optional] # noqa: E501
+ create_time (datetime): The time when this managed object was created.. [optional] # noqa: E501
+ domain_group_moid (str): The DomainGroup ID for this managed object.. [optional] # noqa: E501
+ mod_time (datetime): The time when this managed object was last modified.. [optional] # noqa: E501
+ owners ([str], none_type): [optional] # noqa: E501
+ shared_scope (str): Intersight provides pre-built workflows, tasks and policies to end users through global catalogs. Objects that are made available through global catalogs are said to have a 'shared' ownership. Shared objects are either made globally available to all end users or restricted to end users based on their license entitlement. Users can use this property to differentiate the scope (global or a specific license tier) to which a shared MO belongs.. [optional] # noqa: E501
+ tags ([MoTag], none_type): [optional] # noqa: E501
+ version_context (MoVersionContext): [optional] # noqa: E501
+ ancestors ([MoBaseMoRelationship], none_type): An array of relationships to moBaseMo resources.. [optional] # noqa: E501
+ parent (MoBaseMoRelationship): [optional] # noqa: E501
+ permission_resources ([MoBaseMoRelationship], none_type): An array of relationships to moBaseMo resources.. [optional] # noqa: E501
+ display_names (DisplayNames): [optional] # noqa: E501
+ body (MoBaseMo): [optional] # noqa: E501
+ body_string (str): The body of the sub-request in string format.. [optional] # noqa: E501
+ execution_completion_time (str): The time at which processing of this request completed.. [optional] # noqa: E501
+ execution_start_time (str): The time at which processing of this request started.. [optional] # noqa: E501
+ is_object_present (bool): This flag indicates if an already existing object was found or not after execution of the action CheckObjectPresence.. [optional] # noqa: E501
+ result (BulkApiResult): [optional] # noqa: E501
+ skip_duplicates (bool): Skip the already present objects. The value from the Request.. [optional] # noqa: E501
+ status (str): The status of the request. * `Pending` - Indicates that the request is yet to be processed. * `ObjPresenceCheckInProgress` - Indicates that the checking for object presence is in progress. * `ObjPresenceCheckInComplete` - Indicates that the request is being processed. * `ObjPresenceCheckFailed` - Indicates that the checking for object presence failed. * `Processing` - Indicates that the request is being processed. * `TimedOut` - Indicates that the request processing timed out. * `Completed` - Indicates that the request processing is complete. * `Skipped` - Indicates that the request was skipped.. [optional] if omitted the server will use the default value of "Pending" # noqa: E501
+ system_defined_object_detected (bool): This flag indicates if the a system defined object was detected after execution of the action CheckObjectPresence.. [optional] # noqa: E501
+ target_moid (str): Used with PATCH & DELETE actions. The moid of an existing object instance.. [optional] # noqa: E501
+ uri (str): The URI on which this bulk action is to be performed.. [optional] # noqa: E501
+ verb (str): The type of operation to be performed. One of - Post (Create), Patch (Update) or Delete (Remove). * `POST` - Used to create a REST resource. * `PATCH` - Used to update a REST resource. * `DELETE` - Used to delete a REST resource.. [optional] if omitted the server will use the default value of "POST" # noqa: E501
+ request (BulkRequestRelationship): [optional] # noqa: E501
+ object_type (str): The fully-qualified name of the remote type referred by this relationship.. [optional] # noqa: E501
+ """
+
+ class_id = kwargs.get('class_id', "mo.MoRef")
+ _check_type = kwargs.pop('_check_type', True)
+ _spec_property_naming = kwargs.pop('_spec_property_naming', False)
+ _path_to_item = kwargs.pop('_path_to_item', ())
+ _configuration = kwargs.pop('_configuration', None)
+ _visited_composed_classes = kwargs.pop('_visited_composed_classes', ())
+
+ if args:
+ raise ApiTypeError(
+ "Invalid positional arguments=%s passed to %s. Remove those invalid positional arguments." % (
+ args,
+ self.__class__.__name__,
+ ),
+ path_to_item=_path_to_item,
+ valid_classes=(self.__class__,),
+ )
+
+ self._data_store = {}
+ self._check_type = _check_type
+ self._spec_property_naming = _spec_property_naming
+ self._path_to_item = _path_to_item
+ self._configuration = _configuration
+ self._visited_composed_classes = _visited_composed_classes + (self.__class__,)
+
+ constant_args = {
+ '_check_type': _check_type,
+ '_path_to_item': _path_to_item,
+ '_spec_property_naming': _spec_property_naming,
+ '_configuration': _configuration,
+ '_visited_composed_classes': self._visited_composed_classes,
+ }
+ required_args = {
+ 'class_id': class_id,
+ }
+ model_args = {}
+ model_args.update(required_args)
+ model_args.update(kwargs)
+ composed_info = validate_get_composed_info(
+ constant_args, model_args, self)
+ self._composed_instances = composed_info[0]
+ self._var_name_to_model_instances = composed_info[1]
+ self._additional_properties_model_instances = composed_info[2]
+ unused_args = composed_info[3]
+
+ for var_name, var_value in required_args.items():
+ setattr(self, var_name, var_value)
+ for var_name, var_value in kwargs.items():
+ if var_name in unused_args and \
+ self._configuration is not None and \
+ self._configuration.discard_unknown_keys and \
+ not self._additional_properties_model_instances:
+ # discard variable.
+ continue
+ setattr(self, var_name, var_value)
+
+ @cached_property
+ def _composed_schemas():
+ # we need this here to make our import statements work
+ # we must store _composed_schemas in here so the code is only run
+ # when we invoke this method. If we kept this at the class
+ # level we would get an error beause the class level
+ # code would be run when this module is imported, and these composed
+ # classes don't exist yet because their module has not finished
+ # loading
+ lazy_import()
+ return {
+ 'anyOf': [
+ ],
+ 'allOf': [
+ ],
+ 'oneOf': [
+ BulkSubRequestObj,
+ MoMoRef,
+ none_type,
+ ],
+ }
diff --git a/intersight/model/bulk_sub_request_obj_response.py b/intersight/model/bulk_sub_request_obj_response.py
new file mode 100644
index 0000000000..0b2b0db5fe
--- /dev/null
+++ b/intersight/model/bulk_sub_request_obj_response.py
@@ -0,0 +1,249 @@
+"""
+ Cisco Intersight
+
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
+
+ The version of the OpenAPI document: 1.0.9-4506
+ Contact: intersight@cisco.com
+ Generated by: https://openapi-generator.tech
+"""
+
+
+import re # noqa: F401
+import sys # noqa: F401
+
+from intersight.model_utils import ( # noqa: F401
+ ApiTypeError,
+ ModelComposed,
+ ModelNormal,
+ ModelSimple,
+ cached_property,
+ change_keys_js_to_python,
+ convert_js_args_to_python_args,
+ date,
+ datetime,
+ file_type,
+ none_type,
+ validate_get_composed_info,
+)
+
+def lazy_import():
+ from intersight.model.bulk_sub_request_obj_list import BulkSubRequestObjList
+ from intersight.model.mo_aggregate_transform import MoAggregateTransform
+ from intersight.model.mo_document_count import MoDocumentCount
+ from intersight.model.mo_tag_key_summary import MoTagKeySummary
+ from intersight.model.mo_tag_summary import MoTagSummary
+ globals()['BulkSubRequestObjList'] = BulkSubRequestObjList
+ globals()['MoAggregateTransform'] = MoAggregateTransform
+ globals()['MoDocumentCount'] = MoDocumentCount
+ globals()['MoTagKeySummary'] = MoTagKeySummary
+ globals()['MoTagSummary'] = MoTagSummary
+
+
+class BulkSubRequestObjResponse(ModelComposed):
+ """NOTE: This class is auto generated by OpenAPI Generator.
+ Ref: https://openapi-generator.tech
+
+ Do not edit the class manually.
+
+ Attributes:
+ allowed_values (dict): The key is the tuple path to the attribute
+ and the for var_name this is (var_name,). The value is a dict
+ with a capitalized key describing the allowed value and an allowed
+ value. These dicts store the allowed enum values.
+ attribute_map (dict): The key is attribute name
+ and the value is json key in definition.
+ discriminator_value_class_map (dict): A dict to go from the discriminator
+ variable value to the discriminator class name.
+ validations (dict): The key is the tuple path to the attribute
+ and the for var_name this is (var_name,). The value is a dict
+ that stores validations for max_length, min_length, max_items,
+ min_items, exclusive_maximum, inclusive_maximum, exclusive_minimum,
+ inclusive_minimum, and regex.
+ additional_properties_type (tuple): A tuple of classes accepted
+ as additional properties values.
+ """
+
+ allowed_values = {
+ }
+
+ validations = {
+ }
+
+ @cached_property
+ def additional_properties_type():
+ """
+ This must be a method because a model may have properties that are
+ of type self, this must run after the class is loaded
+ """
+ lazy_import()
+ return (bool, date, datetime, dict, float, int, list, str, none_type,) # noqa: E501
+
+ _nullable = False
+
+ @cached_property
+ def openapi_types():
+ """
+ This must be a method because a model may have properties that are
+ of type self, this must run after the class is loaded
+
+ Returns
+ openapi_types (dict): The key is attribute name
+ and the value is attribute type.
+ """
+ lazy_import()
+ return {
+ 'object_type': (str,), # noqa: E501
+ 'count': (int,), # noqa: E501
+ 'results': ([MoTagKeySummary], none_type,), # noqa: E501
+ }
+
+ @cached_property
+ def discriminator():
+ lazy_import()
+ val = {
+ 'bulk.SubRequestObj.List': BulkSubRequestObjList,
+ 'mo.AggregateTransform': MoAggregateTransform,
+ 'mo.DocumentCount': MoDocumentCount,
+ 'mo.TagSummary': MoTagSummary,
+ }
+ if not val:
+ return None
+ return {'object_type': val}
+
+ attribute_map = {
+ 'object_type': 'ObjectType', # noqa: E501
+ 'count': 'Count', # noqa: E501
+ 'results': 'Results', # noqa: E501
+ }
+
+ required_properties = set([
+ '_data_store',
+ '_check_type',
+ '_spec_property_naming',
+ '_path_to_item',
+ '_configuration',
+ '_visited_composed_classes',
+ '_composed_instances',
+ '_var_name_to_model_instances',
+ '_additional_properties_model_instances',
+ ])
+
+ @convert_js_args_to_python_args
+ def __init__(self, object_type, *args, **kwargs): # noqa: E501
+ """BulkSubRequestObjResponse - a model defined in OpenAPI
+
+ Args:
+ object_type (str): A discriminator value to disambiguate the schema of a HTTP GET response body.
+
+ Keyword Args:
+ _check_type (bool): if True, values for parameters in openapi_types
+ will be type checked and a TypeError will be
+ raised if the wrong type is input.
+ Defaults to True
+ _path_to_item (tuple/list): This is a list of keys or values to
+ drill down to the model in received_data
+ when deserializing a response
+ _spec_property_naming (bool): True if the variable names in the input data
+ are serialized names, as specified in the OpenAPI document.
+ False if the variable names in the input data
+ are pythonic names, e.g. snake case (default)
+ _configuration (Configuration): the instance to use when
+ deserializing a file_type parameter.
+ If passed, type conversion is attempted
+ If omitted no type conversion is done.
+ _visited_composed_classes (tuple): This stores a tuple of
+ classes that we have traveled through so that
+ if we see that class again we will not use its
+ discriminator again.
+ When traveling through a discriminator, the
+ composed schema that is
+ is traveled through is added to this set.
+ For example if Animal has a discriminator
+ petType and we pass in "Dog", and the class Dog
+ allOf includes Animal, we move through Animal
+ once using the discriminator, and pick Dog.
+ Then in Dog, we will make an instance of the
+ Animal class but this time we won't travel
+ through its discriminator because we passed in
+ _visited_composed_classes = (Animal,)
+ count (int): The total number of 'bulk.SubRequestObj' resources matching the request, accross all pages. The 'Count' attribute is included when the HTTP GET request includes the '$inlinecount' parameter.. [optional] # noqa: E501
+ results ([MoTagKeySummary], none_type): [optional] # noqa: E501
+ """
+
+ _check_type = kwargs.pop('_check_type', True)
+ _spec_property_naming = kwargs.pop('_spec_property_naming', False)
+ _path_to_item = kwargs.pop('_path_to_item', ())
+ _configuration = kwargs.pop('_configuration', None)
+ _visited_composed_classes = kwargs.pop('_visited_composed_classes', ())
+
+ if args:
+ raise ApiTypeError(
+ "Invalid positional arguments=%s passed to %s. Remove those invalid positional arguments." % (
+ args,
+ self.__class__.__name__,
+ ),
+ path_to_item=_path_to_item,
+ valid_classes=(self.__class__,),
+ )
+
+ self._data_store = {}
+ self._check_type = _check_type
+ self._spec_property_naming = _spec_property_naming
+ self._path_to_item = _path_to_item
+ self._configuration = _configuration
+ self._visited_composed_classes = _visited_composed_classes + (self.__class__,)
+
+ constant_args = {
+ '_check_type': _check_type,
+ '_path_to_item': _path_to_item,
+ '_spec_property_naming': _spec_property_naming,
+ '_configuration': _configuration,
+ '_visited_composed_classes': self._visited_composed_classes,
+ }
+ required_args = {
+ 'object_type': object_type,
+ }
+ model_args = {}
+ model_args.update(required_args)
+ model_args.update(kwargs)
+ composed_info = validate_get_composed_info(
+ constant_args, model_args, self)
+ self._composed_instances = composed_info[0]
+ self._var_name_to_model_instances = composed_info[1]
+ self._additional_properties_model_instances = composed_info[2]
+ unused_args = composed_info[3]
+
+ for var_name, var_value in required_args.items():
+ setattr(self, var_name, var_value)
+ for var_name, var_value in kwargs.items():
+ if var_name in unused_args and \
+ self._configuration is not None and \
+ self._configuration.discard_unknown_keys and \
+ not self._additional_properties_model_instances:
+ # discard variable.
+ continue
+ setattr(self, var_name, var_value)
+
+ @cached_property
+ def _composed_schemas():
+ # we need this here to make our import statements work
+ # we must store _composed_schemas in here so the code is only run
+ # when we invoke this method. If we kept this at the class
+ # level we would get an error beause the class level
+ # code would be run when this module is imported, and these composed
+ # classes don't exist yet because their module has not finished
+ # loading
+ lazy_import()
+ return {
+ 'anyOf': [
+ ],
+ 'allOf': [
+ ],
+ 'oneOf': [
+ BulkSubRequestObjList,
+ MoAggregateTransform,
+ MoDocumentCount,
+ MoTagSummary,
+ ],
+ }
diff --git a/intersight/model/capability_adapter_unit_descriptor.py b/intersight/model/capability_adapter_unit_descriptor.py
index ae5fd5e90f..13eb361548 100644
--- a/intersight/model/capability_adapter_unit_descriptor.py
+++ b/intersight/model/capability_adapter_unit_descriptor.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/capability_adapter_unit_descriptor_all_of.py b/intersight/model/capability_adapter_unit_descriptor_all_of.py
index d80c0fb71a..310bbe8d21 100644
--- a/intersight/model/capability_adapter_unit_descriptor_all_of.py
+++ b/intersight/model/capability_adapter_unit_descriptor_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/capability_adapter_unit_descriptor_list.py b/intersight/model/capability_adapter_unit_descriptor_list.py
index 62f7cf75ea..e40c246cf9 100644
--- a/intersight/model/capability_adapter_unit_descriptor_list.py
+++ b/intersight/model/capability_adapter_unit_descriptor_list.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/capability_adapter_unit_descriptor_list_all_of.py b/intersight/model/capability_adapter_unit_descriptor_list_all_of.py
index 4c4c9739b9..ffe8ddabbb 100644
--- a/intersight/model/capability_adapter_unit_descriptor_list_all_of.py
+++ b/intersight/model/capability_adapter_unit_descriptor_list_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/capability_adapter_unit_descriptor_response.py b/intersight/model/capability_adapter_unit_descriptor_response.py
index d1a904d048..86e714ec82 100644
--- a/intersight/model/capability_adapter_unit_descriptor_response.py
+++ b/intersight/model/capability_adapter_unit_descriptor_response.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/capability_capability.py b/intersight/model/capability_capability.py
index c05035ead0..ee832183de 100644
--- a/intersight/model/capability_capability.py
+++ b/intersight/model/capability_capability.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/capability_capability_all_of.py b/intersight/model/capability_capability_all_of.py
index 623f928ca1..e1947876dd 100644
--- a/intersight/model/capability_capability_all_of.py
+++ b/intersight/model/capability_capability_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/capability_capability_relationship.py b/intersight/model/capability_capability_relationship.py
index b9e67550d1..57c5fc6470 100644
--- a/intersight/model/capability_capability_relationship.py
+++ b/intersight/model/capability_capability_relationship.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
@@ -72,6 +72,8 @@ class CapabilityCapabilityRelationship(ModelComposed):
},
('object_type',): {
'AAA.AUDITRECORD': "aaa.AuditRecord",
+ 'AAA.RETENTIONCONFIG': "aaa.RetentionConfig",
+ 'AAA.RETENTIONPOLICY': "aaa.RetentionPolicy",
'ACCESS.POLICY': "access.Policy",
'ADAPTER.CONFIGPOLICY': "adapter.ConfigPolicy",
'ADAPTER.EXTETHINTERFACE': "adapter.ExtEthInterface",
@@ -88,6 +90,7 @@ class CapabilityCapabilityRelationship(ModelComposed):
'APPLIANCE.DATAEXPORTPOLICY': "appliance.DataExportPolicy",
'APPLIANCE.DEVICECERTIFICATE': "appliance.DeviceCertificate",
'APPLIANCE.DEVICECLAIM': "appliance.DeviceClaim",
+ 'APPLIANCE.DEVICEUPGRADEPOLICY': "appliance.DeviceUpgradePolicy",
'APPLIANCE.DIAGSETTING': "appliance.DiagSetting",
'APPLIANCE.EXTERNALSYSLOGSETTING': "appliance.ExternalSyslogSetting",
'APPLIANCE.FILESYSTEMSTATUS': "appliance.FileSystemStatus",
@@ -136,9 +139,12 @@ class CapabilityCapabilityRelationship(ModelComposed):
'BOOT.UEFISHELLDEVICE': "boot.UefiShellDevice",
'BOOT.USBDEVICE': "boot.UsbDevice",
'BOOT.VMEDIADEVICE': "boot.VmediaDevice",
+ 'BULK.EXPORT': "bulk.Export",
+ 'BULK.EXPORTEDITEM': "bulk.ExportedItem",
'BULK.MOCLONER': "bulk.MoCloner",
'BULK.MOMERGER': "bulk.MoMerger",
'BULK.REQUEST': "bulk.Request",
+ 'BULK.SUBREQUESTOBJ': "bulk.SubRequestObj",
'CAPABILITY.ADAPTERUNITDESCRIPTOR': "capability.AdapterUnitDescriptor",
'CAPABILITY.CATALOG': "capability.Catalog",
'CAPABILITY.CHASSISDESCRIPTOR': "capability.ChassisDescriptor",
@@ -202,10 +208,6 @@ class CapabilityCapabilityRelationship(ModelComposed):
'COND.HCLSTATUS': "cond.HclStatus",
'COND.HCLSTATUSDETAIL': "cond.HclStatusDetail",
'COND.HCLSTATUSJOB': "cond.HclStatusJob",
- 'CONFIG.EXPORTEDITEM': "config.ExportedItem",
- 'CONFIG.EXPORTER': "config.Exporter",
- 'CONFIG.IMPORTEDITEM': "config.ImportedItem",
- 'CONFIG.IMPORTER': "config.Importer",
'CONNECTORPACK.CONNECTORPACKUPGRADE': "connectorpack.ConnectorPackUpgrade",
'CONNECTORPACK.UPGRADEIMPACT': "connectorpack.UpgradeImpact",
'CRD.CUSTOMRESOURCE': "crd.CustomResource",
@@ -214,6 +216,7 @@ class CapabilityCapabilityRelationship(ModelComposed):
'EQUIPMENT.CHASSISIDENTITY': "equipment.ChassisIdentity",
'EQUIPMENT.CHASSISOPERATION': "equipment.ChassisOperation",
'EQUIPMENT.DEVICESUMMARY': "equipment.DeviceSummary",
+ 'EQUIPMENT.EXPANDERMODULE': "equipment.ExpanderModule",
'EQUIPMENT.FAN': "equipment.Fan",
'EQUIPMENT.FANCONTROL': "equipment.FanControl",
'EQUIPMENT.FANMODULE': "equipment.FanModule",
@@ -462,6 +465,7 @@ class CapabilityCapabilityRelationship(ModelComposed):
'KUBERNETES.ADDONDEFINITION': "kubernetes.AddonDefinition",
'KUBERNETES.ADDONPOLICY': "kubernetes.AddonPolicy",
'KUBERNETES.ADDONREPOSITORY': "kubernetes.AddonRepository",
+ 'KUBERNETES.BAREMETALNODEPROFILE': "kubernetes.BaremetalNodeProfile",
'KUBERNETES.CATALOG': "kubernetes.Catalog",
'KUBERNETES.CLUSTER': "kubernetes.Cluster",
'KUBERNETES.CLUSTERADDONPROFILE': "kubernetes.ClusterAddonProfile",
@@ -631,6 +635,11 @@ class CapabilityCapabilityRelationship(ModelComposed):
'RESOURCE.LICENSERESOURCECOUNT': "resource.LicenseResourceCount",
'RESOURCE.MEMBERSHIP': "resource.Membership",
'RESOURCE.MEMBERSHIPHOLDER': "resource.MembershipHolder",
+ 'RESOURCEPOOL.LEASE': "resourcepool.Lease",
+ 'RESOURCEPOOL.LEASERESOURCE': "resourcepool.LeaseResource",
+ 'RESOURCEPOOL.POOL': "resourcepool.Pool",
+ 'RESOURCEPOOL.POOLMEMBER': "resourcepool.PoolMember",
+ 'RESOURCEPOOL.UNIVERSE': "resourcepool.Universe",
'RPROXY.REVERSEPROXY': "rproxy.ReverseProxy",
'SDCARD.POLICY': "sdcard.Policy",
'SDWAN.PROFILE': "sdwan.Profile",
@@ -746,6 +755,7 @@ class CapabilityCapabilityRelationship(ModelComposed):
'TASK.NETAPPSCOPEDINVENTORY': "task.NetAppScopedInventory",
'TASK.PUBLICCLOUDSCOPEDINVENTORY': "task.PublicCloudScopedInventory",
'TASK.PURESCOPEDINVENTORY': "task.PureScopedInventory",
+ 'TASK.SERVERSCOPEDINVENTORY': "task.ServerScopedInventory",
'TECHSUPPORTMANAGEMENT.COLLECTIONCONTROLPOLICY': "techsupportmanagement.CollectionControlPolicy",
'TECHSUPPORTMANAGEMENT.DOWNLOAD': "techsupportmanagement.Download",
'TECHSUPPORTMANAGEMENT.TECHSUPPORTBUNDLE': "techsupportmanagement.TechSupportBundle",
@@ -777,6 +787,7 @@ class CapabilityCapabilityRelationship(ModelComposed):
'VIRTUALIZATION.VMWAREVCENTER': "virtualization.VmwareVcenter",
'VIRTUALIZATION.VMWAREVIRTUALDISK': "virtualization.VmwareVirtualDisk",
'VIRTUALIZATION.VMWAREVIRTUALMACHINE': "virtualization.VmwareVirtualMachine",
+ 'VIRTUALIZATION.VMWAREVIRTUALMACHINESNAPSHOT': "virtualization.VmwareVirtualMachineSnapshot",
'VIRTUALIZATION.VMWAREVIRTUALNETWORKINTERFACE': "virtualization.VmwareVirtualNetworkInterface",
'VIRTUALIZATION.VMWAREVIRTUALSWITCH': "virtualization.VmwareVirtualSwitch",
'VMEDIA.POLICY': "vmedia.Policy",
@@ -809,12 +820,14 @@ class CapabilityCapabilityRelationship(ModelComposed):
'WORKFLOW.TASKDEFINITION': "workflow.TaskDefinition",
'WORKFLOW.TASKINFO': "workflow.TaskInfo",
'WORKFLOW.TASKMETADATA': "workflow.TaskMetadata",
+ 'WORKFLOW.TASKNOTIFICATION': "workflow.TaskNotification",
'WORKFLOW.TEMPLATEEVALUATION': "workflow.TemplateEvaluation",
'WORKFLOW.TEMPLATEFUNCTIONMETA': "workflow.TemplateFunctionMeta",
'WORKFLOW.WORKFLOWDEFINITION': "workflow.WorkflowDefinition",
'WORKFLOW.WORKFLOWINFO': "workflow.WorkflowInfo",
'WORKFLOW.WORKFLOWMETA': "workflow.WorkflowMeta",
'WORKFLOW.WORKFLOWMETADATA': "workflow.WorkflowMetadata",
+ 'WORKFLOW.WORKFLOWNOTIFICATION': "workflow.WorkflowNotification",
},
}
diff --git a/intersight/model/capability_catalog.py b/intersight/model/capability_catalog.py
index a535c9a937..be81c1f6b1 100644
--- a/intersight/model/capability_catalog.py
+++ b/intersight/model/capability_catalog.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/capability_catalog_all_of.py b/intersight/model/capability_catalog_all_of.py
index 1d206cfcfa..7391f5cb0c 100644
--- a/intersight/model/capability_catalog_all_of.py
+++ b/intersight/model/capability_catalog_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/capability_catalog_list.py b/intersight/model/capability_catalog_list.py
index fa5267e1ef..7c56ab1307 100644
--- a/intersight/model/capability_catalog_list.py
+++ b/intersight/model/capability_catalog_list.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/capability_catalog_list_all_of.py b/intersight/model/capability_catalog_list_all_of.py
index 3a54f70c6e..58c071e083 100644
--- a/intersight/model/capability_catalog_list_all_of.py
+++ b/intersight/model/capability_catalog_list_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/capability_catalog_response.py b/intersight/model/capability_catalog_response.py
index 4a0176542d..4658785bb6 100644
--- a/intersight/model/capability_catalog_response.py
+++ b/intersight/model/capability_catalog_response.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/capability_chassis_descriptor.py b/intersight/model/capability_chassis_descriptor.py
index 569c87e0de..7c8737b8da 100644
--- a/intersight/model/capability_chassis_descriptor.py
+++ b/intersight/model/capability_chassis_descriptor.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/capability_chassis_descriptor_all_of.py b/intersight/model/capability_chassis_descriptor_all_of.py
index 45a7e4081b..1f3206b120 100644
--- a/intersight/model/capability_chassis_descriptor_all_of.py
+++ b/intersight/model/capability_chassis_descriptor_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/capability_chassis_descriptor_list.py b/intersight/model/capability_chassis_descriptor_list.py
index 19b33a64b6..2e56ee9597 100644
--- a/intersight/model/capability_chassis_descriptor_list.py
+++ b/intersight/model/capability_chassis_descriptor_list.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/capability_chassis_descriptor_list_all_of.py b/intersight/model/capability_chassis_descriptor_list_all_of.py
index 461d0b8519..dfcafff577 100644
--- a/intersight/model/capability_chassis_descriptor_list_all_of.py
+++ b/intersight/model/capability_chassis_descriptor_list_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/capability_chassis_descriptor_response.py b/intersight/model/capability_chassis_descriptor_response.py
index 7da9f1334e..7ddb1f88cb 100644
--- a/intersight/model/capability_chassis_descriptor_response.py
+++ b/intersight/model/capability_chassis_descriptor_response.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/capability_chassis_manufacturing_def.py b/intersight/model/capability_chassis_manufacturing_def.py
index 002f4181ae..3df844195e 100644
--- a/intersight/model/capability_chassis_manufacturing_def.py
+++ b/intersight/model/capability_chassis_manufacturing_def.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/capability_chassis_manufacturing_def_all_of.py b/intersight/model/capability_chassis_manufacturing_def_all_of.py
index 477f477f6a..93ac186dbb 100644
--- a/intersight/model/capability_chassis_manufacturing_def_all_of.py
+++ b/intersight/model/capability_chassis_manufacturing_def_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/capability_chassis_manufacturing_def_list.py b/intersight/model/capability_chassis_manufacturing_def_list.py
index 6f24d78b0b..6d183d1525 100644
--- a/intersight/model/capability_chassis_manufacturing_def_list.py
+++ b/intersight/model/capability_chassis_manufacturing_def_list.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/capability_chassis_manufacturing_def_list_all_of.py b/intersight/model/capability_chassis_manufacturing_def_list_all_of.py
index 80da612cb3..69e515a7d0 100644
--- a/intersight/model/capability_chassis_manufacturing_def_list_all_of.py
+++ b/intersight/model/capability_chassis_manufacturing_def_list_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/capability_chassis_manufacturing_def_response.py b/intersight/model/capability_chassis_manufacturing_def_response.py
index e40c5712d5..e6964fe66f 100644
--- a/intersight/model/capability_chassis_manufacturing_def_response.py
+++ b/intersight/model/capability_chassis_manufacturing_def_response.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/capability_cimc_firmware_descriptor.py b/intersight/model/capability_cimc_firmware_descriptor.py
index b3f49bc914..e478678828 100644
--- a/intersight/model/capability_cimc_firmware_descriptor.py
+++ b/intersight/model/capability_cimc_firmware_descriptor.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/capability_cimc_firmware_descriptor_all_of.py b/intersight/model/capability_cimc_firmware_descriptor_all_of.py
index 3606d7a847..006574460d 100644
--- a/intersight/model/capability_cimc_firmware_descriptor_all_of.py
+++ b/intersight/model/capability_cimc_firmware_descriptor_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/capability_cimc_firmware_descriptor_list.py b/intersight/model/capability_cimc_firmware_descriptor_list.py
index 400e563815..0839832891 100644
--- a/intersight/model/capability_cimc_firmware_descriptor_list.py
+++ b/intersight/model/capability_cimc_firmware_descriptor_list.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/capability_cimc_firmware_descriptor_list_all_of.py b/intersight/model/capability_cimc_firmware_descriptor_list_all_of.py
index 9deeb15eae..3d05c24a72 100644
--- a/intersight/model/capability_cimc_firmware_descriptor_list_all_of.py
+++ b/intersight/model/capability_cimc_firmware_descriptor_list_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/capability_cimc_firmware_descriptor_response.py b/intersight/model/capability_cimc_firmware_descriptor_response.py
index f813b7b83b..f78633dc06 100644
--- a/intersight/model/capability_cimc_firmware_descriptor_response.py
+++ b/intersight/model/capability_cimc_firmware_descriptor_response.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/capability_endpoint_descriptor.py b/intersight/model/capability_endpoint_descriptor.py
index 0a8b08be84..70a48c8cfb 100644
--- a/intersight/model/capability_endpoint_descriptor.py
+++ b/intersight/model/capability_endpoint_descriptor.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/capability_endpoint_descriptor_all_of.py b/intersight/model/capability_endpoint_descriptor_all_of.py
index 496c3adc09..1e4966f6a7 100644
--- a/intersight/model/capability_endpoint_descriptor_all_of.py
+++ b/intersight/model/capability_endpoint_descriptor_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/capability_equipment_physical_def.py b/intersight/model/capability_equipment_physical_def.py
index 7440a90ca6..356871860f 100644
--- a/intersight/model/capability_equipment_physical_def.py
+++ b/intersight/model/capability_equipment_physical_def.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/capability_equipment_physical_def_all_of.py b/intersight/model/capability_equipment_physical_def_all_of.py
index dde03aa463..7e58fb8f58 100644
--- a/intersight/model/capability_equipment_physical_def_all_of.py
+++ b/intersight/model/capability_equipment_physical_def_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/capability_equipment_physical_def_list.py b/intersight/model/capability_equipment_physical_def_list.py
index bb0e5200b4..5052f4e809 100644
--- a/intersight/model/capability_equipment_physical_def_list.py
+++ b/intersight/model/capability_equipment_physical_def_list.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/capability_equipment_physical_def_list_all_of.py b/intersight/model/capability_equipment_physical_def_list_all_of.py
index 7a90fc8cbf..cf72f4ffd9 100644
--- a/intersight/model/capability_equipment_physical_def_list_all_of.py
+++ b/intersight/model/capability_equipment_physical_def_list_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/capability_equipment_physical_def_response.py b/intersight/model/capability_equipment_physical_def_response.py
index 36eb97c676..c320749c95 100644
--- a/intersight/model/capability_equipment_physical_def_response.py
+++ b/intersight/model/capability_equipment_physical_def_response.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/capability_equipment_slot_array.py b/intersight/model/capability_equipment_slot_array.py
index 61f304182c..00a2811113 100644
--- a/intersight/model/capability_equipment_slot_array.py
+++ b/intersight/model/capability_equipment_slot_array.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/capability_equipment_slot_array_all_of.py b/intersight/model/capability_equipment_slot_array_all_of.py
index 1f6fb788b4..43c1d6b37e 100644
--- a/intersight/model/capability_equipment_slot_array_all_of.py
+++ b/intersight/model/capability_equipment_slot_array_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/capability_equipment_slot_array_list.py b/intersight/model/capability_equipment_slot_array_list.py
index 487964cbfc..ea95786c3b 100644
--- a/intersight/model/capability_equipment_slot_array_list.py
+++ b/intersight/model/capability_equipment_slot_array_list.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/capability_equipment_slot_array_list_all_of.py b/intersight/model/capability_equipment_slot_array_list_all_of.py
index bb7407f039..4b99ab75a9 100644
--- a/intersight/model/capability_equipment_slot_array_list_all_of.py
+++ b/intersight/model/capability_equipment_slot_array_list_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/capability_equipment_slot_array_response.py b/intersight/model/capability_equipment_slot_array_response.py
index cee30ac65f..c36e82a549 100644
--- a/intersight/model/capability_equipment_slot_array_response.py
+++ b/intersight/model/capability_equipment_slot_array_response.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/capability_fan_module_descriptor.py b/intersight/model/capability_fan_module_descriptor.py
index 40449f2c1f..10f7a46e7b 100644
--- a/intersight/model/capability_fan_module_descriptor.py
+++ b/intersight/model/capability_fan_module_descriptor.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/capability_fan_module_descriptor_all_of.py b/intersight/model/capability_fan_module_descriptor_all_of.py
index de571df90c..c6864d4e58 100644
--- a/intersight/model/capability_fan_module_descriptor_all_of.py
+++ b/intersight/model/capability_fan_module_descriptor_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/capability_fan_module_descriptor_list.py b/intersight/model/capability_fan_module_descriptor_list.py
index 2504cf0aa2..fc9ae29b74 100644
--- a/intersight/model/capability_fan_module_descriptor_list.py
+++ b/intersight/model/capability_fan_module_descriptor_list.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/capability_fan_module_descriptor_list_all_of.py b/intersight/model/capability_fan_module_descriptor_list_all_of.py
index f2d26c25f6..cb53d8bc5a 100644
--- a/intersight/model/capability_fan_module_descriptor_list_all_of.py
+++ b/intersight/model/capability_fan_module_descriptor_list_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/capability_fan_module_descriptor_response.py b/intersight/model/capability_fan_module_descriptor_response.py
index 993beb5725..8d0330733c 100644
--- a/intersight/model/capability_fan_module_descriptor_response.py
+++ b/intersight/model/capability_fan_module_descriptor_response.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/capability_fan_module_manufacturing_def.py b/intersight/model/capability_fan_module_manufacturing_def.py
index 02e532cb8d..93c276885d 100644
--- a/intersight/model/capability_fan_module_manufacturing_def.py
+++ b/intersight/model/capability_fan_module_manufacturing_def.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/capability_fan_module_manufacturing_def_all_of.py b/intersight/model/capability_fan_module_manufacturing_def_all_of.py
index 9a4894a667..4caf82cf93 100644
--- a/intersight/model/capability_fan_module_manufacturing_def_all_of.py
+++ b/intersight/model/capability_fan_module_manufacturing_def_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/capability_fan_module_manufacturing_def_list.py b/intersight/model/capability_fan_module_manufacturing_def_list.py
index 54f90084e6..84eb470837 100644
--- a/intersight/model/capability_fan_module_manufacturing_def_list.py
+++ b/intersight/model/capability_fan_module_manufacturing_def_list.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/capability_fan_module_manufacturing_def_list_all_of.py b/intersight/model/capability_fan_module_manufacturing_def_list_all_of.py
index ac3d1cc1a3..ad7b68276f 100644
--- a/intersight/model/capability_fan_module_manufacturing_def_list_all_of.py
+++ b/intersight/model/capability_fan_module_manufacturing_def_list_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/capability_fan_module_manufacturing_def_response.py b/intersight/model/capability_fan_module_manufacturing_def_response.py
index 56fce3df0a..df216a5774 100644
--- a/intersight/model/capability_fan_module_manufacturing_def_response.py
+++ b/intersight/model/capability_fan_module_manufacturing_def_response.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/capability_hardware_descriptor.py b/intersight/model/capability_hardware_descriptor.py
index 78aceb7e52..aabc5d9d1c 100644
--- a/intersight/model/capability_hardware_descriptor.py
+++ b/intersight/model/capability_hardware_descriptor.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/capability_io_card_capability_def.py b/intersight/model/capability_io_card_capability_def.py
index 50bfdae0c9..1b921547fa 100644
--- a/intersight/model/capability_io_card_capability_def.py
+++ b/intersight/model/capability_io_card_capability_def.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/capability_io_card_capability_def_all_of.py b/intersight/model/capability_io_card_capability_def_all_of.py
index 7663d1178f..6f3fc29a46 100644
--- a/intersight/model/capability_io_card_capability_def_all_of.py
+++ b/intersight/model/capability_io_card_capability_def_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/capability_io_card_capability_def_list.py b/intersight/model/capability_io_card_capability_def_list.py
index ad1893f994..0dbfa6fd56 100644
--- a/intersight/model/capability_io_card_capability_def_list.py
+++ b/intersight/model/capability_io_card_capability_def_list.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/capability_io_card_capability_def_list_all_of.py b/intersight/model/capability_io_card_capability_def_list_all_of.py
index 3affe7f745..94b6718f7b 100644
--- a/intersight/model/capability_io_card_capability_def_list_all_of.py
+++ b/intersight/model/capability_io_card_capability_def_list_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/capability_io_card_capability_def_response.py b/intersight/model/capability_io_card_capability_def_response.py
index 169a9909b9..a952515044 100644
--- a/intersight/model/capability_io_card_capability_def_response.py
+++ b/intersight/model/capability_io_card_capability_def_response.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/capability_io_card_descriptor.py b/intersight/model/capability_io_card_descriptor.py
index 4d53a311fc..c0eb7e6dc8 100644
--- a/intersight/model/capability_io_card_descriptor.py
+++ b/intersight/model/capability_io_card_descriptor.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/capability_io_card_descriptor_all_of.py b/intersight/model/capability_io_card_descriptor_all_of.py
index d4057a43c5..9287a58583 100644
--- a/intersight/model/capability_io_card_descriptor_all_of.py
+++ b/intersight/model/capability_io_card_descriptor_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/capability_io_card_descriptor_list.py b/intersight/model/capability_io_card_descriptor_list.py
index 707c126052..b49fd75ebb 100644
--- a/intersight/model/capability_io_card_descriptor_list.py
+++ b/intersight/model/capability_io_card_descriptor_list.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/capability_io_card_descriptor_list_all_of.py b/intersight/model/capability_io_card_descriptor_list_all_of.py
index 60d73da98e..5d1bc6354c 100644
--- a/intersight/model/capability_io_card_descriptor_list_all_of.py
+++ b/intersight/model/capability_io_card_descriptor_list_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/capability_io_card_descriptor_response.py b/intersight/model/capability_io_card_descriptor_response.py
index 5e870148d2..0e6b0aedfa 100644
--- a/intersight/model/capability_io_card_descriptor_response.py
+++ b/intersight/model/capability_io_card_descriptor_response.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/capability_io_card_manufacturing_def.py b/intersight/model/capability_io_card_manufacturing_def.py
index 84a22723d9..c0b3dbcfbe 100644
--- a/intersight/model/capability_io_card_manufacturing_def.py
+++ b/intersight/model/capability_io_card_manufacturing_def.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/capability_io_card_manufacturing_def_all_of.py b/intersight/model/capability_io_card_manufacturing_def_all_of.py
index 4188b447e8..7ea1f43ca8 100644
--- a/intersight/model/capability_io_card_manufacturing_def_all_of.py
+++ b/intersight/model/capability_io_card_manufacturing_def_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/capability_io_card_manufacturing_def_list.py b/intersight/model/capability_io_card_manufacturing_def_list.py
index 1a81372db0..cc7a7de8ba 100644
--- a/intersight/model/capability_io_card_manufacturing_def_list.py
+++ b/intersight/model/capability_io_card_manufacturing_def_list.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/capability_io_card_manufacturing_def_list_all_of.py b/intersight/model/capability_io_card_manufacturing_def_list_all_of.py
index 0d9f12decb..7e627c535b 100644
--- a/intersight/model/capability_io_card_manufacturing_def_list_all_of.py
+++ b/intersight/model/capability_io_card_manufacturing_def_list_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/capability_io_card_manufacturing_def_response.py b/intersight/model/capability_io_card_manufacturing_def_response.py
index 7c9e03b311..6876eb7355 100644
--- a/intersight/model/capability_io_card_manufacturing_def_response.py
+++ b/intersight/model/capability_io_card_manufacturing_def_response.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/capability_port_group_aggregation_def.py b/intersight/model/capability_port_group_aggregation_def.py
index 15e242abe3..840ec3eaa3 100644
--- a/intersight/model/capability_port_group_aggregation_def.py
+++ b/intersight/model/capability_port_group_aggregation_def.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/capability_port_group_aggregation_def_all_of.py b/intersight/model/capability_port_group_aggregation_def_all_of.py
index 5d9542af2a..2f53fe3deb 100644
--- a/intersight/model/capability_port_group_aggregation_def_all_of.py
+++ b/intersight/model/capability_port_group_aggregation_def_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/capability_port_group_aggregation_def_list.py b/intersight/model/capability_port_group_aggregation_def_list.py
index b7873e34d6..b2c20edaad 100644
--- a/intersight/model/capability_port_group_aggregation_def_list.py
+++ b/intersight/model/capability_port_group_aggregation_def_list.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/capability_port_group_aggregation_def_list_all_of.py b/intersight/model/capability_port_group_aggregation_def_list_all_of.py
index 59503c6e66..d003447e8f 100644
--- a/intersight/model/capability_port_group_aggregation_def_list_all_of.py
+++ b/intersight/model/capability_port_group_aggregation_def_list_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/capability_port_group_aggregation_def_response.py b/intersight/model/capability_port_group_aggregation_def_response.py
index e9363d3d2c..d2880e02e1 100644
--- a/intersight/model/capability_port_group_aggregation_def_response.py
+++ b/intersight/model/capability_port_group_aggregation_def_response.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/capability_port_range.py b/intersight/model/capability_port_range.py
index d4b2fe4168..5cf328420c 100644
--- a/intersight/model/capability_port_range.py
+++ b/intersight/model/capability_port_range.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/capability_port_range_all_of.py b/intersight/model/capability_port_range_all_of.py
index 5d7255da26..2265b597ea 100644
--- a/intersight/model/capability_port_range_all_of.py
+++ b/intersight/model/capability_port_range_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/capability_psu_descriptor.py b/intersight/model/capability_psu_descriptor.py
index 34ec46eb2e..eb49ba9006 100644
--- a/intersight/model/capability_psu_descriptor.py
+++ b/intersight/model/capability_psu_descriptor.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/capability_psu_descriptor_all_of.py b/intersight/model/capability_psu_descriptor_all_of.py
index c90d65e429..058f544145 100644
--- a/intersight/model/capability_psu_descriptor_all_of.py
+++ b/intersight/model/capability_psu_descriptor_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/capability_psu_descriptor_list.py b/intersight/model/capability_psu_descriptor_list.py
index b596530774..46281d5764 100644
--- a/intersight/model/capability_psu_descriptor_list.py
+++ b/intersight/model/capability_psu_descriptor_list.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/capability_psu_descriptor_list_all_of.py b/intersight/model/capability_psu_descriptor_list_all_of.py
index cfb678afc4..7f4a4cd824 100644
--- a/intersight/model/capability_psu_descriptor_list_all_of.py
+++ b/intersight/model/capability_psu_descriptor_list_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/capability_psu_descriptor_response.py b/intersight/model/capability_psu_descriptor_response.py
index 750f746b7f..fd03569ba5 100644
--- a/intersight/model/capability_psu_descriptor_response.py
+++ b/intersight/model/capability_psu_descriptor_response.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/capability_psu_manufacturing_def.py b/intersight/model/capability_psu_manufacturing_def.py
index 64c8ecf048..91fcad2f7a 100644
--- a/intersight/model/capability_psu_manufacturing_def.py
+++ b/intersight/model/capability_psu_manufacturing_def.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/capability_psu_manufacturing_def_all_of.py b/intersight/model/capability_psu_manufacturing_def_all_of.py
index 9ff24761bb..7fa8f36ccb 100644
--- a/intersight/model/capability_psu_manufacturing_def_all_of.py
+++ b/intersight/model/capability_psu_manufacturing_def_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/capability_psu_manufacturing_def_list.py b/intersight/model/capability_psu_manufacturing_def_list.py
index f83ff7c502..dc4e7b62a5 100644
--- a/intersight/model/capability_psu_manufacturing_def_list.py
+++ b/intersight/model/capability_psu_manufacturing_def_list.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/capability_psu_manufacturing_def_list_all_of.py b/intersight/model/capability_psu_manufacturing_def_list_all_of.py
index fb062d3988..49da5462f6 100644
--- a/intersight/model/capability_psu_manufacturing_def_list_all_of.py
+++ b/intersight/model/capability_psu_manufacturing_def_list_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/capability_psu_manufacturing_def_response.py b/intersight/model/capability_psu_manufacturing_def_response.py
index 1c092921bf..c48193d646 100644
--- a/intersight/model/capability_psu_manufacturing_def_response.py
+++ b/intersight/model/capability_psu_manufacturing_def_response.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/capability_server_schema_descriptor.py b/intersight/model/capability_server_schema_descriptor.py
index 7c1edceb25..899e7a219a 100644
--- a/intersight/model/capability_server_schema_descriptor.py
+++ b/intersight/model/capability_server_schema_descriptor.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/capability_server_schema_descriptor_all_of.py b/intersight/model/capability_server_schema_descriptor_all_of.py
index 924de46310..0646db6df0 100644
--- a/intersight/model/capability_server_schema_descriptor_all_of.py
+++ b/intersight/model/capability_server_schema_descriptor_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/capability_server_schema_descriptor_list.py b/intersight/model/capability_server_schema_descriptor_list.py
index 28c9b3c202..227b9e75e6 100644
--- a/intersight/model/capability_server_schema_descriptor_list.py
+++ b/intersight/model/capability_server_schema_descriptor_list.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/capability_server_schema_descriptor_list_all_of.py b/intersight/model/capability_server_schema_descriptor_list_all_of.py
index 9ef7576deb..8766c85b1c 100644
--- a/intersight/model/capability_server_schema_descriptor_list_all_of.py
+++ b/intersight/model/capability_server_schema_descriptor_list_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/capability_server_schema_descriptor_response.py b/intersight/model/capability_server_schema_descriptor_response.py
index fe3cf7b48c..1cb0b5e5b8 100644
--- a/intersight/model/capability_server_schema_descriptor_response.py
+++ b/intersight/model/capability_server_schema_descriptor_response.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/capability_sioc_module_capability_def.py b/intersight/model/capability_sioc_module_capability_def.py
index 33a0106a6b..02f52968ad 100644
--- a/intersight/model/capability_sioc_module_capability_def.py
+++ b/intersight/model/capability_sioc_module_capability_def.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/capability_sioc_module_capability_def_all_of.py b/intersight/model/capability_sioc_module_capability_def_all_of.py
index e56fe01f19..ca53c9c251 100644
--- a/intersight/model/capability_sioc_module_capability_def_all_of.py
+++ b/intersight/model/capability_sioc_module_capability_def_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/capability_sioc_module_capability_def_list.py b/intersight/model/capability_sioc_module_capability_def_list.py
index 41aec6c44a..b57f03b0bc 100644
--- a/intersight/model/capability_sioc_module_capability_def_list.py
+++ b/intersight/model/capability_sioc_module_capability_def_list.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/capability_sioc_module_capability_def_list_all_of.py b/intersight/model/capability_sioc_module_capability_def_list_all_of.py
index 6f7ab1aedf..626990deb8 100644
--- a/intersight/model/capability_sioc_module_capability_def_list_all_of.py
+++ b/intersight/model/capability_sioc_module_capability_def_list_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/capability_sioc_module_capability_def_response.py b/intersight/model/capability_sioc_module_capability_def_response.py
index edfd4a7a9d..721ff2850c 100644
--- a/intersight/model/capability_sioc_module_capability_def_response.py
+++ b/intersight/model/capability_sioc_module_capability_def_response.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/capability_sioc_module_descriptor.py b/intersight/model/capability_sioc_module_descriptor.py
index ddf65ef5bc..036cb5e6f6 100644
--- a/intersight/model/capability_sioc_module_descriptor.py
+++ b/intersight/model/capability_sioc_module_descriptor.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/capability_sioc_module_descriptor_all_of.py b/intersight/model/capability_sioc_module_descriptor_all_of.py
index b21c3471a9..88b3de5687 100644
--- a/intersight/model/capability_sioc_module_descriptor_all_of.py
+++ b/intersight/model/capability_sioc_module_descriptor_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/capability_sioc_module_descriptor_list.py b/intersight/model/capability_sioc_module_descriptor_list.py
index 3b67ea2fd3..4cc71d769a 100644
--- a/intersight/model/capability_sioc_module_descriptor_list.py
+++ b/intersight/model/capability_sioc_module_descriptor_list.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/capability_sioc_module_descriptor_list_all_of.py b/intersight/model/capability_sioc_module_descriptor_list_all_of.py
index d2dd0dcef7..fc6df5ccf2 100644
--- a/intersight/model/capability_sioc_module_descriptor_list_all_of.py
+++ b/intersight/model/capability_sioc_module_descriptor_list_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/capability_sioc_module_descriptor_response.py b/intersight/model/capability_sioc_module_descriptor_response.py
index e32cf37e65..967941aff7 100644
--- a/intersight/model/capability_sioc_module_descriptor_response.py
+++ b/intersight/model/capability_sioc_module_descriptor_response.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/capability_sioc_module_manufacturing_def.py b/intersight/model/capability_sioc_module_manufacturing_def.py
index 07b59c78a9..65ab2e586a 100644
--- a/intersight/model/capability_sioc_module_manufacturing_def.py
+++ b/intersight/model/capability_sioc_module_manufacturing_def.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/capability_sioc_module_manufacturing_def_all_of.py b/intersight/model/capability_sioc_module_manufacturing_def_all_of.py
index 6214fca295..9ef22f2c41 100644
--- a/intersight/model/capability_sioc_module_manufacturing_def_all_of.py
+++ b/intersight/model/capability_sioc_module_manufacturing_def_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/capability_sioc_module_manufacturing_def_list.py b/intersight/model/capability_sioc_module_manufacturing_def_list.py
index 293f675df1..684c8754fe 100644
--- a/intersight/model/capability_sioc_module_manufacturing_def_list.py
+++ b/intersight/model/capability_sioc_module_manufacturing_def_list.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/capability_sioc_module_manufacturing_def_list_all_of.py b/intersight/model/capability_sioc_module_manufacturing_def_list_all_of.py
index 08f99385c5..be4879465c 100644
--- a/intersight/model/capability_sioc_module_manufacturing_def_list_all_of.py
+++ b/intersight/model/capability_sioc_module_manufacturing_def_list_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/capability_sioc_module_manufacturing_def_response.py b/intersight/model/capability_sioc_module_manufacturing_def_response.py
index c314410533..3fe139ada0 100644
--- a/intersight/model/capability_sioc_module_manufacturing_def_response.py
+++ b/intersight/model/capability_sioc_module_manufacturing_def_response.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/capability_switch_capability.py b/intersight/model/capability_switch_capability.py
index f38b52cbc4..857e5199b9 100644
--- a/intersight/model/capability_switch_capability.py
+++ b/intersight/model/capability_switch_capability.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/capability_switch_capability_all_of.py b/intersight/model/capability_switch_capability_all_of.py
index 4ac8a88ec9..50a7d987b2 100644
--- a/intersight/model/capability_switch_capability_all_of.py
+++ b/intersight/model/capability_switch_capability_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/capability_switch_capability_def.py b/intersight/model/capability_switch_capability_def.py
index 021e3f36ef..253e0af510 100644
--- a/intersight/model/capability_switch_capability_def.py
+++ b/intersight/model/capability_switch_capability_def.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/capability_switch_capability_def_all_of.py b/intersight/model/capability_switch_capability_def_all_of.py
index ca5d464655..58c7ad00c4 100644
--- a/intersight/model/capability_switch_capability_def_all_of.py
+++ b/intersight/model/capability_switch_capability_def_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/capability_switch_capability_list.py b/intersight/model/capability_switch_capability_list.py
index 8650916921..7f2721cfe3 100644
--- a/intersight/model/capability_switch_capability_list.py
+++ b/intersight/model/capability_switch_capability_list.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/capability_switch_capability_list_all_of.py b/intersight/model/capability_switch_capability_list_all_of.py
index 54db7298ca..1bb7ec54e2 100644
--- a/intersight/model/capability_switch_capability_list_all_of.py
+++ b/intersight/model/capability_switch_capability_list_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/capability_switch_capability_response.py b/intersight/model/capability_switch_capability_response.py
index ce82a9ca32..75d4d44ee0 100644
--- a/intersight/model/capability_switch_capability_response.py
+++ b/intersight/model/capability_switch_capability_response.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/capability_switch_descriptor.py b/intersight/model/capability_switch_descriptor.py
index 1dfb154dab..e1694d75f9 100644
--- a/intersight/model/capability_switch_descriptor.py
+++ b/intersight/model/capability_switch_descriptor.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/capability_switch_descriptor_all_of.py b/intersight/model/capability_switch_descriptor_all_of.py
index 4f3b035877..37431605a0 100644
--- a/intersight/model/capability_switch_descriptor_all_of.py
+++ b/intersight/model/capability_switch_descriptor_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/capability_switch_descriptor_list.py b/intersight/model/capability_switch_descriptor_list.py
index 7b29d88601..02a55bd9fc 100644
--- a/intersight/model/capability_switch_descriptor_list.py
+++ b/intersight/model/capability_switch_descriptor_list.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/capability_switch_descriptor_list_all_of.py b/intersight/model/capability_switch_descriptor_list_all_of.py
index 6854a1914f..634f3ad54d 100644
--- a/intersight/model/capability_switch_descriptor_list_all_of.py
+++ b/intersight/model/capability_switch_descriptor_list_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/capability_switch_descriptor_response.py b/intersight/model/capability_switch_descriptor_response.py
index 1276ac23e0..eafd30377b 100644
--- a/intersight/model/capability_switch_descriptor_response.py
+++ b/intersight/model/capability_switch_descriptor_response.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/capability_switch_manufacturing_def.py b/intersight/model/capability_switch_manufacturing_def.py
index 8083586c5a..de1e07102c 100644
--- a/intersight/model/capability_switch_manufacturing_def.py
+++ b/intersight/model/capability_switch_manufacturing_def.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/capability_switch_manufacturing_def_all_of.py b/intersight/model/capability_switch_manufacturing_def_all_of.py
index a89e6a0855..dd94d58f92 100644
--- a/intersight/model/capability_switch_manufacturing_def_all_of.py
+++ b/intersight/model/capability_switch_manufacturing_def_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/capability_switch_manufacturing_def_list.py b/intersight/model/capability_switch_manufacturing_def_list.py
index c1d4ab46b2..9c22642611 100644
--- a/intersight/model/capability_switch_manufacturing_def_list.py
+++ b/intersight/model/capability_switch_manufacturing_def_list.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/capability_switch_manufacturing_def_list_all_of.py b/intersight/model/capability_switch_manufacturing_def_list_all_of.py
index 8c6718967f..c2768aed4a 100644
--- a/intersight/model/capability_switch_manufacturing_def_list_all_of.py
+++ b/intersight/model/capability_switch_manufacturing_def_list_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/capability_switch_manufacturing_def_response.py b/intersight/model/capability_switch_manufacturing_def_response.py
index 96feb8a588..6b0b1eb21f 100644
--- a/intersight/model/capability_switch_manufacturing_def_response.py
+++ b/intersight/model/capability_switch_manufacturing_def_response.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/capability_switch_network_limits.py b/intersight/model/capability_switch_network_limits.py
index 8ec5a6ba5d..cb0f509ca7 100644
--- a/intersight/model/capability_switch_network_limits.py
+++ b/intersight/model/capability_switch_network_limits.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/capability_switch_network_limits_all_of.py b/intersight/model/capability_switch_network_limits_all_of.py
index 8d44a2d6bf..a3cdf6137e 100644
--- a/intersight/model/capability_switch_network_limits_all_of.py
+++ b/intersight/model/capability_switch_network_limits_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/capability_switch_storage_limits.py b/intersight/model/capability_switch_storage_limits.py
index 5c0fbd7f6e..23fa6291b8 100644
--- a/intersight/model/capability_switch_storage_limits.py
+++ b/intersight/model/capability_switch_storage_limits.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/capability_switch_storage_limits_all_of.py b/intersight/model/capability_switch_storage_limits_all_of.py
index 2f4574a1b3..5eeab60479 100644
--- a/intersight/model/capability_switch_storage_limits_all_of.py
+++ b/intersight/model/capability_switch_storage_limits_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/capability_switch_system_limits.py b/intersight/model/capability_switch_system_limits.py
index fd425780d7..0e0485ecc8 100644
--- a/intersight/model/capability_switch_system_limits.py
+++ b/intersight/model/capability_switch_system_limits.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/capability_switch_system_limits_all_of.py b/intersight/model/capability_switch_system_limits_all_of.py
index 71e2b49c87..30ff63301b 100644
--- a/intersight/model/capability_switch_system_limits_all_of.py
+++ b/intersight/model/capability_switch_system_limits_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/capability_switching_mode_capability.py b/intersight/model/capability_switching_mode_capability.py
index 6206160b5c..0c7b4376bf 100644
--- a/intersight/model/capability_switching_mode_capability.py
+++ b/intersight/model/capability_switching_mode_capability.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/capability_switching_mode_capability_all_of.py b/intersight/model/capability_switching_mode_capability_all_of.py
index 700c5ee289..19481f5058 100644
--- a/intersight/model/capability_switching_mode_capability_all_of.py
+++ b/intersight/model/capability_switching_mode_capability_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/certificatemanagement_certificate_base.py b/intersight/model/certificatemanagement_certificate_base.py
index e6c3afd688..dd1bffa4dc 100644
--- a/intersight/model/certificatemanagement_certificate_base.py
+++ b/intersight/model/certificatemanagement_certificate_base.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/certificatemanagement_certificate_base_all_of.py b/intersight/model/certificatemanagement_certificate_base_all_of.py
index a2bfa0491f..474efb9ed7 100644
--- a/intersight/model/certificatemanagement_certificate_base_all_of.py
+++ b/intersight/model/certificatemanagement_certificate_base_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/certificatemanagement_imc.py b/intersight/model/certificatemanagement_imc.py
index 4e736a101c..695d97077b 100644
--- a/intersight/model/certificatemanagement_imc.py
+++ b/intersight/model/certificatemanagement_imc.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/certificatemanagement_policy.py b/intersight/model/certificatemanagement_policy.py
index 2e4918702f..f0cafa1615 100644
--- a/intersight/model/certificatemanagement_policy.py
+++ b/intersight/model/certificatemanagement_policy.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/certificatemanagement_policy_all_of.py b/intersight/model/certificatemanagement_policy_all_of.py
index 361f90644d..6a1a940c09 100644
--- a/intersight/model/certificatemanagement_policy_all_of.py
+++ b/intersight/model/certificatemanagement_policy_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/certificatemanagement_policy_list.py b/intersight/model/certificatemanagement_policy_list.py
index 75a52d79fd..e71fdb2dbc 100644
--- a/intersight/model/certificatemanagement_policy_list.py
+++ b/intersight/model/certificatemanagement_policy_list.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/certificatemanagement_policy_list_all_of.py b/intersight/model/certificatemanagement_policy_list_all_of.py
index f76a50ab15..6a7bf0dc86 100644
--- a/intersight/model/certificatemanagement_policy_list_all_of.py
+++ b/intersight/model/certificatemanagement_policy_list_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/certificatemanagement_policy_response.py b/intersight/model/certificatemanagement_policy_response.py
index 94527b08ad..cbe1cc0da9 100644
--- a/intersight/model/certificatemanagement_policy_response.py
+++ b/intersight/model/certificatemanagement_policy_response.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/chassis_config_change_detail.py b/intersight/model/chassis_config_change_detail.py
index 58d8c618c9..ba7861c0cd 100644
--- a/intersight/model/chassis_config_change_detail.py
+++ b/intersight/model/chassis_config_change_detail.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/chassis_config_change_detail_all_of.py b/intersight/model/chassis_config_change_detail_all_of.py
index faa52fd151..c8c5f9ecac 100644
--- a/intersight/model/chassis_config_change_detail_all_of.py
+++ b/intersight/model/chassis_config_change_detail_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/chassis_config_change_detail_list.py b/intersight/model/chassis_config_change_detail_list.py
index b4c91e1ba6..0edb937125 100644
--- a/intersight/model/chassis_config_change_detail_list.py
+++ b/intersight/model/chassis_config_change_detail_list.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/chassis_config_change_detail_list_all_of.py b/intersight/model/chassis_config_change_detail_list_all_of.py
index 1ea24ee1dc..336ff4d019 100644
--- a/intersight/model/chassis_config_change_detail_list_all_of.py
+++ b/intersight/model/chassis_config_change_detail_list_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/chassis_config_change_detail_relationship.py b/intersight/model/chassis_config_change_detail_relationship.py
index 8d98134f24..6b7e45c156 100644
--- a/intersight/model/chassis_config_change_detail_relationship.py
+++ b/intersight/model/chassis_config_change_detail_relationship.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
@@ -86,6 +86,8 @@ class ChassisConfigChangeDetailRelationship(ModelComposed):
},
('object_type',): {
'AAA.AUDITRECORD': "aaa.AuditRecord",
+ 'AAA.RETENTIONCONFIG': "aaa.RetentionConfig",
+ 'AAA.RETENTIONPOLICY': "aaa.RetentionPolicy",
'ACCESS.POLICY': "access.Policy",
'ADAPTER.CONFIGPOLICY': "adapter.ConfigPolicy",
'ADAPTER.EXTETHINTERFACE': "adapter.ExtEthInterface",
@@ -102,6 +104,7 @@ class ChassisConfigChangeDetailRelationship(ModelComposed):
'APPLIANCE.DATAEXPORTPOLICY': "appliance.DataExportPolicy",
'APPLIANCE.DEVICECERTIFICATE': "appliance.DeviceCertificate",
'APPLIANCE.DEVICECLAIM': "appliance.DeviceClaim",
+ 'APPLIANCE.DEVICEUPGRADEPOLICY': "appliance.DeviceUpgradePolicy",
'APPLIANCE.DIAGSETTING': "appliance.DiagSetting",
'APPLIANCE.EXTERNALSYSLOGSETTING': "appliance.ExternalSyslogSetting",
'APPLIANCE.FILESYSTEMSTATUS': "appliance.FileSystemStatus",
@@ -150,9 +153,12 @@ class ChassisConfigChangeDetailRelationship(ModelComposed):
'BOOT.UEFISHELLDEVICE': "boot.UefiShellDevice",
'BOOT.USBDEVICE': "boot.UsbDevice",
'BOOT.VMEDIADEVICE': "boot.VmediaDevice",
+ 'BULK.EXPORT': "bulk.Export",
+ 'BULK.EXPORTEDITEM': "bulk.ExportedItem",
'BULK.MOCLONER': "bulk.MoCloner",
'BULK.MOMERGER': "bulk.MoMerger",
'BULK.REQUEST': "bulk.Request",
+ 'BULK.SUBREQUESTOBJ': "bulk.SubRequestObj",
'CAPABILITY.ADAPTERUNITDESCRIPTOR': "capability.AdapterUnitDescriptor",
'CAPABILITY.CATALOG': "capability.Catalog",
'CAPABILITY.CHASSISDESCRIPTOR': "capability.ChassisDescriptor",
@@ -216,10 +222,6 @@ class ChassisConfigChangeDetailRelationship(ModelComposed):
'COND.HCLSTATUS': "cond.HclStatus",
'COND.HCLSTATUSDETAIL': "cond.HclStatusDetail",
'COND.HCLSTATUSJOB': "cond.HclStatusJob",
- 'CONFIG.EXPORTEDITEM': "config.ExportedItem",
- 'CONFIG.EXPORTER': "config.Exporter",
- 'CONFIG.IMPORTEDITEM': "config.ImportedItem",
- 'CONFIG.IMPORTER': "config.Importer",
'CONNECTORPACK.CONNECTORPACKUPGRADE': "connectorpack.ConnectorPackUpgrade",
'CONNECTORPACK.UPGRADEIMPACT': "connectorpack.UpgradeImpact",
'CRD.CUSTOMRESOURCE': "crd.CustomResource",
@@ -228,6 +230,7 @@ class ChassisConfigChangeDetailRelationship(ModelComposed):
'EQUIPMENT.CHASSISIDENTITY': "equipment.ChassisIdentity",
'EQUIPMENT.CHASSISOPERATION': "equipment.ChassisOperation",
'EQUIPMENT.DEVICESUMMARY': "equipment.DeviceSummary",
+ 'EQUIPMENT.EXPANDERMODULE': "equipment.ExpanderModule",
'EQUIPMENT.FAN': "equipment.Fan",
'EQUIPMENT.FANCONTROL': "equipment.FanControl",
'EQUIPMENT.FANMODULE': "equipment.FanModule",
@@ -476,6 +479,7 @@ class ChassisConfigChangeDetailRelationship(ModelComposed):
'KUBERNETES.ADDONDEFINITION': "kubernetes.AddonDefinition",
'KUBERNETES.ADDONPOLICY': "kubernetes.AddonPolicy",
'KUBERNETES.ADDONREPOSITORY': "kubernetes.AddonRepository",
+ 'KUBERNETES.BAREMETALNODEPROFILE': "kubernetes.BaremetalNodeProfile",
'KUBERNETES.CATALOG': "kubernetes.Catalog",
'KUBERNETES.CLUSTER': "kubernetes.Cluster",
'KUBERNETES.CLUSTERADDONPROFILE': "kubernetes.ClusterAddonProfile",
@@ -645,6 +649,11 @@ class ChassisConfigChangeDetailRelationship(ModelComposed):
'RESOURCE.LICENSERESOURCECOUNT': "resource.LicenseResourceCount",
'RESOURCE.MEMBERSHIP': "resource.Membership",
'RESOURCE.MEMBERSHIPHOLDER': "resource.MembershipHolder",
+ 'RESOURCEPOOL.LEASE': "resourcepool.Lease",
+ 'RESOURCEPOOL.LEASERESOURCE': "resourcepool.LeaseResource",
+ 'RESOURCEPOOL.POOL': "resourcepool.Pool",
+ 'RESOURCEPOOL.POOLMEMBER': "resourcepool.PoolMember",
+ 'RESOURCEPOOL.UNIVERSE': "resourcepool.Universe",
'RPROXY.REVERSEPROXY': "rproxy.ReverseProxy",
'SDCARD.POLICY': "sdcard.Policy",
'SDWAN.PROFILE': "sdwan.Profile",
@@ -760,6 +769,7 @@ class ChassisConfigChangeDetailRelationship(ModelComposed):
'TASK.NETAPPSCOPEDINVENTORY': "task.NetAppScopedInventory",
'TASK.PUBLICCLOUDSCOPEDINVENTORY': "task.PublicCloudScopedInventory",
'TASK.PURESCOPEDINVENTORY': "task.PureScopedInventory",
+ 'TASK.SERVERSCOPEDINVENTORY': "task.ServerScopedInventory",
'TECHSUPPORTMANAGEMENT.COLLECTIONCONTROLPOLICY': "techsupportmanagement.CollectionControlPolicy",
'TECHSUPPORTMANAGEMENT.DOWNLOAD': "techsupportmanagement.Download",
'TECHSUPPORTMANAGEMENT.TECHSUPPORTBUNDLE': "techsupportmanagement.TechSupportBundle",
@@ -791,6 +801,7 @@ class ChassisConfigChangeDetailRelationship(ModelComposed):
'VIRTUALIZATION.VMWAREVCENTER': "virtualization.VmwareVcenter",
'VIRTUALIZATION.VMWAREVIRTUALDISK': "virtualization.VmwareVirtualDisk",
'VIRTUALIZATION.VMWAREVIRTUALMACHINE': "virtualization.VmwareVirtualMachine",
+ 'VIRTUALIZATION.VMWAREVIRTUALMACHINESNAPSHOT': "virtualization.VmwareVirtualMachineSnapshot",
'VIRTUALIZATION.VMWAREVIRTUALNETWORKINTERFACE': "virtualization.VmwareVirtualNetworkInterface",
'VIRTUALIZATION.VMWAREVIRTUALSWITCH': "virtualization.VmwareVirtualSwitch",
'VMEDIA.POLICY': "vmedia.Policy",
@@ -823,12 +834,14 @@ class ChassisConfigChangeDetailRelationship(ModelComposed):
'WORKFLOW.TASKDEFINITION': "workflow.TaskDefinition",
'WORKFLOW.TASKINFO': "workflow.TaskInfo",
'WORKFLOW.TASKMETADATA': "workflow.TaskMetadata",
+ 'WORKFLOW.TASKNOTIFICATION': "workflow.TaskNotification",
'WORKFLOW.TEMPLATEEVALUATION': "workflow.TemplateEvaluation",
'WORKFLOW.TEMPLATEFUNCTIONMETA': "workflow.TemplateFunctionMeta",
'WORKFLOW.WORKFLOWDEFINITION': "workflow.WorkflowDefinition",
'WORKFLOW.WORKFLOWINFO': "workflow.WorkflowInfo",
'WORKFLOW.WORKFLOWMETA': "workflow.WorkflowMeta",
'WORKFLOW.WORKFLOWMETADATA': "workflow.WorkflowMetadata",
+ 'WORKFLOW.WORKFLOWNOTIFICATION': "workflow.WorkflowNotification",
},
}
diff --git a/intersight/model/chassis_config_change_detail_response.py b/intersight/model/chassis_config_change_detail_response.py
index bbb4a2ca2c..efecbe5ff2 100644
--- a/intersight/model/chassis_config_change_detail_response.py
+++ b/intersight/model/chassis_config_change_detail_response.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/chassis_config_import.py b/intersight/model/chassis_config_import.py
index 714d3a61b3..c90022e279 100644
--- a/intersight/model/chassis_config_import.py
+++ b/intersight/model/chassis_config_import.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/chassis_config_import_all_of.py b/intersight/model/chassis_config_import_all_of.py
index f9c2d21533..dff7f91f0f 100644
--- a/intersight/model/chassis_config_import_all_of.py
+++ b/intersight/model/chassis_config_import_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/chassis_config_import_list.py b/intersight/model/chassis_config_import_list.py
index 07c55fa9cf..c352f5862e 100644
--- a/intersight/model/chassis_config_import_list.py
+++ b/intersight/model/chassis_config_import_list.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/chassis_config_import_list_all_of.py b/intersight/model/chassis_config_import_list_all_of.py
index 1c35b3cdd6..e07a36d0aa 100644
--- a/intersight/model/chassis_config_import_list_all_of.py
+++ b/intersight/model/chassis_config_import_list_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/chassis_config_import_response.py b/intersight/model/chassis_config_import_response.py
index b3d07be026..0a81477306 100644
--- a/intersight/model/chassis_config_import_response.py
+++ b/intersight/model/chassis_config_import_response.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/chassis_config_result.py b/intersight/model/chassis_config_result.py
index f25c5f431a..cadaeb2402 100644
--- a/intersight/model/chassis_config_result.py
+++ b/intersight/model/chassis_config_result.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/chassis_config_result_all_of.py b/intersight/model/chassis_config_result_all_of.py
index 890ec9cbec..dea0a07f1c 100644
--- a/intersight/model/chassis_config_result_all_of.py
+++ b/intersight/model/chassis_config_result_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/chassis_config_result_entry.py b/intersight/model/chassis_config_result_entry.py
index 5c6b8b57fd..66c85d4f8c 100644
--- a/intersight/model/chassis_config_result_entry.py
+++ b/intersight/model/chassis_config_result_entry.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/chassis_config_result_entry_all_of.py b/intersight/model/chassis_config_result_entry_all_of.py
index df599be95e..3e33d538ca 100644
--- a/intersight/model/chassis_config_result_entry_all_of.py
+++ b/intersight/model/chassis_config_result_entry_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/chassis_config_result_entry_list.py b/intersight/model/chassis_config_result_entry_list.py
index fc6939e95f..1505315dc0 100644
--- a/intersight/model/chassis_config_result_entry_list.py
+++ b/intersight/model/chassis_config_result_entry_list.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/chassis_config_result_entry_list_all_of.py b/intersight/model/chassis_config_result_entry_list_all_of.py
index 3e5b654ab4..2cacbe2d5b 100644
--- a/intersight/model/chassis_config_result_entry_list_all_of.py
+++ b/intersight/model/chassis_config_result_entry_list_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/chassis_config_result_entry_relationship.py b/intersight/model/chassis_config_result_entry_relationship.py
index a2fecc0560..690e6278ee 100644
--- a/intersight/model/chassis_config_result_entry_relationship.py
+++ b/intersight/model/chassis_config_result_entry_relationship.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
@@ -76,6 +76,8 @@ class ChassisConfigResultEntryRelationship(ModelComposed):
},
('object_type',): {
'AAA.AUDITRECORD': "aaa.AuditRecord",
+ 'AAA.RETENTIONCONFIG': "aaa.RetentionConfig",
+ 'AAA.RETENTIONPOLICY': "aaa.RetentionPolicy",
'ACCESS.POLICY': "access.Policy",
'ADAPTER.CONFIGPOLICY': "adapter.ConfigPolicy",
'ADAPTER.EXTETHINTERFACE': "adapter.ExtEthInterface",
@@ -92,6 +94,7 @@ class ChassisConfigResultEntryRelationship(ModelComposed):
'APPLIANCE.DATAEXPORTPOLICY': "appliance.DataExportPolicy",
'APPLIANCE.DEVICECERTIFICATE': "appliance.DeviceCertificate",
'APPLIANCE.DEVICECLAIM': "appliance.DeviceClaim",
+ 'APPLIANCE.DEVICEUPGRADEPOLICY': "appliance.DeviceUpgradePolicy",
'APPLIANCE.DIAGSETTING': "appliance.DiagSetting",
'APPLIANCE.EXTERNALSYSLOGSETTING': "appliance.ExternalSyslogSetting",
'APPLIANCE.FILESYSTEMSTATUS': "appliance.FileSystemStatus",
@@ -140,9 +143,12 @@ class ChassisConfigResultEntryRelationship(ModelComposed):
'BOOT.UEFISHELLDEVICE': "boot.UefiShellDevice",
'BOOT.USBDEVICE': "boot.UsbDevice",
'BOOT.VMEDIADEVICE': "boot.VmediaDevice",
+ 'BULK.EXPORT': "bulk.Export",
+ 'BULK.EXPORTEDITEM': "bulk.ExportedItem",
'BULK.MOCLONER': "bulk.MoCloner",
'BULK.MOMERGER': "bulk.MoMerger",
'BULK.REQUEST': "bulk.Request",
+ 'BULK.SUBREQUESTOBJ': "bulk.SubRequestObj",
'CAPABILITY.ADAPTERUNITDESCRIPTOR': "capability.AdapterUnitDescriptor",
'CAPABILITY.CATALOG': "capability.Catalog",
'CAPABILITY.CHASSISDESCRIPTOR': "capability.ChassisDescriptor",
@@ -206,10 +212,6 @@ class ChassisConfigResultEntryRelationship(ModelComposed):
'COND.HCLSTATUS': "cond.HclStatus",
'COND.HCLSTATUSDETAIL': "cond.HclStatusDetail",
'COND.HCLSTATUSJOB': "cond.HclStatusJob",
- 'CONFIG.EXPORTEDITEM': "config.ExportedItem",
- 'CONFIG.EXPORTER': "config.Exporter",
- 'CONFIG.IMPORTEDITEM': "config.ImportedItem",
- 'CONFIG.IMPORTER': "config.Importer",
'CONNECTORPACK.CONNECTORPACKUPGRADE': "connectorpack.ConnectorPackUpgrade",
'CONNECTORPACK.UPGRADEIMPACT': "connectorpack.UpgradeImpact",
'CRD.CUSTOMRESOURCE': "crd.CustomResource",
@@ -218,6 +220,7 @@ class ChassisConfigResultEntryRelationship(ModelComposed):
'EQUIPMENT.CHASSISIDENTITY': "equipment.ChassisIdentity",
'EQUIPMENT.CHASSISOPERATION': "equipment.ChassisOperation",
'EQUIPMENT.DEVICESUMMARY': "equipment.DeviceSummary",
+ 'EQUIPMENT.EXPANDERMODULE': "equipment.ExpanderModule",
'EQUIPMENT.FAN': "equipment.Fan",
'EQUIPMENT.FANCONTROL': "equipment.FanControl",
'EQUIPMENT.FANMODULE': "equipment.FanModule",
@@ -466,6 +469,7 @@ class ChassisConfigResultEntryRelationship(ModelComposed):
'KUBERNETES.ADDONDEFINITION': "kubernetes.AddonDefinition",
'KUBERNETES.ADDONPOLICY': "kubernetes.AddonPolicy",
'KUBERNETES.ADDONREPOSITORY': "kubernetes.AddonRepository",
+ 'KUBERNETES.BAREMETALNODEPROFILE': "kubernetes.BaremetalNodeProfile",
'KUBERNETES.CATALOG': "kubernetes.Catalog",
'KUBERNETES.CLUSTER': "kubernetes.Cluster",
'KUBERNETES.CLUSTERADDONPROFILE': "kubernetes.ClusterAddonProfile",
@@ -635,6 +639,11 @@ class ChassisConfigResultEntryRelationship(ModelComposed):
'RESOURCE.LICENSERESOURCECOUNT': "resource.LicenseResourceCount",
'RESOURCE.MEMBERSHIP': "resource.Membership",
'RESOURCE.MEMBERSHIPHOLDER': "resource.MembershipHolder",
+ 'RESOURCEPOOL.LEASE': "resourcepool.Lease",
+ 'RESOURCEPOOL.LEASERESOURCE': "resourcepool.LeaseResource",
+ 'RESOURCEPOOL.POOL': "resourcepool.Pool",
+ 'RESOURCEPOOL.POOLMEMBER': "resourcepool.PoolMember",
+ 'RESOURCEPOOL.UNIVERSE': "resourcepool.Universe",
'RPROXY.REVERSEPROXY': "rproxy.ReverseProxy",
'SDCARD.POLICY': "sdcard.Policy",
'SDWAN.PROFILE': "sdwan.Profile",
@@ -750,6 +759,7 @@ class ChassisConfigResultEntryRelationship(ModelComposed):
'TASK.NETAPPSCOPEDINVENTORY': "task.NetAppScopedInventory",
'TASK.PUBLICCLOUDSCOPEDINVENTORY': "task.PublicCloudScopedInventory",
'TASK.PURESCOPEDINVENTORY': "task.PureScopedInventory",
+ 'TASK.SERVERSCOPEDINVENTORY': "task.ServerScopedInventory",
'TECHSUPPORTMANAGEMENT.COLLECTIONCONTROLPOLICY': "techsupportmanagement.CollectionControlPolicy",
'TECHSUPPORTMANAGEMENT.DOWNLOAD': "techsupportmanagement.Download",
'TECHSUPPORTMANAGEMENT.TECHSUPPORTBUNDLE': "techsupportmanagement.TechSupportBundle",
@@ -781,6 +791,7 @@ class ChassisConfigResultEntryRelationship(ModelComposed):
'VIRTUALIZATION.VMWAREVCENTER': "virtualization.VmwareVcenter",
'VIRTUALIZATION.VMWAREVIRTUALDISK': "virtualization.VmwareVirtualDisk",
'VIRTUALIZATION.VMWAREVIRTUALMACHINE': "virtualization.VmwareVirtualMachine",
+ 'VIRTUALIZATION.VMWAREVIRTUALMACHINESNAPSHOT': "virtualization.VmwareVirtualMachineSnapshot",
'VIRTUALIZATION.VMWAREVIRTUALNETWORKINTERFACE': "virtualization.VmwareVirtualNetworkInterface",
'VIRTUALIZATION.VMWAREVIRTUALSWITCH': "virtualization.VmwareVirtualSwitch",
'VMEDIA.POLICY': "vmedia.Policy",
@@ -813,12 +824,14 @@ class ChassisConfigResultEntryRelationship(ModelComposed):
'WORKFLOW.TASKDEFINITION': "workflow.TaskDefinition",
'WORKFLOW.TASKINFO': "workflow.TaskInfo",
'WORKFLOW.TASKMETADATA': "workflow.TaskMetadata",
+ 'WORKFLOW.TASKNOTIFICATION': "workflow.TaskNotification",
'WORKFLOW.TEMPLATEEVALUATION': "workflow.TemplateEvaluation",
'WORKFLOW.TEMPLATEFUNCTIONMETA': "workflow.TemplateFunctionMeta",
'WORKFLOW.WORKFLOWDEFINITION': "workflow.WorkflowDefinition",
'WORKFLOW.WORKFLOWINFO': "workflow.WorkflowInfo",
'WORKFLOW.WORKFLOWMETA': "workflow.WorkflowMeta",
'WORKFLOW.WORKFLOWMETADATA': "workflow.WorkflowMetadata",
+ 'WORKFLOW.WORKFLOWNOTIFICATION': "workflow.WorkflowNotification",
},
}
diff --git a/intersight/model/chassis_config_result_entry_response.py b/intersight/model/chassis_config_result_entry_response.py
index aaedf52ffa..ef72cb35a3 100644
--- a/intersight/model/chassis_config_result_entry_response.py
+++ b/intersight/model/chassis_config_result_entry_response.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/chassis_config_result_list.py b/intersight/model/chassis_config_result_list.py
index 3c4c54e4d8..255a4147e4 100644
--- a/intersight/model/chassis_config_result_list.py
+++ b/intersight/model/chassis_config_result_list.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/chassis_config_result_list_all_of.py b/intersight/model/chassis_config_result_list_all_of.py
index ea1a974a20..3181951adb 100644
--- a/intersight/model/chassis_config_result_list_all_of.py
+++ b/intersight/model/chassis_config_result_list_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/chassis_config_result_relationship.py b/intersight/model/chassis_config_result_relationship.py
index ff1e23fc10..c46453da8a 100644
--- a/intersight/model/chassis_config_result_relationship.py
+++ b/intersight/model/chassis_config_result_relationship.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
@@ -76,6 +76,8 @@ class ChassisConfigResultRelationship(ModelComposed):
},
('object_type',): {
'AAA.AUDITRECORD': "aaa.AuditRecord",
+ 'AAA.RETENTIONCONFIG': "aaa.RetentionConfig",
+ 'AAA.RETENTIONPOLICY': "aaa.RetentionPolicy",
'ACCESS.POLICY': "access.Policy",
'ADAPTER.CONFIGPOLICY': "adapter.ConfigPolicy",
'ADAPTER.EXTETHINTERFACE': "adapter.ExtEthInterface",
@@ -92,6 +94,7 @@ class ChassisConfigResultRelationship(ModelComposed):
'APPLIANCE.DATAEXPORTPOLICY': "appliance.DataExportPolicy",
'APPLIANCE.DEVICECERTIFICATE': "appliance.DeviceCertificate",
'APPLIANCE.DEVICECLAIM': "appliance.DeviceClaim",
+ 'APPLIANCE.DEVICEUPGRADEPOLICY': "appliance.DeviceUpgradePolicy",
'APPLIANCE.DIAGSETTING': "appliance.DiagSetting",
'APPLIANCE.EXTERNALSYSLOGSETTING': "appliance.ExternalSyslogSetting",
'APPLIANCE.FILESYSTEMSTATUS': "appliance.FileSystemStatus",
@@ -140,9 +143,12 @@ class ChassisConfigResultRelationship(ModelComposed):
'BOOT.UEFISHELLDEVICE': "boot.UefiShellDevice",
'BOOT.USBDEVICE': "boot.UsbDevice",
'BOOT.VMEDIADEVICE': "boot.VmediaDevice",
+ 'BULK.EXPORT': "bulk.Export",
+ 'BULK.EXPORTEDITEM': "bulk.ExportedItem",
'BULK.MOCLONER': "bulk.MoCloner",
'BULK.MOMERGER': "bulk.MoMerger",
'BULK.REQUEST': "bulk.Request",
+ 'BULK.SUBREQUESTOBJ': "bulk.SubRequestObj",
'CAPABILITY.ADAPTERUNITDESCRIPTOR': "capability.AdapterUnitDescriptor",
'CAPABILITY.CATALOG': "capability.Catalog",
'CAPABILITY.CHASSISDESCRIPTOR': "capability.ChassisDescriptor",
@@ -206,10 +212,6 @@ class ChassisConfigResultRelationship(ModelComposed):
'COND.HCLSTATUS': "cond.HclStatus",
'COND.HCLSTATUSDETAIL': "cond.HclStatusDetail",
'COND.HCLSTATUSJOB': "cond.HclStatusJob",
- 'CONFIG.EXPORTEDITEM': "config.ExportedItem",
- 'CONFIG.EXPORTER': "config.Exporter",
- 'CONFIG.IMPORTEDITEM': "config.ImportedItem",
- 'CONFIG.IMPORTER': "config.Importer",
'CONNECTORPACK.CONNECTORPACKUPGRADE': "connectorpack.ConnectorPackUpgrade",
'CONNECTORPACK.UPGRADEIMPACT': "connectorpack.UpgradeImpact",
'CRD.CUSTOMRESOURCE': "crd.CustomResource",
@@ -218,6 +220,7 @@ class ChassisConfigResultRelationship(ModelComposed):
'EQUIPMENT.CHASSISIDENTITY': "equipment.ChassisIdentity",
'EQUIPMENT.CHASSISOPERATION': "equipment.ChassisOperation",
'EQUIPMENT.DEVICESUMMARY': "equipment.DeviceSummary",
+ 'EQUIPMENT.EXPANDERMODULE': "equipment.ExpanderModule",
'EQUIPMENT.FAN': "equipment.Fan",
'EQUIPMENT.FANCONTROL': "equipment.FanControl",
'EQUIPMENT.FANMODULE': "equipment.FanModule",
@@ -466,6 +469,7 @@ class ChassisConfigResultRelationship(ModelComposed):
'KUBERNETES.ADDONDEFINITION': "kubernetes.AddonDefinition",
'KUBERNETES.ADDONPOLICY': "kubernetes.AddonPolicy",
'KUBERNETES.ADDONREPOSITORY': "kubernetes.AddonRepository",
+ 'KUBERNETES.BAREMETALNODEPROFILE': "kubernetes.BaremetalNodeProfile",
'KUBERNETES.CATALOG': "kubernetes.Catalog",
'KUBERNETES.CLUSTER': "kubernetes.Cluster",
'KUBERNETES.CLUSTERADDONPROFILE': "kubernetes.ClusterAddonProfile",
@@ -635,6 +639,11 @@ class ChassisConfigResultRelationship(ModelComposed):
'RESOURCE.LICENSERESOURCECOUNT': "resource.LicenseResourceCount",
'RESOURCE.MEMBERSHIP': "resource.Membership",
'RESOURCE.MEMBERSHIPHOLDER': "resource.MembershipHolder",
+ 'RESOURCEPOOL.LEASE': "resourcepool.Lease",
+ 'RESOURCEPOOL.LEASERESOURCE': "resourcepool.LeaseResource",
+ 'RESOURCEPOOL.POOL': "resourcepool.Pool",
+ 'RESOURCEPOOL.POOLMEMBER': "resourcepool.PoolMember",
+ 'RESOURCEPOOL.UNIVERSE': "resourcepool.Universe",
'RPROXY.REVERSEPROXY': "rproxy.ReverseProxy",
'SDCARD.POLICY': "sdcard.Policy",
'SDWAN.PROFILE': "sdwan.Profile",
@@ -750,6 +759,7 @@ class ChassisConfigResultRelationship(ModelComposed):
'TASK.NETAPPSCOPEDINVENTORY': "task.NetAppScopedInventory",
'TASK.PUBLICCLOUDSCOPEDINVENTORY': "task.PublicCloudScopedInventory",
'TASK.PURESCOPEDINVENTORY': "task.PureScopedInventory",
+ 'TASK.SERVERSCOPEDINVENTORY': "task.ServerScopedInventory",
'TECHSUPPORTMANAGEMENT.COLLECTIONCONTROLPOLICY': "techsupportmanagement.CollectionControlPolicy",
'TECHSUPPORTMANAGEMENT.DOWNLOAD': "techsupportmanagement.Download",
'TECHSUPPORTMANAGEMENT.TECHSUPPORTBUNDLE': "techsupportmanagement.TechSupportBundle",
@@ -781,6 +791,7 @@ class ChassisConfigResultRelationship(ModelComposed):
'VIRTUALIZATION.VMWAREVCENTER': "virtualization.VmwareVcenter",
'VIRTUALIZATION.VMWAREVIRTUALDISK': "virtualization.VmwareVirtualDisk",
'VIRTUALIZATION.VMWAREVIRTUALMACHINE': "virtualization.VmwareVirtualMachine",
+ 'VIRTUALIZATION.VMWAREVIRTUALMACHINESNAPSHOT': "virtualization.VmwareVirtualMachineSnapshot",
'VIRTUALIZATION.VMWAREVIRTUALNETWORKINTERFACE': "virtualization.VmwareVirtualNetworkInterface",
'VIRTUALIZATION.VMWAREVIRTUALSWITCH': "virtualization.VmwareVirtualSwitch",
'VMEDIA.POLICY': "vmedia.Policy",
@@ -813,12 +824,14 @@ class ChassisConfigResultRelationship(ModelComposed):
'WORKFLOW.TASKDEFINITION': "workflow.TaskDefinition",
'WORKFLOW.TASKINFO': "workflow.TaskInfo",
'WORKFLOW.TASKMETADATA': "workflow.TaskMetadata",
+ 'WORKFLOW.TASKNOTIFICATION': "workflow.TaskNotification",
'WORKFLOW.TEMPLATEEVALUATION': "workflow.TemplateEvaluation",
'WORKFLOW.TEMPLATEFUNCTIONMETA': "workflow.TemplateFunctionMeta",
'WORKFLOW.WORKFLOWDEFINITION': "workflow.WorkflowDefinition",
'WORKFLOW.WORKFLOWINFO': "workflow.WorkflowInfo",
'WORKFLOW.WORKFLOWMETA': "workflow.WorkflowMeta",
'WORKFLOW.WORKFLOWMETADATA': "workflow.WorkflowMetadata",
+ 'WORKFLOW.WORKFLOWNOTIFICATION': "workflow.WorkflowNotification",
},
}
diff --git a/intersight/model/chassis_config_result_response.py b/intersight/model/chassis_config_result_response.py
index a3f9a0ea9e..caf88f3ae3 100644
--- a/intersight/model/chassis_config_result_response.py
+++ b/intersight/model/chassis_config_result_response.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/chassis_iom_profile.py b/intersight/model/chassis_iom_profile.py
index 81291eab5c..64c65c76d6 100644
--- a/intersight/model/chassis_iom_profile.py
+++ b/intersight/model/chassis_iom_profile.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/chassis_iom_profile_all_of.py b/intersight/model/chassis_iom_profile_all_of.py
index ae2e5bb507..898a637281 100644
--- a/intersight/model/chassis_iom_profile_all_of.py
+++ b/intersight/model/chassis_iom_profile_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/chassis_iom_profile_list.py b/intersight/model/chassis_iom_profile_list.py
index 487299054c..26ac47d75b 100644
--- a/intersight/model/chassis_iom_profile_list.py
+++ b/intersight/model/chassis_iom_profile_list.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/chassis_iom_profile_list_all_of.py b/intersight/model/chassis_iom_profile_list_all_of.py
index e600c6b46e..0fdc8c247e 100644
--- a/intersight/model/chassis_iom_profile_list_all_of.py
+++ b/intersight/model/chassis_iom_profile_list_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/chassis_iom_profile_relationship.py b/intersight/model/chassis_iom_profile_relationship.py
index 2b119e61f5..b8fda54bdb 100644
--- a/intersight/model/chassis_iom_profile_relationship.py
+++ b/intersight/model/chassis_iom_profile_relationship.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
@@ -91,6 +91,8 @@ class ChassisIomProfileRelationship(ModelComposed):
},
('object_type',): {
'AAA.AUDITRECORD': "aaa.AuditRecord",
+ 'AAA.RETENTIONCONFIG': "aaa.RetentionConfig",
+ 'AAA.RETENTIONPOLICY': "aaa.RetentionPolicy",
'ACCESS.POLICY': "access.Policy",
'ADAPTER.CONFIGPOLICY': "adapter.ConfigPolicy",
'ADAPTER.EXTETHINTERFACE': "adapter.ExtEthInterface",
@@ -107,6 +109,7 @@ class ChassisIomProfileRelationship(ModelComposed):
'APPLIANCE.DATAEXPORTPOLICY': "appliance.DataExportPolicy",
'APPLIANCE.DEVICECERTIFICATE': "appliance.DeviceCertificate",
'APPLIANCE.DEVICECLAIM': "appliance.DeviceClaim",
+ 'APPLIANCE.DEVICEUPGRADEPOLICY': "appliance.DeviceUpgradePolicy",
'APPLIANCE.DIAGSETTING': "appliance.DiagSetting",
'APPLIANCE.EXTERNALSYSLOGSETTING': "appliance.ExternalSyslogSetting",
'APPLIANCE.FILESYSTEMSTATUS': "appliance.FileSystemStatus",
@@ -155,9 +158,12 @@ class ChassisIomProfileRelationship(ModelComposed):
'BOOT.UEFISHELLDEVICE': "boot.UefiShellDevice",
'BOOT.USBDEVICE': "boot.UsbDevice",
'BOOT.VMEDIADEVICE': "boot.VmediaDevice",
+ 'BULK.EXPORT': "bulk.Export",
+ 'BULK.EXPORTEDITEM': "bulk.ExportedItem",
'BULK.MOCLONER': "bulk.MoCloner",
'BULK.MOMERGER': "bulk.MoMerger",
'BULK.REQUEST': "bulk.Request",
+ 'BULK.SUBREQUESTOBJ': "bulk.SubRequestObj",
'CAPABILITY.ADAPTERUNITDESCRIPTOR': "capability.AdapterUnitDescriptor",
'CAPABILITY.CATALOG': "capability.Catalog",
'CAPABILITY.CHASSISDESCRIPTOR': "capability.ChassisDescriptor",
@@ -221,10 +227,6 @@ class ChassisIomProfileRelationship(ModelComposed):
'COND.HCLSTATUS': "cond.HclStatus",
'COND.HCLSTATUSDETAIL': "cond.HclStatusDetail",
'COND.HCLSTATUSJOB': "cond.HclStatusJob",
- 'CONFIG.EXPORTEDITEM': "config.ExportedItem",
- 'CONFIG.EXPORTER': "config.Exporter",
- 'CONFIG.IMPORTEDITEM': "config.ImportedItem",
- 'CONFIG.IMPORTER': "config.Importer",
'CONNECTORPACK.CONNECTORPACKUPGRADE': "connectorpack.ConnectorPackUpgrade",
'CONNECTORPACK.UPGRADEIMPACT': "connectorpack.UpgradeImpact",
'CRD.CUSTOMRESOURCE': "crd.CustomResource",
@@ -233,6 +235,7 @@ class ChassisIomProfileRelationship(ModelComposed):
'EQUIPMENT.CHASSISIDENTITY': "equipment.ChassisIdentity",
'EQUIPMENT.CHASSISOPERATION': "equipment.ChassisOperation",
'EQUIPMENT.DEVICESUMMARY': "equipment.DeviceSummary",
+ 'EQUIPMENT.EXPANDERMODULE': "equipment.ExpanderModule",
'EQUIPMENT.FAN': "equipment.Fan",
'EQUIPMENT.FANCONTROL': "equipment.FanControl",
'EQUIPMENT.FANMODULE': "equipment.FanModule",
@@ -481,6 +484,7 @@ class ChassisIomProfileRelationship(ModelComposed):
'KUBERNETES.ADDONDEFINITION': "kubernetes.AddonDefinition",
'KUBERNETES.ADDONPOLICY': "kubernetes.AddonPolicy",
'KUBERNETES.ADDONREPOSITORY': "kubernetes.AddonRepository",
+ 'KUBERNETES.BAREMETALNODEPROFILE': "kubernetes.BaremetalNodeProfile",
'KUBERNETES.CATALOG': "kubernetes.Catalog",
'KUBERNETES.CLUSTER': "kubernetes.Cluster",
'KUBERNETES.CLUSTERADDONPROFILE': "kubernetes.ClusterAddonProfile",
@@ -650,6 +654,11 @@ class ChassisIomProfileRelationship(ModelComposed):
'RESOURCE.LICENSERESOURCECOUNT': "resource.LicenseResourceCount",
'RESOURCE.MEMBERSHIP': "resource.Membership",
'RESOURCE.MEMBERSHIPHOLDER': "resource.MembershipHolder",
+ 'RESOURCEPOOL.LEASE': "resourcepool.Lease",
+ 'RESOURCEPOOL.LEASERESOURCE': "resourcepool.LeaseResource",
+ 'RESOURCEPOOL.POOL': "resourcepool.Pool",
+ 'RESOURCEPOOL.POOLMEMBER': "resourcepool.PoolMember",
+ 'RESOURCEPOOL.UNIVERSE': "resourcepool.Universe",
'RPROXY.REVERSEPROXY': "rproxy.ReverseProxy",
'SDCARD.POLICY': "sdcard.Policy",
'SDWAN.PROFILE': "sdwan.Profile",
@@ -765,6 +774,7 @@ class ChassisIomProfileRelationship(ModelComposed):
'TASK.NETAPPSCOPEDINVENTORY': "task.NetAppScopedInventory",
'TASK.PUBLICCLOUDSCOPEDINVENTORY': "task.PublicCloudScopedInventory",
'TASK.PURESCOPEDINVENTORY': "task.PureScopedInventory",
+ 'TASK.SERVERSCOPEDINVENTORY': "task.ServerScopedInventory",
'TECHSUPPORTMANAGEMENT.COLLECTIONCONTROLPOLICY': "techsupportmanagement.CollectionControlPolicy",
'TECHSUPPORTMANAGEMENT.DOWNLOAD': "techsupportmanagement.Download",
'TECHSUPPORTMANAGEMENT.TECHSUPPORTBUNDLE': "techsupportmanagement.TechSupportBundle",
@@ -796,6 +806,7 @@ class ChassisIomProfileRelationship(ModelComposed):
'VIRTUALIZATION.VMWAREVCENTER': "virtualization.VmwareVcenter",
'VIRTUALIZATION.VMWAREVIRTUALDISK': "virtualization.VmwareVirtualDisk",
'VIRTUALIZATION.VMWAREVIRTUALMACHINE': "virtualization.VmwareVirtualMachine",
+ 'VIRTUALIZATION.VMWAREVIRTUALMACHINESNAPSHOT': "virtualization.VmwareVirtualMachineSnapshot",
'VIRTUALIZATION.VMWAREVIRTUALNETWORKINTERFACE': "virtualization.VmwareVirtualNetworkInterface",
'VIRTUALIZATION.VMWAREVIRTUALSWITCH': "virtualization.VmwareVirtualSwitch",
'VMEDIA.POLICY': "vmedia.Policy",
@@ -828,12 +839,14 @@ class ChassisIomProfileRelationship(ModelComposed):
'WORKFLOW.TASKDEFINITION': "workflow.TaskDefinition",
'WORKFLOW.TASKINFO': "workflow.TaskInfo",
'WORKFLOW.TASKMETADATA': "workflow.TaskMetadata",
+ 'WORKFLOW.TASKNOTIFICATION': "workflow.TaskNotification",
'WORKFLOW.TEMPLATEEVALUATION': "workflow.TemplateEvaluation",
'WORKFLOW.TEMPLATEFUNCTIONMETA': "workflow.TemplateFunctionMeta",
'WORKFLOW.WORKFLOWDEFINITION': "workflow.WorkflowDefinition",
'WORKFLOW.WORKFLOWINFO': "workflow.WorkflowInfo",
'WORKFLOW.WORKFLOWMETA': "workflow.WorkflowMeta",
'WORKFLOW.WORKFLOWMETADATA': "workflow.WorkflowMetadata",
+ 'WORKFLOW.WORKFLOWNOTIFICATION': "workflow.WorkflowNotification",
},
}
diff --git a/intersight/model/chassis_iom_profile_response.py b/intersight/model/chassis_iom_profile_response.py
index 0f6ec0a148..df490b11d2 100644
--- a/intersight/model/chassis_iom_profile_response.py
+++ b/intersight/model/chassis_iom_profile_response.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/chassis_profile.py b/intersight/model/chassis_profile.py
index 42a9d35aff..ff6af07b3b 100644
--- a/intersight/model/chassis_profile.py
+++ b/intersight/model/chassis_profile.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/chassis_profile_all_of.py b/intersight/model/chassis_profile_all_of.py
index 5b13054463..4ae4aeb634 100644
--- a/intersight/model/chassis_profile_all_of.py
+++ b/intersight/model/chassis_profile_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/chassis_profile_list.py b/intersight/model/chassis_profile_list.py
index 6d01025055..2430039fb8 100644
--- a/intersight/model/chassis_profile_list.py
+++ b/intersight/model/chassis_profile_list.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/chassis_profile_list_all_of.py b/intersight/model/chassis_profile_list_all_of.py
index 7cd2c8d309..34da4afae6 100644
--- a/intersight/model/chassis_profile_list_all_of.py
+++ b/intersight/model/chassis_profile_list_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/chassis_profile_relationship.py b/intersight/model/chassis_profile_relationship.py
index 44f5a492ef..b0d8d5cbc3 100644
--- a/intersight/model/chassis_profile_relationship.py
+++ b/intersight/model/chassis_profile_relationship.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
@@ -98,6 +98,8 @@ class ChassisProfileRelationship(ModelComposed):
},
('object_type',): {
'AAA.AUDITRECORD': "aaa.AuditRecord",
+ 'AAA.RETENTIONCONFIG': "aaa.RetentionConfig",
+ 'AAA.RETENTIONPOLICY': "aaa.RetentionPolicy",
'ACCESS.POLICY': "access.Policy",
'ADAPTER.CONFIGPOLICY': "adapter.ConfigPolicy",
'ADAPTER.EXTETHINTERFACE': "adapter.ExtEthInterface",
@@ -114,6 +116,7 @@ class ChassisProfileRelationship(ModelComposed):
'APPLIANCE.DATAEXPORTPOLICY': "appliance.DataExportPolicy",
'APPLIANCE.DEVICECERTIFICATE': "appliance.DeviceCertificate",
'APPLIANCE.DEVICECLAIM': "appliance.DeviceClaim",
+ 'APPLIANCE.DEVICEUPGRADEPOLICY': "appliance.DeviceUpgradePolicy",
'APPLIANCE.DIAGSETTING': "appliance.DiagSetting",
'APPLIANCE.EXTERNALSYSLOGSETTING': "appliance.ExternalSyslogSetting",
'APPLIANCE.FILESYSTEMSTATUS': "appliance.FileSystemStatus",
@@ -162,9 +165,12 @@ class ChassisProfileRelationship(ModelComposed):
'BOOT.UEFISHELLDEVICE': "boot.UefiShellDevice",
'BOOT.USBDEVICE': "boot.UsbDevice",
'BOOT.VMEDIADEVICE': "boot.VmediaDevice",
+ 'BULK.EXPORT': "bulk.Export",
+ 'BULK.EXPORTEDITEM': "bulk.ExportedItem",
'BULK.MOCLONER': "bulk.MoCloner",
'BULK.MOMERGER': "bulk.MoMerger",
'BULK.REQUEST': "bulk.Request",
+ 'BULK.SUBREQUESTOBJ': "bulk.SubRequestObj",
'CAPABILITY.ADAPTERUNITDESCRIPTOR': "capability.AdapterUnitDescriptor",
'CAPABILITY.CATALOG': "capability.Catalog",
'CAPABILITY.CHASSISDESCRIPTOR': "capability.ChassisDescriptor",
@@ -228,10 +234,6 @@ class ChassisProfileRelationship(ModelComposed):
'COND.HCLSTATUS': "cond.HclStatus",
'COND.HCLSTATUSDETAIL': "cond.HclStatusDetail",
'COND.HCLSTATUSJOB': "cond.HclStatusJob",
- 'CONFIG.EXPORTEDITEM': "config.ExportedItem",
- 'CONFIG.EXPORTER': "config.Exporter",
- 'CONFIG.IMPORTEDITEM': "config.ImportedItem",
- 'CONFIG.IMPORTER': "config.Importer",
'CONNECTORPACK.CONNECTORPACKUPGRADE': "connectorpack.ConnectorPackUpgrade",
'CONNECTORPACK.UPGRADEIMPACT': "connectorpack.UpgradeImpact",
'CRD.CUSTOMRESOURCE': "crd.CustomResource",
@@ -240,6 +242,7 @@ class ChassisProfileRelationship(ModelComposed):
'EQUIPMENT.CHASSISIDENTITY': "equipment.ChassisIdentity",
'EQUIPMENT.CHASSISOPERATION': "equipment.ChassisOperation",
'EQUIPMENT.DEVICESUMMARY': "equipment.DeviceSummary",
+ 'EQUIPMENT.EXPANDERMODULE': "equipment.ExpanderModule",
'EQUIPMENT.FAN': "equipment.Fan",
'EQUIPMENT.FANCONTROL': "equipment.FanControl",
'EQUIPMENT.FANMODULE': "equipment.FanModule",
@@ -488,6 +491,7 @@ class ChassisProfileRelationship(ModelComposed):
'KUBERNETES.ADDONDEFINITION': "kubernetes.AddonDefinition",
'KUBERNETES.ADDONPOLICY': "kubernetes.AddonPolicy",
'KUBERNETES.ADDONREPOSITORY': "kubernetes.AddonRepository",
+ 'KUBERNETES.BAREMETALNODEPROFILE': "kubernetes.BaremetalNodeProfile",
'KUBERNETES.CATALOG': "kubernetes.Catalog",
'KUBERNETES.CLUSTER': "kubernetes.Cluster",
'KUBERNETES.CLUSTERADDONPROFILE': "kubernetes.ClusterAddonProfile",
@@ -657,6 +661,11 @@ class ChassisProfileRelationship(ModelComposed):
'RESOURCE.LICENSERESOURCECOUNT': "resource.LicenseResourceCount",
'RESOURCE.MEMBERSHIP': "resource.Membership",
'RESOURCE.MEMBERSHIPHOLDER': "resource.MembershipHolder",
+ 'RESOURCEPOOL.LEASE': "resourcepool.Lease",
+ 'RESOURCEPOOL.LEASERESOURCE': "resourcepool.LeaseResource",
+ 'RESOURCEPOOL.POOL': "resourcepool.Pool",
+ 'RESOURCEPOOL.POOLMEMBER': "resourcepool.PoolMember",
+ 'RESOURCEPOOL.UNIVERSE': "resourcepool.Universe",
'RPROXY.REVERSEPROXY': "rproxy.ReverseProxy",
'SDCARD.POLICY': "sdcard.Policy",
'SDWAN.PROFILE': "sdwan.Profile",
@@ -772,6 +781,7 @@ class ChassisProfileRelationship(ModelComposed):
'TASK.NETAPPSCOPEDINVENTORY': "task.NetAppScopedInventory",
'TASK.PUBLICCLOUDSCOPEDINVENTORY': "task.PublicCloudScopedInventory",
'TASK.PURESCOPEDINVENTORY': "task.PureScopedInventory",
+ 'TASK.SERVERSCOPEDINVENTORY': "task.ServerScopedInventory",
'TECHSUPPORTMANAGEMENT.COLLECTIONCONTROLPOLICY': "techsupportmanagement.CollectionControlPolicy",
'TECHSUPPORTMANAGEMENT.DOWNLOAD': "techsupportmanagement.Download",
'TECHSUPPORTMANAGEMENT.TECHSUPPORTBUNDLE': "techsupportmanagement.TechSupportBundle",
@@ -803,6 +813,7 @@ class ChassisProfileRelationship(ModelComposed):
'VIRTUALIZATION.VMWAREVCENTER': "virtualization.VmwareVcenter",
'VIRTUALIZATION.VMWAREVIRTUALDISK': "virtualization.VmwareVirtualDisk",
'VIRTUALIZATION.VMWAREVIRTUALMACHINE': "virtualization.VmwareVirtualMachine",
+ 'VIRTUALIZATION.VMWAREVIRTUALMACHINESNAPSHOT': "virtualization.VmwareVirtualMachineSnapshot",
'VIRTUALIZATION.VMWAREVIRTUALNETWORKINTERFACE': "virtualization.VmwareVirtualNetworkInterface",
'VIRTUALIZATION.VMWAREVIRTUALSWITCH': "virtualization.VmwareVirtualSwitch",
'VMEDIA.POLICY': "vmedia.Policy",
@@ -835,12 +846,14 @@ class ChassisProfileRelationship(ModelComposed):
'WORKFLOW.TASKDEFINITION': "workflow.TaskDefinition",
'WORKFLOW.TASKINFO': "workflow.TaskInfo",
'WORKFLOW.TASKMETADATA': "workflow.TaskMetadata",
+ 'WORKFLOW.TASKNOTIFICATION': "workflow.TaskNotification",
'WORKFLOW.TEMPLATEEVALUATION': "workflow.TemplateEvaluation",
'WORKFLOW.TEMPLATEFUNCTIONMETA': "workflow.TemplateFunctionMeta",
'WORKFLOW.WORKFLOWDEFINITION': "workflow.WorkflowDefinition",
'WORKFLOW.WORKFLOWINFO': "workflow.WorkflowInfo",
'WORKFLOW.WORKFLOWMETA': "workflow.WorkflowMeta",
'WORKFLOW.WORKFLOWMETADATA': "workflow.WorkflowMetadata",
+ 'WORKFLOW.WORKFLOWNOTIFICATION': "workflow.WorkflowNotification",
},
}
diff --git a/intersight/model/chassis_profile_response.py b/intersight/model/chassis_profile_response.py
index 70b97098cc..3404ebe506 100644
--- a/intersight/model/chassis_profile_response.py
+++ b/intersight/model/chassis_profile_response.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/cloud_availability_zone.py b/intersight/model/cloud_availability_zone.py
index 0f58e48167..41fecd9be6 100644
--- a/intersight/model/cloud_availability_zone.py
+++ b/intersight/model/cloud_availability_zone.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/cloud_availability_zone_all_of.py b/intersight/model/cloud_availability_zone_all_of.py
index 860935b3b6..fac41614be 100644
--- a/intersight/model/cloud_availability_zone_all_of.py
+++ b/intersight/model/cloud_availability_zone_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/cloud_aws_billing_unit.py b/intersight/model/cloud_aws_billing_unit.py
index 0279579991..aea0f90638 100644
--- a/intersight/model/cloud_aws_billing_unit.py
+++ b/intersight/model/cloud_aws_billing_unit.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/cloud_aws_billing_unit_all_of.py b/intersight/model/cloud_aws_billing_unit_all_of.py
index 4690533414..c90e605fbe 100644
--- a/intersight/model/cloud_aws_billing_unit_all_of.py
+++ b/intersight/model/cloud_aws_billing_unit_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/cloud_aws_billing_unit_list.py b/intersight/model/cloud_aws_billing_unit_list.py
index 05996e21da..2c88471c28 100644
--- a/intersight/model/cloud_aws_billing_unit_list.py
+++ b/intersight/model/cloud_aws_billing_unit_list.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/cloud_aws_billing_unit_list_all_of.py b/intersight/model/cloud_aws_billing_unit_list_all_of.py
index 4a7a205062..3c75da250f 100644
--- a/intersight/model/cloud_aws_billing_unit_list_all_of.py
+++ b/intersight/model/cloud_aws_billing_unit_list_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/cloud_aws_billing_unit_relationship.py b/intersight/model/cloud_aws_billing_unit_relationship.py
index de2eda6319..3a07045eea 100644
--- a/intersight/model/cloud_aws_billing_unit_relationship.py
+++ b/intersight/model/cloud_aws_billing_unit_relationship.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
@@ -74,6 +74,8 @@ class CloudAwsBillingUnitRelationship(ModelComposed):
},
('object_type',): {
'AAA.AUDITRECORD': "aaa.AuditRecord",
+ 'AAA.RETENTIONCONFIG': "aaa.RetentionConfig",
+ 'AAA.RETENTIONPOLICY': "aaa.RetentionPolicy",
'ACCESS.POLICY': "access.Policy",
'ADAPTER.CONFIGPOLICY': "adapter.ConfigPolicy",
'ADAPTER.EXTETHINTERFACE': "adapter.ExtEthInterface",
@@ -90,6 +92,7 @@ class CloudAwsBillingUnitRelationship(ModelComposed):
'APPLIANCE.DATAEXPORTPOLICY': "appliance.DataExportPolicy",
'APPLIANCE.DEVICECERTIFICATE': "appliance.DeviceCertificate",
'APPLIANCE.DEVICECLAIM': "appliance.DeviceClaim",
+ 'APPLIANCE.DEVICEUPGRADEPOLICY': "appliance.DeviceUpgradePolicy",
'APPLIANCE.DIAGSETTING': "appliance.DiagSetting",
'APPLIANCE.EXTERNALSYSLOGSETTING': "appliance.ExternalSyslogSetting",
'APPLIANCE.FILESYSTEMSTATUS': "appliance.FileSystemStatus",
@@ -138,9 +141,12 @@ class CloudAwsBillingUnitRelationship(ModelComposed):
'BOOT.UEFISHELLDEVICE': "boot.UefiShellDevice",
'BOOT.USBDEVICE': "boot.UsbDevice",
'BOOT.VMEDIADEVICE': "boot.VmediaDevice",
+ 'BULK.EXPORT': "bulk.Export",
+ 'BULK.EXPORTEDITEM': "bulk.ExportedItem",
'BULK.MOCLONER': "bulk.MoCloner",
'BULK.MOMERGER': "bulk.MoMerger",
'BULK.REQUEST': "bulk.Request",
+ 'BULK.SUBREQUESTOBJ': "bulk.SubRequestObj",
'CAPABILITY.ADAPTERUNITDESCRIPTOR': "capability.AdapterUnitDescriptor",
'CAPABILITY.CATALOG': "capability.Catalog",
'CAPABILITY.CHASSISDESCRIPTOR': "capability.ChassisDescriptor",
@@ -204,10 +210,6 @@ class CloudAwsBillingUnitRelationship(ModelComposed):
'COND.HCLSTATUS': "cond.HclStatus",
'COND.HCLSTATUSDETAIL': "cond.HclStatusDetail",
'COND.HCLSTATUSJOB': "cond.HclStatusJob",
- 'CONFIG.EXPORTEDITEM': "config.ExportedItem",
- 'CONFIG.EXPORTER': "config.Exporter",
- 'CONFIG.IMPORTEDITEM': "config.ImportedItem",
- 'CONFIG.IMPORTER': "config.Importer",
'CONNECTORPACK.CONNECTORPACKUPGRADE': "connectorpack.ConnectorPackUpgrade",
'CONNECTORPACK.UPGRADEIMPACT': "connectorpack.UpgradeImpact",
'CRD.CUSTOMRESOURCE': "crd.CustomResource",
@@ -216,6 +218,7 @@ class CloudAwsBillingUnitRelationship(ModelComposed):
'EQUIPMENT.CHASSISIDENTITY': "equipment.ChassisIdentity",
'EQUIPMENT.CHASSISOPERATION': "equipment.ChassisOperation",
'EQUIPMENT.DEVICESUMMARY': "equipment.DeviceSummary",
+ 'EQUIPMENT.EXPANDERMODULE': "equipment.ExpanderModule",
'EQUIPMENT.FAN': "equipment.Fan",
'EQUIPMENT.FANCONTROL': "equipment.FanControl",
'EQUIPMENT.FANMODULE': "equipment.FanModule",
@@ -464,6 +467,7 @@ class CloudAwsBillingUnitRelationship(ModelComposed):
'KUBERNETES.ADDONDEFINITION': "kubernetes.AddonDefinition",
'KUBERNETES.ADDONPOLICY': "kubernetes.AddonPolicy",
'KUBERNETES.ADDONREPOSITORY': "kubernetes.AddonRepository",
+ 'KUBERNETES.BAREMETALNODEPROFILE': "kubernetes.BaremetalNodeProfile",
'KUBERNETES.CATALOG': "kubernetes.Catalog",
'KUBERNETES.CLUSTER': "kubernetes.Cluster",
'KUBERNETES.CLUSTERADDONPROFILE': "kubernetes.ClusterAddonProfile",
@@ -633,6 +637,11 @@ class CloudAwsBillingUnitRelationship(ModelComposed):
'RESOURCE.LICENSERESOURCECOUNT': "resource.LicenseResourceCount",
'RESOURCE.MEMBERSHIP': "resource.Membership",
'RESOURCE.MEMBERSHIPHOLDER': "resource.MembershipHolder",
+ 'RESOURCEPOOL.LEASE': "resourcepool.Lease",
+ 'RESOURCEPOOL.LEASERESOURCE': "resourcepool.LeaseResource",
+ 'RESOURCEPOOL.POOL': "resourcepool.Pool",
+ 'RESOURCEPOOL.POOLMEMBER': "resourcepool.PoolMember",
+ 'RESOURCEPOOL.UNIVERSE': "resourcepool.Universe",
'RPROXY.REVERSEPROXY': "rproxy.ReverseProxy",
'SDCARD.POLICY': "sdcard.Policy",
'SDWAN.PROFILE': "sdwan.Profile",
@@ -748,6 +757,7 @@ class CloudAwsBillingUnitRelationship(ModelComposed):
'TASK.NETAPPSCOPEDINVENTORY': "task.NetAppScopedInventory",
'TASK.PUBLICCLOUDSCOPEDINVENTORY': "task.PublicCloudScopedInventory",
'TASK.PURESCOPEDINVENTORY': "task.PureScopedInventory",
+ 'TASK.SERVERSCOPEDINVENTORY': "task.ServerScopedInventory",
'TECHSUPPORTMANAGEMENT.COLLECTIONCONTROLPOLICY': "techsupportmanagement.CollectionControlPolicy",
'TECHSUPPORTMANAGEMENT.DOWNLOAD': "techsupportmanagement.Download",
'TECHSUPPORTMANAGEMENT.TECHSUPPORTBUNDLE': "techsupportmanagement.TechSupportBundle",
@@ -779,6 +789,7 @@ class CloudAwsBillingUnitRelationship(ModelComposed):
'VIRTUALIZATION.VMWAREVCENTER': "virtualization.VmwareVcenter",
'VIRTUALIZATION.VMWAREVIRTUALDISK': "virtualization.VmwareVirtualDisk",
'VIRTUALIZATION.VMWAREVIRTUALMACHINE': "virtualization.VmwareVirtualMachine",
+ 'VIRTUALIZATION.VMWAREVIRTUALMACHINESNAPSHOT': "virtualization.VmwareVirtualMachineSnapshot",
'VIRTUALIZATION.VMWAREVIRTUALNETWORKINTERFACE': "virtualization.VmwareVirtualNetworkInterface",
'VIRTUALIZATION.VMWAREVIRTUALSWITCH': "virtualization.VmwareVirtualSwitch",
'VMEDIA.POLICY': "vmedia.Policy",
@@ -811,12 +822,14 @@ class CloudAwsBillingUnitRelationship(ModelComposed):
'WORKFLOW.TASKDEFINITION': "workflow.TaskDefinition",
'WORKFLOW.TASKINFO': "workflow.TaskInfo",
'WORKFLOW.TASKMETADATA': "workflow.TaskMetadata",
+ 'WORKFLOW.TASKNOTIFICATION': "workflow.TaskNotification",
'WORKFLOW.TEMPLATEEVALUATION': "workflow.TemplateEvaluation",
'WORKFLOW.TEMPLATEFUNCTIONMETA': "workflow.TemplateFunctionMeta",
'WORKFLOW.WORKFLOWDEFINITION': "workflow.WorkflowDefinition",
'WORKFLOW.WORKFLOWINFO': "workflow.WorkflowInfo",
'WORKFLOW.WORKFLOWMETA': "workflow.WorkflowMeta",
'WORKFLOW.WORKFLOWMETADATA': "workflow.WorkflowMetadata",
+ 'WORKFLOW.WORKFLOWNOTIFICATION': "workflow.WorkflowNotification",
},
}
diff --git a/intersight/model/cloud_aws_billing_unit_response.py b/intersight/model/cloud_aws_billing_unit_response.py
index cd1ec4de87..7c661264a7 100644
--- a/intersight/model/cloud_aws_billing_unit_response.py
+++ b/intersight/model/cloud_aws_billing_unit_response.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/cloud_aws_key_pair.py b/intersight/model/cloud_aws_key_pair.py
index d103fbc03b..2d8279f379 100644
--- a/intersight/model/cloud_aws_key_pair.py
+++ b/intersight/model/cloud_aws_key_pair.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/cloud_aws_key_pair_all_of.py b/intersight/model/cloud_aws_key_pair_all_of.py
index 93e51c1e7f..b325b3ec4f 100644
--- a/intersight/model/cloud_aws_key_pair_all_of.py
+++ b/intersight/model/cloud_aws_key_pair_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/cloud_aws_key_pair_list.py b/intersight/model/cloud_aws_key_pair_list.py
index 071bbfa484..1217841c6e 100644
--- a/intersight/model/cloud_aws_key_pair_list.py
+++ b/intersight/model/cloud_aws_key_pair_list.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/cloud_aws_key_pair_list_all_of.py b/intersight/model/cloud_aws_key_pair_list_all_of.py
index 90e10f6db3..95d6e29d52 100644
--- a/intersight/model/cloud_aws_key_pair_list_all_of.py
+++ b/intersight/model/cloud_aws_key_pair_list_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/cloud_aws_key_pair_relationship.py b/intersight/model/cloud_aws_key_pair_relationship.py
index efd47560c9..8ae5e2740d 100644
--- a/intersight/model/cloud_aws_key_pair_relationship.py
+++ b/intersight/model/cloud_aws_key_pair_relationship.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
@@ -82,6 +82,8 @@ class CloudAwsKeyPairRelationship(ModelComposed):
},
('object_type',): {
'AAA.AUDITRECORD': "aaa.AuditRecord",
+ 'AAA.RETENTIONCONFIG': "aaa.RetentionConfig",
+ 'AAA.RETENTIONPOLICY': "aaa.RetentionPolicy",
'ACCESS.POLICY': "access.Policy",
'ADAPTER.CONFIGPOLICY': "adapter.ConfigPolicy",
'ADAPTER.EXTETHINTERFACE': "adapter.ExtEthInterface",
@@ -98,6 +100,7 @@ class CloudAwsKeyPairRelationship(ModelComposed):
'APPLIANCE.DATAEXPORTPOLICY': "appliance.DataExportPolicy",
'APPLIANCE.DEVICECERTIFICATE': "appliance.DeviceCertificate",
'APPLIANCE.DEVICECLAIM': "appliance.DeviceClaim",
+ 'APPLIANCE.DEVICEUPGRADEPOLICY': "appliance.DeviceUpgradePolicy",
'APPLIANCE.DIAGSETTING': "appliance.DiagSetting",
'APPLIANCE.EXTERNALSYSLOGSETTING': "appliance.ExternalSyslogSetting",
'APPLIANCE.FILESYSTEMSTATUS': "appliance.FileSystemStatus",
@@ -146,9 +149,12 @@ class CloudAwsKeyPairRelationship(ModelComposed):
'BOOT.UEFISHELLDEVICE': "boot.UefiShellDevice",
'BOOT.USBDEVICE': "boot.UsbDevice",
'BOOT.VMEDIADEVICE': "boot.VmediaDevice",
+ 'BULK.EXPORT': "bulk.Export",
+ 'BULK.EXPORTEDITEM': "bulk.ExportedItem",
'BULK.MOCLONER': "bulk.MoCloner",
'BULK.MOMERGER': "bulk.MoMerger",
'BULK.REQUEST': "bulk.Request",
+ 'BULK.SUBREQUESTOBJ': "bulk.SubRequestObj",
'CAPABILITY.ADAPTERUNITDESCRIPTOR': "capability.AdapterUnitDescriptor",
'CAPABILITY.CATALOG': "capability.Catalog",
'CAPABILITY.CHASSISDESCRIPTOR': "capability.ChassisDescriptor",
@@ -212,10 +218,6 @@ class CloudAwsKeyPairRelationship(ModelComposed):
'COND.HCLSTATUS': "cond.HclStatus",
'COND.HCLSTATUSDETAIL': "cond.HclStatusDetail",
'COND.HCLSTATUSJOB': "cond.HclStatusJob",
- 'CONFIG.EXPORTEDITEM': "config.ExportedItem",
- 'CONFIG.EXPORTER': "config.Exporter",
- 'CONFIG.IMPORTEDITEM': "config.ImportedItem",
- 'CONFIG.IMPORTER': "config.Importer",
'CONNECTORPACK.CONNECTORPACKUPGRADE': "connectorpack.ConnectorPackUpgrade",
'CONNECTORPACK.UPGRADEIMPACT': "connectorpack.UpgradeImpact",
'CRD.CUSTOMRESOURCE': "crd.CustomResource",
@@ -224,6 +226,7 @@ class CloudAwsKeyPairRelationship(ModelComposed):
'EQUIPMENT.CHASSISIDENTITY': "equipment.ChassisIdentity",
'EQUIPMENT.CHASSISOPERATION': "equipment.ChassisOperation",
'EQUIPMENT.DEVICESUMMARY': "equipment.DeviceSummary",
+ 'EQUIPMENT.EXPANDERMODULE': "equipment.ExpanderModule",
'EQUIPMENT.FAN': "equipment.Fan",
'EQUIPMENT.FANCONTROL': "equipment.FanControl",
'EQUIPMENT.FANMODULE': "equipment.FanModule",
@@ -472,6 +475,7 @@ class CloudAwsKeyPairRelationship(ModelComposed):
'KUBERNETES.ADDONDEFINITION': "kubernetes.AddonDefinition",
'KUBERNETES.ADDONPOLICY': "kubernetes.AddonPolicy",
'KUBERNETES.ADDONREPOSITORY': "kubernetes.AddonRepository",
+ 'KUBERNETES.BAREMETALNODEPROFILE': "kubernetes.BaremetalNodeProfile",
'KUBERNETES.CATALOG': "kubernetes.Catalog",
'KUBERNETES.CLUSTER': "kubernetes.Cluster",
'KUBERNETES.CLUSTERADDONPROFILE': "kubernetes.ClusterAddonProfile",
@@ -641,6 +645,11 @@ class CloudAwsKeyPairRelationship(ModelComposed):
'RESOURCE.LICENSERESOURCECOUNT': "resource.LicenseResourceCount",
'RESOURCE.MEMBERSHIP': "resource.Membership",
'RESOURCE.MEMBERSHIPHOLDER': "resource.MembershipHolder",
+ 'RESOURCEPOOL.LEASE': "resourcepool.Lease",
+ 'RESOURCEPOOL.LEASERESOURCE': "resourcepool.LeaseResource",
+ 'RESOURCEPOOL.POOL': "resourcepool.Pool",
+ 'RESOURCEPOOL.POOLMEMBER': "resourcepool.PoolMember",
+ 'RESOURCEPOOL.UNIVERSE': "resourcepool.Universe",
'RPROXY.REVERSEPROXY': "rproxy.ReverseProxy",
'SDCARD.POLICY': "sdcard.Policy",
'SDWAN.PROFILE': "sdwan.Profile",
@@ -756,6 +765,7 @@ class CloudAwsKeyPairRelationship(ModelComposed):
'TASK.NETAPPSCOPEDINVENTORY': "task.NetAppScopedInventory",
'TASK.PUBLICCLOUDSCOPEDINVENTORY': "task.PublicCloudScopedInventory",
'TASK.PURESCOPEDINVENTORY': "task.PureScopedInventory",
+ 'TASK.SERVERSCOPEDINVENTORY': "task.ServerScopedInventory",
'TECHSUPPORTMANAGEMENT.COLLECTIONCONTROLPOLICY': "techsupportmanagement.CollectionControlPolicy",
'TECHSUPPORTMANAGEMENT.DOWNLOAD': "techsupportmanagement.Download",
'TECHSUPPORTMANAGEMENT.TECHSUPPORTBUNDLE': "techsupportmanagement.TechSupportBundle",
@@ -787,6 +797,7 @@ class CloudAwsKeyPairRelationship(ModelComposed):
'VIRTUALIZATION.VMWAREVCENTER': "virtualization.VmwareVcenter",
'VIRTUALIZATION.VMWAREVIRTUALDISK': "virtualization.VmwareVirtualDisk",
'VIRTUALIZATION.VMWAREVIRTUALMACHINE': "virtualization.VmwareVirtualMachine",
+ 'VIRTUALIZATION.VMWAREVIRTUALMACHINESNAPSHOT': "virtualization.VmwareVirtualMachineSnapshot",
'VIRTUALIZATION.VMWAREVIRTUALNETWORKINTERFACE': "virtualization.VmwareVirtualNetworkInterface",
'VIRTUALIZATION.VMWAREVIRTUALSWITCH': "virtualization.VmwareVirtualSwitch",
'VMEDIA.POLICY': "vmedia.Policy",
@@ -819,12 +830,14 @@ class CloudAwsKeyPairRelationship(ModelComposed):
'WORKFLOW.TASKDEFINITION': "workflow.TaskDefinition",
'WORKFLOW.TASKINFO': "workflow.TaskInfo",
'WORKFLOW.TASKMETADATA': "workflow.TaskMetadata",
+ 'WORKFLOW.TASKNOTIFICATION': "workflow.TaskNotification",
'WORKFLOW.TEMPLATEEVALUATION': "workflow.TemplateEvaluation",
'WORKFLOW.TEMPLATEFUNCTIONMETA': "workflow.TemplateFunctionMeta",
'WORKFLOW.WORKFLOWDEFINITION': "workflow.WorkflowDefinition",
'WORKFLOW.WORKFLOWINFO': "workflow.WorkflowInfo",
'WORKFLOW.WORKFLOWMETA': "workflow.WorkflowMeta",
'WORKFLOW.WORKFLOWMETADATA': "workflow.WorkflowMetadata",
+ 'WORKFLOW.WORKFLOWNOTIFICATION': "workflow.WorkflowNotification",
},
}
diff --git a/intersight/model/cloud_aws_key_pair_response.py b/intersight/model/cloud_aws_key_pair_response.py
index 5a0605ebc3..35043ae8d5 100644
--- a/intersight/model/cloud_aws_key_pair_response.py
+++ b/intersight/model/cloud_aws_key_pair_response.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/cloud_aws_network_interface.py b/intersight/model/cloud_aws_network_interface.py
index 916915baba..7b35bac61f 100644
--- a/intersight/model/cloud_aws_network_interface.py
+++ b/intersight/model/cloud_aws_network_interface.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/cloud_aws_network_interface_all_of.py b/intersight/model/cloud_aws_network_interface_all_of.py
index 89d17dedbd..f734cdf8be 100644
--- a/intersight/model/cloud_aws_network_interface_all_of.py
+++ b/intersight/model/cloud_aws_network_interface_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/cloud_aws_network_interface_list.py b/intersight/model/cloud_aws_network_interface_list.py
index f0c0d682fc..dacbc255ac 100644
--- a/intersight/model/cloud_aws_network_interface_list.py
+++ b/intersight/model/cloud_aws_network_interface_list.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/cloud_aws_network_interface_list_all_of.py b/intersight/model/cloud_aws_network_interface_list_all_of.py
index 3e37880584..2b7cab23f7 100644
--- a/intersight/model/cloud_aws_network_interface_list_all_of.py
+++ b/intersight/model/cloud_aws_network_interface_list_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/cloud_aws_network_interface_response.py b/intersight/model/cloud_aws_network_interface_response.py
index 3b2675580c..40f0bfafcc 100644
--- a/intersight/model/cloud_aws_network_interface_response.py
+++ b/intersight/model/cloud_aws_network_interface_response.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/cloud_aws_organizational_unit.py b/intersight/model/cloud_aws_organizational_unit.py
index e08895969f..ec0417ed5b 100644
--- a/intersight/model/cloud_aws_organizational_unit.py
+++ b/intersight/model/cloud_aws_organizational_unit.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/cloud_aws_organizational_unit_all_of.py b/intersight/model/cloud_aws_organizational_unit_all_of.py
index 28e91ee41d..b35550e480 100644
--- a/intersight/model/cloud_aws_organizational_unit_all_of.py
+++ b/intersight/model/cloud_aws_organizational_unit_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/cloud_aws_organizational_unit_list.py b/intersight/model/cloud_aws_organizational_unit_list.py
index 843d8fd235..059332e46a 100644
--- a/intersight/model/cloud_aws_organizational_unit_list.py
+++ b/intersight/model/cloud_aws_organizational_unit_list.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/cloud_aws_organizational_unit_list_all_of.py b/intersight/model/cloud_aws_organizational_unit_list_all_of.py
index 89eb87869f..27ce3d2a23 100644
--- a/intersight/model/cloud_aws_organizational_unit_list_all_of.py
+++ b/intersight/model/cloud_aws_organizational_unit_list_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/cloud_aws_organizational_unit_relationship.py b/intersight/model/cloud_aws_organizational_unit_relationship.py
index d3aff2bbe6..d6667a8e80 100644
--- a/intersight/model/cloud_aws_organizational_unit_relationship.py
+++ b/intersight/model/cloud_aws_organizational_unit_relationship.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
@@ -74,6 +74,8 @@ class CloudAwsOrganizationalUnitRelationship(ModelComposed):
},
('object_type',): {
'AAA.AUDITRECORD': "aaa.AuditRecord",
+ 'AAA.RETENTIONCONFIG': "aaa.RetentionConfig",
+ 'AAA.RETENTIONPOLICY': "aaa.RetentionPolicy",
'ACCESS.POLICY': "access.Policy",
'ADAPTER.CONFIGPOLICY': "adapter.ConfigPolicy",
'ADAPTER.EXTETHINTERFACE': "adapter.ExtEthInterface",
@@ -90,6 +92,7 @@ class CloudAwsOrganizationalUnitRelationship(ModelComposed):
'APPLIANCE.DATAEXPORTPOLICY': "appliance.DataExportPolicy",
'APPLIANCE.DEVICECERTIFICATE': "appliance.DeviceCertificate",
'APPLIANCE.DEVICECLAIM': "appliance.DeviceClaim",
+ 'APPLIANCE.DEVICEUPGRADEPOLICY': "appliance.DeviceUpgradePolicy",
'APPLIANCE.DIAGSETTING': "appliance.DiagSetting",
'APPLIANCE.EXTERNALSYSLOGSETTING': "appliance.ExternalSyslogSetting",
'APPLIANCE.FILESYSTEMSTATUS': "appliance.FileSystemStatus",
@@ -138,9 +141,12 @@ class CloudAwsOrganizationalUnitRelationship(ModelComposed):
'BOOT.UEFISHELLDEVICE': "boot.UefiShellDevice",
'BOOT.USBDEVICE': "boot.UsbDevice",
'BOOT.VMEDIADEVICE': "boot.VmediaDevice",
+ 'BULK.EXPORT': "bulk.Export",
+ 'BULK.EXPORTEDITEM': "bulk.ExportedItem",
'BULK.MOCLONER': "bulk.MoCloner",
'BULK.MOMERGER': "bulk.MoMerger",
'BULK.REQUEST': "bulk.Request",
+ 'BULK.SUBREQUESTOBJ': "bulk.SubRequestObj",
'CAPABILITY.ADAPTERUNITDESCRIPTOR': "capability.AdapterUnitDescriptor",
'CAPABILITY.CATALOG': "capability.Catalog",
'CAPABILITY.CHASSISDESCRIPTOR': "capability.ChassisDescriptor",
@@ -204,10 +210,6 @@ class CloudAwsOrganizationalUnitRelationship(ModelComposed):
'COND.HCLSTATUS': "cond.HclStatus",
'COND.HCLSTATUSDETAIL': "cond.HclStatusDetail",
'COND.HCLSTATUSJOB': "cond.HclStatusJob",
- 'CONFIG.EXPORTEDITEM': "config.ExportedItem",
- 'CONFIG.EXPORTER': "config.Exporter",
- 'CONFIG.IMPORTEDITEM': "config.ImportedItem",
- 'CONFIG.IMPORTER': "config.Importer",
'CONNECTORPACK.CONNECTORPACKUPGRADE': "connectorpack.ConnectorPackUpgrade",
'CONNECTORPACK.UPGRADEIMPACT': "connectorpack.UpgradeImpact",
'CRD.CUSTOMRESOURCE': "crd.CustomResource",
@@ -216,6 +218,7 @@ class CloudAwsOrganizationalUnitRelationship(ModelComposed):
'EQUIPMENT.CHASSISIDENTITY': "equipment.ChassisIdentity",
'EQUIPMENT.CHASSISOPERATION': "equipment.ChassisOperation",
'EQUIPMENT.DEVICESUMMARY': "equipment.DeviceSummary",
+ 'EQUIPMENT.EXPANDERMODULE': "equipment.ExpanderModule",
'EQUIPMENT.FAN': "equipment.Fan",
'EQUIPMENT.FANCONTROL': "equipment.FanControl",
'EQUIPMENT.FANMODULE': "equipment.FanModule",
@@ -464,6 +467,7 @@ class CloudAwsOrganizationalUnitRelationship(ModelComposed):
'KUBERNETES.ADDONDEFINITION': "kubernetes.AddonDefinition",
'KUBERNETES.ADDONPOLICY': "kubernetes.AddonPolicy",
'KUBERNETES.ADDONREPOSITORY': "kubernetes.AddonRepository",
+ 'KUBERNETES.BAREMETALNODEPROFILE': "kubernetes.BaremetalNodeProfile",
'KUBERNETES.CATALOG': "kubernetes.Catalog",
'KUBERNETES.CLUSTER': "kubernetes.Cluster",
'KUBERNETES.CLUSTERADDONPROFILE': "kubernetes.ClusterAddonProfile",
@@ -633,6 +637,11 @@ class CloudAwsOrganizationalUnitRelationship(ModelComposed):
'RESOURCE.LICENSERESOURCECOUNT': "resource.LicenseResourceCount",
'RESOURCE.MEMBERSHIP': "resource.Membership",
'RESOURCE.MEMBERSHIPHOLDER': "resource.MembershipHolder",
+ 'RESOURCEPOOL.LEASE': "resourcepool.Lease",
+ 'RESOURCEPOOL.LEASERESOURCE': "resourcepool.LeaseResource",
+ 'RESOURCEPOOL.POOL': "resourcepool.Pool",
+ 'RESOURCEPOOL.POOLMEMBER': "resourcepool.PoolMember",
+ 'RESOURCEPOOL.UNIVERSE': "resourcepool.Universe",
'RPROXY.REVERSEPROXY': "rproxy.ReverseProxy",
'SDCARD.POLICY': "sdcard.Policy",
'SDWAN.PROFILE': "sdwan.Profile",
@@ -748,6 +757,7 @@ class CloudAwsOrganizationalUnitRelationship(ModelComposed):
'TASK.NETAPPSCOPEDINVENTORY': "task.NetAppScopedInventory",
'TASK.PUBLICCLOUDSCOPEDINVENTORY': "task.PublicCloudScopedInventory",
'TASK.PURESCOPEDINVENTORY': "task.PureScopedInventory",
+ 'TASK.SERVERSCOPEDINVENTORY': "task.ServerScopedInventory",
'TECHSUPPORTMANAGEMENT.COLLECTIONCONTROLPOLICY': "techsupportmanagement.CollectionControlPolicy",
'TECHSUPPORTMANAGEMENT.DOWNLOAD': "techsupportmanagement.Download",
'TECHSUPPORTMANAGEMENT.TECHSUPPORTBUNDLE': "techsupportmanagement.TechSupportBundle",
@@ -779,6 +789,7 @@ class CloudAwsOrganizationalUnitRelationship(ModelComposed):
'VIRTUALIZATION.VMWAREVCENTER': "virtualization.VmwareVcenter",
'VIRTUALIZATION.VMWAREVIRTUALDISK': "virtualization.VmwareVirtualDisk",
'VIRTUALIZATION.VMWAREVIRTUALMACHINE': "virtualization.VmwareVirtualMachine",
+ 'VIRTUALIZATION.VMWAREVIRTUALMACHINESNAPSHOT': "virtualization.VmwareVirtualMachineSnapshot",
'VIRTUALIZATION.VMWAREVIRTUALNETWORKINTERFACE': "virtualization.VmwareVirtualNetworkInterface",
'VIRTUALIZATION.VMWAREVIRTUALSWITCH': "virtualization.VmwareVirtualSwitch",
'VMEDIA.POLICY': "vmedia.Policy",
@@ -811,12 +822,14 @@ class CloudAwsOrganizationalUnitRelationship(ModelComposed):
'WORKFLOW.TASKDEFINITION': "workflow.TaskDefinition",
'WORKFLOW.TASKINFO': "workflow.TaskInfo",
'WORKFLOW.TASKMETADATA': "workflow.TaskMetadata",
+ 'WORKFLOW.TASKNOTIFICATION': "workflow.TaskNotification",
'WORKFLOW.TEMPLATEEVALUATION': "workflow.TemplateEvaluation",
'WORKFLOW.TEMPLATEFUNCTIONMETA': "workflow.TemplateFunctionMeta",
'WORKFLOW.WORKFLOWDEFINITION': "workflow.WorkflowDefinition",
'WORKFLOW.WORKFLOWINFO': "workflow.WorkflowInfo",
'WORKFLOW.WORKFLOWMETA': "workflow.WorkflowMeta",
'WORKFLOW.WORKFLOWMETADATA': "workflow.WorkflowMetadata",
+ 'WORKFLOW.WORKFLOWNOTIFICATION': "workflow.WorkflowNotification",
},
}
diff --git a/intersight/model/cloud_aws_organizational_unit_response.py b/intersight/model/cloud_aws_organizational_unit_response.py
index 047da08b91..8fa2d90bf9 100644
--- a/intersight/model/cloud_aws_organizational_unit_response.py
+++ b/intersight/model/cloud_aws_organizational_unit_response.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/cloud_aws_security_group.py b/intersight/model/cloud_aws_security_group.py
index a774005c4f..e77f88bc84 100644
--- a/intersight/model/cloud_aws_security_group.py
+++ b/intersight/model/cloud_aws_security_group.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/cloud_aws_security_group_all_of.py b/intersight/model/cloud_aws_security_group_all_of.py
index d67df819da..e72bcfaf97 100644
--- a/intersight/model/cloud_aws_security_group_all_of.py
+++ b/intersight/model/cloud_aws_security_group_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/cloud_aws_security_group_list.py b/intersight/model/cloud_aws_security_group_list.py
index 510877ada0..6edd610228 100644
--- a/intersight/model/cloud_aws_security_group_list.py
+++ b/intersight/model/cloud_aws_security_group_list.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/cloud_aws_security_group_list_all_of.py b/intersight/model/cloud_aws_security_group_list_all_of.py
index 91c5b5dbf2..40c4402934 100644
--- a/intersight/model/cloud_aws_security_group_list_all_of.py
+++ b/intersight/model/cloud_aws_security_group_list_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/cloud_aws_security_group_relationship.py b/intersight/model/cloud_aws_security_group_relationship.py
index e2bcc89708..1c58760d89 100644
--- a/intersight/model/cloud_aws_security_group_relationship.py
+++ b/intersight/model/cloud_aws_security_group_relationship.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
@@ -86,6 +86,8 @@ class CloudAwsSecurityGroupRelationship(ModelComposed):
},
('object_type',): {
'AAA.AUDITRECORD': "aaa.AuditRecord",
+ 'AAA.RETENTIONCONFIG': "aaa.RetentionConfig",
+ 'AAA.RETENTIONPOLICY': "aaa.RetentionPolicy",
'ACCESS.POLICY': "access.Policy",
'ADAPTER.CONFIGPOLICY': "adapter.ConfigPolicy",
'ADAPTER.EXTETHINTERFACE': "adapter.ExtEthInterface",
@@ -102,6 +104,7 @@ class CloudAwsSecurityGroupRelationship(ModelComposed):
'APPLIANCE.DATAEXPORTPOLICY': "appliance.DataExportPolicy",
'APPLIANCE.DEVICECERTIFICATE': "appliance.DeviceCertificate",
'APPLIANCE.DEVICECLAIM': "appliance.DeviceClaim",
+ 'APPLIANCE.DEVICEUPGRADEPOLICY': "appliance.DeviceUpgradePolicy",
'APPLIANCE.DIAGSETTING': "appliance.DiagSetting",
'APPLIANCE.EXTERNALSYSLOGSETTING': "appliance.ExternalSyslogSetting",
'APPLIANCE.FILESYSTEMSTATUS': "appliance.FileSystemStatus",
@@ -150,9 +153,12 @@ class CloudAwsSecurityGroupRelationship(ModelComposed):
'BOOT.UEFISHELLDEVICE': "boot.UefiShellDevice",
'BOOT.USBDEVICE': "boot.UsbDevice",
'BOOT.VMEDIADEVICE': "boot.VmediaDevice",
+ 'BULK.EXPORT': "bulk.Export",
+ 'BULK.EXPORTEDITEM': "bulk.ExportedItem",
'BULK.MOCLONER': "bulk.MoCloner",
'BULK.MOMERGER': "bulk.MoMerger",
'BULK.REQUEST': "bulk.Request",
+ 'BULK.SUBREQUESTOBJ': "bulk.SubRequestObj",
'CAPABILITY.ADAPTERUNITDESCRIPTOR': "capability.AdapterUnitDescriptor",
'CAPABILITY.CATALOG': "capability.Catalog",
'CAPABILITY.CHASSISDESCRIPTOR': "capability.ChassisDescriptor",
@@ -216,10 +222,6 @@ class CloudAwsSecurityGroupRelationship(ModelComposed):
'COND.HCLSTATUS': "cond.HclStatus",
'COND.HCLSTATUSDETAIL': "cond.HclStatusDetail",
'COND.HCLSTATUSJOB': "cond.HclStatusJob",
- 'CONFIG.EXPORTEDITEM': "config.ExportedItem",
- 'CONFIG.EXPORTER': "config.Exporter",
- 'CONFIG.IMPORTEDITEM': "config.ImportedItem",
- 'CONFIG.IMPORTER': "config.Importer",
'CONNECTORPACK.CONNECTORPACKUPGRADE': "connectorpack.ConnectorPackUpgrade",
'CONNECTORPACK.UPGRADEIMPACT': "connectorpack.UpgradeImpact",
'CRD.CUSTOMRESOURCE': "crd.CustomResource",
@@ -228,6 +230,7 @@ class CloudAwsSecurityGroupRelationship(ModelComposed):
'EQUIPMENT.CHASSISIDENTITY': "equipment.ChassisIdentity",
'EQUIPMENT.CHASSISOPERATION': "equipment.ChassisOperation",
'EQUIPMENT.DEVICESUMMARY': "equipment.DeviceSummary",
+ 'EQUIPMENT.EXPANDERMODULE': "equipment.ExpanderModule",
'EQUIPMENT.FAN': "equipment.Fan",
'EQUIPMENT.FANCONTROL': "equipment.FanControl",
'EQUIPMENT.FANMODULE': "equipment.FanModule",
@@ -476,6 +479,7 @@ class CloudAwsSecurityGroupRelationship(ModelComposed):
'KUBERNETES.ADDONDEFINITION': "kubernetes.AddonDefinition",
'KUBERNETES.ADDONPOLICY': "kubernetes.AddonPolicy",
'KUBERNETES.ADDONREPOSITORY': "kubernetes.AddonRepository",
+ 'KUBERNETES.BAREMETALNODEPROFILE': "kubernetes.BaremetalNodeProfile",
'KUBERNETES.CATALOG': "kubernetes.Catalog",
'KUBERNETES.CLUSTER': "kubernetes.Cluster",
'KUBERNETES.CLUSTERADDONPROFILE': "kubernetes.ClusterAddonProfile",
@@ -645,6 +649,11 @@ class CloudAwsSecurityGroupRelationship(ModelComposed):
'RESOURCE.LICENSERESOURCECOUNT': "resource.LicenseResourceCount",
'RESOURCE.MEMBERSHIP': "resource.Membership",
'RESOURCE.MEMBERSHIPHOLDER': "resource.MembershipHolder",
+ 'RESOURCEPOOL.LEASE': "resourcepool.Lease",
+ 'RESOURCEPOOL.LEASERESOURCE': "resourcepool.LeaseResource",
+ 'RESOURCEPOOL.POOL': "resourcepool.Pool",
+ 'RESOURCEPOOL.POOLMEMBER': "resourcepool.PoolMember",
+ 'RESOURCEPOOL.UNIVERSE': "resourcepool.Universe",
'RPROXY.REVERSEPROXY': "rproxy.ReverseProxy",
'SDCARD.POLICY': "sdcard.Policy",
'SDWAN.PROFILE': "sdwan.Profile",
@@ -760,6 +769,7 @@ class CloudAwsSecurityGroupRelationship(ModelComposed):
'TASK.NETAPPSCOPEDINVENTORY': "task.NetAppScopedInventory",
'TASK.PUBLICCLOUDSCOPEDINVENTORY': "task.PublicCloudScopedInventory",
'TASK.PURESCOPEDINVENTORY': "task.PureScopedInventory",
+ 'TASK.SERVERSCOPEDINVENTORY': "task.ServerScopedInventory",
'TECHSUPPORTMANAGEMENT.COLLECTIONCONTROLPOLICY': "techsupportmanagement.CollectionControlPolicy",
'TECHSUPPORTMANAGEMENT.DOWNLOAD': "techsupportmanagement.Download",
'TECHSUPPORTMANAGEMENT.TECHSUPPORTBUNDLE': "techsupportmanagement.TechSupportBundle",
@@ -791,6 +801,7 @@ class CloudAwsSecurityGroupRelationship(ModelComposed):
'VIRTUALIZATION.VMWAREVCENTER': "virtualization.VmwareVcenter",
'VIRTUALIZATION.VMWAREVIRTUALDISK': "virtualization.VmwareVirtualDisk",
'VIRTUALIZATION.VMWAREVIRTUALMACHINE': "virtualization.VmwareVirtualMachine",
+ 'VIRTUALIZATION.VMWAREVIRTUALMACHINESNAPSHOT': "virtualization.VmwareVirtualMachineSnapshot",
'VIRTUALIZATION.VMWAREVIRTUALNETWORKINTERFACE': "virtualization.VmwareVirtualNetworkInterface",
'VIRTUALIZATION.VMWAREVIRTUALSWITCH': "virtualization.VmwareVirtualSwitch",
'VMEDIA.POLICY': "vmedia.Policy",
@@ -823,12 +834,14 @@ class CloudAwsSecurityGroupRelationship(ModelComposed):
'WORKFLOW.TASKDEFINITION': "workflow.TaskDefinition",
'WORKFLOW.TASKINFO': "workflow.TaskInfo",
'WORKFLOW.TASKMETADATA': "workflow.TaskMetadata",
+ 'WORKFLOW.TASKNOTIFICATION': "workflow.TaskNotification",
'WORKFLOW.TEMPLATEEVALUATION': "workflow.TemplateEvaluation",
'WORKFLOW.TEMPLATEFUNCTIONMETA': "workflow.TemplateFunctionMeta",
'WORKFLOW.WORKFLOWDEFINITION': "workflow.WorkflowDefinition",
'WORKFLOW.WORKFLOWINFO': "workflow.WorkflowInfo",
'WORKFLOW.WORKFLOWMETA': "workflow.WorkflowMeta",
'WORKFLOW.WORKFLOWMETADATA': "workflow.WorkflowMetadata",
+ 'WORKFLOW.WORKFLOWNOTIFICATION': "workflow.WorkflowNotification",
},
}
diff --git a/intersight/model/cloud_aws_security_group_response.py b/intersight/model/cloud_aws_security_group_response.py
index 21379a4284..ec08ac856e 100644
--- a/intersight/model/cloud_aws_security_group_response.py
+++ b/intersight/model/cloud_aws_security_group_response.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/cloud_aws_subnet.py b/intersight/model/cloud_aws_subnet.py
index 3b152216ca..c345ea02d7 100644
--- a/intersight/model/cloud_aws_subnet.py
+++ b/intersight/model/cloud_aws_subnet.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/cloud_aws_subnet_all_of.py b/intersight/model/cloud_aws_subnet_all_of.py
index 7f604d7110..3145e9cd37 100644
--- a/intersight/model/cloud_aws_subnet_all_of.py
+++ b/intersight/model/cloud_aws_subnet_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/cloud_aws_subnet_list.py b/intersight/model/cloud_aws_subnet_list.py
index 0d8a7b8b96..d0e46b5594 100644
--- a/intersight/model/cloud_aws_subnet_list.py
+++ b/intersight/model/cloud_aws_subnet_list.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/cloud_aws_subnet_list_all_of.py b/intersight/model/cloud_aws_subnet_list_all_of.py
index 5a94ca1f45..7b1b6844ed 100644
--- a/intersight/model/cloud_aws_subnet_list_all_of.py
+++ b/intersight/model/cloud_aws_subnet_list_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/cloud_aws_subnet_relationship.py b/intersight/model/cloud_aws_subnet_relationship.py
index 85b9f0e437..1efe5e56a8 100644
--- a/intersight/model/cloud_aws_subnet_relationship.py
+++ b/intersight/model/cloud_aws_subnet_relationship.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
@@ -84,6 +84,8 @@ class CloudAwsSubnetRelationship(ModelComposed):
},
('object_type',): {
'AAA.AUDITRECORD': "aaa.AuditRecord",
+ 'AAA.RETENTIONCONFIG': "aaa.RetentionConfig",
+ 'AAA.RETENTIONPOLICY': "aaa.RetentionPolicy",
'ACCESS.POLICY': "access.Policy",
'ADAPTER.CONFIGPOLICY': "adapter.ConfigPolicy",
'ADAPTER.EXTETHINTERFACE': "adapter.ExtEthInterface",
@@ -100,6 +102,7 @@ class CloudAwsSubnetRelationship(ModelComposed):
'APPLIANCE.DATAEXPORTPOLICY': "appliance.DataExportPolicy",
'APPLIANCE.DEVICECERTIFICATE': "appliance.DeviceCertificate",
'APPLIANCE.DEVICECLAIM': "appliance.DeviceClaim",
+ 'APPLIANCE.DEVICEUPGRADEPOLICY': "appliance.DeviceUpgradePolicy",
'APPLIANCE.DIAGSETTING': "appliance.DiagSetting",
'APPLIANCE.EXTERNALSYSLOGSETTING': "appliance.ExternalSyslogSetting",
'APPLIANCE.FILESYSTEMSTATUS': "appliance.FileSystemStatus",
@@ -148,9 +151,12 @@ class CloudAwsSubnetRelationship(ModelComposed):
'BOOT.UEFISHELLDEVICE': "boot.UefiShellDevice",
'BOOT.USBDEVICE': "boot.UsbDevice",
'BOOT.VMEDIADEVICE': "boot.VmediaDevice",
+ 'BULK.EXPORT': "bulk.Export",
+ 'BULK.EXPORTEDITEM': "bulk.ExportedItem",
'BULK.MOCLONER': "bulk.MoCloner",
'BULK.MOMERGER': "bulk.MoMerger",
'BULK.REQUEST': "bulk.Request",
+ 'BULK.SUBREQUESTOBJ': "bulk.SubRequestObj",
'CAPABILITY.ADAPTERUNITDESCRIPTOR': "capability.AdapterUnitDescriptor",
'CAPABILITY.CATALOG': "capability.Catalog",
'CAPABILITY.CHASSISDESCRIPTOR': "capability.ChassisDescriptor",
@@ -214,10 +220,6 @@ class CloudAwsSubnetRelationship(ModelComposed):
'COND.HCLSTATUS': "cond.HclStatus",
'COND.HCLSTATUSDETAIL': "cond.HclStatusDetail",
'COND.HCLSTATUSJOB': "cond.HclStatusJob",
- 'CONFIG.EXPORTEDITEM': "config.ExportedItem",
- 'CONFIG.EXPORTER': "config.Exporter",
- 'CONFIG.IMPORTEDITEM': "config.ImportedItem",
- 'CONFIG.IMPORTER': "config.Importer",
'CONNECTORPACK.CONNECTORPACKUPGRADE': "connectorpack.ConnectorPackUpgrade",
'CONNECTORPACK.UPGRADEIMPACT': "connectorpack.UpgradeImpact",
'CRD.CUSTOMRESOURCE': "crd.CustomResource",
@@ -226,6 +228,7 @@ class CloudAwsSubnetRelationship(ModelComposed):
'EQUIPMENT.CHASSISIDENTITY': "equipment.ChassisIdentity",
'EQUIPMENT.CHASSISOPERATION': "equipment.ChassisOperation",
'EQUIPMENT.DEVICESUMMARY': "equipment.DeviceSummary",
+ 'EQUIPMENT.EXPANDERMODULE': "equipment.ExpanderModule",
'EQUIPMENT.FAN': "equipment.Fan",
'EQUIPMENT.FANCONTROL': "equipment.FanControl",
'EQUIPMENT.FANMODULE': "equipment.FanModule",
@@ -474,6 +477,7 @@ class CloudAwsSubnetRelationship(ModelComposed):
'KUBERNETES.ADDONDEFINITION': "kubernetes.AddonDefinition",
'KUBERNETES.ADDONPOLICY': "kubernetes.AddonPolicy",
'KUBERNETES.ADDONREPOSITORY': "kubernetes.AddonRepository",
+ 'KUBERNETES.BAREMETALNODEPROFILE': "kubernetes.BaremetalNodeProfile",
'KUBERNETES.CATALOG': "kubernetes.Catalog",
'KUBERNETES.CLUSTER': "kubernetes.Cluster",
'KUBERNETES.CLUSTERADDONPROFILE': "kubernetes.ClusterAddonProfile",
@@ -643,6 +647,11 @@ class CloudAwsSubnetRelationship(ModelComposed):
'RESOURCE.LICENSERESOURCECOUNT': "resource.LicenseResourceCount",
'RESOURCE.MEMBERSHIP': "resource.Membership",
'RESOURCE.MEMBERSHIPHOLDER': "resource.MembershipHolder",
+ 'RESOURCEPOOL.LEASE': "resourcepool.Lease",
+ 'RESOURCEPOOL.LEASERESOURCE': "resourcepool.LeaseResource",
+ 'RESOURCEPOOL.POOL': "resourcepool.Pool",
+ 'RESOURCEPOOL.POOLMEMBER': "resourcepool.PoolMember",
+ 'RESOURCEPOOL.UNIVERSE': "resourcepool.Universe",
'RPROXY.REVERSEPROXY': "rproxy.ReverseProxy",
'SDCARD.POLICY': "sdcard.Policy",
'SDWAN.PROFILE': "sdwan.Profile",
@@ -758,6 +767,7 @@ class CloudAwsSubnetRelationship(ModelComposed):
'TASK.NETAPPSCOPEDINVENTORY': "task.NetAppScopedInventory",
'TASK.PUBLICCLOUDSCOPEDINVENTORY': "task.PublicCloudScopedInventory",
'TASK.PURESCOPEDINVENTORY': "task.PureScopedInventory",
+ 'TASK.SERVERSCOPEDINVENTORY': "task.ServerScopedInventory",
'TECHSUPPORTMANAGEMENT.COLLECTIONCONTROLPOLICY': "techsupportmanagement.CollectionControlPolicy",
'TECHSUPPORTMANAGEMENT.DOWNLOAD': "techsupportmanagement.Download",
'TECHSUPPORTMANAGEMENT.TECHSUPPORTBUNDLE': "techsupportmanagement.TechSupportBundle",
@@ -789,6 +799,7 @@ class CloudAwsSubnetRelationship(ModelComposed):
'VIRTUALIZATION.VMWAREVCENTER': "virtualization.VmwareVcenter",
'VIRTUALIZATION.VMWAREVIRTUALDISK': "virtualization.VmwareVirtualDisk",
'VIRTUALIZATION.VMWAREVIRTUALMACHINE': "virtualization.VmwareVirtualMachine",
+ 'VIRTUALIZATION.VMWAREVIRTUALMACHINESNAPSHOT': "virtualization.VmwareVirtualMachineSnapshot",
'VIRTUALIZATION.VMWAREVIRTUALNETWORKINTERFACE': "virtualization.VmwareVirtualNetworkInterface",
'VIRTUALIZATION.VMWAREVIRTUALSWITCH': "virtualization.VmwareVirtualSwitch",
'VMEDIA.POLICY': "vmedia.Policy",
@@ -821,12 +832,14 @@ class CloudAwsSubnetRelationship(ModelComposed):
'WORKFLOW.TASKDEFINITION': "workflow.TaskDefinition",
'WORKFLOW.TASKINFO': "workflow.TaskInfo",
'WORKFLOW.TASKMETADATA': "workflow.TaskMetadata",
+ 'WORKFLOW.TASKNOTIFICATION': "workflow.TaskNotification",
'WORKFLOW.TEMPLATEEVALUATION': "workflow.TemplateEvaluation",
'WORKFLOW.TEMPLATEFUNCTIONMETA': "workflow.TemplateFunctionMeta",
'WORKFLOW.WORKFLOWDEFINITION': "workflow.WorkflowDefinition",
'WORKFLOW.WORKFLOWINFO': "workflow.WorkflowInfo",
'WORKFLOW.WORKFLOWMETA': "workflow.WorkflowMeta",
'WORKFLOW.WORKFLOWMETADATA': "workflow.WorkflowMetadata",
+ 'WORKFLOW.WORKFLOWNOTIFICATION': "workflow.WorkflowNotification",
},
}
diff --git a/intersight/model/cloud_aws_subnet_response.py b/intersight/model/cloud_aws_subnet_response.py
index 0fa724202e..b3bd3971e0 100644
--- a/intersight/model/cloud_aws_subnet_response.py
+++ b/intersight/model/cloud_aws_subnet_response.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/cloud_aws_virtual_machine.py b/intersight/model/cloud_aws_virtual_machine.py
index 57549f6802..8dba3a1fad 100644
--- a/intersight/model/cloud_aws_virtual_machine.py
+++ b/intersight/model/cloud_aws_virtual_machine.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
@@ -200,11 +200,13 @@ def openapi_types():
'registered_device': (AssetDeviceRegistrationRelationship,), # noqa: E501
'boot_time': (datetime,), # noqa: E501
'capacity': (InfraHardwareInfo,), # noqa: E501
+ 'cpu_utilization': (float,), # noqa: E501
'guest_info': (VirtualizationGuestInfo,), # noqa: E501
'hypervisor_type': (str,), # noqa: E501
'identity': (str,), # noqa: E501
'ip_address': ([str], none_type,), # noqa: E501
'memory_capacity': (VirtualizationMemoryCapacity,), # noqa: E501
+ 'memory_utilization': (float,), # noqa: E501
'name': (str,), # noqa: E501
'power_state': (str,), # noqa: E501
'processor_capacity': (VirtualizationComputeCapacity,), # noqa: E501
@@ -256,11 +258,13 @@ def discriminator():
'registered_device': 'RegisteredDevice', # noqa: E501
'boot_time': 'BootTime', # noqa: E501
'capacity': 'Capacity', # noqa: E501
+ 'cpu_utilization': 'CpuUtilization', # noqa: E501
'guest_info': 'GuestInfo', # noqa: E501
'hypervisor_type': 'HypervisorType', # noqa: E501
'identity': 'Identity', # noqa: E501
'ip_address': 'IpAddress', # noqa: E501
'memory_capacity': 'MemoryCapacity', # noqa: E501
+ 'memory_utilization': 'MemoryUtilization', # noqa: E501
'name': 'Name', # noqa: E501
'power_state': 'PowerState', # noqa: E501
'processor_capacity': 'ProcessorCapacity', # noqa: E501
@@ -352,11 +356,13 @@ def __init__(self, *args, **kwargs): # noqa: E501
registered_device (AssetDeviceRegistrationRelationship): [optional] # noqa: E501
boot_time (datetime): Time when this VM booted up.. [optional] # noqa: E501
capacity (InfraHardwareInfo): [optional] # noqa: E501
+ cpu_utilization (float): Average CPU utilization percentage derived as a ratio of CPU used to CPU allocated. The value is calculated whenever inventory is performed.. [optional] # noqa: E501
guest_info (VirtualizationGuestInfo): [optional] # noqa: E501
hypervisor_type (str): Type of hypervisor where the virtual machine is hosted for example ESXi. * `ESXi` - The hypervisor running on the HyperFlex cluster is a Vmware ESXi hypervisor of any version. * `HyperFlexAp` - The hypervisor running on the HyperFlex cluster is Cisco HyperFlex Application Platform. * `Hyper-V` - The hypervisor running on the HyperFlex cluster is Microsoft Hyper-V. * `Unknown` - The hypervisor running on the HyperFlex cluster is not known.. [optional] if omitted the server will use the default value of "ESXi" # noqa: E501
identity (str): The internally generated identity of this VM. This entity is not manipulated by users. It aids in uniquely identifying the virtual machine object. For VMware, this is MOR (managed object reference).. [optional] # noqa: E501
ip_address ([str], none_type): [optional] # noqa: E501
memory_capacity (VirtualizationMemoryCapacity): [optional] # noqa: E501
+ memory_utilization (float): Average memory utilization percentage derived as a ratio of memory used to available memory. The value is calculated whenever inventory is performed.. [optional] # noqa: E501
name (str): User-provided name to identify the virtual machine.. [optional] # noqa: E501
power_state (str): Power state of the virtual machine. * `Unknown` - The entity's power state is unknown. * `PoweringOn` - The entity is powering on. * `PoweredOn` - The entity is powered on. * `PoweringOff` - The entity is powering off. * `PoweredOff` - The entity is powered down. * `StandBy` - The entity is in standby mode. * `Paused` - The entity is in pause state. * `Rebooting` - The entity reboot is in progress. * `` - The entity's power state is not available.. [optional] if omitted the server will use the default value of "Unknown" # noqa: E501
processor_capacity (VirtualizationComputeCapacity): [optional] # noqa: E501
diff --git a/intersight/model/cloud_aws_virtual_machine_all_of.py b/intersight/model/cloud_aws_virtual_machine_all_of.py
index 0819ea3a62..9173312f40 100644
--- a/intersight/model/cloud_aws_virtual_machine_all_of.py
+++ b/intersight/model/cloud_aws_virtual_machine_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/cloud_aws_virtual_machine_list.py b/intersight/model/cloud_aws_virtual_machine_list.py
index 6ca2e85bda..9e8b98f18b 100644
--- a/intersight/model/cloud_aws_virtual_machine_list.py
+++ b/intersight/model/cloud_aws_virtual_machine_list.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/cloud_aws_virtual_machine_list_all_of.py b/intersight/model/cloud_aws_virtual_machine_list_all_of.py
index fa40e0b7b8..231f6ea70b 100644
--- a/intersight/model/cloud_aws_virtual_machine_list_all_of.py
+++ b/intersight/model/cloud_aws_virtual_machine_list_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/cloud_aws_virtual_machine_response.py b/intersight/model/cloud_aws_virtual_machine_response.py
index 3a3eb7e5c4..f479910faa 100644
--- a/intersight/model/cloud_aws_virtual_machine_response.py
+++ b/intersight/model/cloud_aws_virtual_machine_response.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/cloud_aws_volume.py b/intersight/model/cloud_aws_volume.py
index f9b467fb35..73b917f53c 100644
--- a/intersight/model/cloud_aws_volume.py
+++ b/intersight/model/cloud_aws_volume.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/cloud_aws_volume_all_of.py b/intersight/model/cloud_aws_volume_all_of.py
index 7a48aba2a2..921525c2fa 100644
--- a/intersight/model/cloud_aws_volume_all_of.py
+++ b/intersight/model/cloud_aws_volume_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/cloud_aws_volume_list.py b/intersight/model/cloud_aws_volume_list.py
index 4317878ead..19d8db8b87 100644
--- a/intersight/model/cloud_aws_volume_list.py
+++ b/intersight/model/cloud_aws_volume_list.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/cloud_aws_volume_list_all_of.py b/intersight/model/cloud_aws_volume_list_all_of.py
index 1415eaf4bc..acff7c0e1f 100644
--- a/intersight/model/cloud_aws_volume_list_all_of.py
+++ b/intersight/model/cloud_aws_volume_list_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/cloud_aws_volume_response.py b/intersight/model/cloud_aws_volume_response.py
index 286344b0ed..a98d77793f 100644
--- a/intersight/model/cloud_aws_volume_response.py
+++ b/intersight/model/cloud_aws_volume_response.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/cloud_aws_vpc.py b/intersight/model/cloud_aws_vpc.py
index f7cdc6289b..1ce9068263 100644
--- a/intersight/model/cloud_aws_vpc.py
+++ b/intersight/model/cloud_aws_vpc.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/cloud_aws_vpc_all_of.py b/intersight/model/cloud_aws_vpc_all_of.py
index e8b7ee751a..049a96bc23 100644
--- a/intersight/model/cloud_aws_vpc_all_of.py
+++ b/intersight/model/cloud_aws_vpc_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/cloud_aws_vpc_list.py b/intersight/model/cloud_aws_vpc_list.py
index fbe06838a7..8619c402ba 100644
--- a/intersight/model/cloud_aws_vpc_list.py
+++ b/intersight/model/cloud_aws_vpc_list.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/cloud_aws_vpc_list_all_of.py b/intersight/model/cloud_aws_vpc_list_all_of.py
index b7ea08240d..68095feb4c 100644
--- a/intersight/model/cloud_aws_vpc_list_all_of.py
+++ b/intersight/model/cloud_aws_vpc_list_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/cloud_aws_vpc_relationship.py b/intersight/model/cloud_aws_vpc_relationship.py
index 2dfbb4e205..abc593048c 100644
--- a/intersight/model/cloud_aws_vpc_relationship.py
+++ b/intersight/model/cloud_aws_vpc_relationship.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
@@ -84,6 +84,8 @@ class CloudAwsVpcRelationship(ModelComposed):
},
('object_type',): {
'AAA.AUDITRECORD': "aaa.AuditRecord",
+ 'AAA.RETENTIONCONFIG': "aaa.RetentionConfig",
+ 'AAA.RETENTIONPOLICY': "aaa.RetentionPolicy",
'ACCESS.POLICY': "access.Policy",
'ADAPTER.CONFIGPOLICY': "adapter.ConfigPolicy",
'ADAPTER.EXTETHINTERFACE': "adapter.ExtEthInterface",
@@ -100,6 +102,7 @@ class CloudAwsVpcRelationship(ModelComposed):
'APPLIANCE.DATAEXPORTPOLICY': "appliance.DataExportPolicy",
'APPLIANCE.DEVICECERTIFICATE': "appliance.DeviceCertificate",
'APPLIANCE.DEVICECLAIM': "appliance.DeviceClaim",
+ 'APPLIANCE.DEVICEUPGRADEPOLICY': "appliance.DeviceUpgradePolicy",
'APPLIANCE.DIAGSETTING': "appliance.DiagSetting",
'APPLIANCE.EXTERNALSYSLOGSETTING': "appliance.ExternalSyslogSetting",
'APPLIANCE.FILESYSTEMSTATUS': "appliance.FileSystemStatus",
@@ -148,9 +151,12 @@ class CloudAwsVpcRelationship(ModelComposed):
'BOOT.UEFISHELLDEVICE': "boot.UefiShellDevice",
'BOOT.USBDEVICE': "boot.UsbDevice",
'BOOT.VMEDIADEVICE': "boot.VmediaDevice",
+ 'BULK.EXPORT': "bulk.Export",
+ 'BULK.EXPORTEDITEM': "bulk.ExportedItem",
'BULK.MOCLONER': "bulk.MoCloner",
'BULK.MOMERGER': "bulk.MoMerger",
'BULK.REQUEST': "bulk.Request",
+ 'BULK.SUBREQUESTOBJ': "bulk.SubRequestObj",
'CAPABILITY.ADAPTERUNITDESCRIPTOR': "capability.AdapterUnitDescriptor",
'CAPABILITY.CATALOG': "capability.Catalog",
'CAPABILITY.CHASSISDESCRIPTOR': "capability.ChassisDescriptor",
@@ -214,10 +220,6 @@ class CloudAwsVpcRelationship(ModelComposed):
'COND.HCLSTATUS': "cond.HclStatus",
'COND.HCLSTATUSDETAIL': "cond.HclStatusDetail",
'COND.HCLSTATUSJOB': "cond.HclStatusJob",
- 'CONFIG.EXPORTEDITEM': "config.ExportedItem",
- 'CONFIG.EXPORTER': "config.Exporter",
- 'CONFIG.IMPORTEDITEM': "config.ImportedItem",
- 'CONFIG.IMPORTER': "config.Importer",
'CONNECTORPACK.CONNECTORPACKUPGRADE': "connectorpack.ConnectorPackUpgrade",
'CONNECTORPACK.UPGRADEIMPACT': "connectorpack.UpgradeImpact",
'CRD.CUSTOMRESOURCE': "crd.CustomResource",
@@ -226,6 +228,7 @@ class CloudAwsVpcRelationship(ModelComposed):
'EQUIPMENT.CHASSISIDENTITY': "equipment.ChassisIdentity",
'EQUIPMENT.CHASSISOPERATION': "equipment.ChassisOperation",
'EQUIPMENT.DEVICESUMMARY': "equipment.DeviceSummary",
+ 'EQUIPMENT.EXPANDERMODULE': "equipment.ExpanderModule",
'EQUIPMENT.FAN': "equipment.Fan",
'EQUIPMENT.FANCONTROL': "equipment.FanControl",
'EQUIPMENT.FANMODULE': "equipment.FanModule",
@@ -474,6 +477,7 @@ class CloudAwsVpcRelationship(ModelComposed):
'KUBERNETES.ADDONDEFINITION': "kubernetes.AddonDefinition",
'KUBERNETES.ADDONPOLICY': "kubernetes.AddonPolicy",
'KUBERNETES.ADDONREPOSITORY': "kubernetes.AddonRepository",
+ 'KUBERNETES.BAREMETALNODEPROFILE': "kubernetes.BaremetalNodeProfile",
'KUBERNETES.CATALOG': "kubernetes.Catalog",
'KUBERNETES.CLUSTER': "kubernetes.Cluster",
'KUBERNETES.CLUSTERADDONPROFILE': "kubernetes.ClusterAddonProfile",
@@ -643,6 +647,11 @@ class CloudAwsVpcRelationship(ModelComposed):
'RESOURCE.LICENSERESOURCECOUNT': "resource.LicenseResourceCount",
'RESOURCE.MEMBERSHIP': "resource.Membership",
'RESOURCE.MEMBERSHIPHOLDER': "resource.MembershipHolder",
+ 'RESOURCEPOOL.LEASE': "resourcepool.Lease",
+ 'RESOURCEPOOL.LEASERESOURCE': "resourcepool.LeaseResource",
+ 'RESOURCEPOOL.POOL': "resourcepool.Pool",
+ 'RESOURCEPOOL.POOLMEMBER': "resourcepool.PoolMember",
+ 'RESOURCEPOOL.UNIVERSE': "resourcepool.Universe",
'RPROXY.REVERSEPROXY': "rproxy.ReverseProxy",
'SDCARD.POLICY': "sdcard.Policy",
'SDWAN.PROFILE': "sdwan.Profile",
@@ -758,6 +767,7 @@ class CloudAwsVpcRelationship(ModelComposed):
'TASK.NETAPPSCOPEDINVENTORY': "task.NetAppScopedInventory",
'TASK.PUBLICCLOUDSCOPEDINVENTORY': "task.PublicCloudScopedInventory",
'TASK.PURESCOPEDINVENTORY': "task.PureScopedInventory",
+ 'TASK.SERVERSCOPEDINVENTORY': "task.ServerScopedInventory",
'TECHSUPPORTMANAGEMENT.COLLECTIONCONTROLPOLICY': "techsupportmanagement.CollectionControlPolicy",
'TECHSUPPORTMANAGEMENT.DOWNLOAD': "techsupportmanagement.Download",
'TECHSUPPORTMANAGEMENT.TECHSUPPORTBUNDLE': "techsupportmanagement.TechSupportBundle",
@@ -789,6 +799,7 @@ class CloudAwsVpcRelationship(ModelComposed):
'VIRTUALIZATION.VMWAREVCENTER': "virtualization.VmwareVcenter",
'VIRTUALIZATION.VMWAREVIRTUALDISK': "virtualization.VmwareVirtualDisk",
'VIRTUALIZATION.VMWAREVIRTUALMACHINE': "virtualization.VmwareVirtualMachine",
+ 'VIRTUALIZATION.VMWAREVIRTUALMACHINESNAPSHOT': "virtualization.VmwareVirtualMachineSnapshot",
'VIRTUALIZATION.VMWAREVIRTUALNETWORKINTERFACE': "virtualization.VmwareVirtualNetworkInterface",
'VIRTUALIZATION.VMWAREVIRTUALSWITCH': "virtualization.VmwareVirtualSwitch",
'VMEDIA.POLICY': "vmedia.Policy",
@@ -821,12 +832,14 @@ class CloudAwsVpcRelationship(ModelComposed):
'WORKFLOW.TASKDEFINITION': "workflow.TaskDefinition",
'WORKFLOW.TASKINFO': "workflow.TaskInfo",
'WORKFLOW.TASKMETADATA': "workflow.TaskMetadata",
+ 'WORKFLOW.TASKNOTIFICATION': "workflow.TaskNotification",
'WORKFLOW.TEMPLATEEVALUATION': "workflow.TemplateEvaluation",
'WORKFLOW.TEMPLATEFUNCTIONMETA': "workflow.TemplateFunctionMeta",
'WORKFLOW.WORKFLOWDEFINITION': "workflow.WorkflowDefinition",
'WORKFLOW.WORKFLOWINFO': "workflow.WorkflowInfo",
'WORKFLOW.WORKFLOWMETA': "workflow.WorkflowMeta",
'WORKFLOW.WORKFLOWMETADATA': "workflow.WorkflowMetadata",
+ 'WORKFLOW.WORKFLOWNOTIFICATION': "workflow.WorkflowNotification",
},
}
diff --git a/intersight/model/cloud_aws_vpc_response.py b/intersight/model/cloud_aws_vpc_response.py
index 4b198659a9..e2758b29fe 100644
--- a/intersight/model/cloud_aws_vpc_response.py
+++ b/intersight/model/cloud_aws_vpc_response.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/cloud_base_billing_unit.py b/intersight/model/cloud_base_billing_unit.py
index b0063254fb..2f04d43ebd 100644
--- a/intersight/model/cloud_base_billing_unit.py
+++ b/intersight/model/cloud_base_billing_unit.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/cloud_base_billing_unit_all_of.py b/intersight/model/cloud_base_billing_unit_all_of.py
index 0fcd4d3754..4d9205fb50 100644
--- a/intersight/model/cloud_base_billing_unit_all_of.py
+++ b/intersight/model/cloud_base_billing_unit_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/cloud_base_entity.py b/intersight/model/cloud_base_entity.py
index d863e93995..148672381f 100644
--- a/intersight/model/cloud_base_entity.py
+++ b/intersight/model/cloud_base_entity.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/cloud_base_entity_all_of.py b/intersight/model/cloud_base_entity_all_of.py
index 8c15c06982..73a43c1269 100644
--- a/intersight/model/cloud_base_entity_all_of.py
+++ b/intersight/model/cloud_base_entity_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/cloud_base_network.py b/intersight/model/cloud_base_network.py
index 1fe9b77301..c9d7e837c4 100644
--- a/intersight/model/cloud_base_network.py
+++ b/intersight/model/cloud_base_network.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/cloud_base_network_all_of.py b/intersight/model/cloud_base_network_all_of.py
index 874cc90284..b78b164bc8 100644
--- a/intersight/model/cloud_base_network_all_of.py
+++ b/intersight/model/cloud_base_network_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/cloud_base_network_interface.py b/intersight/model/cloud_base_network_interface.py
index 8a35ec982b..cefd4aa2ab 100644
--- a/intersight/model/cloud_base_network_interface.py
+++ b/intersight/model/cloud_base_network_interface.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/cloud_base_network_interface_all_of.py b/intersight/model/cloud_base_network_interface_all_of.py
index cb1d3a5ffd..dab33d5596 100644
--- a/intersight/model/cloud_base_network_interface_all_of.py
+++ b/intersight/model/cloud_base_network_interface_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/cloud_base_placement.py b/intersight/model/cloud_base_placement.py
index 4494ffd97d..bfc1f2babd 100644
--- a/intersight/model/cloud_base_placement.py
+++ b/intersight/model/cloud_base_placement.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/cloud_base_placement_all_of.py b/intersight/model/cloud_base_placement_all_of.py
index 8f98695d1f..15a8173db1 100644
--- a/intersight/model/cloud_base_placement_all_of.py
+++ b/intersight/model/cloud_base_placement_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/cloud_base_sku.py b/intersight/model/cloud_base_sku.py
index f788eb0c45..f285efc900 100644
--- a/intersight/model/cloud_base_sku.py
+++ b/intersight/model/cloud_base_sku.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/cloud_base_sku_all_of.py b/intersight/model/cloud_base_sku_all_of.py
index 6096b267f4..2d55575229 100644
--- a/intersight/model/cloud_base_sku_all_of.py
+++ b/intersight/model/cloud_base_sku_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/cloud_base_virtual_machine.py b/intersight/model/cloud_base_virtual_machine.py
index 41afa2337e..4666fc0116 100644
--- a/intersight/model/cloud_base_virtual_machine.py
+++ b/intersight/model/cloud_base_virtual_machine.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
@@ -205,11 +205,13 @@ def openapi_types():
'registered_device': (AssetDeviceRegistrationRelationship,), # noqa: E501
'boot_time': (datetime,), # noqa: E501
'capacity': (InfraHardwareInfo,), # noqa: E501
+ 'cpu_utilization': (float,), # noqa: E501
'guest_info': (VirtualizationGuestInfo,), # noqa: E501
'hypervisor_type': (str,), # noqa: E501
'identity': (str,), # noqa: E501
'ip_address': ([str], none_type,), # noqa: E501
'memory_capacity': (VirtualizationMemoryCapacity,), # noqa: E501
+ 'memory_utilization': (float,), # noqa: E501
'name': (str,), # noqa: E501
'power_state': (str,), # noqa: E501
'processor_capacity': (VirtualizationComputeCapacity,), # noqa: E501
@@ -260,11 +262,13 @@ def discriminator():
'registered_device': 'RegisteredDevice', # noqa: E501
'boot_time': 'BootTime', # noqa: E501
'capacity': 'Capacity', # noqa: E501
+ 'cpu_utilization': 'CpuUtilization', # noqa: E501
'guest_info': 'GuestInfo', # noqa: E501
'hypervisor_type': 'HypervisorType', # noqa: E501
'identity': 'Identity', # noqa: E501
'ip_address': 'IpAddress', # noqa: E501
'memory_capacity': 'MemoryCapacity', # noqa: E501
+ 'memory_utilization': 'MemoryUtilization', # noqa: E501
'name': 'Name', # noqa: E501
'power_state': 'PowerState', # noqa: E501
'processor_capacity': 'ProcessorCapacity', # noqa: E501
@@ -353,11 +357,13 @@ def __init__(self, *args, **kwargs): # noqa: E501
registered_device (AssetDeviceRegistrationRelationship): [optional] # noqa: E501
boot_time (datetime): Time when this VM booted up.. [optional] # noqa: E501
capacity (InfraHardwareInfo): [optional] # noqa: E501
+ cpu_utilization (float): Average CPU utilization percentage derived as a ratio of CPU used to CPU allocated. The value is calculated whenever inventory is performed.. [optional] # noqa: E501
guest_info (VirtualizationGuestInfo): [optional] # noqa: E501
hypervisor_type (str): Type of hypervisor where the virtual machine is hosted for example ESXi. * `ESXi` - The hypervisor running on the HyperFlex cluster is a Vmware ESXi hypervisor of any version. * `HyperFlexAp` - The hypervisor running on the HyperFlex cluster is Cisco HyperFlex Application Platform. * `Hyper-V` - The hypervisor running on the HyperFlex cluster is Microsoft Hyper-V. * `Unknown` - The hypervisor running on the HyperFlex cluster is not known.. [optional] if omitted the server will use the default value of "ESXi" # noqa: E501
identity (str): The internally generated identity of this VM. This entity is not manipulated by users. It aids in uniquely identifying the virtual machine object. For VMware, this is MOR (managed object reference).. [optional] # noqa: E501
ip_address ([str], none_type): [optional] # noqa: E501
memory_capacity (VirtualizationMemoryCapacity): [optional] # noqa: E501
+ memory_utilization (float): Average memory utilization percentage derived as a ratio of memory used to available memory. The value is calculated whenever inventory is performed.. [optional] # noqa: E501
name (str): User-provided name to identify the virtual machine.. [optional] # noqa: E501
power_state (str): Power state of the virtual machine. * `Unknown` - The entity's power state is unknown. * `PoweringOn` - The entity is powering on. * `PoweredOn` - The entity is powered on. * `PoweringOff` - The entity is powering off. * `PoweredOff` - The entity is powered down. * `StandBy` - The entity is in standby mode. * `Paused` - The entity is in pause state. * `Rebooting` - The entity reboot is in progress. * `` - The entity's power state is not available.. [optional] if omitted the server will use the default value of "Unknown" # noqa: E501
processor_capacity (VirtualizationComputeCapacity): [optional] # noqa: E501
diff --git a/intersight/model/cloud_base_virtual_machine_all_of.py b/intersight/model/cloud_base_virtual_machine_all_of.py
index 1413738374..ca698d6671 100644
--- a/intersight/model/cloud_base_virtual_machine_all_of.py
+++ b/intersight/model/cloud_base_virtual_machine_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/cloud_base_volume.py b/intersight/model/cloud_base_volume.py
index 2fb7ede4c5..a0f79d31ad 100644
--- a/intersight/model/cloud_base_volume.py
+++ b/intersight/model/cloud_base_volume.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/cloud_base_volume_all_of.py b/intersight/model/cloud_base_volume_all_of.py
index 92edfb2c57..704c1cbf6b 100644
--- a/intersight/model/cloud_base_volume_all_of.py
+++ b/intersight/model/cloud_base_volume_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/cloud_billing_unit.py b/intersight/model/cloud_billing_unit.py
index 928b3754da..6b602ed070 100644
--- a/intersight/model/cloud_billing_unit.py
+++ b/intersight/model/cloud_billing_unit.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/cloud_billing_unit_all_of.py b/intersight/model/cloud_billing_unit_all_of.py
index 45d74aea2c..f9d0477a84 100644
--- a/intersight/model/cloud_billing_unit_all_of.py
+++ b/intersight/model/cloud_billing_unit_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/cloud_cloud_region.py b/intersight/model/cloud_cloud_region.py
index 5d8ba45d33..d8b1a95c60 100644
--- a/intersight/model/cloud_cloud_region.py
+++ b/intersight/model/cloud_cloud_region.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/cloud_cloud_region_all_of.py b/intersight/model/cloud_cloud_region_all_of.py
index b24af5c956..7d80cf82fd 100644
--- a/intersight/model/cloud_cloud_region_all_of.py
+++ b/intersight/model/cloud_cloud_region_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/cloud_cloud_tag.py b/intersight/model/cloud_cloud_tag.py
index 793b776bcb..b5e96f3279 100644
--- a/intersight/model/cloud_cloud_tag.py
+++ b/intersight/model/cloud_cloud_tag.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/cloud_cloud_tag_all_of.py b/intersight/model/cloud_cloud_tag_all_of.py
index 4bda216327..32f8b3eed9 100644
--- a/intersight/model/cloud_cloud_tag_all_of.py
+++ b/intersight/model/cloud_cloud_tag_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/cloud_collect_inventory.py b/intersight/model/cloud_collect_inventory.py
index 5b33796190..cba80f3fde 100644
--- a/intersight/model/cloud_collect_inventory.py
+++ b/intersight/model/cloud_collect_inventory.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/cloud_collect_inventory_all_of.py b/intersight/model/cloud_collect_inventory_all_of.py
index 2b547a18da..8cf2c5a657 100644
--- a/intersight/model/cloud_collect_inventory_all_of.py
+++ b/intersight/model/cloud_collect_inventory_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/cloud_custom_attributes.py b/intersight/model/cloud_custom_attributes.py
index 46b148aa7e..79762184bb 100644
--- a/intersight/model/cloud_custom_attributes.py
+++ b/intersight/model/cloud_custom_attributes.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/cloud_custom_attributes_all_of.py b/intersight/model/cloud_custom_attributes_all_of.py
index 736b28632a..99a0e781f5 100644
--- a/intersight/model/cloud_custom_attributes_all_of.py
+++ b/intersight/model/cloud_custom_attributes_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/cloud_image_reference.py b/intersight/model/cloud_image_reference.py
index 672ed3f120..bcb523544c 100644
--- a/intersight/model/cloud_image_reference.py
+++ b/intersight/model/cloud_image_reference.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/cloud_image_reference_all_of.py b/intersight/model/cloud_image_reference_all_of.py
index 5a5157b55f..553d721cf6 100644
--- a/intersight/model/cloud_image_reference_all_of.py
+++ b/intersight/model/cloud_image_reference_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/cloud_instance_type.py b/intersight/model/cloud_instance_type.py
index f8c470de18..75010ba442 100644
--- a/intersight/model/cloud_instance_type.py
+++ b/intersight/model/cloud_instance_type.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/cloud_instance_type_all_of.py b/intersight/model/cloud_instance_type_all_of.py
index 49a5597c37..e9e1038f28 100644
--- a/intersight/model/cloud_instance_type_all_of.py
+++ b/intersight/model/cloud_instance_type_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/cloud_network_access_config.py b/intersight/model/cloud_network_access_config.py
index d2dea29b13..43ef3ea6d0 100644
--- a/intersight/model/cloud_network_access_config.py
+++ b/intersight/model/cloud_network_access_config.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/cloud_network_access_config_all_of.py b/intersight/model/cloud_network_access_config_all_of.py
index 137e6b8740..2068852c7a 100644
--- a/intersight/model/cloud_network_access_config_all_of.py
+++ b/intersight/model/cloud_network_access_config_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/cloud_network_address.py b/intersight/model/cloud_network_address.py
index ade168daee..1897700547 100644
--- a/intersight/model/cloud_network_address.py
+++ b/intersight/model/cloud_network_address.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/cloud_network_address_all_of.py b/intersight/model/cloud_network_address_all_of.py
index 665dd3ae40..db27d0c6cf 100644
--- a/intersight/model/cloud_network_address_all_of.py
+++ b/intersight/model/cloud_network_address_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/cloud_network_instance_attachment.py b/intersight/model/cloud_network_instance_attachment.py
index 1cee4a6180..a3cd3b2ceb 100644
--- a/intersight/model/cloud_network_instance_attachment.py
+++ b/intersight/model/cloud_network_instance_attachment.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/cloud_network_instance_attachment_all_of.py b/intersight/model/cloud_network_instance_attachment_all_of.py
index 17a7f83df5..acc5eaaa8f 100644
--- a/intersight/model/cloud_network_instance_attachment_all_of.py
+++ b/intersight/model/cloud_network_instance_attachment_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/cloud_network_interface_attachment.py b/intersight/model/cloud_network_interface_attachment.py
index 47eb61de92..3bd707ed2f 100644
--- a/intersight/model/cloud_network_interface_attachment.py
+++ b/intersight/model/cloud_network_interface_attachment.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/cloud_network_interface_attachment_all_of.py b/intersight/model/cloud_network_interface_attachment_all_of.py
index 7cb1f9877d..22c22211a1 100644
--- a/intersight/model/cloud_network_interface_attachment_all_of.py
+++ b/intersight/model/cloud_network_interface_attachment_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/cloud_regions.py b/intersight/model/cloud_regions.py
index 6b43637fef..78e7959ab4 100644
--- a/intersight/model/cloud_regions.py
+++ b/intersight/model/cloud_regions.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/cloud_regions_all_of.py b/intersight/model/cloud_regions_all_of.py
index 356c97cf25..5c6461475e 100644
--- a/intersight/model/cloud_regions_all_of.py
+++ b/intersight/model/cloud_regions_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/cloud_regions_list.py b/intersight/model/cloud_regions_list.py
index aee3bd4345..f474efb08e 100644
--- a/intersight/model/cloud_regions_list.py
+++ b/intersight/model/cloud_regions_list.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/cloud_regions_list_all_of.py b/intersight/model/cloud_regions_list_all_of.py
index 969ed708e0..6910178537 100644
--- a/intersight/model/cloud_regions_list_all_of.py
+++ b/intersight/model/cloud_regions_list_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/cloud_regions_response.py b/intersight/model/cloud_regions_response.py
index 6eb5dd4921..3b41a83b7a 100644
--- a/intersight/model/cloud_regions_response.py
+++ b/intersight/model/cloud_regions_response.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/cloud_security_group_rule.py b/intersight/model/cloud_security_group_rule.py
index 03c55e6992..7b601d5596 100644
--- a/intersight/model/cloud_security_group_rule.py
+++ b/intersight/model/cloud_security_group_rule.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/cloud_security_group_rule_all_of.py b/intersight/model/cloud_security_group_rule_all_of.py
index 3cb6c43b6a..e6539965f8 100644
--- a/intersight/model/cloud_security_group_rule_all_of.py
+++ b/intersight/model/cloud_security_group_rule_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/cloud_sku_container_type.py b/intersight/model/cloud_sku_container_type.py
index c99e149516..522ff748e1 100644
--- a/intersight/model/cloud_sku_container_type.py
+++ b/intersight/model/cloud_sku_container_type.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/cloud_sku_container_type_all_of.py b/intersight/model/cloud_sku_container_type_all_of.py
index 71d6308d17..6264ae7e25 100644
--- a/intersight/model/cloud_sku_container_type_all_of.py
+++ b/intersight/model/cloud_sku_container_type_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/cloud_sku_container_type_list.py b/intersight/model/cloud_sku_container_type_list.py
index 2950401b82..6efa5f7b05 100644
--- a/intersight/model/cloud_sku_container_type_list.py
+++ b/intersight/model/cloud_sku_container_type_list.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/cloud_sku_container_type_list_all_of.py b/intersight/model/cloud_sku_container_type_list_all_of.py
index 3852c28395..7484c6dc4e 100644
--- a/intersight/model/cloud_sku_container_type_list_all_of.py
+++ b/intersight/model/cloud_sku_container_type_list_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/cloud_sku_container_type_response.py b/intersight/model/cloud_sku_container_type_response.py
index a57b4c52a0..55d1d5dd70 100644
--- a/intersight/model/cloud_sku_container_type_response.py
+++ b/intersight/model/cloud_sku_container_type_response.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/cloud_sku_database_type.py b/intersight/model/cloud_sku_database_type.py
index 3ab0304daf..b6337cb7ca 100644
--- a/intersight/model/cloud_sku_database_type.py
+++ b/intersight/model/cloud_sku_database_type.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/cloud_sku_database_type_all_of.py b/intersight/model/cloud_sku_database_type_all_of.py
index 6e40d5f2f2..3663bef2d6 100644
--- a/intersight/model/cloud_sku_database_type_all_of.py
+++ b/intersight/model/cloud_sku_database_type_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/cloud_sku_database_type_list.py b/intersight/model/cloud_sku_database_type_list.py
index 3e2348c481..a41600209b 100644
--- a/intersight/model/cloud_sku_database_type_list.py
+++ b/intersight/model/cloud_sku_database_type_list.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/cloud_sku_database_type_list_all_of.py b/intersight/model/cloud_sku_database_type_list_all_of.py
index 53a252882e..1a85adc56c 100644
--- a/intersight/model/cloud_sku_database_type_list_all_of.py
+++ b/intersight/model/cloud_sku_database_type_list_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/cloud_sku_database_type_response.py b/intersight/model/cloud_sku_database_type_response.py
index 24677da1ca..08418ed52d 100644
--- a/intersight/model/cloud_sku_database_type_response.py
+++ b/intersight/model/cloud_sku_database_type_response.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/cloud_sku_instance_type.py b/intersight/model/cloud_sku_instance_type.py
index 9e6607b93a..6890f99627 100644
--- a/intersight/model/cloud_sku_instance_type.py
+++ b/intersight/model/cloud_sku_instance_type.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/cloud_sku_instance_type_all_of.py b/intersight/model/cloud_sku_instance_type_all_of.py
index 05ac3bc9fd..d30f2ad0c9 100644
--- a/intersight/model/cloud_sku_instance_type_all_of.py
+++ b/intersight/model/cloud_sku_instance_type_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/cloud_sku_instance_type_list.py b/intersight/model/cloud_sku_instance_type_list.py
index 99df20a901..8414fca314 100644
--- a/intersight/model/cloud_sku_instance_type_list.py
+++ b/intersight/model/cloud_sku_instance_type_list.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/cloud_sku_instance_type_list_all_of.py b/intersight/model/cloud_sku_instance_type_list_all_of.py
index 90af3d12f2..29da629a16 100644
--- a/intersight/model/cloud_sku_instance_type_list_all_of.py
+++ b/intersight/model/cloud_sku_instance_type_list_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/cloud_sku_instance_type_response.py b/intersight/model/cloud_sku_instance_type_response.py
index 2f75ff3cbf..621a4cb5e7 100644
--- a/intersight/model/cloud_sku_instance_type_response.py
+++ b/intersight/model/cloud_sku_instance_type_response.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/cloud_sku_network_type.py b/intersight/model/cloud_sku_network_type.py
index df3f24181c..6f97895ffd 100644
--- a/intersight/model/cloud_sku_network_type.py
+++ b/intersight/model/cloud_sku_network_type.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/cloud_sku_network_type_list.py b/intersight/model/cloud_sku_network_type_list.py
index 6a9229e70e..67becc4841 100644
--- a/intersight/model/cloud_sku_network_type_list.py
+++ b/intersight/model/cloud_sku_network_type_list.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/cloud_sku_network_type_list_all_of.py b/intersight/model/cloud_sku_network_type_list_all_of.py
index 3ab60696ce..40e2cf6b9a 100644
--- a/intersight/model/cloud_sku_network_type_list_all_of.py
+++ b/intersight/model/cloud_sku_network_type_list_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/cloud_sku_network_type_response.py b/intersight/model/cloud_sku_network_type_response.py
index 42397753c7..cff7308cf0 100644
--- a/intersight/model/cloud_sku_network_type_response.py
+++ b/intersight/model/cloud_sku_network_type_response.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/cloud_sku_volume_type.py b/intersight/model/cloud_sku_volume_type.py
index 4025844e8c..b3b267bda5 100644
--- a/intersight/model/cloud_sku_volume_type.py
+++ b/intersight/model/cloud_sku_volume_type.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/cloud_sku_volume_type_all_of.py b/intersight/model/cloud_sku_volume_type_all_of.py
index ab15b276dc..e03003cd8c 100644
--- a/intersight/model/cloud_sku_volume_type_all_of.py
+++ b/intersight/model/cloud_sku_volume_type_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/cloud_sku_volume_type_list.py b/intersight/model/cloud_sku_volume_type_list.py
index b5645702a4..5675470845 100644
--- a/intersight/model/cloud_sku_volume_type_list.py
+++ b/intersight/model/cloud_sku_volume_type_list.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/cloud_sku_volume_type_list_all_of.py b/intersight/model/cloud_sku_volume_type_list_all_of.py
index 24d470f533..74c03e900a 100644
--- a/intersight/model/cloud_sku_volume_type_list_all_of.py
+++ b/intersight/model/cloud_sku_volume_type_list_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/cloud_sku_volume_type_response.py b/intersight/model/cloud_sku_volume_type_response.py
index e901007d46..37b4be4674 100644
--- a/intersight/model/cloud_sku_volume_type_response.py
+++ b/intersight/model/cloud_sku_volume_type_response.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/cloud_tfc_agentpool.py b/intersight/model/cloud_tfc_agentpool.py
index c38251a026..f843bc2e9c 100644
--- a/intersight/model/cloud_tfc_agentpool.py
+++ b/intersight/model/cloud_tfc_agentpool.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/cloud_tfc_agentpool_all_of.py b/intersight/model/cloud_tfc_agentpool_all_of.py
index 636a764b09..77db62690f 100644
--- a/intersight/model/cloud_tfc_agentpool_all_of.py
+++ b/intersight/model/cloud_tfc_agentpool_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/cloud_tfc_agentpool_list.py b/intersight/model/cloud_tfc_agentpool_list.py
index b9f919025e..ebb03d5b71 100644
--- a/intersight/model/cloud_tfc_agentpool_list.py
+++ b/intersight/model/cloud_tfc_agentpool_list.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/cloud_tfc_agentpool_list_all_of.py b/intersight/model/cloud_tfc_agentpool_list_all_of.py
index ce48569ce7..f14289413c 100644
--- a/intersight/model/cloud_tfc_agentpool_list_all_of.py
+++ b/intersight/model/cloud_tfc_agentpool_list_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/cloud_tfc_agentpool_response.py b/intersight/model/cloud_tfc_agentpool_response.py
index 728f82d349..54cc442bdf 100644
--- a/intersight/model/cloud_tfc_agentpool_response.py
+++ b/intersight/model/cloud_tfc_agentpool_response.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/cloud_tfc_organization.py b/intersight/model/cloud_tfc_organization.py
index 3572e984d3..ed621c489e 100644
--- a/intersight/model/cloud_tfc_organization.py
+++ b/intersight/model/cloud_tfc_organization.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/cloud_tfc_organization_all_of.py b/intersight/model/cloud_tfc_organization_all_of.py
index 027a9ffa6d..bc7778808b 100644
--- a/intersight/model/cloud_tfc_organization_all_of.py
+++ b/intersight/model/cloud_tfc_organization_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/cloud_tfc_organization_list.py b/intersight/model/cloud_tfc_organization_list.py
index 7a3382a7e3..97d95a5d91 100644
--- a/intersight/model/cloud_tfc_organization_list.py
+++ b/intersight/model/cloud_tfc_organization_list.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/cloud_tfc_organization_list_all_of.py b/intersight/model/cloud_tfc_organization_list_all_of.py
index 44abeb56ac..1dd85d5539 100644
--- a/intersight/model/cloud_tfc_organization_list_all_of.py
+++ b/intersight/model/cloud_tfc_organization_list_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/cloud_tfc_organization_relationship.py b/intersight/model/cloud_tfc_organization_relationship.py
index da13c03aa7..53e32ecfc7 100644
--- a/intersight/model/cloud_tfc_organization_relationship.py
+++ b/intersight/model/cloud_tfc_organization_relationship.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
@@ -74,6 +74,8 @@ class CloudTfcOrganizationRelationship(ModelComposed):
},
('object_type',): {
'AAA.AUDITRECORD': "aaa.AuditRecord",
+ 'AAA.RETENTIONCONFIG': "aaa.RetentionConfig",
+ 'AAA.RETENTIONPOLICY': "aaa.RetentionPolicy",
'ACCESS.POLICY': "access.Policy",
'ADAPTER.CONFIGPOLICY': "adapter.ConfigPolicy",
'ADAPTER.EXTETHINTERFACE': "adapter.ExtEthInterface",
@@ -90,6 +92,7 @@ class CloudTfcOrganizationRelationship(ModelComposed):
'APPLIANCE.DATAEXPORTPOLICY': "appliance.DataExportPolicy",
'APPLIANCE.DEVICECERTIFICATE': "appliance.DeviceCertificate",
'APPLIANCE.DEVICECLAIM': "appliance.DeviceClaim",
+ 'APPLIANCE.DEVICEUPGRADEPOLICY': "appliance.DeviceUpgradePolicy",
'APPLIANCE.DIAGSETTING': "appliance.DiagSetting",
'APPLIANCE.EXTERNALSYSLOGSETTING': "appliance.ExternalSyslogSetting",
'APPLIANCE.FILESYSTEMSTATUS': "appliance.FileSystemStatus",
@@ -138,9 +141,12 @@ class CloudTfcOrganizationRelationship(ModelComposed):
'BOOT.UEFISHELLDEVICE': "boot.UefiShellDevice",
'BOOT.USBDEVICE': "boot.UsbDevice",
'BOOT.VMEDIADEVICE': "boot.VmediaDevice",
+ 'BULK.EXPORT': "bulk.Export",
+ 'BULK.EXPORTEDITEM': "bulk.ExportedItem",
'BULK.MOCLONER': "bulk.MoCloner",
'BULK.MOMERGER': "bulk.MoMerger",
'BULK.REQUEST': "bulk.Request",
+ 'BULK.SUBREQUESTOBJ': "bulk.SubRequestObj",
'CAPABILITY.ADAPTERUNITDESCRIPTOR': "capability.AdapterUnitDescriptor",
'CAPABILITY.CATALOG': "capability.Catalog",
'CAPABILITY.CHASSISDESCRIPTOR': "capability.ChassisDescriptor",
@@ -204,10 +210,6 @@ class CloudTfcOrganizationRelationship(ModelComposed):
'COND.HCLSTATUS': "cond.HclStatus",
'COND.HCLSTATUSDETAIL': "cond.HclStatusDetail",
'COND.HCLSTATUSJOB': "cond.HclStatusJob",
- 'CONFIG.EXPORTEDITEM': "config.ExportedItem",
- 'CONFIG.EXPORTER': "config.Exporter",
- 'CONFIG.IMPORTEDITEM': "config.ImportedItem",
- 'CONFIG.IMPORTER': "config.Importer",
'CONNECTORPACK.CONNECTORPACKUPGRADE': "connectorpack.ConnectorPackUpgrade",
'CONNECTORPACK.UPGRADEIMPACT': "connectorpack.UpgradeImpact",
'CRD.CUSTOMRESOURCE': "crd.CustomResource",
@@ -216,6 +218,7 @@ class CloudTfcOrganizationRelationship(ModelComposed):
'EQUIPMENT.CHASSISIDENTITY': "equipment.ChassisIdentity",
'EQUIPMENT.CHASSISOPERATION': "equipment.ChassisOperation",
'EQUIPMENT.DEVICESUMMARY': "equipment.DeviceSummary",
+ 'EQUIPMENT.EXPANDERMODULE': "equipment.ExpanderModule",
'EQUIPMENT.FAN': "equipment.Fan",
'EQUIPMENT.FANCONTROL': "equipment.FanControl",
'EQUIPMENT.FANMODULE': "equipment.FanModule",
@@ -464,6 +467,7 @@ class CloudTfcOrganizationRelationship(ModelComposed):
'KUBERNETES.ADDONDEFINITION': "kubernetes.AddonDefinition",
'KUBERNETES.ADDONPOLICY': "kubernetes.AddonPolicy",
'KUBERNETES.ADDONREPOSITORY': "kubernetes.AddonRepository",
+ 'KUBERNETES.BAREMETALNODEPROFILE': "kubernetes.BaremetalNodeProfile",
'KUBERNETES.CATALOG': "kubernetes.Catalog",
'KUBERNETES.CLUSTER': "kubernetes.Cluster",
'KUBERNETES.CLUSTERADDONPROFILE': "kubernetes.ClusterAddonProfile",
@@ -633,6 +637,11 @@ class CloudTfcOrganizationRelationship(ModelComposed):
'RESOURCE.LICENSERESOURCECOUNT': "resource.LicenseResourceCount",
'RESOURCE.MEMBERSHIP': "resource.Membership",
'RESOURCE.MEMBERSHIPHOLDER': "resource.MembershipHolder",
+ 'RESOURCEPOOL.LEASE': "resourcepool.Lease",
+ 'RESOURCEPOOL.LEASERESOURCE': "resourcepool.LeaseResource",
+ 'RESOURCEPOOL.POOL': "resourcepool.Pool",
+ 'RESOURCEPOOL.POOLMEMBER': "resourcepool.PoolMember",
+ 'RESOURCEPOOL.UNIVERSE': "resourcepool.Universe",
'RPROXY.REVERSEPROXY': "rproxy.ReverseProxy",
'SDCARD.POLICY': "sdcard.Policy",
'SDWAN.PROFILE': "sdwan.Profile",
@@ -748,6 +757,7 @@ class CloudTfcOrganizationRelationship(ModelComposed):
'TASK.NETAPPSCOPEDINVENTORY': "task.NetAppScopedInventory",
'TASK.PUBLICCLOUDSCOPEDINVENTORY': "task.PublicCloudScopedInventory",
'TASK.PURESCOPEDINVENTORY': "task.PureScopedInventory",
+ 'TASK.SERVERSCOPEDINVENTORY': "task.ServerScopedInventory",
'TECHSUPPORTMANAGEMENT.COLLECTIONCONTROLPOLICY': "techsupportmanagement.CollectionControlPolicy",
'TECHSUPPORTMANAGEMENT.DOWNLOAD': "techsupportmanagement.Download",
'TECHSUPPORTMANAGEMENT.TECHSUPPORTBUNDLE': "techsupportmanagement.TechSupportBundle",
@@ -779,6 +789,7 @@ class CloudTfcOrganizationRelationship(ModelComposed):
'VIRTUALIZATION.VMWAREVCENTER': "virtualization.VmwareVcenter",
'VIRTUALIZATION.VMWAREVIRTUALDISK': "virtualization.VmwareVirtualDisk",
'VIRTUALIZATION.VMWAREVIRTUALMACHINE': "virtualization.VmwareVirtualMachine",
+ 'VIRTUALIZATION.VMWAREVIRTUALMACHINESNAPSHOT': "virtualization.VmwareVirtualMachineSnapshot",
'VIRTUALIZATION.VMWAREVIRTUALNETWORKINTERFACE': "virtualization.VmwareVirtualNetworkInterface",
'VIRTUALIZATION.VMWAREVIRTUALSWITCH': "virtualization.VmwareVirtualSwitch",
'VMEDIA.POLICY': "vmedia.Policy",
@@ -811,12 +822,14 @@ class CloudTfcOrganizationRelationship(ModelComposed):
'WORKFLOW.TASKDEFINITION': "workflow.TaskDefinition",
'WORKFLOW.TASKINFO': "workflow.TaskInfo",
'WORKFLOW.TASKMETADATA': "workflow.TaskMetadata",
+ 'WORKFLOW.TASKNOTIFICATION': "workflow.TaskNotification",
'WORKFLOW.TEMPLATEEVALUATION': "workflow.TemplateEvaluation",
'WORKFLOW.TEMPLATEFUNCTIONMETA': "workflow.TemplateFunctionMeta",
'WORKFLOW.WORKFLOWDEFINITION': "workflow.WorkflowDefinition",
'WORKFLOW.WORKFLOWINFO': "workflow.WorkflowInfo",
'WORKFLOW.WORKFLOWMETA': "workflow.WorkflowMeta",
'WORKFLOW.WORKFLOWMETADATA': "workflow.WorkflowMetadata",
+ 'WORKFLOW.WORKFLOWNOTIFICATION': "workflow.WorkflowNotification",
},
}
diff --git a/intersight/model/cloud_tfc_organization_response.py b/intersight/model/cloud_tfc_organization_response.py
index 31bdd0abef..ab3771b481 100644
--- a/intersight/model/cloud_tfc_organization_response.py
+++ b/intersight/model/cloud_tfc_organization_response.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/cloud_tfc_workspace.py b/intersight/model/cloud_tfc_workspace.py
index 157550fcb2..05a61b3bef 100644
--- a/intersight/model/cloud_tfc_workspace.py
+++ b/intersight/model/cloud_tfc_workspace.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/cloud_tfc_workspace_all_of.py b/intersight/model/cloud_tfc_workspace_all_of.py
index ad230a83ff..ae04fe9c46 100644
--- a/intersight/model/cloud_tfc_workspace_all_of.py
+++ b/intersight/model/cloud_tfc_workspace_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/cloud_tfc_workspace_list.py b/intersight/model/cloud_tfc_workspace_list.py
index 21d06c6643..92a292a8d3 100644
--- a/intersight/model/cloud_tfc_workspace_list.py
+++ b/intersight/model/cloud_tfc_workspace_list.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/cloud_tfc_workspace_list_all_of.py b/intersight/model/cloud_tfc_workspace_list_all_of.py
index fa34fd02c0..099876851d 100644
--- a/intersight/model/cloud_tfc_workspace_list_all_of.py
+++ b/intersight/model/cloud_tfc_workspace_list_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/cloud_tfc_workspace_response.py b/intersight/model/cloud_tfc_workspace_response.py
index e4b028178a..f798b5e906 100644
--- a/intersight/model/cloud_tfc_workspace_response.py
+++ b/intersight/model/cloud_tfc_workspace_response.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/cloud_tfc_workspace_variables.py b/intersight/model/cloud_tfc_workspace_variables.py
index 42e6f92b9d..1100db4509 100644
--- a/intersight/model/cloud_tfc_workspace_variables.py
+++ b/intersight/model/cloud_tfc_workspace_variables.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/cloud_tfc_workspace_variables_all_of.py b/intersight/model/cloud_tfc_workspace_variables_all_of.py
index f58489f2a4..690dcfc53a 100644
--- a/intersight/model/cloud_tfc_workspace_variables_all_of.py
+++ b/intersight/model/cloud_tfc_workspace_variables_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/cloud_volume_attachment.py b/intersight/model/cloud_volume_attachment.py
index e46147bbf5..36a5b7d79e 100644
--- a/intersight/model/cloud_volume_attachment.py
+++ b/intersight/model/cloud_volume_attachment.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/cloud_volume_attachment_all_of.py b/intersight/model/cloud_volume_attachment_all_of.py
index 52a9a91cc5..c844753d18 100644
--- a/intersight/model/cloud_volume_attachment_all_of.py
+++ b/intersight/model/cloud_volume_attachment_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/cloud_volume_instance_attachment.py b/intersight/model/cloud_volume_instance_attachment.py
index 60251bc5f1..de912e11fd 100644
--- a/intersight/model/cloud_volume_instance_attachment.py
+++ b/intersight/model/cloud_volume_instance_attachment.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/cloud_volume_instance_attachment_all_of.py b/intersight/model/cloud_volume_instance_attachment_all_of.py
index b238da16d6..e26515d109 100644
--- a/intersight/model/cloud_volume_instance_attachment_all_of.py
+++ b/intersight/model/cloud_volume_instance_attachment_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/cloud_volume_iops_info.py b/intersight/model/cloud_volume_iops_info.py
index 3f3749e603..ac423e4863 100644
--- a/intersight/model/cloud_volume_iops_info.py
+++ b/intersight/model/cloud_volume_iops_info.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/cloud_volume_iops_info_all_of.py b/intersight/model/cloud_volume_iops_info_all_of.py
index 8312c8a8db..1b22e3f44e 100644
--- a/intersight/model/cloud_volume_iops_info_all_of.py
+++ b/intersight/model/cloud_volume_iops_info_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/cloud_volume_type.py b/intersight/model/cloud_volume_type.py
index f159f0826c..9f6319f08f 100644
--- a/intersight/model/cloud_volume_type.py
+++ b/intersight/model/cloud_volume_type.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/cloud_volume_type_all_of.py b/intersight/model/cloud_volume_type_all_of.py
index 7c5b493868..9d68cf8133 100644
--- a/intersight/model/cloud_volume_type_all_of.py
+++ b/intersight/model/cloud_volume_type_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/cmrf_cm_rf.py b/intersight/model/cmrf_cm_rf.py
index 43601a9f40..51c4fce0db 100644
--- a/intersight/model/cmrf_cm_rf.py
+++ b/intersight/model/cmrf_cm_rf.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
@@ -124,6 +124,7 @@ class CmrfCmRf(ModelComposed):
'BOOT.UEFISHELL': "boot.UefiShell",
'BOOT.USB': "boot.Usb",
'BOOT.VIRTUALMEDIA': "boot.VirtualMedia",
+ 'BULK.HTTPHEADER': "bulk.HttpHeader",
'BULK.RESTRESULT': "bulk.RestResult",
'BULK.RESTSUBREQUEST': "bulk.RestSubRequest",
'CAPABILITY.PORTRANGE': "capability.PortRange",
@@ -164,7 +165,6 @@ class CmrfCmRf(ModelComposed):
'COMPUTE.STORAGEVIRTUALDRIVE': "compute.StorageVirtualDrive",
'COMPUTE.STORAGEVIRTUALDRIVEOPERATION': "compute.StorageVirtualDriveOperation",
'COND.ALARMSUMMARY': "cond.AlarmSummary",
- 'CONFIG.MOREF': "config.MoRef",
'CONNECTOR.CLOSESTREAMMESSAGE': "connector.CloseStreamMessage",
'CONNECTOR.COMMANDCONTROLMESSAGE': "connector.CommandControlMessage",
'CONNECTOR.COMMANDTERMINALSTREAM': "connector.CommandTerminalStream",
@@ -300,6 +300,7 @@ class CmrfCmRf(ModelComposed):
'KUBERNETES.ACTIONINFO': "kubernetes.ActionInfo",
'KUBERNETES.ADDON': "kubernetes.Addon",
'KUBERNETES.ADDONCONFIGURATION': "kubernetes.AddonConfiguration",
+ 'KUBERNETES.BAREMETALNETWORKINFO': "kubernetes.BaremetalNetworkInfo",
'KUBERNETES.CALICOCONFIG': "kubernetes.CalicoConfig",
'KUBERNETES.CLUSTERCERTIFICATECONFIGURATION': "kubernetes.ClusterCertificateConfiguration",
'KUBERNETES.CLUSTERMANAGEMENTCONFIG': "kubernetes.ClusterManagementConfig",
@@ -308,6 +309,8 @@ class CmrfCmRf(ModelComposed):
'KUBERNETES.DEPLOYMENTSTATUS': "kubernetes.DeploymentStatus",
'KUBERNETES.ESSENTIALADDON': "kubernetes.EssentialAddon",
'KUBERNETES.ESXIVIRTUALMACHINEINFRACONFIG': "kubernetes.EsxiVirtualMachineInfraConfig",
+ 'KUBERNETES.ETHERNET': "kubernetes.Ethernet",
+ 'KUBERNETES.ETHERNETMATCHER': "kubernetes.EthernetMatcher",
'KUBERNETES.HYPERFLEXAPVIRTUALMACHINEINFRACONFIG': "kubernetes.HyperFlexApVirtualMachineInfraConfig",
'KUBERNETES.INGRESSSTATUS': "kubernetes.IngressStatus",
'KUBERNETES.KEYVALUE': "kubernetes.KeyValue",
@@ -319,6 +322,7 @@ class CmrfCmRf(ModelComposed):
'KUBERNETES.NODESPEC': "kubernetes.NodeSpec",
'KUBERNETES.NODESTATUS': "kubernetes.NodeStatus",
'KUBERNETES.OBJECTMETA': "kubernetes.ObjectMeta",
+ 'KUBERNETES.OVSBOND': "kubernetes.OvsBond",
'KUBERNETES.PODSTATUS': "kubernetes.PodStatus",
'KUBERNETES.PROXYCONFIG': "kubernetes.ProxyConfig",
'KUBERNETES.SERVICESTATUS': "kubernetes.ServiceStatus",
@@ -330,6 +334,7 @@ class CmrfCmRf(ModelComposed):
'MEMORY.PERSISTENTMEMORYLOGICALNAMESPACE': "memory.PersistentMemoryLogicalNamespace",
'META.ACCESSPRIVILEGE': "meta.AccessPrivilege",
'META.DISPLAYNAMEDEFINITION': "meta.DisplayNameDefinition",
+ 'META.IDENTITYDEFINITION': "meta.IdentityDefinition",
'META.PROPDEFINITION': "meta.PropDefinition",
'META.RELATIONSHIPDEFINITION': "meta.RelationshipDefinition",
'MO.MOREF': "mo.MoRef",
@@ -387,6 +392,8 @@ class CmrfCmRf(ModelComposed):
'RESOURCE.SELECTOR': "resource.Selector",
'RESOURCE.SOURCETOPERMISSIONRESOURCES': "resource.SourceToPermissionResources",
'RESOURCE.SOURCETOPERMISSIONRESOURCESHOLDER': "resource.SourceToPermissionResourcesHolder",
+ 'RESOURCEPOOL.SERVERLEASEPARAMETERS': "resourcepool.ServerLeaseParameters",
+ 'RESOURCEPOOL.SERVERPOOLPARAMETERS': "resourcepool.ServerPoolParameters",
'SDCARD.DIAGNOSTICS': "sdcard.Diagnostics",
'SDCARD.DRIVERS': "sdcard.Drivers",
'SDCARD.HOSTUPGRADEUTILITY': "sdcard.HostUpgradeUtility",
@@ -396,6 +403,7 @@ class CmrfCmRf(ModelComposed):
'SDCARD.USERPARTITION': "sdcard.UserPartition",
'SDWAN.NETWORKCONFIGURATIONTYPE': "sdwan.NetworkConfigurationType",
'SDWAN.TEMPLATEINPUTSTYPE': "sdwan.TemplateInputsType",
+ 'SERVER.PENDINGWORKFLOWTRIGGER': "server.PendingWorkflowTrigger",
'SNMP.TRAP': "snmp.Trap",
'SNMP.USER': "snmp.User",
'SOFTWAREREPOSITORY.APPLIANCEUPLOAD': "softwarerepository.ApplianceUpload",
@@ -631,6 +639,7 @@ class CmrfCmRf(ModelComposed):
'BOOT.UEFISHELL': "boot.UefiShell",
'BOOT.USB': "boot.Usb",
'BOOT.VIRTUALMEDIA': "boot.VirtualMedia",
+ 'BULK.HTTPHEADER': "bulk.HttpHeader",
'BULK.RESTRESULT': "bulk.RestResult",
'BULK.RESTSUBREQUEST': "bulk.RestSubRequest",
'CAPABILITY.PORTRANGE': "capability.PortRange",
@@ -671,7 +680,6 @@ class CmrfCmRf(ModelComposed):
'COMPUTE.STORAGEVIRTUALDRIVE': "compute.StorageVirtualDrive",
'COMPUTE.STORAGEVIRTUALDRIVEOPERATION': "compute.StorageVirtualDriveOperation",
'COND.ALARMSUMMARY': "cond.AlarmSummary",
- 'CONFIG.MOREF': "config.MoRef",
'CONNECTOR.CLOSESTREAMMESSAGE': "connector.CloseStreamMessage",
'CONNECTOR.COMMANDCONTROLMESSAGE': "connector.CommandControlMessage",
'CONNECTOR.COMMANDTERMINALSTREAM': "connector.CommandTerminalStream",
@@ -807,6 +815,7 @@ class CmrfCmRf(ModelComposed):
'KUBERNETES.ACTIONINFO': "kubernetes.ActionInfo",
'KUBERNETES.ADDON': "kubernetes.Addon",
'KUBERNETES.ADDONCONFIGURATION': "kubernetes.AddonConfiguration",
+ 'KUBERNETES.BAREMETALNETWORKINFO': "kubernetes.BaremetalNetworkInfo",
'KUBERNETES.CALICOCONFIG': "kubernetes.CalicoConfig",
'KUBERNETES.CLUSTERCERTIFICATECONFIGURATION': "kubernetes.ClusterCertificateConfiguration",
'KUBERNETES.CLUSTERMANAGEMENTCONFIG': "kubernetes.ClusterManagementConfig",
@@ -815,6 +824,8 @@ class CmrfCmRf(ModelComposed):
'KUBERNETES.DEPLOYMENTSTATUS': "kubernetes.DeploymentStatus",
'KUBERNETES.ESSENTIALADDON': "kubernetes.EssentialAddon",
'KUBERNETES.ESXIVIRTUALMACHINEINFRACONFIG': "kubernetes.EsxiVirtualMachineInfraConfig",
+ 'KUBERNETES.ETHERNET': "kubernetes.Ethernet",
+ 'KUBERNETES.ETHERNETMATCHER': "kubernetes.EthernetMatcher",
'KUBERNETES.HYPERFLEXAPVIRTUALMACHINEINFRACONFIG': "kubernetes.HyperFlexApVirtualMachineInfraConfig",
'KUBERNETES.INGRESSSTATUS': "kubernetes.IngressStatus",
'KUBERNETES.KEYVALUE': "kubernetes.KeyValue",
@@ -826,6 +837,7 @@ class CmrfCmRf(ModelComposed):
'KUBERNETES.NODESPEC': "kubernetes.NodeSpec",
'KUBERNETES.NODESTATUS': "kubernetes.NodeStatus",
'KUBERNETES.OBJECTMETA': "kubernetes.ObjectMeta",
+ 'KUBERNETES.OVSBOND': "kubernetes.OvsBond",
'KUBERNETES.PODSTATUS': "kubernetes.PodStatus",
'KUBERNETES.PROXYCONFIG': "kubernetes.ProxyConfig",
'KUBERNETES.SERVICESTATUS': "kubernetes.ServiceStatus",
@@ -837,6 +849,7 @@ class CmrfCmRf(ModelComposed):
'MEMORY.PERSISTENTMEMORYLOGICALNAMESPACE': "memory.PersistentMemoryLogicalNamespace",
'META.ACCESSPRIVILEGE': "meta.AccessPrivilege",
'META.DISPLAYNAMEDEFINITION': "meta.DisplayNameDefinition",
+ 'META.IDENTITYDEFINITION': "meta.IdentityDefinition",
'META.PROPDEFINITION': "meta.PropDefinition",
'META.RELATIONSHIPDEFINITION': "meta.RelationshipDefinition",
'MO.MOREF': "mo.MoRef",
@@ -894,6 +907,8 @@ class CmrfCmRf(ModelComposed):
'RESOURCE.SELECTOR': "resource.Selector",
'RESOURCE.SOURCETOPERMISSIONRESOURCES': "resource.SourceToPermissionResources",
'RESOURCE.SOURCETOPERMISSIONRESOURCESHOLDER': "resource.SourceToPermissionResourcesHolder",
+ 'RESOURCEPOOL.SERVERLEASEPARAMETERS': "resourcepool.ServerLeaseParameters",
+ 'RESOURCEPOOL.SERVERPOOLPARAMETERS': "resourcepool.ServerPoolParameters",
'SDCARD.DIAGNOSTICS': "sdcard.Diagnostics",
'SDCARD.DRIVERS': "sdcard.Drivers",
'SDCARD.HOSTUPGRADEUTILITY': "sdcard.HostUpgradeUtility",
@@ -903,6 +918,7 @@ class CmrfCmRf(ModelComposed):
'SDCARD.USERPARTITION': "sdcard.UserPartition",
'SDWAN.NETWORKCONFIGURATIONTYPE': "sdwan.NetworkConfigurationType",
'SDWAN.TEMPLATEINPUTSTYPE': "sdwan.TemplateInputsType",
+ 'SERVER.PENDINGWORKFLOWTRIGGER': "server.PendingWorkflowTrigger",
'SNMP.TRAP': "snmp.Trap",
'SNMP.USER': "snmp.User",
'SOFTWAREREPOSITORY.APPLIANCEUPLOAD': "softwarerepository.ApplianceUpload",
diff --git a/intersight/model/cmrf_cm_rf_all_of.py b/intersight/model/cmrf_cm_rf_all_of.py
index 7c9620c9ee..2a331bdb4d 100644
--- a/intersight/model/cmrf_cm_rf_all_of.py
+++ b/intersight/model/cmrf_cm_rf_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/comm_abstract_http_proxy_policy.py b/intersight/model/comm_abstract_http_proxy_policy.py
index e01101b42a..0a5dc9624c 100644
--- a/intersight/model/comm_abstract_http_proxy_policy.py
+++ b/intersight/model/comm_abstract_http_proxy_policy.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/comm_abstract_http_proxy_policy_all_of.py b/intersight/model/comm_abstract_http_proxy_policy_all_of.py
index ebaaf30a35..e78e9e41b0 100644
--- a/intersight/model/comm_abstract_http_proxy_policy_all_of.py
+++ b/intersight/model/comm_abstract_http_proxy_policy_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/comm_http_proxy_policy.py b/intersight/model/comm_http_proxy_policy.py
index 2ff076ca6c..fcdaa82f4b 100644
--- a/intersight/model/comm_http_proxy_policy.py
+++ b/intersight/model/comm_http_proxy_policy.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/comm_http_proxy_policy_all_of.py b/intersight/model/comm_http_proxy_policy_all_of.py
index e591d5dc9c..cbfe621ede 100644
--- a/intersight/model/comm_http_proxy_policy_all_of.py
+++ b/intersight/model/comm_http_proxy_policy_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/comm_http_proxy_policy_list.py b/intersight/model/comm_http_proxy_policy_list.py
index b8cc4ae0d7..387832041e 100644
--- a/intersight/model/comm_http_proxy_policy_list.py
+++ b/intersight/model/comm_http_proxy_policy_list.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/comm_http_proxy_policy_list_all_of.py b/intersight/model/comm_http_proxy_policy_list_all_of.py
index 4e287c76d1..b29a0e7de9 100644
--- a/intersight/model/comm_http_proxy_policy_list_all_of.py
+++ b/intersight/model/comm_http_proxy_policy_list_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/comm_http_proxy_policy_relationship.py b/intersight/model/comm_http_proxy_policy_relationship.py
index 2342c0d433..774a385d7f 100644
--- a/intersight/model/comm_http_proxy_policy_relationship.py
+++ b/intersight/model/comm_http_proxy_policy_relationship.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
@@ -76,6 +76,8 @@ class CommHttpProxyPolicyRelationship(ModelComposed):
},
('object_type',): {
'AAA.AUDITRECORD': "aaa.AuditRecord",
+ 'AAA.RETENTIONCONFIG': "aaa.RetentionConfig",
+ 'AAA.RETENTIONPOLICY': "aaa.RetentionPolicy",
'ACCESS.POLICY': "access.Policy",
'ADAPTER.CONFIGPOLICY': "adapter.ConfigPolicy",
'ADAPTER.EXTETHINTERFACE': "adapter.ExtEthInterface",
@@ -92,6 +94,7 @@ class CommHttpProxyPolicyRelationship(ModelComposed):
'APPLIANCE.DATAEXPORTPOLICY': "appliance.DataExportPolicy",
'APPLIANCE.DEVICECERTIFICATE': "appliance.DeviceCertificate",
'APPLIANCE.DEVICECLAIM': "appliance.DeviceClaim",
+ 'APPLIANCE.DEVICEUPGRADEPOLICY': "appliance.DeviceUpgradePolicy",
'APPLIANCE.DIAGSETTING': "appliance.DiagSetting",
'APPLIANCE.EXTERNALSYSLOGSETTING': "appliance.ExternalSyslogSetting",
'APPLIANCE.FILESYSTEMSTATUS': "appliance.FileSystemStatus",
@@ -140,9 +143,12 @@ class CommHttpProxyPolicyRelationship(ModelComposed):
'BOOT.UEFISHELLDEVICE': "boot.UefiShellDevice",
'BOOT.USBDEVICE': "boot.UsbDevice",
'BOOT.VMEDIADEVICE': "boot.VmediaDevice",
+ 'BULK.EXPORT': "bulk.Export",
+ 'BULK.EXPORTEDITEM': "bulk.ExportedItem",
'BULK.MOCLONER': "bulk.MoCloner",
'BULK.MOMERGER': "bulk.MoMerger",
'BULK.REQUEST': "bulk.Request",
+ 'BULK.SUBREQUESTOBJ': "bulk.SubRequestObj",
'CAPABILITY.ADAPTERUNITDESCRIPTOR': "capability.AdapterUnitDescriptor",
'CAPABILITY.CATALOG': "capability.Catalog",
'CAPABILITY.CHASSISDESCRIPTOR': "capability.ChassisDescriptor",
@@ -206,10 +212,6 @@ class CommHttpProxyPolicyRelationship(ModelComposed):
'COND.HCLSTATUS': "cond.HclStatus",
'COND.HCLSTATUSDETAIL': "cond.HclStatusDetail",
'COND.HCLSTATUSJOB': "cond.HclStatusJob",
- 'CONFIG.EXPORTEDITEM': "config.ExportedItem",
- 'CONFIG.EXPORTER': "config.Exporter",
- 'CONFIG.IMPORTEDITEM': "config.ImportedItem",
- 'CONFIG.IMPORTER': "config.Importer",
'CONNECTORPACK.CONNECTORPACKUPGRADE': "connectorpack.ConnectorPackUpgrade",
'CONNECTORPACK.UPGRADEIMPACT': "connectorpack.UpgradeImpact",
'CRD.CUSTOMRESOURCE': "crd.CustomResource",
@@ -218,6 +220,7 @@ class CommHttpProxyPolicyRelationship(ModelComposed):
'EQUIPMENT.CHASSISIDENTITY': "equipment.ChassisIdentity",
'EQUIPMENT.CHASSISOPERATION': "equipment.ChassisOperation",
'EQUIPMENT.DEVICESUMMARY': "equipment.DeviceSummary",
+ 'EQUIPMENT.EXPANDERMODULE': "equipment.ExpanderModule",
'EQUIPMENT.FAN': "equipment.Fan",
'EQUIPMENT.FANCONTROL': "equipment.FanControl",
'EQUIPMENT.FANMODULE': "equipment.FanModule",
@@ -466,6 +469,7 @@ class CommHttpProxyPolicyRelationship(ModelComposed):
'KUBERNETES.ADDONDEFINITION': "kubernetes.AddonDefinition",
'KUBERNETES.ADDONPOLICY': "kubernetes.AddonPolicy",
'KUBERNETES.ADDONREPOSITORY': "kubernetes.AddonRepository",
+ 'KUBERNETES.BAREMETALNODEPROFILE': "kubernetes.BaremetalNodeProfile",
'KUBERNETES.CATALOG': "kubernetes.Catalog",
'KUBERNETES.CLUSTER': "kubernetes.Cluster",
'KUBERNETES.CLUSTERADDONPROFILE': "kubernetes.ClusterAddonProfile",
@@ -635,6 +639,11 @@ class CommHttpProxyPolicyRelationship(ModelComposed):
'RESOURCE.LICENSERESOURCECOUNT': "resource.LicenseResourceCount",
'RESOURCE.MEMBERSHIP': "resource.Membership",
'RESOURCE.MEMBERSHIPHOLDER': "resource.MembershipHolder",
+ 'RESOURCEPOOL.LEASE': "resourcepool.Lease",
+ 'RESOURCEPOOL.LEASERESOURCE': "resourcepool.LeaseResource",
+ 'RESOURCEPOOL.POOL': "resourcepool.Pool",
+ 'RESOURCEPOOL.POOLMEMBER': "resourcepool.PoolMember",
+ 'RESOURCEPOOL.UNIVERSE': "resourcepool.Universe",
'RPROXY.REVERSEPROXY': "rproxy.ReverseProxy",
'SDCARD.POLICY': "sdcard.Policy",
'SDWAN.PROFILE': "sdwan.Profile",
@@ -750,6 +759,7 @@ class CommHttpProxyPolicyRelationship(ModelComposed):
'TASK.NETAPPSCOPEDINVENTORY': "task.NetAppScopedInventory",
'TASK.PUBLICCLOUDSCOPEDINVENTORY': "task.PublicCloudScopedInventory",
'TASK.PURESCOPEDINVENTORY': "task.PureScopedInventory",
+ 'TASK.SERVERSCOPEDINVENTORY': "task.ServerScopedInventory",
'TECHSUPPORTMANAGEMENT.COLLECTIONCONTROLPOLICY': "techsupportmanagement.CollectionControlPolicy",
'TECHSUPPORTMANAGEMENT.DOWNLOAD': "techsupportmanagement.Download",
'TECHSUPPORTMANAGEMENT.TECHSUPPORTBUNDLE': "techsupportmanagement.TechSupportBundle",
@@ -781,6 +791,7 @@ class CommHttpProxyPolicyRelationship(ModelComposed):
'VIRTUALIZATION.VMWAREVCENTER': "virtualization.VmwareVcenter",
'VIRTUALIZATION.VMWAREVIRTUALDISK': "virtualization.VmwareVirtualDisk",
'VIRTUALIZATION.VMWAREVIRTUALMACHINE': "virtualization.VmwareVirtualMachine",
+ 'VIRTUALIZATION.VMWAREVIRTUALMACHINESNAPSHOT': "virtualization.VmwareVirtualMachineSnapshot",
'VIRTUALIZATION.VMWAREVIRTUALNETWORKINTERFACE': "virtualization.VmwareVirtualNetworkInterface",
'VIRTUALIZATION.VMWAREVIRTUALSWITCH': "virtualization.VmwareVirtualSwitch",
'VMEDIA.POLICY': "vmedia.Policy",
@@ -813,12 +824,14 @@ class CommHttpProxyPolicyRelationship(ModelComposed):
'WORKFLOW.TASKDEFINITION': "workflow.TaskDefinition",
'WORKFLOW.TASKINFO': "workflow.TaskInfo",
'WORKFLOW.TASKMETADATA': "workflow.TaskMetadata",
+ 'WORKFLOW.TASKNOTIFICATION': "workflow.TaskNotification",
'WORKFLOW.TEMPLATEEVALUATION': "workflow.TemplateEvaluation",
'WORKFLOW.TEMPLATEFUNCTIONMETA': "workflow.TemplateFunctionMeta",
'WORKFLOW.WORKFLOWDEFINITION': "workflow.WorkflowDefinition",
'WORKFLOW.WORKFLOWINFO': "workflow.WorkflowInfo",
'WORKFLOW.WORKFLOWMETA': "workflow.WorkflowMeta",
'WORKFLOW.WORKFLOWMETADATA': "workflow.WorkflowMetadata",
+ 'WORKFLOW.WORKFLOWNOTIFICATION': "workflow.WorkflowNotification",
},
}
diff --git a/intersight/model/comm_http_proxy_policy_response.py b/intersight/model/comm_http_proxy_policy_response.py
index e435ccb480..0ec297ba24 100644
--- a/intersight/model/comm_http_proxy_policy_response.py
+++ b/intersight/model/comm_http_proxy_policy_response.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/comm_ip_v4_address_block.py b/intersight/model/comm_ip_v4_address_block.py
index 4e06ac3fa4..f74a7ba4d6 100644
--- a/intersight/model/comm_ip_v4_address_block.py
+++ b/intersight/model/comm_ip_v4_address_block.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/comm_ip_v4_address_block_all_of.py b/intersight/model/comm_ip_v4_address_block_all_of.py
index aad91ea1f9..5c7f2216dc 100644
--- a/intersight/model/comm_ip_v4_address_block_all_of.py
+++ b/intersight/model/comm_ip_v4_address_block_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/comm_ip_v4_interface.py b/intersight/model/comm_ip_v4_interface.py
index 4975c3e0b9..f390f08166 100644
--- a/intersight/model/comm_ip_v4_interface.py
+++ b/intersight/model/comm_ip_v4_interface.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/comm_ip_v4_interface_all_of.py b/intersight/model/comm_ip_v4_interface_all_of.py
index 96f14043b6..6e897105e3 100644
--- a/intersight/model/comm_ip_v4_interface_all_of.py
+++ b/intersight/model/comm_ip_v4_interface_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/comm_ip_v6_interface.py b/intersight/model/comm_ip_v6_interface.py
index 8da5c9c601..008ed30326 100644
--- a/intersight/model/comm_ip_v6_interface.py
+++ b/intersight/model/comm_ip_v6_interface.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/comm_ip_v6_interface_all_of.py b/intersight/model/comm_ip_v6_interface_all_of.py
index 5961f7c19a..4ef114e623 100644
--- a/intersight/model/comm_ip_v6_interface_all_of.py
+++ b/intersight/model/comm_ip_v6_interface_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/compute_alarm_summary.py b/intersight/model/compute_alarm_summary.py
index 0ea194268e..ec22a30b50 100644
--- a/intersight/model/compute_alarm_summary.py
+++ b/intersight/model/compute_alarm_summary.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/compute_alarm_summary_all_of.py b/intersight/model/compute_alarm_summary_all_of.py
index c203f6a8f7..5dd00b7229 100644
--- a/intersight/model/compute_alarm_summary_all_of.py
+++ b/intersight/model/compute_alarm_summary_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/compute_blade.py b/intersight/model/compute_blade.py
index 581e0d5ca6..f9673754ec 100644
--- a/intersight/model/compute_blade.py
+++ b/intersight/model/compute_blade.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/compute_blade_all_of.py b/intersight/model/compute_blade_all_of.py
index bc704c7015..3df646391b 100644
--- a/intersight/model/compute_blade_all_of.py
+++ b/intersight/model/compute_blade_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/compute_blade_identity.py b/intersight/model/compute_blade_identity.py
index 006a84a8a2..2e02fdc7eb 100644
--- a/intersight/model/compute_blade_identity.py
+++ b/intersight/model/compute_blade_identity.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/compute_blade_identity_all_of.py b/intersight/model/compute_blade_identity_all_of.py
index 885c5da1ec..8b3cd5d4e5 100644
--- a/intersight/model/compute_blade_identity_all_of.py
+++ b/intersight/model/compute_blade_identity_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/compute_blade_identity_list.py b/intersight/model/compute_blade_identity_list.py
index de6590efcd..7708a7a6e5 100644
--- a/intersight/model/compute_blade_identity_list.py
+++ b/intersight/model/compute_blade_identity_list.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/compute_blade_identity_list_all_of.py b/intersight/model/compute_blade_identity_list_all_of.py
index 715e8158dd..8131812471 100644
--- a/intersight/model/compute_blade_identity_list_all_of.py
+++ b/intersight/model/compute_blade_identity_list_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/compute_blade_identity_response.py b/intersight/model/compute_blade_identity_response.py
index 6bea00e6d4..e991e7b2bd 100644
--- a/intersight/model/compute_blade_identity_response.py
+++ b/intersight/model/compute_blade_identity_response.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/compute_blade_list.py b/intersight/model/compute_blade_list.py
index 29b22476a4..6c064b5068 100644
--- a/intersight/model/compute_blade_list.py
+++ b/intersight/model/compute_blade_list.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/compute_blade_list_all_of.py b/intersight/model/compute_blade_list_all_of.py
index af9f5f89a8..65b7b8479c 100644
--- a/intersight/model/compute_blade_list_all_of.py
+++ b/intersight/model/compute_blade_list_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/compute_blade_relationship.py b/intersight/model/compute_blade_relationship.py
index 047a27e96b..560ba7a3c2 100644
--- a/intersight/model/compute_blade_relationship.py
+++ b/intersight/model/compute_blade_relationship.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
@@ -161,6 +161,8 @@ class ComputeBladeRelationship(ModelComposed):
},
('object_type',): {
'AAA.AUDITRECORD': "aaa.AuditRecord",
+ 'AAA.RETENTIONCONFIG': "aaa.RetentionConfig",
+ 'AAA.RETENTIONPOLICY': "aaa.RetentionPolicy",
'ACCESS.POLICY': "access.Policy",
'ADAPTER.CONFIGPOLICY': "adapter.ConfigPolicy",
'ADAPTER.EXTETHINTERFACE': "adapter.ExtEthInterface",
@@ -177,6 +179,7 @@ class ComputeBladeRelationship(ModelComposed):
'APPLIANCE.DATAEXPORTPOLICY': "appliance.DataExportPolicy",
'APPLIANCE.DEVICECERTIFICATE': "appliance.DeviceCertificate",
'APPLIANCE.DEVICECLAIM': "appliance.DeviceClaim",
+ 'APPLIANCE.DEVICEUPGRADEPOLICY': "appliance.DeviceUpgradePolicy",
'APPLIANCE.DIAGSETTING': "appliance.DiagSetting",
'APPLIANCE.EXTERNALSYSLOGSETTING': "appliance.ExternalSyslogSetting",
'APPLIANCE.FILESYSTEMSTATUS': "appliance.FileSystemStatus",
@@ -225,9 +228,12 @@ class ComputeBladeRelationship(ModelComposed):
'BOOT.UEFISHELLDEVICE': "boot.UefiShellDevice",
'BOOT.USBDEVICE': "boot.UsbDevice",
'BOOT.VMEDIADEVICE': "boot.VmediaDevice",
+ 'BULK.EXPORT': "bulk.Export",
+ 'BULK.EXPORTEDITEM': "bulk.ExportedItem",
'BULK.MOCLONER': "bulk.MoCloner",
'BULK.MOMERGER': "bulk.MoMerger",
'BULK.REQUEST': "bulk.Request",
+ 'BULK.SUBREQUESTOBJ': "bulk.SubRequestObj",
'CAPABILITY.ADAPTERUNITDESCRIPTOR': "capability.AdapterUnitDescriptor",
'CAPABILITY.CATALOG': "capability.Catalog",
'CAPABILITY.CHASSISDESCRIPTOR': "capability.ChassisDescriptor",
@@ -291,10 +297,6 @@ class ComputeBladeRelationship(ModelComposed):
'COND.HCLSTATUS': "cond.HclStatus",
'COND.HCLSTATUSDETAIL': "cond.HclStatusDetail",
'COND.HCLSTATUSJOB': "cond.HclStatusJob",
- 'CONFIG.EXPORTEDITEM': "config.ExportedItem",
- 'CONFIG.EXPORTER': "config.Exporter",
- 'CONFIG.IMPORTEDITEM': "config.ImportedItem",
- 'CONFIG.IMPORTER': "config.Importer",
'CONNECTORPACK.CONNECTORPACKUPGRADE': "connectorpack.ConnectorPackUpgrade",
'CONNECTORPACK.UPGRADEIMPACT': "connectorpack.UpgradeImpact",
'CRD.CUSTOMRESOURCE': "crd.CustomResource",
@@ -303,6 +305,7 @@ class ComputeBladeRelationship(ModelComposed):
'EQUIPMENT.CHASSISIDENTITY': "equipment.ChassisIdentity",
'EQUIPMENT.CHASSISOPERATION': "equipment.ChassisOperation",
'EQUIPMENT.DEVICESUMMARY': "equipment.DeviceSummary",
+ 'EQUIPMENT.EXPANDERMODULE': "equipment.ExpanderModule",
'EQUIPMENT.FAN': "equipment.Fan",
'EQUIPMENT.FANCONTROL': "equipment.FanControl",
'EQUIPMENT.FANMODULE': "equipment.FanModule",
@@ -551,6 +554,7 @@ class ComputeBladeRelationship(ModelComposed):
'KUBERNETES.ADDONDEFINITION': "kubernetes.AddonDefinition",
'KUBERNETES.ADDONPOLICY': "kubernetes.AddonPolicy",
'KUBERNETES.ADDONREPOSITORY': "kubernetes.AddonRepository",
+ 'KUBERNETES.BAREMETALNODEPROFILE': "kubernetes.BaremetalNodeProfile",
'KUBERNETES.CATALOG': "kubernetes.Catalog",
'KUBERNETES.CLUSTER': "kubernetes.Cluster",
'KUBERNETES.CLUSTERADDONPROFILE': "kubernetes.ClusterAddonProfile",
@@ -720,6 +724,11 @@ class ComputeBladeRelationship(ModelComposed):
'RESOURCE.LICENSERESOURCECOUNT': "resource.LicenseResourceCount",
'RESOURCE.MEMBERSHIP': "resource.Membership",
'RESOURCE.MEMBERSHIPHOLDER': "resource.MembershipHolder",
+ 'RESOURCEPOOL.LEASE': "resourcepool.Lease",
+ 'RESOURCEPOOL.LEASERESOURCE': "resourcepool.LeaseResource",
+ 'RESOURCEPOOL.POOL': "resourcepool.Pool",
+ 'RESOURCEPOOL.POOLMEMBER': "resourcepool.PoolMember",
+ 'RESOURCEPOOL.UNIVERSE': "resourcepool.Universe",
'RPROXY.REVERSEPROXY': "rproxy.ReverseProxy",
'SDCARD.POLICY': "sdcard.Policy",
'SDWAN.PROFILE': "sdwan.Profile",
@@ -835,6 +844,7 @@ class ComputeBladeRelationship(ModelComposed):
'TASK.NETAPPSCOPEDINVENTORY': "task.NetAppScopedInventory",
'TASK.PUBLICCLOUDSCOPEDINVENTORY': "task.PublicCloudScopedInventory",
'TASK.PURESCOPEDINVENTORY': "task.PureScopedInventory",
+ 'TASK.SERVERSCOPEDINVENTORY': "task.ServerScopedInventory",
'TECHSUPPORTMANAGEMENT.COLLECTIONCONTROLPOLICY': "techsupportmanagement.CollectionControlPolicy",
'TECHSUPPORTMANAGEMENT.DOWNLOAD': "techsupportmanagement.Download",
'TECHSUPPORTMANAGEMENT.TECHSUPPORTBUNDLE': "techsupportmanagement.TechSupportBundle",
@@ -866,6 +876,7 @@ class ComputeBladeRelationship(ModelComposed):
'VIRTUALIZATION.VMWAREVCENTER': "virtualization.VmwareVcenter",
'VIRTUALIZATION.VMWAREVIRTUALDISK': "virtualization.VmwareVirtualDisk",
'VIRTUALIZATION.VMWAREVIRTUALMACHINE': "virtualization.VmwareVirtualMachine",
+ 'VIRTUALIZATION.VMWAREVIRTUALMACHINESNAPSHOT': "virtualization.VmwareVirtualMachineSnapshot",
'VIRTUALIZATION.VMWAREVIRTUALNETWORKINTERFACE': "virtualization.VmwareVirtualNetworkInterface",
'VIRTUALIZATION.VMWAREVIRTUALSWITCH': "virtualization.VmwareVirtualSwitch",
'VMEDIA.POLICY': "vmedia.Policy",
@@ -898,12 +909,14 @@ class ComputeBladeRelationship(ModelComposed):
'WORKFLOW.TASKDEFINITION': "workflow.TaskDefinition",
'WORKFLOW.TASKINFO': "workflow.TaskInfo",
'WORKFLOW.TASKMETADATA': "workflow.TaskMetadata",
+ 'WORKFLOW.TASKNOTIFICATION': "workflow.TaskNotification",
'WORKFLOW.TEMPLATEEVALUATION': "workflow.TemplateEvaluation",
'WORKFLOW.TEMPLATEFUNCTIONMETA': "workflow.TemplateFunctionMeta",
'WORKFLOW.WORKFLOWDEFINITION': "workflow.WorkflowDefinition",
'WORKFLOW.WORKFLOWINFO': "workflow.WorkflowInfo",
'WORKFLOW.WORKFLOWMETA': "workflow.WorkflowMeta",
'WORKFLOW.WORKFLOWMETADATA': "workflow.WorkflowMetadata",
+ 'WORKFLOW.WORKFLOWNOTIFICATION': "workflow.WorkflowNotification",
},
}
diff --git a/intersight/model/compute_blade_response.py b/intersight/model/compute_blade_response.py
index 2e367a6870..7218fb57f9 100644
--- a/intersight/model/compute_blade_response.py
+++ b/intersight/model/compute_blade_response.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/compute_board.py b/intersight/model/compute_board.py
index 514cb3f0ad..c54d5e422a 100644
--- a/intersight/model/compute_board.py
+++ b/intersight/model/compute_board.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
@@ -149,6 +149,8 @@ class ComputeBoard(ModelComposed):
'MEMORYUNCORRECTABLEERROR': "MemoryUncorrectableError",
'MEMORYTEMPERATUREWARNING': "MemoryTemperatureWarning",
'MEMORYTEMPERATURECRITICAL': "MemoryTemperatureCritical",
+ 'MEMORYBANKERROR': "MemoryBankError",
+ 'MEMORYRANKERROR': "MemoryRankError",
'MOTHERBOARDPOWERCRITICAL': "MotherBoardPowerCritical",
'MOTHERBOARDTEMPERATUREWARNING': "MotherBoardTemperatureWarning",
'MOTHERBOARDTEMPERATURECRITICAL': "MotherBoardTemperatureCritical",
diff --git a/intersight/model/compute_board_all_of.py b/intersight/model/compute_board_all_of.py
index a0ba8d645e..26e6d7d8c1 100644
--- a/intersight/model/compute_board_all_of.py
+++ b/intersight/model/compute_board_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
@@ -135,6 +135,8 @@ class ComputeBoardAllOf(ModelNormal):
'MEMORYUNCORRECTABLEERROR': "MemoryUncorrectableError",
'MEMORYTEMPERATUREWARNING': "MemoryTemperatureWarning",
'MEMORYTEMPERATURECRITICAL': "MemoryTemperatureCritical",
+ 'MEMORYBANKERROR': "MemoryBankError",
+ 'MEMORYRANKERROR': "MemoryRankError",
'MOTHERBOARDPOWERCRITICAL': "MotherBoardPowerCritical",
'MOTHERBOARDTEMPERATUREWARNING': "MotherBoardTemperatureWarning",
'MOTHERBOARDTEMPERATURECRITICAL': "MotherBoardTemperatureCritical",
diff --git a/intersight/model/compute_board_list.py b/intersight/model/compute_board_list.py
index 829033cac9..c1817e9f23 100644
--- a/intersight/model/compute_board_list.py
+++ b/intersight/model/compute_board_list.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/compute_board_list_all_of.py b/intersight/model/compute_board_list_all_of.py
index 2492ae467e..8820513903 100644
--- a/intersight/model/compute_board_list_all_of.py
+++ b/intersight/model/compute_board_list_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/compute_board_relationship.py b/intersight/model/compute_board_relationship.py
index 2881b66b02..dfbaea2e6c 100644
--- a/intersight/model/compute_board_relationship.py
+++ b/intersight/model/compute_board_relationship.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
@@ -146,6 +146,8 @@ class ComputeBoardRelationship(ModelComposed):
'MEMORYUNCORRECTABLEERROR': "MemoryUncorrectableError",
'MEMORYTEMPERATUREWARNING': "MemoryTemperatureWarning",
'MEMORYTEMPERATURECRITICAL': "MemoryTemperatureCritical",
+ 'MEMORYBANKERROR': "MemoryBankError",
+ 'MEMORYRANKERROR': "MemoryRankError",
'MOTHERBOARDPOWERCRITICAL': "MotherBoardPowerCritical",
'MOTHERBOARDTEMPERATUREWARNING': "MotherBoardTemperatureWarning",
'MOTHERBOARDTEMPERATURECRITICAL': "MotherBoardTemperatureCritical",
@@ -160,6 +162,8 @@ class ComputeBoardRelationship(ModelComposed):
},
('object_type',): {
'AAA.AUDITRECORD': "aaa.AuditRecord",
+ 'AAA.RETENTIONCONFIG': "aaa.RetentionConfig",
+ 'AAA.RETENTIONPOLICY': "aaa.RetentionPolicy",
'ACCESS.POLICY': "access.Policy",
'ADAPTER.CONFIGPOLICY': "adapter.ConfigPolicy",
'ADAPTER.EXTETHINTERFACE': "adapter.ExtEthInterface",
@@ -176,6 +180,7 @@ class ComputeBoardRelationship(ModelComposed):
'APPLIANCE.DATAEXPORTPOLICY': "appliance.DataExportPolicy",
'APPLIANCE.DEVICECERTIFICATE': "appliance.DeviceCertificate",
'APPLIANCE.DEVICECLAIM': "appliance.DeviceClaim",
+ 'APPLIANCE.DEVICEUPGRADEPOLICY': "appliance.DeviceUpgradePolicy",
'APPLIANCE.DIAGSETTING': "appliance.DiagSetting",
'APPLIANCE.EXTERNALSYSLOGSETTING': "appliance.ExternalSyslogSetting",
'APPLIANCE.FILESYSTEMSTATUS': "appliance.FileSystemStatus",
@@ -224,9 +229,12 @@ class ComputeBoardRelationship(ModelComposed):
'BOOT.UEFISHELLDEVICE': "boot.UefiShellDevice",
'BOOT.USBDEVICE': "boot.UsbDevice",
'BOOT.VMEDIADEVICE': "boot.VmediaDevice",
+ 'BULK.EXPORT': "bulk.Export",
+ 'BULK.EXPORTEDITEM': "bulk.ExportedItem",
'BULK.MOCLONER': "bulk.MoCloner",
'BULK.MOMERGER': "bulk.MoMerger",
'BULK.REQUEST': "bulk.Request",
+ 'BULK.SUBREQUESTOBJ': "bulk.SubRequestObj",
'CAPABILITY.ADAPTERUNITDESCRIPTOR': "capability.AdapterUnitDescriptor",
'CAPABILITY.CATALOG': "capability.Catalog",
'CAPABILITY.CHASSISDESCRIPTOR': "capability.ChassisDescriptor",
@@ -290,10 +298,6 @@ class ComputeBoardRelationship(ModelComposed):
'COND.HCLSTATUS': "cond.HclStatus",
'COND.HCLSTATUSDETAIL': "cond.HclStatusDetail",
'COND.HCLSTATUSJOB': "cond.HclStatusJob",
- 'CONFIG.EXPORTEDITEM': "config.ExportedItem",
- 'CONFIG.EXPORTER': "config.Exporter",
- 'CONFIG.IMPORTEDITEM': "config.ImportedItem",
- 'CONFIG.IMPORTER': "config.Importer",
'CONNECTORPACK.CONNECTORPACKUPGRADE': "connectorpack.ConnectorPackUpgrade",
'CONNECTORPACK.UPGRADEIMPACT': "connectorpack.UpgradeImpact",
'CRD.CUSTOMRESOURCE': "crd.CustomResource",
@@ -302,6 +306,7 @@ class ComputeBoardRelationship(ModelComposed):
'EQUIPMENT.CHASSISIDENTITY': "equipment.ChassisIdentity",
'EQUIPMENT.CHASSISOPERATION': "equipment.ChassisOperation",
'EQUIPMENT.DEVICESUMMARY': "equipment.DeviceSummary",
+ 'EQUIPMENT.EXPANDERMODULE': "equipment.ExpanderModule",
'EQUIPMENT.FAN': "equipment.Fan",
'EQUIPMENT.FANCONTROL': "equipment.FanControl",
'EQUIPMENT.FANMODULE': "equipment.FanModule",
@@ -550,6 +555,7 @@ class ComputeBoardRelationship(ModelComposed):
'KUBERNETES.ADDONDEFINITION': "kubernetes.AddonDefinition",
'KUBERNETES.ADDONPOLICY': "kubernetes.AddonPolicy",
'KUBERNETES.ADDONREPOSITORY': "kubernetes.AddonRepository",
+ 'KUBERNETES.BAREMETALNODEPROFILE': "kubernetes.BaremetalNodeProfile",
'KUBERNETES.CATALOG': "kubernetes.Catalog",
'KUBERNETES.CLUSTER': "kubernetes.Cluster",
'KUBERNETES.CLUSTERADDONPROFILE': "kubernetes.ClusterAddonProfile",
@@ -719,6 +725,11 @@ class ComputeBoardRelationship(ModelComposed):
'RESOURCE.LICENSERESOURCECOUNT': "resource.LicenseResourceCount",
'RESOURCE.MEMBERSHIP': "resource.Membership",
'RESOURCE.MEMBERSHIPHOLDER': "resource.MembershipHolder",
+ 'RESOURCEPOOL.LEASE': "resourcepool.Lease",
+ 'RESOURCEPOOL.LEASERESOURCE': "resourcepool.LeaseResource",
+ 'RESOURCEPOOL.POOL': "resourcepool.Pool",
+ 'RESOURCEPOOL.POOLMEMBER': "resourcepool.PoolMember",
+ 'RESOURCEPOOL.UNIVERSE': "resourcepool.Universe",
'RPROXY.REVERSEPROXY': "rproxy.ReverseProxy",
'SDCARD.POLICY': "sdcard.Policy",
'SDWAN.PROFILE': "sdwan.Profile",
@@ -834,6 +845,7 @@ class ComputeBoardRelationship(ModelComposed):
'TASK.NETAPPSCOPEDINVENTORY': "task.NetAppScopedInventory",
'TASK.PUBLICCLOUDSCOPEDINVENTORY': "task.PublicCloudScopedInventory",
'TASK.PURESCOPEDINVENTORY': "task.PureScopedInventory",
+ 'TASK.SERVERSCOPEDINVENTORY': "task.ServerScopedInventory",
'TECHSUPPORTMANAGEMENT.COLLECTIONCONTROLPOLICY': "techsupportmanagement.CollectionControlPolicy",
'TECHSUPPORTMANAGEMENT.DOWNLOAD': "techsupportmanagement.Download",
'TECHSUPPORTMANAGEMENT.TECHSUPPORTBUNDLE': "techsupportmanagement.TechSupportBundle",
@@ -865,6 +877,7 @@ class ComputeBoardRelationship(ModelComposed):
'VIRTUALIZATION.VMWAREVCENTER': "virtualization.VmwareVcenter",
'VIRTUALIZATION.VMWAREVIRTUALDISK': "virtualization.VmwareVirtualDisk",
'VIRTUALIZATION.VMWAREVIRTUALMACHINE': "virtualization.VmwareVirtualMachine",
+ 'VIRTUALIZATION.VMWAREVIRTUALMACHINESNAPSHOT': "virtualization.VmwareVirtualMachineSnapshot",
'VIRTUALIZATION.VMWAREVIRTUALNETWORKINTERFACE': "virtualization.VmwareVirtualNetworkInterface",
'VIRTUALIZATION.VMWAREVIRTUALSWITCH': "virtualization.VmwareVirtualSwitch",
'VMEDIA.POLICY': "vmedia.Policy",
@@ -897,12 +910,14 @@ class ComputeBoardRelationship(ModelComposed):
'WORKFLOW.TASKDEFINITION': "workflow.TaskDefinition",
'WORKFLOW.TASKINFO': "workflow.TaskInfo",
'WORKFLOW.TASKMETADATA': "workflow.TaskMetadata",
+ 'WORKFLOW.TASKNOTIFICATION': "workflow.TaskNotification",
'WORKFLOW.TEMPLATEEVALUATION': "workflow.TemplateEvaluation",
'WORKFLOW.TEMPLATEFUNCTIONMETA': "workflow.TemplateFunctionMeta",
'WORKFLOW.WORKFLOWDEFINITION': "workflow.WorkflowDefinition",
'WORKFLOW.WORKFLOWINFO': "workflow.WorkflowInfo",
'WORKFLOW.WORKFLOWMETA': "workflow.WorkflowMeta",
'WORKFLOW.WORKFLOWMETADATA': "workflow.WorkflowMetadata",
+ 'WORKFLOW.WORKFLOWNOTIFICATION': "workflow.WorkflowNotification",
},
}
diff --git a/intersight/model/compute_board_response.py b/intersight/model/compute_board_response.py
index 7db3615150..01aaa3cdb7 100644
--- a/intersight/model/compute_board_response.py
+++ b/intersight/model/compute_board_response.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/compute_ip_address.py b/intersight/model/compute_ip_address.py
index 4aafa260b3..734b595361 100644
--- a/intersight/model/compute_ip_address.py
+++ b/intersight/model/compute_ip_address.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/compute_ip_address_all_of.py b/intersight/model/compute_ip_address_all_of.py
index 267f985c1d..294b735e6a 100644
--- a/intersight/model/compute_ip_address_all_of.py
+++ b/intersight/model/compute_ip_address_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/compute_mapping.py b/intersight/model/compute_mapping.py
index 66c3bcf13e..a6388d1f3c 100644
--- a/intersight/model/compute_mapping.py
+++ b/intersight/model/compute_mapping.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/compute_mapping_all_of.py b/intersight/model/compute_mapping_all_of.py
index 9b19e97c31..25502ff519 100644
--- a/intersight/model/compute_mapping_all_of.py
+++ b/intersight/model/compute_mapping_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/compute_mapping_list.py b/intersight/model/compute_mapping_list.py
index f8a916aaa5..de826e214a 100644
--- a/intersight/model/compute_mapping_list.py
+++ b/intersight/model/compute_mapping_list.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/compute_mapping_list_all_of.py b/intersight/model/compute_mapping_list_all_of.py
index f8b8b97175..5ebd516b44 100644
--- a/intersight/model/compute_mapping_list_all_of.py
+++ b/intersight/model/compute_mapping_list_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/compute_mapping_relationship.py b/intersight/model/compute_mapping_relationship.py
index 7fdbed9745..9821e11351 100644
--- a/intersight/model/compute_mapping_relationship.py
+++ b/intersight/model/compute_mapping_relationship.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
@@ -78,6 +78,8 @@ class ComputeMappingRelationship(ModelComposed):
},
('object_type',): {
'AAA.AUDITRECORD': "aaa.AuditRecord",
+ 'AAA.RETENTIONCONFIG': "aaa.RetentionConfig",
+ 'AAA.RETENTIONPOLICY': "aaa.RetentionPolicy",
'ACCESS.POLICY': "access.Policy",
'ADAPTER.CONFIGPOLICY': "adapter.ConfigPolicy",
'ADAPTER.EXTETHINTERFACE': "adapter.ExtEthInterface",
@@ -94,6 +96,7 @@ class ComputeMappingRelationship(ModelComposed):
'APPLIANCE.DATAEXPORTPOLICY': "appliance.DataExportPolicy",
'APPLIANCE.DEVICECERTIFICATE': "appliance.DeviceCertificate",
'APPLIANCE.DEVICECLAIM': "appliance.DeviceClaim",
+ 'APPLIANCE.DEVICEUPGRADEPOLICY': "appliance.DeviceUpgradePolicy",
'APPLIANCE.DIAGSETTING': "appliance.DiagSetting",
'APPLIANCE.EXTERNALSYSLOGSETTING': "appliance.ExternalSyslogSetting",
'APPLIANCE.FILESYSTEMSTATUS': "appliance.FileSystemStatus",
@@ -142,9 +145,12 @@ class ComputeMappingRelationship(ModelComposed):
'BOOT.UEFISHELLDEVICE': "boot.UefiShellDevice",
'BOOT.USBDEVICE': "boot.UsbDevice",
'BOOT.VMEDIADEVICE': "boot.VmediaDevice",
+ 'BULK.EXPORT': "bulk.Export",
+ 'BULK.EXPORTEDITEM': "bulk.ExportedItem",
'BULK.MOCLONER': "bulk.MoCloner",
'BULK.MOMERGER': "bulk.MoMerger",
'BULK.REQUEST': "bulk.Request",
+ 'BULK.SUBREQUESTOBJ': "bulk.SubRequestObj",
'CAPABILITY.ADAPTERUNITDESCRIPTOR': "capability.AdapterUnitDescriptor",
'CAPABILITY.CATALOG': "capability.Catalog",
'CAPABILITY.CHASSISDESCRIPTOR': "capability.ChassisDescriptor",
@@ -208,10 +214,6 @@ class ComputeMappingRelationship(ModelComposed):
'COND.HCLSTATUS': "cond.HclStatus",
'COND.HCLSTATUSDETAIL': "cond.HclStatusDetail",
'COND.HCLSTATUSJOB': "cond.HclStatusJob",
- 'CONFIG.EXPORTEDITEM': "config.ExportedItem",
- 'CONFIG.EXPORTER': "config.Exporter",
- 'CONFIG.IMPORTEDITEM': "config.ImportedItem",
- 'CONFIG.IMPORTER': "config.Importer",
'CONNECTORPACK.CONNECTORPACKUPGRADE': "connectorpack.ConnectorPackUpgrade",
'CONNECTORPACK.UPGRADEIMPACT': "connectorpack.UpgradeImpact",
'CRD.CUSTOMRESOURCE': "crd.CustomResource",
@@ -220,6 +222,7 @@ class ComputeMappingRelationship(ModelComposed):
'EQUIPMENT.CHASSISIDENTITY': "equipment.ChassisIdentity",
'EQUIPMENT.CHASSISOPERATION': "equipment.ChassisOperation",
'EQUIPMENT.DEVICESUMMARY': "equipment.DeviceSummary",
+ 'EQUIPMENT.EXPANDERMODULE': "equipment.ExpanderModule",
'EQUIPMENT.FAN': "equipment.Fan",
'EQUIPMENT.FANCONTROL': "equipment.FanControl",
'EQUIPMENT.FANMODULE': "equipment.FanModule",
@@ -468,6 +471,7 @@ class ComputeMappingRelationship(ModelComposed):
'KUBERNETES.ADDONDEFINITION': "kubernetes.AddonDefinition",
'KUBERNETES.ADDONPOLICY': "kubernetes.AddonPolicy",
'KUBERNETES.ADDONREPOSITORY': "kubernetes.AddonRepository",
+ 'KUBERNETES.BAREMETALNODEPROFILE': "kubernetes.BaremetalNodeProfile",
'KUBERNETES.CATALOG': "kubernetes.Catalog",
'KUBERNETES.CLUSTER': "kubernetes.Cluster",
'KUBERNETES.CLUSTERADDONPROFILE': "kubernetes.ClusterAddonProfile",
@@ -637,6 +641,11 @@ class ComputeMappingRelationship(ModelComposed):
'RESOURCE.LICENSERESOURCECOUNT': "resource.LicenseResourceCount",
'RESOURCE.MEMBERSHIP': "resource.Membership",
'RESOURCE.MEMBERSHIPHOLDER': "resource.MembershipHolder",
+ 'RESOURCEPOOL.LEASE': "resourcepool.Lease",
+ 'RESOURCEPOOL.LEASERESOURCE': "resourcepool.LeaseResource",
+ 'RESOURCEPOOL.POOL': "resourcepool.Pool",
+ 'RESOURCEPOOL.POOLMEMBER': "resourcepool.PoolMember",
+ 'RESOURCEPOOL.UNIVERSE': "resourcepool.Universe",
'RPROXY.REVERSEPROXY': "rproxy.ReverseProxy",
'SDCARD.POLICY': "sdcard.Policy",
'SDWAN.PROFILE': "sdwan.Profile",
@@ -752,6 +761,7 @@ class ComputeMappingRelationship(ModelComposed):
'TASK.NETAPPSCOPEDINVENTORY': "task.NetAppScopedInventory",
'TASK.PUBLICCLOUDSCOPEDINVENTORY': "task.PublicCloudScopedInventory",
'TASK.PURESCOPEDINVENTORY': "task.PureScopedInventory",
+ 'TASK.SERVERSCOPEDINVENTORY': "task.ServerScopedInventory",
'TECHSUPPORTMANAGEMENT.COLLECTIONCONTROLPOLICY': "techsupportmanagement.CollectionControlPolicy",
'TECHSUPPORTMANAGEMENT.DOWNLOAD': "techsupportmanagement.Download",
'TECHSUPPORTMANAGEMENT.TECHSUPPORTBUNDLE': "techsupportmanagement.TechSupportBundle",
@@ -783,6 +793,7 @@ class ComputeMappingRelationship(ModelComposed):
'VIRTUALIZATION.VMWAREVCENTER': "virtualization.VmwareVcenter",
'VIRTUALIZATION.VMWAREVIRTUALDISK': "virtualization.VmwareVirtualDisk",
'VIRTUALIZATION.VMWAREVIRTUALMACHINE': "virtualization.VmwareVirtualMachine",
+ 'VIRTUALIZATION.VMWAREVIRTUALMACHINESNAPSHOT': "virtualization.VmwareVirtualMachineSnapshot",
'VIRTUALIZATION.VMWAREVIRTUALNETWORKINTERFACE': "virtualization.VmwareVirtualNetworkInterface",
'VIRTUALIZATION.VMWAREVIRTUALSWITCH': "virtualization.VmwareVirtualSwitch",
'VMEDIA.POLICY': "vmedia.Policy",
@@ -815,12 +826,14 @@ class ComputeMappingRelationship(ModelComposed):
'WORKFLOW.TASKDEFINITION': "workflow.TaskDefinition",
'WORKFLOW.TASKINFO': "workflow.TaskInfo",
'WORKFLOW.TASKMETADATA': "workflow.TaskMetadata",
+ 'WORKFLOW.TASKNOTIFICATION': "workflow.TaskNotification",
'WORKFLOW.TEMPLATEEVALUATION': "workflow.TemplateEvaluation",
'WORKFLOW.TEMPLATEFUNCTIONMETA': "workflow.TemplateFunctionMeta",
'WORKFLOW.WORKFLOWDEFINITION': "workflow.WorkflowDefinition",
'WORKFLOW.WORKFLOWINFO': "workflow.WorkflowInfo",
'WORKFLOW.WORKFLOWMETA': "workflow.WorkflowMeta",
'WORKFLOW.WORKFLOWMETADATA': "workflow.WorkflowMetadata",
+ 'WORKFLOW.WORKFLOWNOTIFICATION': "workflow.WorkflowNotification",
},
}
diff --git a/intersight/model/compute_mapping_response.py b/intersight/model/compute_mapping_response.py
index b9c7ca3b85..0c36e8ea93 100644
--- a/intersight/model/compute_mapping_response.py
+++ b/intersight/model/compute_mapping_response.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/compute_persistent_memory_module.py b/intersight/model/compute_persistent_memory_module.py
index 479e1a8d9b..4b3ce6fd15 100644
--- a/intersight/model/compute_persistent_memory_module.py
+++ b/intersight/model/compute_persistent_memory_module.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/compute_persistent_memory_module_all_of.py b/intersight/model/compute_persistent_memory_module_all_of.py
index 6db353db4d..67c20108da 100644
--- a/intersight/model/compute_persistent_memory_module_all_of.py
+++ b/intersight/model/compute_persistent_memory_module_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/compute_persistent_memory_operation.py b/intersight/model/compute_persistent_memory_operation.py
index 358eeb0ec7..359a175d88 100644
--- a/intersight/model/compute_persistent_memory_operation.py
+++ b/intersight/model/compute_persistent_memory_operation.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/compute_persistent_memory_operation_all_of.py b/intersight/model/compute_persistent_memory_operation_all_of.py
index b33fbeaefd..c880844aa5 100644
--- a/intersight/model/compute_persistent_memory_operation_all_of.py
+++ b/intersight/model/compute_persistent_memory_operation_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/compute_physical.py b/intersight/model/compute_physical.py
index 76a20f5e0a..96bb1a2f37 100644
--- a/intersight/model/compute_physical.py
+++ b/intersight/model/compute_physical.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/compute_physical_all_of.py b/intersight/model/compute_physical_all_of.py
index fb760c9a9e..0f1812012e 100644
--- a/intersight/model/compute_physical_all_of.py
+++ b/intersight/model/compute_physical_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/compute_physical_relationship.py b/intersight/model/compute_physical_relationship.py
index 39b6fa5cfd..b1b214a486 100644
--- a/intersight/model/compute_physical_relationship.py
+++ b/intersight/model/compute_physical_relationship.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
@@ -119,6 +119,8 @@ class ComputePhysicalRelationship(ModelComposed):
},
('object_type',): {
'AAA.AUDITRECORD': "aaa.AuditRecord",
+ 'AAA.RETENTIONCONFIG': "aaa.RetentionConfig",
+ 'AAA.RETENTIONPOLICY': "aaa.RetentionPolicy",
'ACCESS.POLICY': "access.Policy",
'ADAPTER.CONFIGPOLICY': "adapter.ConfigPolicy",
'ADAPTER.EXTETHINTERFACE': "adapter.ExtEthInterface",
@@ -135,6 +137,7 @@ class ComputePhysicalRelationship(ModelComposed):
'APPLIANCE.DATAEXPORTPOLICY': "appliance.DataExportPolicy",
'APPLIANCE.DEVICECERTIFICATE': "appliance.DeviceCertificate",
'APPLIANCE.DEVICECLAIM': "appliance.DeviceClaim",
+ 'APPLIANCE.DEVICEUPGRADEPOLICY': "appliance.DeviceUpgradePolicy",
'APPLIANCE.DIAGSETTING': "appliance.DiagSetting",
'APPLIANCE.EXTERNALSYSLOGSETTING': "appliance.ExternalSyslogSetting",
'APPLIANCE.FILESYSTEMSTATUS': "appliance.FileSystemStatus",
@@ -183,9 +186,12 @@ class ComputePhysicalRelationship(ModelComposed):
'BOOT.UEFISHELLDEVICE': "boot.UefiShellDevice",
'BOOT.USBDEVICE': "boot.UsbDevice",
'BOOT.VMEDIADEVICE': "boot.VmediaDevice",
+ 'BULK.EXPORT': "bulk.Export",
+ 'BULK.EXPORTEDITEM': "bulk.ExportedItem",
'BULK.MOCLONER': "bulk.MoCloner",
'BULK.MOMERGER': "bulk.MoMerger",
'BULK.REQUEST': "bulk.Request",
+ 'BULK.SUBREQUESTOBJ': "bulk.SubRequestObj",
'CAPABILITY.ADAPTERUNITDESCRIPTOR': "capability.AdapterUnitDescriptor",
'CAPABILITY.CATALOG': "capability.Catalog",
'CAPABILITY.CHASSISDESCRIPTOR': "capability.ChassisDescriptor",
@@ -249,10 +255,6 @@ class ComputePhysicalRelationship(ModelComposed):
'COND.HCLSTATUS': "cond.HclStatus",
'COND.HCLSTATUSDETAIL': "cond.HclStatusDetail",
'COND.HCLSTATUSJOB': "cond.HclStatusJob",
- 'CONFIG.EXPORTEDITEM': "config.ExportedItem",
- 'CONFIG.EXPORTER': "config.Exporter",
- 'CONFIG.IMPORTEDITEM': "config.ImportedItem",
- 'CONFIG.IMPORTER': "config.Importer",
'CONNECTORPACK.CONNECTORPACKUPGRADE': "connectorpack.ConnectorPackUpgrade",
'CONNECTORPACK.UPGRADEIMPACT': "connectorpack.UpgradeImpact",
'CRD.CUSTOMRESOURCE': "crd.CustomResource",
@@ -261,6 +263,7 @@ class ComputePhysicalRelationship(ModelComposed):
'EQUIPMENT.CHASSISIDENTITY': "equipment.ChassisIdentity",
'EQUIPMENT.CHASSISOPERATION': "equipment.ChassisOperation",
'EQUIPMENT.DEVICESUMMARY': "equipment.DeviceSummary",
+ 'EQUIPMENT.EXPANDERMODULE': "equipment.ExpanderModule",
'EQUIPMENT.FAN': "equipment.Fan",
'EQUIPMENT.FANCONTROL': "equipment.FanControl",
'EQUIPMENT.FANMODULE': "equipment.FanModule",
@@ -509,6 +512,7 @@ class ComputePhysicalRelationship(ModelComposed):
'KUBERNETES.ADDONDEFINITION': "kubernetes.AddonDefinition",
'KUBERNETES.ADDONPOLICY': "kubernetes.AddonPolicy",
'KUBERNETES.ADDONREPOSITORY': "kubernetes.AddonRepository",
+ 'KUBERNETES.BAREMETALNODEPROFILE': "kubernetes.BaremetalNodeProfile",
'KUBERNETES.CATALOG': "kubernetes.Catalog",
'KUBERNETES.CLUSTER': "kubernetes.Cluster",
'KUBERNETES.CLUSTERADDONPROFILE': "kubernetes.ClusterAddonProfile",
@@ -678,6 +682,11 @@ class ComputePhysicalRelationship(ModelComposed):
'RESOURCE.LICENSERESOURCECOUNT': "resource.LicenseResourceCount",
'RESOURCE.MEMBERSHIP': "resource.Membership",
'RESOURCE.MEMBERSHIPHOLDER': "resource.MembershipHolder",
+ 'RESOURCEPOOL.LEASE': "resourcepool.Lease",
+ 'RESOURCEPOOL.LEASERESOURCE': "resourcepool.LeaseResource",
+ 'RESOURCEPOOL.POOL': "resourcepool.Pool",
+ 'RESOURCEPOOL.POOLMEMBER': "resourcepool.PoolMember",
+ 'RESOURCEPOOL.UNIVERSE': "resourcepool.Universe",
'RPROXY.REVERSEPROXY': "rproxy.ReverseProxy",
'SDCARD.POLICY': "sdcard.Policy",
'SDWAN.PROFILE': "sdwan.Profile",
@@ -793,6 +802,7 @@ class ComputePhysicalRelationship(ModelComposed):
'TASK.NETAPPSCOPEDINVENTORY': "task.NetAppScopedInventory",
'TASK.PUBLICCLOUDSCOPEDINVENTORY': "task.PublicCloudScopedInventory",
'TASK.PURESCOPEDINVENTORY': "task.PureScopedInventory",
+ 'TASK.SERVERSCOPEDINVENTORY': "task.ServerScopedInventory",
'TECHSUPPORTMANAGEMENT.COLLECTIONCONTROLPOLICY': "techsupportmanagement.CollectionControlPolicy",
'TECHSUPPORTMANAGEMENT.DOWNLOAD': "techsupportmanagement.Download",
'TECHSUPPORTMANAGEMENT.TECHSUPPORTBUNDLE': "techsupportmanagement.TechSupportBundle",
@@ -824,6 +834,7 @@ class ComputePhysicalRelationship(ModelComposed):
'VIRTUALIZATION.VMWAREVCENTER': "virtualization.VmwareVcenter",
'VIRTUALIZATION.VMWAREVIRTUALDISK': "virtualization.VmwareVirtualDisk",
'VIRTUALIZATION.VMWAREVIRTUALMACHINE': "virtualization.VmwareVirtualMachine",
+ 'VIRTUALIZATION.VMWAREVIRTUALMACHINESNAPSHOT': "virtualization.VmwareVirtualMachineSnapshot",
'VIRTUALIZATION.VMWAREVIRTUALNETWORKINTERFACE': "virtualization.VmwareVirtualNetworkInterface",
'VIRTUALIZATION.VMWAREVIRTUALSWITCH': "virtualization.VmwareVirtualSwitch",
'VMEDIA.POLICY': "vmedia.Policy",
@@ -856,12 +867,14 @@ class ComputePhysicalRelationship(ModelComposed):
'WORKFLOW.TASKDEFINITION': "workflow.TaskDefinition",
'WORKFLOW.TASKINFO': "workflow.TaskInfo",
'WORKFLOW.TASKMETADATA': "workflow.TaskMetadata",
+ 'WORKFLOW.TASKNOTIFICATION': "workflow.TaskNotification",
'WORKFLOW.TEMPLATEEVALUATION': "workflow.TemplateEvaluation",
'WORKFLOW.TEMPLATEFUNCTIONMETA': "workflow.TemplateFunctionMeta",
'WORKFLOW.WORKFLOWDEFINITION': "workflow.WorkflowDefinition",
'WORKFLOW.WORKFLOWINFO': "workflow.WorkflowInfo",
'WORKFLOW.WORKFLOWMETA': "workflow.WorkflowMeta",
'WORKFLOW.WORKFLOWMETADATA': "workflow.WorkflowMetadata",
+ 'WORKFLOW.WORKFLOWNOTIFICATION': "workflow.WorkflowNotification",
},
}
diff --git a/intersight/model/compute_physical_summary.py b/intersight/model/compute_physical_summary.py
index 7078a455f8..744517dc8d 100644
--- a/intersight/model/compute_physical_summary.py
+++ b/intersight/model/compute_physical_summary.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/compute_physical_summary_all_of.py b/intersight/model/compute_physical_summary_all_of.py
index 02f723d46d..4e61c6e4d1 100644
--- a/intersight/model/compute_physical_summary_all_of.py
+++ b/intersight/model/compute_physical_summary_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/compute_physical_summary_list.py b/intersight/model/compute_physical_summary_list.py
index 719d8369d6..18ce59eb40 100644
--- a/intersight/model/compute_physical_summary_list.py
+++ b/intersight/model/compute_physical_summary_list.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/compute_physical_summary_list_all_of.py b/intersight/model/compute_physical_summary_list_all_of.py
index 4aaee27231..e87f5e1833 100644
--- a/intersight/model/compute_physical_summary_list_all_of.py
+++ b/intersight/model/compute_physical_summary_list_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/compute_physical_summary_relationship.py b/intersight/model/compute_physical_summary_relationship.py
index 946cafcf3a..8649bb6e04 100644
--- a/intersight/model/compute_physical_summary_relationship.py
+++ b/intersight/model/compute_physical_summary_relationship.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
@@ -93,6 +93,8 @@ class ComputePhysicalSummaryRelationship(ModelComposed):
},
('object_type',): {
'AAA.AUDITRECORD': "aaa.AuditRecord",
+ 'AAA.RETENTIONCONFIG': "aaa.RetentionConfig",
+ 'AAA.RETENTIONPOLICY': "aaa.RetentionPolicy",
'ACCESS.POLICY': "access.Policy",
'ADAPTER.CONFIGPOLICY': "adapter.ConfigPolicy",
'ADAPTER.EXTETHINTERFACE': "adapter.ExtEthInterface",
@@ -109,6 +111,7 @@ class ComputePhysicalSummaryRelationship(ModelComposed):
'APPLIANCE.DATAEXPORTPOLICY': "appliance.DataExportPolicy",
'APPLIANCE.DEVICECERTIFICATE': "appliance.DeviceCertificate",
'APPLIANCE.DEVICECLAIM': "appliance.DeviceClaim",
+ 'APPLIANCE.DEVICEUPGRADEPOLICY': "appliance.DeviceUpgradePolicy",
'APPLIANCE.DIAGSETTING': "appliance.DiagSetting",
'APPLIANCE.EXTERNALSYSLOGSETTING': "appliance.ExternalSyslogSetting",
'APPLIANCE.FILESYSTEMSTATUS': "appliance.FileSystemStatus",
@@ -157,9 +160,12 @@ class ComputePhysicalSummaryRelationship(ModelComposed):
'BOOT.UEFISHELLDEVICE': "boot.UefiShellDevice",
'BOOT.USBDEVICE': "boot.UsbDevice",
'BOOT.VMEDIADEVICE': "boot.VmediaDevice",
+ 'BULK.EXPORT': "bulk.Export",
+ 'BULK.EXPORTEDITEM': "bulk.ExportedItem",
'BULK.MOCLONER': "bulk.MoCloner",
'BULK.MOMERGER': "bulk.MoMerger",
'BULK.REQUEST': "bulk.Request",
+ 'BULK.SUBREQUESTOBJ': "bulk.SubRequestObj",
'CAPABILITY.ADAPTERUNITDESCRIPTOR': "capability.AdapterUnitDescriptor",
'CAPABILITY.CATALOG': "capability.Catalog",
'CAPABILITY.CHASSISDESCRIPTOR': "capability.ChassisDescriptor",
@@ -223,10 +229,6 @@ class ComputePhysicalSummaryRelationship(ModelComposed):
'COND.HCLSTATUS': "cond.HclStatus",
'COND.HCLSTATUSDETAIL': "cond.HclStatusDetail",
'COND.HCLSTATUSJOB': "cond.HclStatusJob",
- 'CONFIG.EXPORTEDITEM': "config.ExportedItem",
- 'CONFIG.EXPORTER': "config.Exporter",
- 'CONFIG.IMPORTEDITEM': "config.ImportedItem",
- 'CONFIG.IMPORTER': "config.Importer",
'CONNECTORPACK.CONNECTORPACKUPGRADE': "connectorpack.ConnectorPackUpgrade",
'CONNECTORPACK.UPGRADEIMPACT': "connectorpack.UpgradeImpact",
'CRD.CUSTOMRESOURCE': "crd.CustomResource",
@@ -235,6 +237,7 @@ class ComputePhysicalSummaryRelationship(ModelComposed):
'EQUIPMENT.CHASSISIDENTITY': "equipment.ChassisIdentity",
'EQUIPMENT.CHASSISOPERATION': "equipment.ChassisOperation",
'EQUIPMENT.DEVICESUMMARY': "equipment.DeviceSummary",
+ 'EQUIPMENT.EXPANDERMODULE': "equipment.ExpanderModule",
'EQUIPMENT.FAN': "equipment.Fan",
'EQUIPMENT.FANCONTROL': "equipment.FanControl",
'EQUIPMENT.FANMODULE': "equipment.FanModule",
@@ -483,6 +486,7 @@ class ComputePhysicalSummaryRelationship(ModelComposed):
'KUBERNETES.ADDONDEFINITION': "kubernetes.AddonDefinition",
'KUBERNETES.ADDONPOLICY': "kubernetes.AddonPolicy",
'KUBERNETES.ADDONREPOSITORY': "kubernetes.AddonRepository",
+ 'KUBERNETES.BAREMETALNODEPROFILE': "kubernetes.BaremetalNodeProfile",
'KUBERNETES.CATALOG': "kubernetes.Catalog",
'KUBERNETES.CLUSTER': "kubernetes.Cluster",
'KUBERNETES.CLUSTERADDONPROFILE': "kubernetes.ClusterAddonProfile",
@@ -652,6 +656,11 @@ class ComputePhysicalSummaryRelationship(ModelComposed):
'RESOURCE.LICENSERESOURCECOUNT': "resource.LicenseResourceCount",
'RESOURCE.MEMBERSHIP': "resource.Membership",
'RESOURCE.MEMBERSHIPHOLDER': "resource.MembershipHolder",
+ 'RESOURCEPOOL.LEASE': "resourcepool.Lease",
+ 'RESOURCEPOOL.LEASERESOURCE': "resourcepool.LeaseResource",
+ 'RESOURCEPOOL.POOL': "resourcepool.Pool",
+ 'RESOURCEPOOL.POOLMEMBER': "resourcepool.PoolMember",
+ 'RESOURCEPOOL.UNIVERSE': "resourcepool.Universe",
'RPROXY.REVERSEPROXY': "rproxy.ReverseProxy",
'SDCARD.POLICY': "sdcard.Policy",
'SDWAN.PROFILE': "sdwan.Profile",
@@ -767,6 +776,7 @@ class ComputePhysicalSummaryRelationship(ModelComposed):
'TASK.NETAPPSCOPEDINVENTORY': "task.NetAppScopedInventory",
'TASK.PUBLICCLOUDSCOPEDINVENTORY': "task.PublicCloudScopedInventory",
'TASK.PURESCOPEDINVENTORY': "task.PureScopedInventory",
+ 'TASK.SERVERSCOPEDINVENTORY': "task.ServerScopedInventory",
'TECHSUPPORTMANAGEMENT.COLLECTIONCONTROLPOLICY': "techsupportmanagement.CollectionControlPolicy",
'TECHSUPPORTMANAGEMENT.DOWNLOAD': "techsupportmanagement.Download",
'TECHSUPPORTMANAGEMENT.TECHSUPPORTBUNDLE': "techsupportmanagement.TechSupportBundle",
@@ -798,6 +808,7 @@ class ComputePhysicalSummaryRelationship(ModelComposed):
'VIRTUALIZATION.VMWAREVCENTER': "virtualization.VmwareVcenter",
'VIRTUALIZATION.VMWAREVIRTUALDISK': "virtualization.VmwareVirtualDisk",
'VIRTUALIZATION.VMWAREVIRTUALMACHINE': "virtualization.VmwareVirtualMachine",
+ 'VIRTUALIZATION.VMWAREVIRTUALMACHINESNAPSHOT': "virtualization.VmwareVirtualMachineSnapshot",
'VIRTUALIZATION.VMWAREVIRTUALNETWORKINTERFACE': "virtualization.VmwareVirtualNetworkInterface",
'VIRTUALIZATION.VMWAREVIRTUALSWITCH': "virtualization.VmwareVirtualSwitch",
'VMEDIA.POLICY': "vmedia.Policy",
@@ -830,12 +841,14 @@ class ComputePhysicalSummaryRelationship(ModelComposed):
'WORKFLOW.TASKDEFINITION': "workflow.TaskDefinition",
'WORKFLOW.TASKINFO': "workflow.TaskInfo",
'WORKFLOW.TASKMETADATA': "workflow.TaskMetadata",
+ 'WORKFLOW.TASKNOTIFICATION': "workflow.TaskNotification",
'WORKFLOW.TEMPLATEEVALUATION': "workflow.TemplateEvaluation",
'WORKFLOW.TEMPLATEFUNCTIONMETA': "workflow.TemplateFunctionMeta",
'WORKFLOW.WORKFLOWDEFINITION': "workflow.WorkflowDefinition",
'WORKFLOW.WORKFLOWINFO': "workflow.WorkflowInfo",
'WORKFLOW.WORKFLOWMETA': "workflow.WorkflowMeta",
'WORKFLOW.WORKFLOWMETADATA': "workflow.WorkflowMetadata",
+ 'WORKFLOW.WORKFLOWNOTIFICATION': "workflow.WorkflowNotification",
},
}
diff --git a/intersight/model/compute_physical_summary_response.py b/intersight/model/compute_physical_summary_response.py
index 2c5162a307..e93ba7f3f6 100644
--- a/intersight/model/compute_physical_summary_response.py
+++ b/intersight/model/compute_physical_summary_response.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/compute_rack_unit.py b/intersight/model/compute_rack_unit.py
index cee3cedc80..d78772ad52 100644
--- a/intersight/model/compute_rack_unit.py
+++ b/intersight/model/compute_rack_unit.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/compute_rack_unit_all_of.py b/intersight/model/compute_rack_unit_all_of.py
index 1fb74cfe2b..af0ec241c5 100644
--- a/intersight/model/compute_rack_unit_all_of.py
+++ b/intersight/model/compute_rack_unit_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/compute_rack_unit_identity.py b/intersight/model/compute_rack_unit_identity.py
index 6f5a4999dc..c358573fb3 100644
--- a/intersight/model/compute_rack_unit_identity.py
+++ b/intersight/model/compute_rack_unit_identity.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/compute_rack_unit_identity_all_of.py b/intersight/model/compute_rack_unit_identity_all_of.py
index 5120ad4dfe..344b3a034c 100644
--- a/intersight/model/compute_rack_unit_identity_all_of.py
+++ b/intersight/model/compute_rack_unit_identity_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/compute_rack_unit_identity_list.py b/intersight/model/compute_rack_unit_identity_list.py
index 1f19bf66c5..11e000305b 100644
--- a/intersight/model/compute_rack_unit_identity_list.py
+++ b/intersight/model/compute_rack_unit_identity_list.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/compute_rack_unit_identity_list_all_of.py b/intersight/model/compute_rack_unit_identity_list_all_of.py
index 1e32220e62..da92b1933b 100644
--- a/intersight/model/compute_rack_unit_identity_list_all_of.py
+++ b/intersight/model/compute_rack_unit_identity_list_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/compute_rack_unit_identity_response.py b/intersight/model/compute_rack_unit_identity_response.py
index f6260dce48..68c1a0202f 100644
--- a/intersight/model/compute_rack_unit_identity_response.py
+++ b/intersight/model/compute_rack_unit_identity_response.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/compute_rack_unit_list.py b/intersight/model/compute_rack_unit_list.py
index e412cc1055..374eac550b 100644
--- a/intersight/model/compute_rack_unit_list.py
+++ b/intersight/model/compute_rack_unit_list.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/compute_rack_unit_list_all_of.py b/intersight/model/compute_rack_unit_list_all_of.py
index 88f6bc9830..c244d8376e 100644
--- a/intersight/model/compute_rack_unit_list_all_of.py
+++ b/intersight/model/compute_rack_unit_list_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/compute_rack_unit_relationship.py b/intersight/model/compute_rack_unit_relationship.py
index 07c23a0e00..a1ffa40f89 100644
--- a/intersight/model/compute_rack_unit_relationship.py
+++ b/intersight/model/compute_rack_unit_relationship.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
@@ -165,6 +165,8 @@ class ComputeRackUnitRelationship(ModelComposed):
},
('object_type',): {
'AAA.AUDITRECORD': "aaa.AuditRecord",
+ 'AAA.RETENTIONCONFIG': "aaa.RetentionConfig",
+ 'AAA.RETENTIONPOLICY': "aaa.RetentionPolicy",
'ACCESS.POLICY': "access.Policy",
'ADAPTER.CONFIGPOLICY': "adapter.ConfigPolicy",
'ADAPTER.EXTETHINTERFACE': "adapter.ExtEthInterface",
@@ -181,6 +183,7 @@ class ComputeRackUnitRelationship(ModelComposed):
'APPLIANCE.DATAEXPORTPOLICY': "appliance.DataExportPolicy",
'APPLIANCE.DEVICECERTIFICATE': "appliance.DeviceCertificate",
'APPLIANCE.DEVICECLAIM': "appliance.DeviceClaim",
+ 'APPLIANCE.DEVICEUPGRADEPOLICY': "appliance.DeviceUpgradePolicy",
'APPLIANCE.DIAGSETTING': "appliance.DiagSetting",
'APPLIANCE.EXTERNALSYSLOGSETTING': "appliance.ExternalSyslogSetting",
'APPLIANCE.FILESYSTEMSTATUS': "appliance.FileSystemStatus",
@@ -229,9 +232,12 @@ class ComputeRackUnitRelationship(ModelComposed):
'BOOT.UEFISHELLDEVICE': "boot.UefiShellDevice",
'BOOT.USBDEVICE': "boot.UsbDevice",
'BOOT.VMEDIADEVICE': "boot.VmediaDevice",
+ 'BULK.EXPORT': "bulk.Export",
+ 'BULK.EXPORTEDITEM': "bulk.ExportedItem",
'BULK.MOCLONER': "bulk.MoCloner",
'BULK.MOMERGER': "bulk.MoMerger",
'BULK.REQUEST': "bulk.Request",
+ 'BULK.SUBREQUESTOBJ': "bulk.SubRequestObj",
'CAPABILITY.ADAPTERUNITDESCRIPTOR': "capability.AdapterUnitDescriptor",
'CAPABILITY.CATALOG': "capability.Catalog",
'CAPABILITY.CHASSISDESCRIPTOR': "capability.ChassisDescriptor",
@@ -295,10 +301,6 @@ class ComputeRackUnitRelationship(ModelComposed):
'COND.HCLSTATUS': "cond.HclStatus",
'COND.HCLSTATUSDETAIL': "cond.HclStatusDetail",
'COND.HCLSTATUSJOB': "cond.HclStatusJob",
- 'CONFIG.EXPORTEDITEM': "config.ExportedItem",
- 'CONFIG.EXPORTER': "config.Exporter",
- 'CONFIG.IMPORTEDITEM': "config.ImportedItem",
- 'CONFIG.IMPORTER': "config.Importer",
'CONNECTORPACK.CONNECTORPACKUPGRADE': "connectorpack.ConnectorPackUpgrade",
'CONNECTORPACK.UPGRADEIMPACT': "connectorpack.UpgradeImpact",
'CRD.CUSTOMRESOURCE': "crd.CustomResource",
@@ -307,6 +309,7 @@ class ComputeRackUnitRelationship(ModelComposed):
'EQUIPMENT.CHASSISIDENTITY': "equipment.ChassisIdentity",
'EQUIPMENT.CHASSISOPERATION': "equipment.ChassisOperation",
'EQUIPMENT.DEVICESUMMARY': "equipment.DeviceSummary",
+ 'EQUIPMENT.EXPANDERMODULE': "equipment.ExpanderModule",
'EQUIPMENT.FAN': "equipment.Fan",
'EQUIPMENT.FANCONTROL': "equipment.FanControl",
'EQUIPMENT.FANMODULE': "equipment.FanModule",
@@ -555,6 +558,7 @@ class ComputeRackUnitRelationship(ModelComposed):
'KUBERNETES.ADDONDEFINITION': "kubernetes.AddonDefinition",
'KUBERNETES.ADDONPOLICY': "kubernetes.AddonPolicy",
'KUBERNETES.ADDONREPOSITORY': "kubernetes.AddonRepository",
+ 'KUBERNETES.BAREMETALNODEPROFILE': "kubernetes.BaremetalNodeProfile",
'KUBERNETES.CATALOG': "kubernetes.Catalog",
'KUBERNETES.CLUSTER': "kubernetes.Cluster",
'KUBERNETES.CLUSTERADDONPROFILE': "kubernetes.ClusterAddonProfile",
@@ -724,6 +728,11 @@ class ComputeRackUnitRelationship(ModelComposed):
'RESOURCE.LICENSERESOURCECOUNT': "resource.LicenseResourceCount",
'RESOURCE.MEMBERSHIP': "resource.Membership",
'RESOURCE.MEMBERSHIPHOLDER': "resource.MembershipHolder",
+ 'RESOURCEPOOL.LEASE': "resourcepool.Lease",
+ 'RESOURCEPOOL.LEASERESOURCE': "resourcepool.LeaseResource",
+ 'RESOURCEPOOL.POOL': "resourcepool.Pool",
+ 'RESOURCEPOOL.POOLMEMBER': "resourcepool.PoolMember",
+ 'RESOURCEPOOL.UNIVERSE': "resourcepool.Universe",
'RPROXY.REVERSEPROXY': "rproxy.ReverseProxy",
'SDCARD.POLICY': "sdcard.Policy",
'SDWAN.PROFILE': "sdwan.Profile",
@@ -839,6 +848,7 @@ class ComputeRackUnitRelationship(ModelComposed):
'TASK.NETAPPSCOPEDINVENTORY': "task.NetAppScopedInventory",
'TASK.PUBLICCLOUDSCOPEDINVENTORY': "task.PublicCloudScopedInventory",
'TASK.PURESCOPEDINVENTORY': "task.PureScopedInventory",
+ 'TASK.SERVERSCOPEDINVENTORY': "task.ServerScopedInventory",
'TECHSUPPORTMANAGEMENT.COLLECTIONCONTROLPOLICY': "techsupportmanagement.CollectionControlPolicy",
'TECHSUPPORTMANAGEMENT.DOWNLOAD': "techsupportmanagement.Download",
'TECHSUPPORTMANAGEMENT.TECHSUPPORTBUNDLE': "techsupportmanagement.TechSupportBundle",
@@ -870,6 +880,7 @@ class ComputeRackUnitRelationship(ModelComposed):
'VIRTUALIZATION.VMWAREVCENTER': "virtualization.VmwareVcenter",
'VIRTUALIZATION.VMWAREVIRTUALDISK': "virtualization.VmwareVirtualDisk",
'VIRTUALIZATION.VMWAREVIRTUALMACHINE': "virtualization.VmwareVirtualMachine",
+ 'VIRTUALIZATION.VMWAREVIRTUALMACHINESNAPSHOT': "virtualization.VmwareVirtualMachineSnapshot",
'VIRTUALIZATION.VMWAREVIRTUALNETWORKINTERFACE': "virtualization.VmwareVirtualNetworkInterface",
'VIRTUALIZATION.VMWAREVIRTUALSWITCH': "virtualization.VmwareVirtualSwitch",
'VMEDIA.POLICY': "vmedia.Policy",
@@ -902,12 +913,14 @@ class ComputeRackUnitRelationship(ModelComposed):
'WORKFLOW.TASKDEFINITION': "workflow.TaskDefinition",
'WORKFLOW.TASKINFO': "workflow.TaskInfo",
'WORKFLOW.TASKMETADATA': "workflow.TaskMetadata",
+ 'WORKFLOW.TASKNOTIFICATION': "workflow.TaskNotification",
'WORKFLOW.TEMPLATEEVALUATION': "workflow.TemplateEvaluation",
'WORKFLOW.TEMPLATEFUNCTIONMETA': "workflow.TemplateFunctionMeta",
'WORKFLOW.WORKFLOWDEFINITION': "workflow.WorkflowDefinition",
'WORKFLOW.WORKFLOWINFO': "workflow.WorkflowInfo",
'WORKFLOW.WORKFLOWMETA': "workflow.WorkflowMeta",
'WORKFLOW.WORKFLOWMETADATA': "workflow.WorkflowMetadata",
+ 'WORKFLOW.WORKFLOWNOTIFICATION': "workflow.WorkflowNotification",
},
}
diff --git a/intersight/model/compute_rack_unit_response.py b/intersight/model/compute_rack_unit_response.py
index 980479bc65..4c49f6995e 100644
--- a/intersight/model/compute_rack_unit_response.py
+++ b/intersight/model/compute_rack_unit_response.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/compute_server_config.py b/intersight/model/compute_server_config.py
index 42f2aaa333..1ebb2f86e5 100644
--- a/intersight/model/compute_server_config.py
+++ b/intersight/model/compute_server_config.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
@@ -72,7 +72,7 @@ class ComputeServerConfig(ModelComposed):
'max_length': 32,
'min_length': 0,
'regex': {
- 'pattern': r'^[ #$%\(\)\*\+,\-\.\/:;\?@\[\]_\{\|\}~a-zA-Z0-9]*$', # noqa: E501
+ 'pattern': r'^[ #$%\(\)\*\+,\-\.\/:;\?@\[\]_\{\|\}\^\`\>\<~a-zA-Z0-9]*$', # noqa: E501
},
},
('user_label',): {
diff --git a/intersight/model/compute_server_config_all_of.py b/intersight/model/compute_server_config_all_of.py
index 3204f6b2cf..ad9eb3ffb5 100644
--- a/intersight/model/compute_server_config_all_of.py
+++ b/intersight/model/compute_server_config_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
@@ -66,7 +66,7 @@ class ComputeServerConfigAllOf(ModelNormal):
'max_length': 32,
'min_length': 0,
'regex': {
- 'pattern': r'^[ #$%\(\)\*\+,\-\.\/:;\?@\[\]_\{\|\}~a-zA-Z0-9]*$', # noqa: E501
+ 'pattern': r'^[ #$%\(\)\*\+,\-\.\/:;\?@\[\]_\{\|\}\^\`\>\<~a-zA-Z0-9]*$', # noqa: E501
},
},
('user_label',): {
diff --git a/intersight/model/compute_server_setting.py b/intersight/model/compute_server_setting.py
index 42c9d3b52c..199da78fa6 100644
--- a/intersight/model/compute_server_setting.py
+++ b/intersight/model/compute_server_setting.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/compute_server_setting_all_of.py b/intersight/model/compute_server_setting_all_of.py
index 406db38379..a8a5f2da89 100644
--- a/intersight/model/compute_server_setting_all_of.py
+++ b/intersight/model/compute_server_setting_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/compute_server_setting_list.py b/intersight/model/compute_server_setting_list.py
index fe72a3e3da..4c358df8c8 100644
--- a/intersight/model/compute_server_setting_list.py
+++ b/intersight/model/compute_server_setting_list.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/compute_server_setting_list_all_of.py b/intersight/model/compute_server_setting_list_all_of.py
index 8eaf020750..d89af15f0a 100644
--- a/intersight/model/compute_server_setting_list_all_of.py
+++ b/intersight/model/compute_server_setting_list_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/compute_server_setting_response.py b/intersight/model/compute_server_setting_response.py
index f4b1b0064e..b67d590d1c 100644
--- a/intersight/model/compute_server_setting_response.py
+++ b/intersight/model/compute_server_setting_response.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/compute_storage_controller_operation.py b/intersight/model/compute_storage_controller_operation.py
index a0ae8d38c7..35af4468c1 100644
--- a/intersight/model/compute_storage_controller_operation.py
+++ b/intersight/model/compute_storage_controller_operation.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/compute_storage_controller_operation_all_of.py b/intersight/model/compute_storage_controller_operation_all_of.py
index bc99368cdf..5e6f0ecdb3 100644
--- a/intersight/model/compute_storage_controller_operation_all_of.py
+++ b/intersight/model/compute_storage_controller_operation_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/compute_storage_physical_drive.py b/intersight/model/compute_storage_physical_drive.py
index 4a23a70608..0329ba9c34 100644
--- a/intersight/model/compute_storage_physical_drive.py
+++ b/intersight/model/compute_storage_physical_drive.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/compute_storage_physical_drive_all_of.py b/intersight/model/compute_storage_physical_drive_all_of.py
index fdf64f7554..2d088a2ac4 100644
--- a/intersight/model/compute_storage_physical_drive_all_of.py
+++ b/intersight/model/compute_storage_physical_drive_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/compute_storage_physical_drive_operation.py b/intersight/model/compute_storage_physical_drive_operation.py
index c9fcee1bba..5d5ef19b82 100644
--- a/intersight/model/compute_storage_physical_drive_operation.py
+++ b/intersight/model/compute_storage_physical_drive_operation.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/compute_storage_physical_drive_operation_all_of.py b/intersight/model/compute_storage_physical_drive_operation_all_of.py
index ac9af6879a..128a786ef7 100644
--- a/intersight/model/compute_storage_physical_drive_operation_all_of.py
+++ b/intersight/model/compute_storage_physical_drive_operation_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/compute_storage_virtual_drive.py b/intersight/model/compute_storage_virtual_drive.py
index cec63de671..a4503aa4c7 100644
--- a/intersight/model/compute_storage_virtual_drive.py
+++ b/intersight/model/compute_storage_virtual_drive.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/compute_storage_virtual_drive_all_of.py b/intersight/model/compute_storage_virtual_drive_all_of.py
index 6d7347e15c..770fc9978a 100644
--- a/intersight/model/compute_storage_virtual_drive_all_of.py
+++ b/intersight/model/compute_storage_virtual_drive_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/compute_storage_virtual_drive_operation.py b/intersight/model/compute_storage_virtual_drive_operation.py
index 4996d7a35d..41ac72cf6f 100644
--- a/intersight/model/compute_storage_virtual_drive_operation.py
+++ b/intersight/model/compute_storage_virtual_drive_operation.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/compute_storage_virtual_drive_operation_all_of.py b/intersight/model/compute_storage_virtual_drive_operation_all_of.py
index c84f5047fa..c1c8eafeed 100644
--- a/intersight/model/compute_storage_virtual_drive_operation_all_of.py
+++ b/intersight/model/compute_storage_virtual_drive_operation_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/compute_vmedia.py b/intersight/model/compute_vmedia.py
index 36fcb2cd10..fc0fd29631 100644
--- a/intersight/model/compute_vmedia.py
+++ b/intersight/model/compute_vmedia.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/compute_vmedia_all_of.py b/intersight/model/compute_vmedia_all_of.py
index d77635ce48..661034650f 100644
--- a/intersight/model/compute_vmedia_all_of.py
+++ b/intersight/model/compute_vmedia_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/compute_vmedia_list.py b/intersight/model/compute_vmedia_list.py
index 31c0696936..d781c02139 100644
--- a/intersight/model/compute_vmedia_list.py
+++ b/intersight/model/compute_vmedia_list.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/compute_vmedia_list_all_of.py b/intersight/model/compute_vmedia_list_all_of.py
index fdffe1232c..15ad87c229 100644
--- a/intersight/model/compute_vmedia_list_all_of.py
+++ b/intersight/model/compute_vmedia_list_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/compute_vmedia_relationship.py b/intersight/model/compute_vmedia_relationship.py
index eed77beb8c..10066e3ccf 100644
--- a/intersight/model/compute_vmedia_relationship.py
+++ b/intersight/model/compute_vmedia_relationship.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
@@ -80,6 +80,8 @@ class ComputeVmediaRelationship(ModelComposed):
},
('object_type',): {
'AAA.AUDITRECORD': "aaa.AuditRecord",
+ 'AAA.RETENTIONCONFIG': "aaa.RetentionConfig",
+ 'AAA.RETENTIONPOLICY': "aaa.RetentionPolicy",
'ACCESS.POLICY': "access.Policy",
'ADAPTER.CONFIGPOLICY': "adapter.ConfigPolicy",
'ADAPTER.EXTETHINTERFACE': "adapter.ExtEthInterface",
@@ -96,6 +98,7 @@ class ComputeVmediaRelationship(ModelComposed):
'APPLIANCE.DATAEXPORTPOLICY': "appliance.DataExportPolicy",
'APPLIANCE.DEVICECERTIFICATE': "appliance.DeviceCertificate",
'APPLIANCE.DEVICECLAIM': "appliance.DeviceClaim",
+ 'APPLIANCE.DEVICEUPGRADEPOLICY': "appliance.DeviceUpgradePolicy",
'APPLIANCE.DIAGSETTING': "appliance.DiagSetting",
'APPLIANCE.EXTERNALSYSLOGSETTING': "appliance.ExternalSyslogSetting",
'APPLIANCE.FILESYSTEMSTATUS': "appliance.FileSystemStatus",
@@ -144,9 +147,12 @@ class ComputeVmediaRelationship(ModelComposed):
'BOOT.UEFISHELLDEVICE': "boot.UefiShellDevice",
'BOOT.USBDEVICE': "boot.UsbDevice",
'BOOT.VMEDIADEVICE': "boot.VmediaDevice",
+ 'BULK.EXPORT': "bulk.Export",
+ 'BULK.EXPORTEDITEM': "bulk.ExportedItem",
'BULK.MOCLONER': "bulk.MoCloner",
'BULK.MOMERGER': "bulk.MoMerger",
'BULK.REQUEST': "bulk.Request",
+ 'BULK.SUBREQUESTOBJ': "bulk.SubRequestObj",
'CAPABILITY.ADAPTERUNITDESCRIPTOR': "capability.AdapterUnitDescriptor",
'CAPABILITY.CATALOG': "capability.Catalog",
'CAPABILITY.CHASSISDESCRIPTOR': "capability.ChassisDescriptor",
@@ -210,10 +216,6 @@ class ComputeVmediaRelationship(ModelComposed):
'COND.HCLSTATUS': "cond.HclStatus",
'COND.HCLSTATUSDETAIL': "cond.HclStatusDetail",
'COND.HCLSTATUSJOB': "cond.HclStatusJob",
- 'CONFIG.EXPORTEDITEM': "config.ExportedItem",
- 'CONFIG.EXPORTER': "config.Exporter",
- 'CONFIG.IMPORTEDITEM': "config.ImportedItem",
- 'CONFIG.IMPORTER': "config.Importer",
'CONNECTORPACK.CONNECTORPACKUPGRADE': "connectorpack.ConnectorPackUpgrade",
'CONNECTORPACK.UPGRADEIMPACT': "connectorpack.UpgradeImpact",
'CRD.CUSTOMRESOURCE': "crd.CustomResource",
@@ -222,6 +224,7 @@ class ComputeVmediaRelationship(ModelComposed):
'EQUIPMENT.CHASSISIDENTITY': "equipment.ChassisIdentity",
'EQUIPMENT.CHASSISOPERATION': "equipment.ChassisOperation",
'EQUIPMENT.DEVICESUMMARY': "equipment.DeviceSummary",
+ 'EQUIPMENT.EXPANDERMODULE': "equipment.ExpanderModule",
'EQUIPMENT.FAN': "equipment.Fan",
'EQUIPMENT.FANCONTROL': "equipment.FanControl",
'EQUIPMENT.FANMODULE': "equipment.FanModule",
@@ -470,6 +473,7 @@ class ComputeVmediaRelationship(ModelComposed):
'KUBERNETES.ADDONDEFINITION': "kubernetes.AddonDefinition",
'KUBERNETES.ADDONPOLICY': "kubernetes.AddonPolicy",
'KUBERNETES.ADDONREPOSITORY': "kubernetes.AddonRepository",
+ 'KUBERNETES.BAREMETALNODEPROFILE': "kubernetes.BaremetalNodeProfile",
'KUBERNETES.CATALOG': "kubernetes.Catalog",
'KUBERNETES.CLUSTER': "kubernetes.Cluster",
'KUBERNETES.CLUSTERADDONPROFILE': "kubernetes.ClusterAddonProfile",
@@ -639,6 +643,11 @@ class ComputeVmediaRelationship(ModelComposed):
'RESOURCE.LICENSERESOURCECOUNT': "resource.LicenseResourceCount",
'RESOURCE.MEMBERSHIP': "resource.Membership",
'RESOURCE.MEMBERSHIPHOLDER': "resource.MembershipHolder",
+ 'RESOURCEPOOL.LEASE': "resourcepool.Lease",
+ 'RESOURCEPOOL.LEASERESOURCE': "resourcepool.LeaseResource",
+ 'RESOURCEPOOL.POOL': "resourcepool.Pool",
+ 'RESOURCEPOOL.POOLMEMBER': "resourcepool.PoolMember",
+ 'RESOURCEPOOL.UNIVERSE': "resourcepool.Universe",
'RPROXY.REVERSEPROXY': "rproxy.ReverseProxy",
'SDCARD.POLICY': "sdcard.Policy",
'SDWAN.PROFILE': "sdwan.Profile",
@@ -754,6 +763,7 @@ class ComputeVmediaRelationship(ModelComposed):
'TASK.NETAPPSCOPEDINVENTORY': "task.NetAppScopedInventory",
'TASK.PUBLICCLOUDSCOPEDINVENTORY': "task.PublicCloudScopedInventory",
'TASK.PURESCOPEDINVENTORY': "task.PureScopedInventory",
+ 'TASK.SERVERSCOPEDINVENTORY': "task.ServerScopedInventory",
'TECHSUPPORTMANAGEMENT.COLLECTIONCONTROLPOLICY': "techsupportmanagement.CollectionControlPolicy",
'TECHSUPPORTMANAGEMENT.DOWNLOAD': "techsupportmanagement.Download",
'TECHSUPPORTMANAGEMENT.TECHSUPPORTBUNDLE': "techsupportmanagement.TechSupportBundle",
@@ -785,6 +795,7 @@ class ComputeVmediaRelationship(ModelComposed):
'VIRTUALIZATION.VMWAREVCENTER': "virtualization.VmwareVcenter",
'VIRTUALIZATION.VMWAREVIRTUALDISK': "virtualization.VmwareVirtualDisk",
'VIRTUALIZATION.VMWAREVIRTUALMACHINE': "virtualization.VmwareVirtualMachine",
+ 'VIRTUALIZATION.VMWAREVIRTUALMACHINESNAPSHOT': "virtualization.VmwareVirtualMachineSnapshot",
'VIRTUALIZATION.VMWAREVIRTUALNETWORKINTERFACE': "virtualization.VmwareVirtualNetworkInterface",
'VIRTUALIZATION.VMWAREVIRTUALSWITCH': "virtualization.VmwareVirtualSwitch",
'VMEDIA.POLICY': "vmedia.Policy",
@@ -817,12 +828,14 @@ class ComputeVmediaRelationship(ModelComposed):
'WORKFLOW.TASKDEFINITION': "workflow.TaskDefinition",
'WORKFLOW.TASKINFO': "workflow.TaskInfo",
'WORKFLOW.TASKMETADATA': "workflow.TaskMetadata",
+ 'WORKFLOW.TASKNOTIFICATION': "workflow.TaskNotification",
'WORKFLOW.TEMPLATEEVALUATION': "workflow.TemplateEvaluation",
'WORKFLOW.TEMPLATEFUNCTIONMETA': "workflow.TemplateFunctionMeta",
'WORKFLOW.WORKFLOWDEFINITION': "workflow.WorkflowDefinition",
'WORKFLOW.WORKFLOWINFO': "workflow.WorkflowInfo",
'WORKFLOW.WORKFLOWMETA': "workflow.WorkflowMeta",
'WORKFLOW.WORKFLOWMETADATA': "workflow.WorkflowMetadata",
+ 'WORKFLOW.WORKFLOWNOTIFICATION': "workflow.WorkflowNotification",
},
}
diff --git a/intersight/model/compute_vmedia_response.py b/intersight/model/compute_vmedia_response.py
index b58d3d78c3..66e5174579 100644
--- a/intersight/model/compute_vmedia_response.py
+++ b/intersight/model/compute_vmedia_response.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/cond_alarm.py b/intersight/model/cond_alarm.py
index 4043cd4400..29b004dde3 100644
--- a/intersight/model/cond_alarm.py
+++ b/intersight/model/cond_alarm.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/cond_alarm_aggregation.py b/intersight/model/cond_alarm_aggregation.py
index 537e446f2b..19468fc86c 100644
--- a/intersight/model/cond_alarm_aggregation.py
+++ b/intersight/model/cond_alarm_aggregation.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/cond_alarm_aggregation_all_of.py b/intersight/model/cond_alarm_aggregation_all_of.py
index 49e558ded0..4a9e242d71 100644
--- a/intersight/model/cond_alarm_aggregation_all_of.py
+++ b/intersight/model/cond_alarm_aggregation_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/cond_alarm_aggregation_list.py b/intersight/model/cond_alarm_aggregation_list.py
index 707907ddc2..860d121583 100644
--- a/intersight/model/cond_alarm_aggregation_list.py
+++ b/intersight/model/cond_alarm_aggregation_list.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/cond_alarm_aggregation_list_all_of.py b/intersight/model/cond_alarm_aggregation_list_all_of.py
index 88d8a77c64..7a9964b3ef 100644
--- a/intersight/model/cond_alarm_aggregation_list_all_of.py
+++ b/intersight/model/cond_alarm_aggregation_list_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/cond_alarm_aggregation_response.py b/intersight/model/cond_alarm_aggregation_response.py
index 67e89edeb3..2802661ccd 100644
--- a/intersight/model/cond_alarm_aggregation_response.py
+++ b/intersight/model/cond_alarm_aggregation_response.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/cond_alarm_all_of.py b/intersight/model/cond_alarm_all_of.py
index 8cf02d136c..f6dc2f496d 100644
--- a/intersight/model/cond_alarm_all_of.py
+++ b/intersight/model/cond_alarm_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/cond_alarm_list.py b/intersight/model/cond_alarm_list.py
index 8c36c35255..ae6c2a038d 100644
--- a/intersight/model/cond_alarm_list.py
+++ b/intersight/model/cond_alarm_list.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/cond_alarm_list_all_of.py b/intersight/model/cond_alarm_list_all_of.py
index c651654636..972ecc4e68 100644
--- a/intersight/model/cond_alarm_list_all_of.py
+++ b/intersight/model/cond_alarm_list_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/cond_alarm_response.py b/intersight/model/cond_alarm_response.py
index fece3db286..660e1e2aed 100644
--- a/intersight/model/cond_alarm_response.py
+++ b/intersight/model/cond_alarm_response.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/cond_alarm_summary.py b/intersight/model/cond_alarm_summary.py
index c922cfcbc9..0f1bb88272 100644
--- a/intersight/model/cond_alarm_summary.py
+++ b/intersight/model/cond_alarm_summary.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/cond_alarm_summary_all_of.py b/intersight/model/cond_alarm_summary_all_of.py
index 972bc64d11..ded01fb8d8 100644
--- a/intersight/model/cond_alarm_summary_all_of.py
+++ b/intersight/model/cond_alarm_summary_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/cond_hcl_status.py b/intersight/model/cond_hcl_status.py
index 48f5227c95..80362d2ea5 100644
--- a/intersight/model/cond_hcl_status.py
+++ b/intersight/model/cond_hcl_status.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/cond_hcl_status_all_of.py b/intersight/model/cond_hcl_status_all_of.py
index 827111a75b..ed03a6cc58 100644
--- a/intersight/model/cond_hcl_status_all_of.py
+++ b/intersight/model/cond_hcl_status_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/cond_hcl_status_detail.py b/intersight/model/cond_hcl_status_detail.py
index 554e924c02..f1eb8bf107 100644
--- a/intersight/model/cond_hcl_status_detail.py
+++ b/intersight/model/cond_hcl_status_detail.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/cond_hcl_status_detail_all_of.py b/intersight/model/cond_hcl_status_detail_all_of.py
index 109fdcdfdd..b6a67ac03d 100644
--- a/intersight/model/cond_hcl_status_detail_all_of.py
+++ b/intersight/model/cond_hcl_status_detail_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/cond_hcl_status_detail_list.py b/intersight/model/cond_hcl_status_detail_list.py
index 45591de5db..ee7f525aa8 100644
--- a/intersight/model/cond_hcl_status_detail_list.py
+++ b/intersight/model/cond_hcl_status_detail_list.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/cond_hcl_status_detail_list_all_of.py b/intersight/model/cond_hcl_status_detail_list_all_of.py
index dcf0357037..d75cd84c8f 100644
--- a/intersight/model/cond_hcl_status_detail_list_all_of.py
+++ b/intersight/model/cond_hcl_status_detail_list_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/cond_hcl_status_detail_relationship.py b/intersight/model/cond_hcl_status_detail_relationship.py
index eb33f02bdc..c7acdf0986 100644
--- a/intersight/model/cond_hcl_status_detail_relationship.py
+++ b/intersight/model/cond_hcl_status_detail_relationship.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
@@ -128,6 +128,8 @@ class CondHclStatusDetailRelationship(ModelComposed):
},
('object_type',): {
'AAA.AUDITRECORD': "aaa.AuditRecord",
+ 'AAA.RETENTIONCONFIG': "aaa.RetentionConfig",
+ 'AAA.RETENTIONPOLICY': "aaa.RetentionPolicy",
'ACCESS.POLICY': "access.Policy",
'ADAPTER.CONFIGPOLICY': "adapter.ConfigPolicy",
'ADAPTER.EXTETHINTERFACE': "adapter.ExtEthInterface",
@@ -144,6 +146,7 @@ class CondHclStatusDetailRelationship(ModelComposed):
'APPLIANCE.DATAEXPORTPOLICY': "appliance.DataExportPolicy",
'APPLIANCE.DEVICECERTIFICATE': "appliance.DeviceCertificate",
'APPLIANCE.DEVICECLAIM': "appliance.DeviceClaim",
+ 'APPLIANCE.DEVICEUPGRADEPOLICY': "appliance.DeviceUpgradePolicy",
'APPLIANCE.DIAGSETTING': "appliance.DiagSetting",
'APPLIANCE.EXTERNALSYSLOGSETTING': "appliance.ExternalSyslogSetting",
'APPLIANCE.FILESYSTEMSTATUS': "appliance.FileSystemStatus",
@@ -192,9 +195,12 @@ class CondHclStatusDetailRelationship(ModelComposed):
'BOOT.UEFISHELLDEVICE': "boot.UefiShellDevice",
'BOOT.USBDEVICE': "boot.UsbDevice",
'BOOT.VMEDIADEVICE': "boot.VmediaDevice",
+ 'BULK.EXPORT': "bulk.Export",
+ 'BULK.EXPORTEDITEM': "bulk.ExportedItem",
'BULK.MOCLONER': "bulk.MoCloner",
'BULK.MOMERGER': "bulk.MoMerger",
'BULK.REQUEST': "bulk.Request",
+ 'BULK.SUBREQUESTOBJ': "bulk.SubRequestObj",
'CAPABILITY.ADAPTERUNITDESCRIPTOR': "capability.AdapterUnitDescriptor",
'CAPABILITY.CATALOG': "capability.Catalog",
'CAPABILITY.CHASSISDESCRIPTOR': "capability.ChassisDescriptor",
@@ -258,10 +264,6 @@ class CondHclStatusDetailRelationship(ModelComposed):
'COND.HCLSTATUS': "cond.HclStatus",
'COND.HCLSTATUSDETAIL': "cond.HclStatusDetail",
'COND.HCLSTATUSJOB': "cond.HclStatusJob",
- 'CONFIG.EXPORTEDITEM': "config.ExportedItem",
- 'CONFIG.EXPORTER': "config.Exporter",
- 'CONFIG.IMPORTEDITEM': "config.ImportedItem",
- 'CONFIG.IMPORTER': "config.Importer",
'CONNECTORPACK.CONNECTORPACKUPGRADE': "connectorpack.ConnectorPackUpgrade",
'CONNECTORPACK.UPGRADEIMPACT': "connectorpack.UpgradeImpact",
'CRD.CUSTOMRESOURCE': "crd.CustomResource",
@@ -270,6 +272,7 @@ class CondHclStatusDetailRelationship(ModelComposed):
'EQUIPMENT.CHASSISIDENTITY': "equipment.ChassisIdentity",
'EQUIPMENT.CHASSISOPERATION': "equipment.ChassisOperation",
'EQUIPMENT.DEVICESUMMARY': "equipment.DeviceSummary",
+ 'EQUIPMENT.EXPANDERMODULE': "equipment.ExpanderModule",
'EQUIPMENT.FAN': "equipment.Fan",
'EQUIPMENT.FANCONTROL': "equipment.FanControl",
'EQUIPMENT.FANMODULE': "equipment.FanModule",
@@ -518,6 +521,7 @@ class CondHclStatusDetailRelationship(ModelComposed):
'KUBERNETES.ADDONDEFINITION': "kubernetes.AddonDefinition",
'KUBERNETES.ADDONPOLICY': "kubernetes.AddonPolicy",
'KUBERNETES.ADDONREPOSITORY': "kubernetes.AddonRepository",
+ 'KUBERNETES.BAREMETALNODEPROFILE': "kubernetes.BaremetalNodeProfile",
'KUBERNETES.CATALOG': "kubernetes.Catalog",
'KUBERNETES.CLUSTER': "kubernetes.Cluster",
'KUBERNETES.CLUSTERADDONPROFILE': "kubernetes.ClusterAddonProfile",
@@ -687,6 +691,11 @@ class CondHclStatusDetailRelationship(ModelComposed):
'RESOURCE.LICENSERESOURCECOUNT': "resource.LicenseResourceCount",
'RESOURCE.MEMBERSHIP': "resource.Membership",
'RESOURCE.MEMBERSHIPHOLDER': "resource.MembershipHolder",
+ 'RESOURCEPOOL.LEASE': "resourcepool.Lease",
+ 'RESOURCEPOOL.LEASERESOURCE': "resourcepool.LeaseResource",
+ 'RESOURCEPOOL.POOL': "resourcepool.Pool",
+ 'RESOURCEPOOL.POOLMEMBER': "resourcepool.PoolMember",
+ 'RESOURCEPOOL.UNIVERSE': "resourcepool.Universe",
'RPROXY.REVERSEPROXY': "rproxy.ReverseProxy",
'SDCARD.POLICY': "sdcard.Policy",
'SDWAN.PROFILE': "sdwan.Profile",
@@ -802,6 +811,7 @@ class CondHclStatusDetailRelationship(ModelComposed):
'TASK.NETAPPSCOPEDINVENTORY': "task.NetAppScopedInventory",
'TASK.PUBLICCLOUDSCOPEDINVENTORY': "task.PublicCloudScopedInventory",
'TASK.PURESCOPEDINVENTORY': "task.PureScopedInventory",
+ 'TASK.SERVERSCOPEDINVENTORY': "task.ServerScopedInventory",
'TECHSUPPORTMANAGEMENT.COLLECTIONCONTROLPOLICY': "techsupportmanagement.CollectionControlPolicy",
'TECHSUPPORTMANAGEMENT.DOWNLOAD': "techsupportmanagement.Download",
'TECHSUPPORTMANAGEMENT.TECHSUPPORTBUNDLE': "techsupportmanagement.TechSupportBundle",
@@ -833,6 +843,7 @@ class CondHclStatusDetailRelationship(ModelComposed):
'VIRTUALIZATION.VMWAREVCENTER': "virtualization.VmwareVcenter",
'VIRTUALIZATION.VMWAREVIRTUALDISK': "virtualization.VmwareVirtualDisk",
'VIRTUALIZATION.VMWAREVIRTUALMACHINE': "virtualization.VmwareVirtualMachine",
+ 'VIRTUALIZATION.VMWAREVIRTUALMACHINESNAPSHOT': "virtualization.VmwareVirtualMachineSnapshot",
'VIRTUALIZATION.VMWAREVIRTUALNETWORKINTERFACE': "virtualization.VmwareVirtualNetworkInterface",
'VIRTUALIZATION.VMWAREVIRTUALSWITCH': "virtualization.VmwareVirtualSwitch",
'VMEDIA.POLICY': "vmedia.Policy",
@@ -865,12 +876,14 @@ class CondHclStatusDetailRelationship(ModelComposed):
'WORKFLOW.TASKDEFINITION': "workflow.TaskDefinition",
'WORKFLOW.TASKINFO': "workflow.TaskInfo",
'WORKFLOW.TASKMETADATA': "workflow.TaskMetadata",
+ 'WORKFLOW.TASKNOTIFICATION': "workflow.TaskNotification",
'WORKFLOW.TEMPLATEEVALUATION': "workflow.TemplateEvaluation",
'WORKFLOW.TEMPLATEFUNCTIONMETA': "workflow.TemplateFunctionMeta",
'WORKFLOW.WORKFLOWDEFINITION': "workflow.WorkflowDefinition",
'WORKFLOW.WORKFLOWINFO': "workflow.WorkflowInfo",
'WORKFLOW.WORKFLOWMETA': "workflow.WorkflowMeta",
'WORKFLOW.WORKFLOWMETADATA': "workflow.WorkflowMetadata",
+ 'WORKFLOW.WORKFLOWNOTIFICATION': "workflow.WorkflowNotification",
},
}
diff --git a/intersight/model/cond_hcl_status_detail_response.py b/intersight/model/cond_hcl_status_detail_response.py
index 7bb70cfd7b..ca6f8fe5c1 100644
--- a/intersight/model/cond_hcl_status_detail_response.py
+++ b/intersight/model/cond_hcl_status_detail_response.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/cond_hcl_status_job.py b/intersight/model/cond_hcl_status_job.py
index 3aa8ad2d58..a70aab9477 100644
--- a/intersight/model/cond_hcl_status_job.py
+++ b/intersight/model/cond_hcl_status_job.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/cond_hcl_status_job_all_of.py b/intersight/model/cond_hcl_status_job_all_of.py
index dd1de0a95d..964a57b554 100644
--- a/intersight/model/cond_hcl_status_job_all_of.py
+++ b/intersight/model/cond_hcl_status_job_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/cond_hcl_status_job_list.py b/intersight/model/cond_hcl_status_job_list.py
index c531f64a80..b03a80e2e2 100644
--- a/intersight/model/cond_hcl_status_job_list.py
+++ b/intersight/model/cond_hcl_status_job_list.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/cond_hcl_status_job_list_all_of.py b/intersight/model/cond_hcl_status_job_list_all_of.py
index a4e790a0e6..8d75282b52 100644
--- a/intersight/model/cond_hcl_status_job_list_all_of.py
+++ b/intersight/model/cond_hcl_status_job_list_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/cond_hcl_status_job_response.py b/intersight/model/cond_hcl_status_job_response.py
index 498df0fb0f..cb490010aa 100644
--- a/intersight/model/cond_hcl_status_job_response.py
+++ b/intersight/model/cond_hcl_status_job_response.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/cond_hcl_status_list.py b/intersight/model/cond_hcl_status_list.py
index dc9665b8ec..4266e8eb10 100644
--- a/intersight/model/cond_hcl_status_list.py
+++ b/intersight/model/cond_hcl_status_list.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/cond_hcl_status_list_all_of.py b/intersight/model/cond_hcl_status_list_all_of.py
index f25fd420f4..7520034418 100644
--- a/intersight/model/cond_hcl_status_list_all_of.py
+++ b/intersight/model/cond_hcl_status_list_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/cond_hcl_status_relationship.py b/intersight/model/cond_hcl_status_relationship.py
index ce3ab71674..e637b736f0 100644
--- a/intersight/model/cond_hcl_status_relationship.py
+++ b/intersight/model/cond_hcl_status_relationship.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
@@ -124,6 +124,8 @@ class CondHclStatusRelationship(ModelComposed):
},
('object_type',): {
'AAA.AUDITRECORD': "aaa.AuditRecord",
+ 'AAA.RETENTIONCONFIG': "aaa.RetentionConfig",
+ 'AAA.RETENTIONPOLICY': "aaa.RetentionPolicy",
'ACCESS.POLICY': "access.Policy",
'ADAPTER.CONFIGPOLICY': "adapter.ConfigPolicy",
'ADAPTER.EXTETHINTERFACE': "adapter.ExtEthInterface",
@@ -140,6 +142,7 @@ class CondHclStatusRelationship(ModelComposed):
'APPLIANCE.DATAEXPORTPOLICY': "appliance.DataExportPolicy",
'APPLIANCE.DEVICECERTIFICATE': "appliance.DeviceCertificate",
'APPLIANCE.DEVICECLAIM': "appliance.DeviceClaim",
+ 'APPLIANCE.DEVICEUPGRADEPOLICY': "appliance.DeviceUpgradePolicy",
'APPLIANCE.DIAGSETTING': "appliance.DiagSetting",
'APPLIANCE.EXTERNALSYSLOGSETTING': "appliance.ExternalSyslogSetting",
'APPLIANCE.FILESYSTEMSTATUS': "appliance.FileSystemStatus",
@@ -188,9 +191,12 @@ class CondHclStatusRelationship(ModelComposed):
'BOOT.UEFISHELLDEVICE': "boot.UefiShellDevice",
'BOOT.USBDEVICE': "boot.UsbDevice",
'BOOT.VMEDIADEVICE': "boot.VmediaDevice",
+ 'BULK.EXPORT': "bulk.Export",
+ 'BULK.EXPORTEDITEM': "bulk.ExportedItem",
'BULK.MOCLONER': "bulk.MoCloner",
'BULK.MOMERGER': "bulk.MoMerger",
'BULK.REQUEST': "bulk.Request",
+ 'BULK.SUBREQUESTOBJ': "bulk.SubRequestObj",
'CAPABILITY.ADAPTERUNITDESCRIPTOR': "capability.AdapterUnitDescriptor",
'CAPABILITY.CATALOG': "capability.Catalog",
'CAPABILITY.CHASSISDESCRIPTOR': "capability.ChassisDescriptor",
@@ -254,10 +260,6 @@ class CondHclStatusRelationship(ModelComposed):
'COND.HCLSTATUS': "cond.HclStatus",
'COND.HCLSTATUSDETAIL': "cond.HclStatusDetail",
'COND.HCLSTATUSJOB': "cond.HclStatusJob",
- 'CONFIG.EXPORTEDITEM': "config.ExportedItem",
- 'CONFIG.EXPORTER': "config.Exporter",
- 'CONFIG.IMPORTEDITEM': "config.ImportedItem",
- 'CONFIG.IMPORTER': "config.Importer",
'CONNECTORPACK.CONNECTORPACKUPGRADE': "connectorpack.ConnectorPackUpgrade",
'CONNECTORPACK.UPGRADEIMPACT': "connectorpack.UpgradeImpact",
'CRD.CUSTOMRESOURCE': "crd.CustomResource",
@@ -266,6 +268,7 @@ class CondHclStatusRelationship(ModelComposed):
'EQUIPMENT.CHASSISIDENTITY': "equipment.ChassisIdentity",
'EQUIPMENT.CHASSISOPERATION': "equipment.ChassisOperation",
'EQUIPMENT.DEVICESUMMARY': "equipment.DeviceSummary",
+ 'EQUIPMENT.EXPANDERMODULE': "equipment.ExpanderModule",
'EQUIPMENT.FAN': "equipment.Fan",
'EQUIPMENT.FANCONTROL': "equipment.FanControl",
'EQUIPMENT.FANMODULE': "equipment.FanModule",
@@ -514,6 +517,7 @@ class CondHclStatusRelationship(ModelComposed):
'KUBERNETES.ADDONDEFINITION': "kubernetes.AddonDefinition",
'KUBERNETES.ADDONPOLICY': "kubernetes.AddonPolicy",
'KUBERNETES.ADDONREPOSITORY': "kubernetes.AddonRepository",
+ 'KUBERNETES.BAREMETALNODEPROFILE': "kubernetes.BaremetalNodeProfile",
'KUBERNETES.CATALOG': "kubernetes.Catalog",
'KUBERNETES.CLUSTER': "kubernetes.Cluster",
'KUBERNETES.CLUSTERADDONPROFILE': "kubernetes.ClusterAddonProfile",
@@ -683,6 +687,11 @@ class CondHclStatusRelationship(ModelComposed):
'RESOURCE.LICENSERESOURCECOUNT': "resource.LicenseResourceCount",
'RESOURCE.MEMBERSHIP': "resource.Membership",
'RESOURCE.MEMBERSHIPHOLDER': "resource.MembershipHolder",
+ 'RESOURCEPOOL.LEASE': "resourcepool.Lease",
+ 'RESOURCEPOOL.LEASERESOURCE': "resourcepool.LeaseResource",
+ 'RESOURCEPOOL.POOL': "resourcepool.Pool",
+ 'RESOURCEPOOL.POOLMEMBER': "resourcepool.PoolMember",
+ 'RESOURCEPOOL.UNIVERSE': "resourcepool.Universe",
'RPROXY.REVERSEPROXY': "rproxy.ReverseProxy",
'SDCARD.POLICY': "sdcard.Policy",
'SDWAN.PROFILE': "sdwan.Profile",
@@ -798,6 +807,7 @@ class CondHclStatusRelationship(ModelComposed):
'TASK.NETAPPSCOPEDINVENTORY': "task.NetAppScopedInventory",
'TASK.PUBLICCLOUDSCOPEDINVENTORY': "task.PublicCloudScopedInventory",
'TASK.PURESCOPEDINVENTORY': "task.PureScopedInventory",
+ 'TASK.SERVERSCOPEDINVENTORY': "task.ServerScopedInventory",
'TECHSUPPORTMANAGEMENT.COLLECTIONCONTROLPOLICY': "techsupportmanagement.CollectionControlPolicy",
'TECHSUPPORTMANAGEMENT.DOWNLOAD': "techsupportmanagement.Download",
'TECHSUPPORTMANAGEMENT.TECHSUPPORTBUNDLE': "techsupportmanagement.TechSupportBundle",
@@ -829,6 +839,7 @@ class CondHclStatusRelationship(ModelComposed):
'VIRTUALIZATION.VMWAREVCENTER': "virtualization.VmwareVcenter",
'VIRTUALIZATION.VMWAREVIRTUALDISK': "virtualization.VmwareVirtualDisk",
'VIRTUALIZATION.VMWAREVIRTUALMACHINE': "virtualization.VmwareVirtualMachine",
+ 'VIRTUALIZATION.VMWAREVIRTUALMACHINESNAPSHOT': "virtualization.VmwareVirtualMachineSnapshot",
'VIRTUALIZATION.VMWAREVIRTUALNETWORKINTERFACE': "virtualization.VmwareVirtualNetworkInterface",
'VIRTUALIZATION.VMWAREVIRTUALSWITCH': "virtualization.VmwareVirtualSwitch",
'VMEDIA.POLICY': "vmedia.Policy",
@@ -861,12 +872,14 @@ class CondHclStatusRelationship(ModelComposed):
'WORKFLOW.TASKDEFINITION': "workflow.TaskDefinition",
'WORKFLOW.TASKINFO': "workflow.TaskInfo",
'WORKFLOW.TASKMETADATA': "workflow.TaskMetadata",
+ 'WORKFLOW.TASKNOTIFICATION': "workflow.TaskNotification",
'WORKFLOW.TEMPLATEEVALUATION': "workflow.TemplateEvaluation",
'WORKFLOW.TEMPLATEFUNCTIONMETA': "workflow.TemplateFunctionMeta",
'WORKFLOW.WORKFLOWDEFINITION': "workflow.WorkflowDefinition",
'WORKFLOW.WORKFLOWINFO': "workflow.WorkflowInfo",
'WORKFLOW.WORKFLOWMETA': "workflow.WorkflowMeta",
'WORKFLOW.WORKFLOWMETADATA': "workflow.WorkflowMetadata",
+ 'WORKFLOW.WORKFLOWNOTIFICATION': "workflow.WorkflowNotification",
},
}
diff --git a/intersight/model/cond_hcl_status_response.py b/intersight/model/cond_hcl_status_response.py
index 0f335bbf63..db2e9adfb3 100644
--- a/intersight/model/cond_hcl_status_response.py
+++ b/intersight/model/cond_hcl_status_response.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/connector_auth_message.py b/intersight/model/connector_auth_message.py
index 34d0bb92e0..a7ac45b832 100644
--- a/intersight/model/connector_auth_message.py
+++ b/intersight/model/connector_auth_message.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/connector_auth_message_all_of.py b/intersight/model/connector_auth_message_all_of.py
index c7b78b29bb..d298ff1b51 100644
--- a/intersight/model/connector_auth_message_all_of.py
+++ b/intersight/model/connector_auth_message_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/connector_base_message.py b/intersight/model/connector_base_message.py
index 3d4efaefac..aa8608a7e8 100644
--- a/intersight/model/connector_base_message.py
+++ b/intersight/model/connector_base_message.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/connector_base_message_all_of.py b/intersight/model/connector_base_message_all_of.py
index 1dc6e7716d..b11f8e8795 100644
--- a/intersight/model/connector_base_message_all_of.py
+++ b/intersight/model/connector_base_message_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/connector_close_stream_message.py b/intersight/model/connector_close_stream_message.py
index 8cdd773d3c..d850919ebb 100644
--- a/intersight/model/connector_close_stream_message.py
+++ b/intersight/model/connector_close_stream_message.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/connector_command_control_message.py b/intersight/model/connector_command_control_message.py
index 97d456f7d0..68328627e0 100644
--- a/intersight/model/connector_command_control_message.py
+++ b/intersight/model/connector_command_control_message.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/connector_command_control_message_all_of.py b/intersight/model/connector_command_control_message_all_of.py
index 5f35cd5d95..f2ab677f9f 100644
--- a/intersight/model/connector_command_control_message_all_of.py
+++ b/intersight/model/connector_command_control_message_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/connector_command_terminal_stream.py b/intersight/model/connector_command_terminal_stream.py
index fde6f917a9..c668f5b0bf 100644
--- a/intersight/model/connector_command_terminal_stream.py
+++ b/intersight/model/connector_command_terminal_stream.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/connector_command_terminal_stream_all_of.py b/intersight/model/connector_command_terminal_stream_all_of.py
index 8c0ef6028e..7b3b04ed40 100644
--- a/intersight/model/connector_command_terminal_stream_all_of.py
+++ b/intersight/model/connector_command_terminal_stream_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/connector_download_status.py b/intersight/model/connector_download_status.py
index 5e58a87fdf..014e6d047c 100644
--- a/intersight/model/connector_download_status.py
+++ b/intersight/model/connector_download_status.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/connector_download_status_all_of.py b/intersight/model/connector_download_status_all_of.py
index 5d0c2134c6..1a5c498199 100644
--- a/intersight/model/connector_download_status_all_of.py
+++ b/intersight/model/connector_download_status_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/connector_expect_prompt.py b/intersight/model/connector_expect_prompt.py
index c176386186..dba4cf643f 100644
--- a/intersight/model/connector_expect_prompt.py
+++ b/intersight/model/connector_expect_prompt.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/connector_expect_prompt_all_of.py b/intersight/model/connector_expect_prompt_all_of.py
index 1967694026..5837f069bc 100644
--- a/intersight/model/connector_expect_prompt_all_of.py
+++ b/intersight/model/connector_expect_prompt_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/connector_fetch_stream_message.py b/intersight/model/connector_fetch_stream_message.py
index 4ac9941006..45a04c4e0d 100644
--- a/intersight/model/connector_fetch_stream_message.py
+++ b/intersight/model/connector_fetch_stream_message.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/connector_fetch_stream_message_all_of.py b/intersight/model/connector_fetch_stream_message_all_of.py
index 3ddc429f3b..a4a05c9304 100644
--- a/intersight/model/connector_fetch_stream_message_all_of.py
+++ b/intersight/model/connector_fetch_stream_message_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/connector_file_checksum.py b/intersight/model/connector_file_checksum.py
index fd7a320c97..311a2ff7f7 100644
--- a/intersight/model/connector_file_checksum.py
+++ b/intersight/model/connector_file_checksum.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/connector_file_checksum_all_of.py b/intersight/model/connector_file_checksum_all_of.py
index 15bfaada37..3f5db7df9e 100644
--- a/intersight/model/connector_file_checksum_all_of.py
+++ b/intersight/model/connector_file_checksum_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/connector_file_message.py b/intersight/model/connector_file_message.py
index 612a20e7d2..208b85ca1a 100644
--- a/intersight/model/connector_file_message.py
+++ b/intersight/model/connector_file_message.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/connector_file_message_all_of.py b/intersight/model/connector_file_message_all_of.py
index 0031705ddb..b666cd4fe8 100644
--- a/intersight/model/connector_file_message_all_of.py
+++ b/intersight/model/connector_file_message_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/connector_http_request.py b/intersight/model/connector_http_request.py
index a02438855c..de7bbb9aa6 100644
--- a/intersight/model/connector_http_request.py
+++ b/intersight/model/connector_http_request.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/connector_http_request_all_of.py b/intersight/model/connector_http_request_all_of.py
index 6fd1acb30c..e4fc1f3f4e 100644
--- a/intersight/model/connector_http_request_all_of.py
+++ b/intersight/model/connector_http_request_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/connector_platform_param_base.py b/intersight/model/connector_platform_param_base.py
index eeea867494..6ed793095e 100644
--- a/intersight/model/connector_platform_param_base.py
+++ b/intersight/model/connector_platform_param_base.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
@@ -128,6 +128,7 @@ class ConnectorPlatformParamBase(ModelComposed):
'BOOT.UEFISHELL': "boot.UefiShell",
'BOOT.USB': "boot.Usb",
'BOOT.VIRTUALMEDIA': "boot.VirtualMedia",
+ 'BULK.HTTPHEADER': "bulk.HttpHeader",
'BULK.RESTRESULT': "bulk.RestResult",
'BULK.RESTSUBREQUEST': "bulk.RestSubRequest",
'CAPABILITY.PORTRANGE': "capability.PortRange",
@@ -168,7 +169,6 @@ class ConnectorPlatformParamBase(ModelComposed):
'COMPUTE.STORAGEVIRTUALDRIVE': "compute.StorageVirtualDrive",
'COMPUTE.STORAGEVIRTUALDRIVEOPERATION': "compute.StorageVirtualDriveOperation",
'COND.ALARMSUMMARY': "cond.AlarmSummary",
- 'CONFIG.MOREF': "config.MoRef",
'CONNECTOR.CLOSESTREAMMESSAGE': "connector.CloseStreamMessage",
'CONNECTOR.COMMANDCONTROLMESSAGE': "connector.CommandControlMessage",
'CONNECTOR.COMMANDTERMINALSTREAM': "connector.CommandTerminalStream",
@@ -304,6 +304,7 @@ class ConnectorPlatformParamBase(ModelComposed):
'KUBERNETES.ACTIONINFO': "kubernetes.ActionInfo",
'KUBERNETES.ADDON': "kubernetes.Addon",
'KUBERNETES.ADDONCONFIGURATION': "kubernetes.AddonConfiguration",
+ 'KUBERNETES.BAREMETALNETWORKINFO': "kubernetes.BaremetalNetworkInfo",
'KUBERNETES.CALICOCONFIG': "kubernetes.CalicoConfig",
'KUBERNETES.CLUSTERCERTIFICATECONFIGURATION': "kubernetes.ClusterCertificateConfiguration",
'KUBERNETES.CLUSTERMANAGEMENTCONFIG': "kubernetes.ClusterManagementConfig",
@@ -312,6 +313,8 @@ class ConnectorPlatformParamBase(ModelComposed):
'KUBERNETES.DEPLOYMENTSTATUS': "kubernetes.DeploymentStatus",
'KUBERNETES.ESSENTIALADDON': "kubernetes.EssentialAddon",
'KUBERNETES.ESXIVIRTUALMACHINEINFRACONFIG': "kubernetes.EsxiVirtualMachineInfraConfig",
+ 'KUBERNETES.ETHERNET': "kubernetes.Ethernet",
+ 'KUBERNETES.ETHERNETMATCHER': "kubernetes.EthernetMatcher",
'KUBERNETES.HYPERFLEXAPVIRTUALMACHINEINFRACONFIG': "kubernetes.HyperFlexApVirtualMachineInfraConfig",
'KUBERNETES.INGRESSSTATUS': "kubernetes.IngressStatus",
'KUBERNETES.KEYVALUE': "kubernetes.KeyValue",
@@ -323,6 +326,7 @@ class ConnectorPlatformParamBase(ModelComposed):
'KUBERNETES.NODESPEC': "kubernetes.NodeSpec",
'KUBERNETES.NODESTATUS': "kubernetes.NodeStatus",
'KUBERNETES.OBJECTMETA': "kubernetes.ObjectMeta",
+ 'KUBERNETES.OVSBOND': "kubernetes.OvsBond",
'KUBERNETES.PODSTATUS': "kubernetes.PodStatus",
'KUBERNETES.PROXYCONFIG': "kubernetes.ProxyConfig",
'KUBERNETES.SERVICESTATUS': "kubernetes.ServiceStatus",
@@ -334,6 +338,7 @@ class ConnectorPlatformParamBase(ModelComposed):
'MEMORY.PERSISTENTMEMORYLOGICALNAMESPACE': "memory.PersistentMemoryLogicalNamespace",
'META.ACCESSPRIVILEGE': "meta.AccessPrivilege",
'META.DISPLAYNAMEDEFINITION': "meta.DisplayNameDefinition",
+ 'META.IDENTITYDEFINITION': "meta.IdentityDefinition",
'META.PROPDEFINITION': "meta.PropDefinition",
'META.RELATIONSHIPDEFINITION': "meta.RelationshipDefinition",
'MO.MOREF': "mo.MoRef",
@@ -391,6 +396,8 @@ class ConnectorPlatformParamBase(ModelComposed):
'RESOURCE.SELECTOR': "resource.Selector",
'RESOURCE.SOURCETOPERMISSIONRESOURCES': "resource.SourceToPermissionResources",
'RESOURCE.SOURCETOPERMISSIONRESOURCESHOLDER': "resource.SourceToPermissionResourcesHolder",
+ 'RESOURCEPOOL.SERVERLEASEPARAMETERS': "resourcepool.ServerLeaseParameters",
+ 'RESOURCEPOOL.SERVERPOOLPARAMETERS': "resourcepool.ServerPoolParameters",
'SDCARD.DIAGNOSTICS': "sdcard.Diagnostics",
'SDCARD.DRIVERS': "sdcard.Drivers",
'SDCARD.HOSTUPGRADEUTILITY': "sdcard.HostUpgradeUtility",
@@ -400,6 +407,7 @@ class ConnectorPlatformParamBase(ModelComposed):
'SDCARD.USERPARTITION': "sdcard.UserPartition",
'SDWAN.NETWORKCONFIGURATIONTYPE': "sdwan.NetworkConfigurationType",
'SDWAN.TEMPLATEINPUTSTYPE': "sdwan.TemplateInputsType",
+ 'SERVER.PENDINGWORKFLOWTRIGGER': "server.PendingWorkflowTrigger",
'SNMP.TRAP': "snmp.Trap",
'SNMP.USER': "snmp.User",
'SOFTWAREREPOSITORY.APPLIANCEUPLOAD': "softwarerepository.ApplianceUpload",
@@ -635,6 +643,7 @@ class ConnectorPlatformParamBase(ModelComposed):
'BOOT.UEFISHELL': "boot.UefiShell",
'BOOT.USB': "boot.Usb",
'BOOT.VIRTUALMEDIA': "boot.VirtualMedia",
+ 'BULK.HTTPHEADER': "bulk.HttpHeader",
'BULK.RESTRESULT': "bulk.RestResult",
'BULK.RESTSUBREQUEST': "bulk.RestSubRequest",
'CAPABILITY.PORTRANGE': "capability.PortRange",
@@ -675,7 +684,6 @@ class ConnectorPlatformParamBase(ModelComposed):
'COMPUTE.STORAGEVIRTUALDRIVE': "compute.StorageVirtualDrive",
'COMPUTE.STORAGEVIRTUALDRIVEOPERATION': "compute.StorageVirtualDriveOperation",
'COND.ALARMSUMMARY': "cond.AlarmSummary",
- 'CONFIG.MOREF': "config.MoRef",
'CONNECTOR.CLOSESTREAMMESSAGE': "connector.CloseStreamMessage",
'CONNECTOR.COMMANDCONTROLMESSAGE': "connector.CommandControlMessage",
'CONNECTOR.COMMANDTERMINALSTREAM': "connector.CommandTerminalStream",
@@ -811,6 +819,7 @@ class ConnectorPlatformParamBase(ModelComposed):
'KUBERNETES.ACTIONINFO': "kubernetes.ActionInfo",
'KUBERNETES.ADDON': "kubernetes.Addon",
'KUBERNETES.ADDONCONFIGURATION': "kubernetes.AddonConfiguration",
+ 'KUBERNETES.BAREMETALNETWORKINFO': "kubernetes.BaremetalNetworkInfo",
'KUBERNETES.CALICOCONFIG': "kubernetes.CalicoConfig",
'KUBERNETES.CLUSTERCERTIFICATECONFIGURATION': "kubernetes.ClusterCertificateConfiguration",
'KUBERNETES.CLUSTERMANAGEMENTCONFIG': "kubernetes.ClusterManagementConfig",
@@ -819,6 +828,8 @@ class ConnectorPlatformParamBase(ModelComposed):
'KUBERNETES.DEPLOYMENTSTATUS': "kubernetes.DeploymentStatus",
'KUBERNETES.ESSENTIALADDON': "kubernetes.EssentialAddon",
'KUBERNETES.ESXIVIRTUALMACHINEINFRACONFIG': "kubernetes.EsxiVirtualMachineInfraConfig",
+ 'KUBERNETES.ETHERNET': "kubernetes.Ethernet",
+ 'KUBERNETES.ETHERNETMATCHER': "kubernetes.EthernetMatcher",
'KUBERNETES.HYPERFLEXAPVIRTUALMACHINEINFRACONFIG': "kubernetes.HyperFlexApVirtualMachineInfraConfig",
'KUBERNETES.INGRESSSTATUS': "kubernetes.IngressStatus",
'KUBERNETES.KEYVALUE': "kubernetes.KeyValue",
@@ -830,6 +841,7 @@ class ConnectorPlatformParamBase(ModelComposed):
'KUBERNETES.NODESPEC': "kubernetes.NodeSpec",
'KUBERNETES.NODESTATUS': "kubernetes.NodeStatus",
'KUBERNETES.OBJECTMETA': "kubernetes.ObjectMeta",
+ 'KUBERNETES.OVSBOND': "kubernetes.OvsBond",
'KUBERNETES.PODSTATUS': "kubernetes.PodStatus",
'KUBERNETES.PROXYCONFIG': "kubernetes.ProxyConfig",
'KUBERNETES.SERVICESTATUS': "kubernetes.ServiceStatus",
@@ -841,6 +853,7 @@ class ConnectorPlatformParamBase(ModelComposed):
'MEMORY.PERSISTENTMEMORYLOGICALNAMESPACE': "memory.PersistentMemoryLogicalNamespace",
'META.ACCESSPRIVILEGE': "meta.AccessPrivilege",
'META.DISPLAYNAMEDEFINITION': "meta.DisplayNameDefinition",
+ 'META.IDENTITYDEFINITION': "meta.IdentityDefinition",
'META.PROPDEFINITION': "meta.PropDefinition",
'META.RELATIONSHIPDEFINITION': "meta.RelationshipDefinition",
'MO.MOREF': "mo.MoRef",
@@ -898,6 +911,8 @@ class ConnectorPlatformParamBase(ModelComposed):
'RESOURCE.SELECTOR': "resource.Selector",
'RESOURCE.SOURCETOPERMISSIONRESOURCES': "resource.SourceToPermissionResources",
'RESOURCE.SOURCETOPERMISSIONRESOURCESHOLDER': "resource.SourceToPermissionResourcesHolder",
+ 'RESOURCEPOOL.SERVERLEASEPARAMETERS': "resourcepool.ServerLeaseParameters",
+ 'RESOURCEPOOL.SERVERPOOLPARAMETERS': "resourcepool.ServerPoolParameters",
'SDCARD.DIAGNOSTICS': "sdcard.Diagnostics",
'SDCARD.DRIVERS': "sdcard.Drivers",
'SDCARD.HOSTUPGRADEUTILITY': "sdcard.HostUpgradeUtility",
@@ -907,6 +922,7 @@ class ConnectorPlatformParamBase(ModelComposed):
'SDCARD.USERPARTITION': "sdcard.UserPartition",
'SDWAN.NETWORKCONFIGURATIONTYPE': "sdwan.NetworkConfigurationType",
'SDWAN.TEMPLATEINPUTSTYPE': "sdwan.TemplateInputsType",
+ 'SERVER.PENDINGWORKFLOWTRIGGER': "server.PendingWorkflowTrigger",
'SNMP.TRAP': "snmp.Trap",
'SNMP.USER': "snmp.User",
'SOFTWAREREPOSITORY.APPLIANCEUPLOAD': "softwarerepository.ApplianceUpload",
diff --git a/intersight/model/connector_scoped_inventory.py b/intersight/model/connector_scoped_inventory.py
index b5fd364177..e19642c207 100644
--- a/intersight/model/connector_scoped_inventory.py
+++ b/intersight/model/connector_scoped_inventory.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
@@ -39,6 +39,7 @@ def lazy_import():
from intersight.model.task_net_app_scoped_inventory import TaskNetAppScopedInventory
from intersight.model.task_public_cloud_scoped_inventory import TaskPublicCloudScopedInventory
from intersight.model.task_pure_scoped_inventory import TaskPureScopedInventory
+ from intersight.model.task_server_scoped_inventory import TaskServerScopedInventory
globals()['ConnectorScopedInventoryAllOf'] = ConnectorScopedInventoryAllOf
globals()['DisplayNames'] = DisplayNames
globals()['MoBaseMo'] = MoBaseMo
@@ -50,6 +51,7 @@ def lazy_import():
globals()['TaskNetAppScopedInventory'] = TaskNetAppScopedInventory
globals()['TaskPublicCloudScopedInventory'] = TaskPublicCloudScopedInventory
globals()['TaskPureScopedInventory'] = TaskPureScopedInventory
+ globals()['TaskServerScopedInventory'] = TaskServerScopedInventory
class ConnectorScopedInventory(ModelComposed):
@@ -83,6 +85,7 @@ class ConnectorScopedInventory(ModelComposed):
'NETAPPSCOPEDINVENTORY': "task.NetAppScopedInventory",
'PUBLICCLOUDSCOPEDINVENTORY': "task.PublicCloudScopedInventory",
'PURESCOPEDINVENTORY': "task.PureScopedInventory",
+ 'SERVERSCOPEDINVENTORY': "task.ServerScopedInventory",
},
('object_type',): {
'HITACHISCOPEDINVENTORY': "task.HitachiScopedInventory",
@@ -90,6 +93,7 @@ class ConnectorScopedInventory(ModelComposed):
'NETAPPSCOPEDINVENTORY': "task.NetAppScopedInventory",
'PUBLICCLOUDSCOPEDINVENTORY': "task.PublicCloudScopedInventory",
'PURESCOPEDINVENTORY': "task.PureScopedInventory",
+ 'SERVERSCOPEDINVENTORY': "task.ServerScopedInventory",
},
}
@@ -149,6 +153,7 @@ def discriminator():
'task.NetAppScopedInventory': TaskNetAppScopedInventory,
'task.PublicCloudScopedInventory': TaskPublicCloudScopedInventory,
'task.PureScopedInventory': TaskPureScopedInventory,
+ 'task.ServerScopedInventory': TaskServerScopedInventory,
}
if not val:
return None
diff --git a/intersight/model/connector_scoped_inventory_all_of.py b/intersight/model/connector_scoped_inventory_all_of.py
index 80a16cd4fe..e0ea6289d1 100644
--- a/intersight/model/connector_scoped_inventory_all_of.py
+++ b/intersight/model/connector_scoped_inventory_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
@@ -59,6 +59,7 @@ class ConnectorScopedInventoryAllOf(ModelNormal):
'NETAPPSCOPEDINVENTORY': "task.NetAppScopedInventory",
'PUBLICCLOUDSCOPEDINVENTORY': "task.PublicCloudScopedInventory",
'PURESCOPEDINVENTORY': "task.PureScopedInventory",
+ 'SERVERSCOPEDINVENTORY': "task.ServerScopedInventory",
},
('object_type',): {
'HITACHISCOPEDINVENTORY': "task.HitachiScopedInventory",
@@ -66,6 +67,7 @@ class ConnectorScopedInventoryAllOf(ModelNormal):
'NETAPPSCOPEDINVENTORY': "task.NetAppScopedInventory",
'PUBLICCLOUDSCOPEDINVENTORY': "task.PublicCloudScopedInventory",
'PURESCOPEDINVENTORY': "task.PureScopedInventory",
+ 'SERVERSCOPEDINVENTORY': "task.ServerScopedInventory",
},
}
diff --git a/intersight/model/connector_ssh_config.py b/intersight/model/connector_ssh_config.py
index 99172ba800..83f135aa45 100644
--- a/intersight/model/connector_ssh_config.py
+++ b/intersight/model/connector_ssh_config.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/connector_ssh_config_all_of.py b/intersight/model/connector_ssh_config_all_of.py
index d57a0608ce..43f1026644 100644
--- a/intersight/model/connector_ssh_config_all_of.py
+++ b/intersight/model/connector_ssh_config_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/connector_ssh_message.py b/intersight/model/connector_ssh_message.py
index 7d2a2a27b4..a859b4843c 100644
--- a/intersight/model/connector_ssh_message.py
+++ b/intersight/model/connector_ssh_message.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/connector_ssh_message_all_of.py b/intersight/model/connector_ssh_message_all_of.py
index ff6e87344d..9f83e66bae 100644
--- a/intersight/model/connector_ssh_message_all_of.py
+++ b/intersight/model/connector_ssh_message_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/connector_start_stream.py b/intersight/model/connector_start_stream.py
index b3d0271a31..1622175c5f 100644
--- a/intersight/model/connector_start_stream.py
+++ b/intersight/model/connector_start_stream.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/connector_start_stream_all_of.py b/intersight/model/connector_start_stream_all_of.py
index 6ef1936391..b748bce8e1 100644
--- a/intersight/model/connector_start_stream_all_of.py
+++ b/intersight/model/connector_start_stream_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/connector_start_stream_from_device.py b/intersight/model/connector_start_stream_from_device.py
index e15fdb0494..63a78d2a2a 100644
--- a/intersight/model/connector_start_stream_from_device.py
+++ b/intersight/model/connector_start_stream_from_device.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/connector_start_stream_from_device_all_of.py b/intersight/model/connector_start_stream_from_device_all_of.py
index e0506747cd..d1d803c06b 100644
--- a/intersight/model/connector_start_stream_from_device_all_of.py
+++ b/intersight/model/connector_start_stream_from_device_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/connector_stream_acknowledge.py b/intersight/model/connector_stream_acknowledge.py
index 77ea339726..b24e001ad4 100644
--- a/intersight/model/connector_stream_acknowledge.py
+++ b/intersight/model/connector_stream_acknowledge.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/connector_stream_acknowledge_all_of.py b/intersight/model/connector_stream_acknowledge_all_of.py
index c6d3ceddc5..c7a6898620 100644
--- a/intersight/model/connector_stream_acknowledge_all_of.py
+++ b/intersight/model/connector_stream_acknowledge_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/connector_stream_input.py b/intersight/model/connector_stream_input.py
index 0335ec52b8..d4bd735659 100644
--- a/intersight/model/connector_stream_input.py
+++ b/intersight/model/connector_stream_input.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/connector_stream_input_all_of.py b/intersight/model/connector_stream_input_all_of.py
index c12d651d4c..58f376bfdd 100644
--- a/intersight/model/connector_stream_input_all_of.py
+++ b/intersight/model/connector_stream_input_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/connector_stream_keepalive.py b/intersight/model/connector_stream_keepalive.py
index 51902a23e0..3599230bd6 100644
--- a/intersight/model/connector_stream_keepalive.py
+++ b/intersight/model/connector_stream_keepalive.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/connector_stream_message.py b/intersight/model/connector_stream_message.py
index 4237f7c8a0..a05c93c9c7 100644
--- a/intersight/model/connector_stream_message.py
+++ b/intersight/model/connector_stream_message.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/connector_stream_message_all_of.py b/intersight/model/connector_stream_message_all_of.py
index 7ef54f89ff..78c077c6e3 100644
--- a/intersight/model/connector_stream_message_all_of.py
+++ b/intersight/model/connector_stream_message_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/connector_url.py b/intersight/model/connector_url.py
index ef95a147a8..e200d49438 100644
--- a/intersight/model/connector_url.py
+++ b/intersight/model/connector_url.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/connector_url_all_of.py b/intersight/model/connector_url_all_of.py
index 845284ece0..89ed94ebca 100644
--- a/intersight/model/connector_url_all_of.py
+++ b/intersight/model/connector_url_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/connector_xml_api_message.py b/intersight/model/connector_xml_api_message.py
index 30401a6a9b..c1f24a34fd 100644
--- a/intersight/model/connector_xml_api_message.py
+++ b/intersight/model/connector_xml_api_message.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/connector_xml_api_message_all_of.py b/intersight/model/connector_xml_api_message_all_of.py
index 045aa2b84b..f3a51d30a1 100644
--- a/intersight/model/connector_xml_api_message_all_of.py
+++ b/intersight/model/connector_xml_api_message_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/connectorpack_connector_pack_update.py b/intersight/model/connectorpack_connector_pack_update.py
index 5dd8c38abf..c0be40833c 100644
--- a/intersight/model/connectorpack_connector_pack_update.py
+++ b/intersight/model/connectorpack_connector_pack_update.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/connectorpack_connector_pack_update_all_of.py b/intersight/model/connectorpack_connector_pack_update_all_of.py
index 953d60e787..fa3aa214f8 100644
--- a/intersight/model/connectorpack_connector_pack_update_all_of.py
+++ b/intersight/model/connectorpack_connector_pack_update_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/connectorpack_connector_pack_upgrade.py b/intersight/model/connectorpack_connector_pack_upgrade.py
index 25396c209c..9e684eb0f7 100644
--- a/intersight/model/connectorpack_connector_pack_upgrade.py
+++ b/intersight/model/connectorpack_connector_pack_upgrade.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/connectorpack_connector_pack_upgrade_all_of.py b/intersight/model/connectorpack_connector_pack_upgrade_all_of.py
index 2469fd18d6..8156e15a48 100644
--- a/intersight/model/connectorpack_connector_pack_upgrade_all_of.py
+++ b/intersight/model/connectorpack_connector_pack_upgrade_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/connectorpack_connector_pack_upgrade_list.py b/intersight/model/connectorpack_connector_pack_upgrade_list.py
index e24c192af4..306c6437f7 100644
--- a/intersight/model/connectorpack_connector_pack_upgrade_list.py
+++ b/intersight/model/connectorpack_connector_pack_upgrade_list.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/connectorpack_connector_pack_upgrade_list_all_of.py b/intersight/model/connectorpack_connector_pack_upgrade_list_all_of.py
index 6536b0ae36..e4448a2134 100644
--- a/intersight/model/connectorpack_connector_pack_upgrade_list_all_of.py
+++ b/intersight/model/connectorpack_connector_pack_upgrade_list_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/connectorpack_connector_pack_upgrade_response.py b/intersight/model/connectorpack_connector_pack_upgrade_response.py
index 0926a4bbb1..16b44bb587 100644
--- a/intersight/model/connectorpack_connector_pack_upgrade_response.py
+++ b/intersight/model/connectorpack_connector_pack_upgrade_response.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/connectorpack_upgrade_impact.py b/intersight/model/connectorpack_upgrade_impact.py
index ed701f057d..acddb01648 100644
--- a/intersight/model/connectorpack_upgrade_impact.py
+++ b/intersight/model/connectorpack_upgrade_impact.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/connectorpack_upgrade_impact_all_of.py b/intersight/model/connectorpack_upgrade_impact_all_of.py
index 8c67727561..f951b35601 100644
--- a/intersight/model/connectorpack_upgrade_impact_all_of.py
+++ b/intersight/model/connectorpack_upgrade_impact_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/connectorpack_upgrade_impact_list.py b/intersight/model/connectorpack_upgrade_impact_list.py
index a7f9a00974..db75495c47 100644
--- a/intersight/model/connectorpack_upgrade_impact_list.py
+++ b/intersight/model/connectorpack_upgrade_impact_list.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/connectorpack_upgrade_impact_list_all_of.py b/intersight/model/connectorpack_upgrade_impact_list_all_of.py
index ec71cd9c47..dc35979076 100644
--- a/intersight/model/connectorpack_upgrade_impact_list_all_of.py
+++ b/intersight/model/connectorpack_upgrade_impact_list_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/connectorpack_upgrade_impact_response.py b/intersight/model/connectorpack_upgrade_impact_response.py
index 2a1f973d86..7fd93c3f18 100644
--- a/intersight/model/connectorpack_upgrade_impact_response.py
+++ b/intersight/model/connectorpack_upgrade_impact_response.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/content_base_parameter.py b/intersight/model/content_base_parameter.py
index e17cddcbdc..02320a1dd7 100644
--- a/intersight/model/content_base_parameter.py
+++ b/intersight/model/content_base_parameter.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/content_base_parameter_all_of.py b/intersight/model/content_base_parameter_all_of.py
index 96559920e0..511f9df853 100644
--- a/intersight/model/content_base_parameter_all_of.py
+++ b/intersight/model/content_base_parameter_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/content_complex_type.py b/intersight/model/content_complex_type.py
index 487ecdd9c4..12dbbf8082 100644
--- a/intersight/model/content_complex_type.py
+++ b/intersight/model/content_complex_type.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/content_complex_type_all_of.py b/intersight/model/content_complex_type_all_of.py
index 2c4029e5ea..4ced83b63a 100644
--- a/intersight/model/content_complex_type_all_of.py
+++ b/intersight/model/content_complex_type_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/content_parameter.py b/intersight/model/content_parameter.py
index 8f4a0a40d0..8bd29a53a8 100644
--- a/intersight/model/content_parameter.py
+++ b/intersight/model/content_parameter.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/content_text_parameter.py b/intersight/model/content_text_parameter.py
index a14c041b0c..e5bcf19963 100644
--- a/intersight/model/content_text_parameter.py
+++ b/intersight/model/content_text_parameter.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/content_text_parameter_all_of.py b/intersight/model/content_text_parameter_all_of.py
index 083dee60f1..1b1a29c650 100644
--- a/intersight/model/content_text_parameter_all_of.py
+++ b/intersight/model/content_text_parameter_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/crd_custom_resource.py b/intersight/model/crd_custom_resource.py
index 18c6c388ef..0eb43b1e2e 100644
--- a/intersight/model/crd_custom_resource.py
+++ b/intersight/model/crd_custom_resource.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/crd_custom_resource_all_of.py b/intersight/model/crd_custom_resource_all_of.py
index 681ee18fcc..978d9de03d 100644
--- a/intersight/model/crd_custom_resource_all_of.py
+++ b/intersight/model/crd_custom_resource_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/crd_custom_resource_config_property.py b/intersight/model/crd_custom_resource_config_property.py
index ae4a598d82..bdd5349a97 100644
--- a/intersight/model/crd_custom_resource_config_property.py
+++ b/intersight/model/crd_custom_resource_config_property.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/crd_custom_resource_config_property_all_of.py b/intersight/model/crd_custom_resource_config_property_all_of.py
index c57a5e3775..092580b5ab 100644
--- a/intersight/model/crd_custom_resource_config_property_all_of.py
+++ b/intersight/model/crd_custom_resource_config_property_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/crd_custom_resource_list.py b/intersight/model/crd_custom_resource_list.py
index ace1948178..da253decba 100644
--- a/intersight/model/crd_custom_resource_list.py
+++ b/intersight/model/crd_custom_resource_list.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/crd_custom_resource_list_all_of.py b/intersight/model/crd_custom_resource_list_all_of.py
index 856579e73d..5b0cf613ac 100644
--- a/intersight/model/crd_custom_resource_list_all_of.py
+++ b/intersight/model/crd_custom_resource_list_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/crd_custom_resource_response.py b/intersight/model/crd_custom_resource_response.py
index 6a4f7080d9..9dc8720a74 100644
--- a/intersight/model/crd_custom_resource_response.py
+++ b/intersight/model/crd_custom_resource_response.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/deviceconnector_policy.py b/intersight/model/deviceconnector_policy.py
index 965e2805ab..96a65b1613 100644
--- a/intersight/model/deviceconnector_policy.py
+++ b/intersight/model/deviceconnector_policy.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/deviceconnector_policy_all_of.py b/intersight/model/deviceconnector_policy_all_of.py
index 07bebe4ca4..cdcfc91f01 100644
--- a/intersight/model/deviceconnector_policy_all_of.py
+++ b/intersight/model/deviceconnector_policy_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/deviceconnector_policy_list.py b/intersight/model/deviceconnector_policy_list.py
index 3d2dd755b1..d1c13092da 100644
--- a/intersight/model/deviceconnector_policy_list.py
+++ b/intersight/model/deviceconnector_policy_list.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/deviceconnector_policy_list_all_of.py b/intersight/model/deviceconnector_policy_list_all_of.py
index 073fb1f85e..2eaf39d499 100644
--- a/intersight/model/deviceconnector_policy_list_all_of.py
+++ b/intersight/model/deviceconnector_policy_list_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/deviceconnector_policy_response.py b/intersight/model/deviceconnector_policy_response.py
index eb1d27c1c7..ef976bcf60 100644
--- a/intersight/model/deviceconnector_policy_response.py
+++ b/intersight/model/deviceconnector_policy_response.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/display_names.py b/intersight/model/display_names.py
index 865d5e27d6..b21505fc93 100644
--- a/intersight/model/display_names.py
+++ b/intersight/model/display_names.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/equipment_abstract_device.py b/intersight/model/equipment_abstract_device.py
index b2f505a9b1..dabb53cbc9 100644
--- a/intersight/model/equipment_abstract_device.py
+++ b/intersight/model/equipment_abstract_device.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/equipment_abstract_device_all_of.py b/intersight/model/equipment_abstract_device_all_of.py
index f0a14ffec5..ab3887fe4f 100644
--- a/intersight/model/equipment_abstract_device_all_of.py
+++ b/intersight/model/equipment_abstract_device_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/equipment_base.py b/intersight/model/equipment_base.py
index c898997ed1..c08ff1f9d2 100644
--- a/intersight/model/equipment_base.py
+++ b/intersight/model/equipment_base.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
@@ -53,6 +53,7 @@ def lazy_import():
from intersight.model.equipment_abstract_device import EquipmentAbstractDevice
from intersight.model.equipment_base_all_of import EquipmentBaseAllOf
from intersight.model.equipment_chassis import EquipmentChassis
+ from intersight.model.equipment_expander_module import EquipmentExpanderModule
from intersight.model.equipment_fan import EquipmentFan
from intersight.model.equipment_fan_control import EquipmentFanControl
from intersight.model.equipment_fan_module import EquipmentFanModule
@@ -140,6 +141,7 @@ def lazy_import():
globals()['EquipmentAbstractDevice'] = EquipmentAbstractDevice
globals()['EquipmentBaseAllOf'] = EquipmentBaseAllOf
globals()['EquipmentChassis'] = EquipmentChassis
+ globals()['EquipmentExpanderModule'] = EquipmentExpanderModule
globals()['EquipmentFan'] = EquipmentFan
globals()['EquipmentFanControl'] = EquipmentFanControl
globals()['EquipmentFanModule'] = EquipmentFanModule
@@ -250,6 +252,7 @@ class EquipmentBase(ModelComposed):
'COMPUTE.BOARD': "compute.Board",
'COMPUTE.RACKUNIT': "compute.RackUnit",
'EQUIPMENT.CHASSIS': "equipment.Chassis",
+ 'EQUIPMENT.EXPANDERMODULE': "equipment.ExpanderModule",
'EQUIPMENT.FAN': "equipment.Fan",
'EQUIPMENT.FANCONTROL': "equipment.FanControl",
'EQUIPMENT.FANMODULE': "equipment.FanModule",
@@ -323,6 +326,7 @@ class EquipmentBase(ModelComposed):
'COMPUTE.BOARD': "compute.Board",
'COMPUTE.RACKUNIT': "compute.RackUnit",
'EQUIPMENT.CHASSIS': "equipment.Chassis",
+ 'EQUIPMENT.EXPANDERMODULE': "equipment.ExpanderModule",
'EQUIPMENT.FAN': "equipment.Fan",
'EQUIPMENT.FANCONTROL': "equipment.FanControl",
'EQUIPMENT.FANMODULE': "equipment.FanModule",
@@ -456,6 +460,7 @@ def discriminator():
'compute.RackUnit': ComputeRackUnit,
'equipment.AbstractDevice': EquipmentAbstractDevice,
'equipment.Chassis': EquipmentChassis,
+ 'equipment.ExpanderModule': EquipmentExpanderModule,
'equipment.Fan': EquipmentFan,
'equipment.FanControl': EquipmentFanControl,
'equipment.FanModule': EquipmentFanModule,
diff --git a/intersight/model/equipment_base_all_of.py b/intersight/model/equipment_base_all_of.py
index 4d3d0c3ae8..204f5f1e83 100644
--- a/intersight/model/equipment_base_all_of.py
+++ b/intersight/model/equipment_base_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
@@ -78,6 +78,7 @@ class EquipmentBaseAllOf(ModelNormal):
'COMPUTE.BOARD': "compute.Board",
'COMPUTE.RACKUNIT': "compute.RackUnit",
'EQUIPMENT.CHASSIS': "equipment.Chassis",
+ 'EQUIPMENT.EXPANDERMODULE': "equipment.ExpanderModule",
'EQUIPMENT.FAN': "equipment.Fan",
'EQUIPMENT.FANCONTROL': "equipment.FanControl",
'EQUIPMENT.FANMODULE': "equipment.FanModule",
@@ -151,6 +152,7 @@ class EquipmentBaseAllOf(ModelNormal):
'COMPUTE.BOARD': "compute.Board",
'COMPUTE.RACKUNIT': "compute.RackUnit",
'EQUIPMENT.CHASSIS': "equipment.Chassis",
+ 'EQUIPMENT.EXPANDERMODULE': "equipment.ExpanderModule",
'EQUIPMENT.FAN': "equipment.Fan",
'EQUIPMENT.FANCONTROL': "equipment.FanControl",
'EQUIPMENT.FANMODULE': "equipment.FanModule",
diff --git a/intersight/model/equipment_base_relationship.py b/intersight/model/equipment_base_relationship.py
index 5e37f9799c..a500a5d1ab 100644
--- a/intersight/model/equipment_base_relationship.py
+++ b/intersight/model/equipment_base_relationship.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
@@ -74,6 +74,8 @@ class EquipmentBaseRelationship(ModelComposed):
},
('object_type',): {
'AAA.AUDITRECORD': "aaa.AuditRecord",
+ 'AAA.RETENTIONCONFIG': "aaa.RetentionConfig",
+ 'AAA.RETENTIONPOLICY': "aaa.RetentionPolicy",
'ACCESS.POLICY': "access.Policy",
'ADAPTER.CONFIGPOLICY': "adapter.ConfigPolicy",
'ADAPTER.EXTETHINTERFACE': "adapter.ExtEthInterface",
@@ -90,6 +92,7 @@ class EquipmentBaseRelationship(ModelComposed):
'APPLIANCE.DATAEXPORTPOLICY': "appliance.DataExportPolicy",
'APPLIANCE.DEVICECERTIFICATE': "appliance.DeviceCertificate",
'APPLIANCE.DEVICECLAIM': "appliance.DeviceClaim",
+ 'APPLIANCE.DEVICEUPGRADEPOLICY': "appliance.DeviceUpgradePolicy",
'APPLIANCE.DIAGSETTING': "appliance.DiagSetting",
'APPLIANCE.EXTERNALSYSLOGSETTING': "appliance.ExternalSyslogSetting",
'APPLIANCE.FILESYSTEMSTATUS': "appliance.FileSystemStatus",
@@ -138,9 +141,12 @@ class EquipmentBaseRelationship(ModelComposed):
'BOOT.UEFISHELLDEVICE': "boot.UefiShellDevice",
'BOOT.USBDEVICE': "boot.UsbDevice",
'BOOT.VMEDIADEVICE': "boot.VmediaDevice",
+ 'BULK.EXPORT': "bulk.Export",
+ 'BULK.EXPORTEDITEM': "bulk.ExportedItem",
'BULK.MOCLONER': "bulk.MoCloner",
'BULK.MOMERGER': "bulk.MoMerger",
'BULK.REQUEST': "bulk.Request",
+ 'BULK.SUBREQUESTOBJ': "bulk.SubRequestObj",
'CAPABILITY.ADAPTERUNITDESCRIPTOR': "capability.AdapterUnitDescriptor",
'CAPABILITY.CATALOG': "capability.Catalog",
'CAPABILITY.CHASSISDESCRIPTOR': "capability.ChassisDescriptor",
@@ -204,10 +210,6 @@ class EquipmentBaseRelationship(ModelComposed):
'COND.HCLSTATUS': "cond.HclStatus",
'COND.HCLSTATUSDETAIL': "cond.HclStatusDetail",
'COND.HCLSTATUSJOB': "cond.HclStatusJob",
- 'CONFIG.EXPORTEDITEM': "config.ExportedItem",
- 'CONFIG.EXPORTER': "config.Exporter",
- 'CONFIG.IMPORTEDITEM': "config.ImportedItem",
- 'CONFIG.IMPORTER': "config.Importer",
'CONNECTORPACK.CONNECTORPACKUPGRADE': "connectorpack.ConnectorPackUpgrade",
'CONNECTORPACK.UPGRADEIMPACT': "connectorpack.UpgradeImpact",
'CRD.CUSTOMRESOURCE': "crd.CustomResource",
@@ -216,6 +218,7 @@ class EquipmentBaseRelationship(ModelComposed):
'EQUIPMENT.CHASSISIDENTITY': "equipment.ChassisIdentity",
'EQUIPMENT.CHASSISOPERATION': "equipment.ChassisOperation",
'EQUIPMENT.DEVICESUMMARY': "equipment.DeviceSummary",
+ 'EQUIPMENT.EXPANDERMODULE': "equipment.ExpanderModule",
'EQUIPMENT.FAN': "equipment.Fan",
'EQUIPMENT.FANCONTROL': "equipment.FanControl",
'EQUIPMENT.FANMODULE': "equipment.FanModule",
@@ -464,6 +467,7 @@ class EquipmentBaseRelationship(ModelComposed):
'KUBERNETES.ADDONDEFINITION': "kubernetes.AddonDefinition",
'KUBERNETES.ADDONPOLICY': "kubernetes.AddonPolicy",
'KUBERNETES.ADDONREPOSITORY': "kubernetes.AddonRepository",
+ 'KUBERNETES.BAREMETALNODEPROFILE': "kubernetes.BaremetalNodeProfile",
'KUBERNETES.CATALOG': "kubernetes.Catalog",
'KUBERNETES.CLUSTER': "kubernetes.Cluster",
'KUBERNETES.CLUSTERADDONPROFILE': "kubernetes.ClusterAddonProfile",
@@ -633,6 +637,11 @@ class EquipmentBaseRelationship(ModelComposed):
'RESOURCE.LICENSERESOURCECOUNT': "resource.LicenseResourceCount",
'RESOURCE.MEMBERSHIP': "resource.Membership",
'RESOURCE.MEMBERSHIPHOLDER': "resource.MembershipHolder",
+ 'RESOURCEPOOL.LEASE': "resourcepool.Lease",
+ 'RESOURCEPOOL.LEASERESOURCE': "resourcepool.LeaseResource",
+ 'RESOURCEPOOL.POOL': "resourcepool.Pool",
+ 'RESOURCEPOOL.POOLMEMBER': "resourcepool.PoolMember",
+ 'RESOURCEPOOL.UNIVERSE': "resourcepool.Universe",
'RPROXY.REVERSEPROXY': "rproxy.ReverseProxy",
'SDCARD.POLICY': "sdcard.Policy",
'SDWAN.PROFILE': "sdwan.Profile",
@@ -748,6 +757,7 @@ class EquipmentBaseRelationship(ModelComposed):
'TASK.NETAPPSCOPEDINVENTORY': "task.NetAppScopedInventory",
'TASK.PUBLICCLOUDSCOPEDINVENTORY': "task.PublicCloudScopedInventory",
'TASK.PURESCOPEDINVENTORY': "task.PureScopedInventory",
+ 'TASK.SERVERSCOPEDINVENTORY': "task.ServerScopedInventory",
'TECHSUPPORTMANAGEMENT.COLLECTIONCONTROLPOLICY': "techsupportmanagement.CollectionControlPolicy",
'TECHSUPPORTMANAGEMENT.DOWNLOAD': "techsupportmanagement.Download",
'TECHSUPPORTMANAGEMENT.TECHSUPPORTBUNDLE': "techsupportmanagement.TechSupportBundle",
@@ -779,6 +789,7 @@ class EquipmentBaseRelationship(ModelComposed):
'VIRTUALIZATION.VMWAREVCENTER': "virtualization.VmwareVcenter",
'VIRTUALIZATION.VMWAREVIRTUALDISK': "virtualization.VmwareVirtualDisk",
'VIRTUALIZATION.VMWAREVIRTUALMACHINE': "virtualization.VmwareVirtualMachine",
+ 'VIRTUALIZATION.VMWAREVIRTUALMACHINESNAPSHOT': "virtualization.VmwareVirtualMachineSnapshot",
'VIRTUALIZATION.VMWAREVIRTUALNETWORKINTERFACE': "virtualization.VmwareVirtualNetworkInterface",
'VIRTUALIZATION.VMWAREVIRTUALSWITCH': "virtualization.VmwareVirtualSwitch",
'VMEDIA.POLICY': "vmedia.Policy",
@@ -811,12 +822,14 @@ class EquipmentBaseRelationship(ModelComposed):
'WORKFLOW.TASKDEFINITION': "workflow.TaskDefinition",
'WORKFLOW.TASKINFO': "workflow.TaskInfo",
'WORKFLOW.TASKMETADATA': "workflow.TaskMetadata",
+ 'WORKFLOW.TASKNOTIFICATION': "workflow.TaskNotification",
'WORKFLOW.TEMPLATEEVALUATION': "workflow.TemplateEvaluation",
'WORKFLOW.TEMPLATEFUNCTIONMETA': "workflow.TemplateFunctionMeta",
'WORKFLOW.WORKFLOWDEFINITION': "workflow.WorkflowDefinition",
'WORKFLOW.WORKFLOWINFO': "workflow.WorkflowInfo",
'WORKFLOW.WORKFLOWMETA': "workflow.WorkflowMeta",
'WORKFLOW.WORKFLOWMETADATA': "workflow.WorkflowMetadata",
+ 'WORKFLOW.WORKFLOWNOTIFICATION': "workflow.WorkflowNotification",
},
}
diff --git a/intersight/model/equipment_chassis.py b/intersight/model/equipment_chassis.py
index 7eef38d2ad..65e2abaa27 100644
--- a/intersight/model/equipment_chassis.py
+++ b/intersight/model/equipment_chassis.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
@@ -34,6 +34,7 @@ def lazy_import():
from intersight.model.display_names import DisplayNames
from intersight.model.equipment_base import EquipmentBase
from intersight.model.equipment_chassis_all_of import EquipmentChassisAllOf
+ from intersight.model.equipment_expander_module_relationship import EquipmentExpanderModuleRelationship
from intersight.model.equipment_fan_control_relationship import EquipmentFanControlRelationship
from intersight.model.equipment_fan_module_relationship import EquipmentFanModuleRelationship
from intersight.model.equipment_fru_relationship import EquipmentFruRelationship
@@ -56,6 +57,7 @@ def lazy_import():
globals()['DisplayNames'] = DisplayNames
globals()['EquipmentBase'] = EquipmentBase
globals()['EquipmentChassisAllOf'] = EquipmentChassisAllOf
+ globals()['EquipmentExpanderModuleRelationship'] = EquipmentExpanderModuleRelationship
globals()['EquipmentFanControlRelationship'] = EquipmentFanControlRelationship
globals()['EquipmentFanModuleRelationship'] = EquipmentFanModuleRelationship
globals()['EquipmentFruRelationship'] = EquipmentFruRelationship
@@ -154,6 +156,8 @@ class EquipmentChassis(ModelComposed):
'MEMORYUNCORRECTABLEERROR': "MemoryUncorrectableError",
'MEMORYTEMPERATUREWARNING': "MemoryTemperatureWarning",
'MEMORYTEMPERATURECRITICAL': "MemoryTemperatureCritical",
+ 'MEMORYBANKERROR': "MemoryBankError",
+ 'MEMORYRANKERROR': "MemoryRankError",
'MOTHERBOARDPOWERCRITICAL': "MotherBoardPowerCritical",
'MOTHERBOARDTEMPERATUREWARNING': "MotherBoardTemperatureWarning",
'MOTHERBOARDTEMPERATURECRITICAL': "MotherBoardTemperatureCritical",
@@ -213,6 +217,7 @@ def openapi_types():
'sku': (str,), # noqa: E501
'vid': (str,), # noqa: E501
'blades': ([ComputeBladeRelationship], none_type,), # noqa: E501
+ 'expander_modules': ([EquipmentExpanderModuleRelationship], none_type,), # noqa: E501
'fan_control': (EquipmentFanControlRelationship,), # noqa: E501
'fanmodules': ([EquipmentFanModuleRelationship], none_type,), # noqa: E501
'inventory_device_info': (InventoryDeviceInfoRelationship,), # noqa: E501
@@ -278,6 +283,7 @@ def discriminator():
'sku': 'Sku', # noqa: E501
'vid': 'Vid', # noqa: E501
'blades': 'Blades', # noqa: E501
+ 'expander_modules': 'ExpanderModules', # noqa: E501
'fan_control': 'FanControl', # noqa: E501
'fanmodules': 'Fanmodules', # noqa: E501
'inventory_device_info': 'InventoryDeviceInfo', # noqa: E501
@@ -383,6 +389,7 @@ def __init__(self, *args, **kwargs): # noqa: E501
sku (str): This field identifies the Stock Keeping Unit for the chassis enclosure.. [optional] # noqa: E501
vid (str): This field identifies the Vendor ID for the chassis enclosure.. [optional] # noqa: E501
blades ([ComputeBladeRelationship], none_type): An array of relationships to computeBlade resources.. [optional] # noqa: E501
+ expander_modules ([EquipmentExpanderModuleRelationship], none_type): An array of relationships to equipmentExpanderModule resources.. [optional] # noqa: E501
fan_control (EquipmentFanControlRelationship): [optional] # noqa: E501
fanmodules ([EquipmentFanModuleRelationship], none_type): An array of relationships to equipmentFanModule resources.. [optional] # noqa: E501
inventory_device_info (InventoryDeviceInfoRelationship): [optional] # noqa: E501
diff --git a/intersight/model/equipment_chassis_all_of.py b/intersight/model/equipment_chassis_all_of.py
index 81b365c1f4..a5d7c45ff3 100644
--- a/intersight/model/equipment_chassis_all_of.py
+++ b/intersight/model/equipment_chassis_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
@@ -31,6 +31,7 @@ def lazy_import():
from intersight.model.asset_device_registration_relationship import AssetDeviceRegistrationRelationship
from intersight.model.compute_alarm_summary import ComputeAlarmSummary
from intersight.model.compute_blade_relationship import ComputeBladeRelationship
+ from intersight.model.equipment_expander_module_relationship import EquipmentExpanderModuleRelationship
from intersight.model.equipment_fan_control_relationship import EquipmentFanControlRelationship
from intersight.model.equipment_fan_module_relationship import EquipmentFanModuleRelationship
from intersight.model.equipment_io_card_relationship import EquipmentIoCardRelationship
@@ -46,6 +47,7 @@ def lazy_import():
globals()['AssetDeviceRegistrationRelationship'] = AssetDeviceRegistrationRelationship
globals()['ComputeAlarmSummary'] = ComputeAlarmSummary
globals()['ComputeBladeRelationship'] = ComputeBladeRelationship
+ globals()['EquipmentExpanderModuleRelationship'] = EquipmentExpanderModuleRelationship
globals()['EquipmentFanControlRelationship'] = EquipmentFanControlRelationship
globals()['EquipmentFanModuleRelationship'] = EquipmentFanModuleRelationship
globals()['EquipmentIoCardRelationship'] = EquipmentIoCardRelationship
@@ -140,6 +142,8 @@ class EquipmentChassisAllOf(ModelNormal):
'MEMORYUNCORRECTABLEERROR': "MemoryUncorrectableError",
'MEMORYTEMPERATUREWARNING': "MemoryTemperatureWarning",
'MEMORYTEMPERATURECRITICAL': "MemoryTemperatureCritical",
+ 'MEMORYBANKERROR': "MemoryBankError",
+ 'MEMORYRANKERROR': "MemoryRankError",
'MOTHERBOARDPOWERCRITICAL': "MotherBoardPowerCritical",
'MOTHERBOARDTEMPERATUREWARNING': "MotherBoardTemperatureWarning",
'MOTHERBOARDTEMPERATURECRITICAL': "MotherBoardTemperatureCritical",
@@ -192,6 +196,7 @@ def openapi_types():
'sku': (str,), # noqa: E501
'vid': (str,), # noqa: E501
'blades': ([ComputeBladeRelationship], none_type,), # noqa: E501
+ 'expander_modules': ([EquipmentExpanderModuleRelationship], none_type,), # noqa: E501
'fan_control': (EquipmentFanControlRelationship,), # noqa: E501
'fanmodules': ([EquipmentFanModuleRelationship], none_type,), # noqa: E501
'inventory_device_info': (InventoryDeviceInfoRelationship,), # noqa: E501
@@ -232,6 +237,7 @@ def discriminator():
'sku': 'Sku', # noqa: E501
'vid': 'Vid', # noqa: E501
'blades': 'Blades', # noqa: E501
+ 'expander_modules': 'ExpanderModules', # noqa: E501
'fan_control': 'FanControl', # noqa: E501
'fanmodules': 'Fanmodules', # noqa: E501
'inventory_device_info': 'InventoryDeviceInfo', # noqa: E501
@@ -314,6 +320,7 @@ def __init__(self, *args, **kwargs): # noqa: E501
sku (str): This field identifies the Stock Keeping Unit for the chassis enclosure.. [optional] # noqa: E501
vid (str): This field identifies the Vendor ID for the chassis enclosure.. [optional] # noqa: E501
blades ([ComputeBladeRelationship], none_type): An array of relationships to computeBlade resources.. [optional] # noqa: E501
+ expander_modules ([EquipmentExpanderModuleRelationship], none_type): An array of relationships to equipmentExpanderModule resources.. [optional] # noqa: E501
fan_control (EquipmentFanControlRelationship): [optional] # noqa: E501
fanmodules ([EquipmentFanModuleRelationship], none_type): An array of relationships to equipmentFanModule resources.. [optional] # noqa: E501
inventory_device_info (InventoryDeviceInfoRelationship): [optional] # noqa: E501
diff --git a/intersight/model/equipment_chassis_identity.py b/intersight/model/equipment_chassis_identity.py
index 2a16a2a4f6..0aa18d7f64 100644
--- a/intersight/model/equipment_chassis_identity.py
+++ b/intersight/model/equipment_chassis_identity.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/equipment_chassis_identity_all_of.py b/intersight/model/equipment_chassis_identity_all_of.py
index 3655531e38..9bea62d3db 100644
--- a/intersight/model/equipment_chassis_identity_all_of.py
+++ b/intersight/model/equipment_chassis_identity_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/equipment_chassis_identity_list.py b/intersight/model/equipment_chassis_identity_list.py
index d9523f6df0..6de252d525 100644
--- a/intersight/model/equipment_chassis_identity_list.py
+++ b/intersight/model/equipment_chassis_identity_list.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/equipment_chassis_identity_list_all_of.py b/intersight/model/equipment_chassis_identity_list_all_of.py
index 64c559605e..dffb7f3f0d 100644
--- a/intersight/model/equipment_chassis_identity_list_all_of.py
+++ b/intersight/model/equipment_chassis_identity_list_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/equipment_chassis_identity_response.py b/intersight/model/equipment_chassis_identity_response.py
index e8c0eec603..cf1a58890c 100644
--- a/intersight/model/equipment_chassis_identity_response.py
+++ b/intersight/model/equipment_chassis_identity_response.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/equipment_chassis_list.py b/intersight/model/equipment_chassis_list.py
index 1971bca8cb..45a9b4291b 100644
--- a/intersight/model/equipment_chassis_list.py
+++ b/intersight/model/equipment_chassis_list.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/equipment_chassis_list_all_of.py b/intersight/model/equipment_chassis_list_all_of.py
index 99c040f5ce..1928e866f3 100644
--- a/intersight/model/equipment_chassis_list_all_of.py
+++ b/intersight/model/equipment_chassis_list_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/equipment_chassis_operation.py b/intersight/model/equipment_chassis_operation.py
index dcf333db44..fb4fd0e1ff 100644
--- a/intersight/model/equipment_chassis_operation.py
+++ b/intersight/model/equipment_chassis_operation.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/equipment_chassis_operation_all_of.py b/intersight/model/equipment_chassis_operation_all_of.py
index 8eedfd881c..0dc27cdb0a 100644
--- a/intersight/model/equipment_chassis_operation_all_of.py
+++ b/intersight/model/equipment_chassis_operation_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/equipment_chassis_operation_list.py b/intersight/model/equipment_chassis_operation_list.py
index fc70132c7d..73466e7ced 100644
--- a/intersight/model/equipment_chassis_operation_list.py
+++ b/intersight/model/equipment_chassis_operation_list.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/equipment_chassis_operation_list_all_of.py b/intersight/model/equipment_chassis_operation_list_all_of.py
index 5034f48311..019fe3e1ad 100644
--- a/intersight/model/equipment_chassis_operation_list_all_of.py
+++ b/intersight/model/equipment_chassis_operation_list_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/equipment_chassis_operation_response.py b/intersight/model/equipment_chassis_operation_response.py
index 400b0df521..5ca21b9e9d 100644
--- a/intersight/model/equipment_chassis_operation_response.py
+++ b/intersight/model/equipment_chassis_operation_response.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/equipment_chassis_relationship.py b/intersight/model/equipment_chassis_relationship.py
index 63d2d71e99..5f8ccfcd48 100644
--- a/intersight/model/equipment_chassis_relationship.py
+++ b/intersight/model/equipment_chassis_relationship.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
@@ -33,6 +33,7 @@ def lazy_import():
from intersight.model.compute_blade_relationship import ComputeBladeRelationship
from intersight.model.display_names import DisplayNames
from intersight.model.equipment_chassis import EquipmentChassis
+ from intersight.model.equipment_expander_module_relationship import EquipmentExpanderModuleRelationship
from intersight.model.equipment_fan_control_relationship import EquipmentFanControlRelationship
from intersight.model.equipment_fan_module_relationship import EquipmentFanModuleRelationship
from intersight.model.equipment_fru_relationship import EquipmentFruRelationship
@@ -55,6 +56,7 @@ def lazy_import():
globals()['ComputeBladeRelationship'] = ComputeBladeRelationship
globals()['DisplayNames'] = DisplayNames
globals()['EquipmentChassis'] = EquipmentChassis
+ globals()['EquipmentExpanderModuleRelationship'] = EquipmentExpanderModuleRelationship
globals()['EquipmentFanControlRelationship'] = EquipmentFanControlRelationship
globals()['EquipmentFanModuleRelationship'] = EquipmentFanModuleRelationship
globals()['EquipmentFruRelationship'] = EquipmentFruRelationship
@@ -151,6 +153,8 @@ class EquipmentChassisRelationship(ModelComposed):
'MEMORYUNCORRECTABLEERROR': "MemoryUncorrectableError",
'MEMORYTEMPERATUREWARNING': "MemoryTemperatureWarning",
'MEMORYTEMPERATURECRITICAL': "MemoryTemperatureCritical",
+ 'MEMORYBANKERROR': "MemoryBankError",
+ 'MEMORYRANKERROR': "MemoryRankError",
'MOTHERBOARDPOWERCRITICAL': "MotherBoardPowerCritical",
'MOTHERBOARDTEMPERATUREWARNING': "MotherBoardTemperatureWarning",
'MOTHERBOARDTEMPERATURECRITICAL': "MotherBoardTemperatureCritical",
@@ -165,6 +169,8 @@ class EquipmentChassisRelationship(ModelComposed):
},
('object_type',): {
'AAA.AUDITRECORD': "aaa.AuditRecord",
+ 'AAA.RETENTIONCONFIG': "aaa.RetentionConfig",
+ 'AAA.RETENTIONPOLICY': "aaa.RetentionPolicy",
'ACCESS.POLICY': "access.Policy",
'ADAPTER.CONFIGPOLICY': "adapter.ConfigPolicy",
'ADAPTER.EXTETHINTERFACE': "adapter.ExtEthInterface",
@@ -181,6 +187,7 @@ class EquipmentChassisRelationship(ModelComposed):
'APPLIANCE.DATAEXPORTPOLICY': "appliance.DataExportPolicy",
'APPLIANCE.DEVICECERTIFICATE': "appliance.DeviceCertificate",
'APPLIANCE.DEVICECLAIM': "appliance.DeviceClaim",
+ 'APPLIANCE.DEVICEUPGRADEPOLICY': "appliance.DeviceUpgradePolicy",
'APPLIANCE.DIAGSETTING': "appliance.DiagSetting",
'APPLIANCE.EXTERNALSYSLOGSETTING': "appliance.ExternalSyslogSetting",
'APPLIANCE.FILESYSTEMSTATUS': "appliance.FileSystemStatus",
@@ -229,9 +236,12 @@ class EquipmentChassisRelationship(ModelComposed):
'BOOT.UEFISHELLDEVICE': "boot.UefiShellDevice",
'BOOT.USBDEVICE': "boot.UsbDevice",
'BOOT.VMEDIADEVICE': "boot.VmediaDevice",
+ 'BULK.EXPORT': "bulk.Export",
+ 'BULK.EXPORTEDITEM': "bulk.ExportedItem",
'BULK.MOCLONER': "bulk.MoCloner",
'BULK.MOMERGER': "bulk.MoMerger",
'BULK.REQUEST': "bulk.Request",
+ 'BULK.SUBREQUESTOBJ': "bulk.SubRequestObj",
'CAPABILITY.ADAPTERUNITDESCRIPTOR': "capability.AdapterUnitDescriptor",
'CAPABILITY.CATALOG': "capability.Catalog",
'CAPABILITY.CHASSISDESCRIPTOR': "capability.ChassisDescriptor",
@@ -295,10 +305,6 @@ class EquipmentChassisRelationship(ModelComposed):
'COND.HCLSTATUS': "cond.HclStatus",
'COND.HCLSTATUSDETAIL': "cond.HclStatusDetail",
'COND.HCLSTATUSJOB': "cond.HclStatusJob",
- 'CONFIG.EXPORTEDITEM': "config.ExportedItem",
- 'CONFIG.EXPORTER': "config.Exporter",
- 'CONFIG.IMPORTEDITEM': "config.ImportedItem",
- 'CONFIG.IMPORTER': "config.Importer",
'CONNECTORPACK.CONNECTORPACKUPGRADE': "connectorpack.ConnectorPackUpgrade",
'CONNECTORPACK.UPGRADEIMPACT': "connectorpack.UpgradeImpact",
'CRD.CUSTOMRESOURCE': "crd.CustomResource",
@@ -307,6 +313,7 @@ class EquipmentChassisRelationship(ModelComposed):
'EQUIPMENT.CHASSISIDENTITY': "equipment.ChassisIdentity",
'EQUIPMENT.CHASSISOPERATION': "equipment.ChassisOperation",
'EQUIPMENT.DEVICESUMMARY': "equipment.DeviceSummary",
+ 'EQUIPMENT.EXPANDERMODULE': "equipment.ExpanderModule",
'EQUIPMENT.FAN': "equipment.Fan",
'EQUIPMENT.FANCONTROL': "equipment.FanControl",
'EQUIPMENT.FANMODULE': "equipment.FanModule",
@@ -555,6 +562,7 @@ class EquipmentChassisRelationship(ModelComposed):
'KUBERNETES.ADDONDEFINITION': "kubernetes.AddonDefinition",
'KUBERNETES.ADDONPOLICY': "kubernetes.AddonPolicy",
'KUBERNETES.ADDONREPOSITORY': "kubernetes.AddonRepository",
+ 'KUBERNETES.BAREMETALNODEPROFILE': "kubernetes.BaremetalNodeProfile",
'KUBERNETES.CATALOG': "kubernetes.Catalog",
'KUBERNETES.CLUSTER': "kubernetes.Cluster",
'KUBERNETES.CLUSTERADDONPROFILE': "kubernetes.ClusterAddonProfile",
@@ -724,6 +732,11 @@ class EquipmentChassisRelationship(ModelComposed):
'RESOURCE.LICENSERESOURCECOUNT': "resource.LicenseResourceCount",
'RESOURCE.MEMBERSHIP': "resource.Membership",
'RESOURCE.MEMBERSHIPHOLDER': "resource.MembershipHolder",
+ 'RESOURCEPOOL.LEASE': "resourcepool.Lease",
+ 'RESOURCEPOOL.LEASERESOURCE': "resourcepool.LeaseResource",
+ 'RESOURCEPOOL.POOL': "resourcepool.Pool",
+ 'RESOURCEPOOL.POOLMEMBER': "resourcepool.PoolMember",
+ 'RESOURCEPOOL.UNIVERSE': "resourcepool.Universe",
'RPROXY.REVERSEPROXY': "rproxy.ReverseProxy",
'SDCARD.POLICY': "sdcard.Policy",
'SDWAN.PROFILE': "sdwan.Profile",
@@ -839,6 +852,7 @@ class EquipmentChassisRelationship(ModelComposed):
'TASK.NETAPPSCOPEDINVENTORY': "task.NetAppScopedInventory",
'TASK.PUBLICCLOUDSCOPEDINVENTORY': "task.PublicCloudScopedInventory",
'TASK.PURESCOPEDINVENTORY': "task.PureScopedInventory",
+ 'TASK.SERVERSCOPEDINVENTORY': "task.ServerScopedInventory",
'TECHSUPPORTMANAGEMENT.COLLECTIONCONTROLPOLICY': "techsupportmanagement.CollectionControlPolicy",
'TECHSUPPORTMANAGEMENT.DOWNLOAD': "techsupportmanagement.Download",
'TECHSUPPORTMANAGEMENT.TECHSUPPORTBUNDLE': "techsupportmanagement.TechSupportBundle",
@@ -870,6 +884,7 @@ class EquipmentChassisRelationship(ModelComposed):
'VIRTUALIZATION.VMWAREVCENTER': "virtualization.VmwareVcenter",
'VIRTUALIZATION.VMWAREVIRTUALDISK': "virtualization.VmwareVirtualDisk",
'VIRTUALIZATION.VMWAREVIRTUALMACHINE': "virtualization.VmwareVirtualMachine",
+ 'VIRTUALIZATION.VMWAREVIRTUALMACHINESNAPSHOT': "virtualization.VmwareVirtualMachineSnapshot",
'VIRTUALIZATION.VMWAREVIRTUALNETWORKINTERFACE': "virtualization.VmwareVirtualNetworkInterface",
'VIRTUALIZATION.VMWAREVIRTUALSWITCH': "virtualization.VmwareVirtualSwitch",
'VMEDIA.POLICY': "vmedia.Policy",
@@ -902,12 +917,14 @@ class EquipmentChassisRelationship(ModelComposed):
'WORKFLOW.TASKDEFINITION': "workflow.TaskDefinition",
'WORKFLOW.TASKINFO': "workflow.TaskInfo",
'WORKFLOW.TASKMETADATA': "workflow.TaskMetadata",
+ 'WORKFLOW.TASKNOTIFICATION': "workflow.TaskNotification",
'WORKFLOW.TEMPLATEEVALUATION': "workflow.TemplateEvaluation",
'WORKFLOW.TEMPLATEFUNCTIONMETA': "workflow.TemplateFunctionMeta",
'WORKFLOW.WORKFLOWDEFINITION': "workflow.WorkflowDefinition",
'WORKFLOW.WORKFLOWINFO': "workflow.WorkflowInfo",
'WORKFLOW.WORKFLOWMETA': "workflow.WorkflowMeta",
'WORKFLOW.WORKFLOWMETADATA': "workflow.WorkflowMetadata",
+ 'WORKFLOW.WORKFLOWNOTIFICATION': "workflow.WorkflowNotification",
},
}
@@ -979,6 +996,7 @@ def openapi_types():
'sku': (str,), # noqa: E501
'vid': (str,), # noqa: E501
'blades': ([ComputeBladeRelationship], none_type,), # noqa: E501
+ 'expander_modules': ([EquipmentExpanderModuleRelationship], none_type,), # noqa: E501
'fan_control': (EquipmentFanControlRelationship,), # noqa: E501
'fanmodules': ([EquipmentFanModuleRelationship], none_type,), # noqa: E501
'inventory_device_info': (InventoryDeviceInfoRelationship,), # noqa: E501
@@ -1049,6 +1067,7 @@ def discriminator():
'sku': 'Sku', # noqa: E501
'vid': 'Vid', # noqa: E501
'blades': 'Blades', # noqa: E501
+ 'expander_modules': 'ExpanderModules', # noqa: E501
'fan_control': 'FanControl', # noqa: E501
'fanmodules': 'Fanmodules', # noqa: E501
'inventory_device_info': 'InventoryDeviceInfo', # noqa: E501
@@ -1156,6 +1175,7 @@ def __init__(self, *args, **kwargs): # noqa: E501
sku (str): This field identifies the Stock Keeping Unit for the chassis enclosure.. [optional] # noqa: E501
vid (str): This field identifies the Vendor ID for the chassis enclosure.. [optional] # noqa: E501
blades ([ComputeBladeRelationship], none_type): An array of relationships to computeBlade resources.. [optional] # noqa: E501
+ expander_modules ([EquipmentExpanderModuleRelationship], none_type): An array of relationships to equipmentExpanderModule resources.. [optional] # noqa: E501
fan_control (EquipmentFanControlRelationship): [optional] # noqa: E501
fanmodules ([EquipmentFanModuleRelationship], none_type): An array of relationships to equipmentFanModule resources.. [optional] # noqa: E501
inventory_device_info (InventoryDeviceInfoRelationship): [optional] # noqa: E501
diff --git a/intersight/model/equipment_chassis_response.py b/intersight/model/equipment_chassis_response.py
index e26e9240ed..e8fa9d36a3 100644
--- a/intersight/model/equipment_chassis_response.py
+++ b/intersight/model/equipment_chassis_response.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/equipment_device_summary.py b/intersight/model/equipment_device_summary.py
index 9e3c04efd4..e24816a81c 100644
--- a/intersight/model/equipment_device_summary.py
+++ b/intersight/model/equipment_device_summary.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
@@ -29,18 +29,24 @@
def lazy_import():
from intersight.model.asset_device_registration_relationship import AssetDeviceRegistrationRelationship
+ from intersight.model.compute_blade_relationship import ComputeBladeRelationship
from intersight.model.compute_rack_unit_relationship import ComputeRackUnitRelationship
from intersight.model.display_names import DisplayNames
+ from intersight.model.equipment_chassis_relationship import EquipmentChassisRelationship
from intersight.model.equipment_device_summary_all_of import EquipmentDeviceSummaryAllOf
+ from intersight.model.equipment_fex_relationship import EquipmentFexRelationship
from intersight.model.inventory_device_info_relationship import InventoryDeviceInfoRelationship
from intersight.model.mo_base_mo_relationship import MoBaseMoRelationship
from intersight.model.mo_tag import MoTag
from intersight.model.mo_version_context import MoVersionContext
from intersight.model.views_view import ViewsView
globals()['AssetDeviceRegistrationRelationship'] = AssetDeviceRegistrationRelationship
+ globals()['ComputeBladeRelationship'] = ComputeBladeRelationship
globals()['ComputeRackUnitRelationship'] = ComputeRackUnitRelationship
globals()['DisplayNames'] = DisplayNames
+ globals()['EquipmentChassisRelationship'] = EquipmentChassisRelationship
globals()['EquipmentDeviceSummaryAllOf'] = EquipmentDeviceSummaryAllOf
+ globals()['EquipmentFexRelationship'] = EquipmentFexRelationship
globals()['InventoryDeviceInfoRelationship'] = InventoryDeviceInfoRelationship
globals()['MoBaseMoRelationship'] = MoBaseMoRelationship
globals()['MoTag'] = MoTag
@@ -113,7 +119,10 @@ def openapi_types():
'model': (str,), # noqa: E501
'serial': (str,), # noqa: E501
'source_object_type': (str,), # noqa: E501
+ 'compute_blade': (ComputeBladeRelationship,), # noqa: E501
'compute_rack_unit': (ComputeRackUnitRelationship,), # noqa: E501
+ 'equipment_chassis': (EquipmentChassisRelationship,), # noqa: E501
+ 'equipment_fex': (EquipmentFexRelationship,), # noqa: E501
'inventory_device_info': (InventoryDeviceInfoRelationship,), # noqa: E501
'registered_device': (AssetDeviceRegistrationRelationship,), # noqa: E501
'account_moid': (str,), # noqa: E501
@@ -146,7 +155,10 @@ def discriminator():
'model': 'Model', # noqa: E501
'serial': 'Serial', # noqa: E501
'source_object_type': 'SourceObjectType', # noqa: E501
+ 'compute_blade': 'ComputeBlade', # noqa: E501
'compute_rack_unit': 'ComputeRackUnit', # noqa: E501
+ 'equipment_chassis': 'EquipmentChassis', # noqa: E501
+ 'equipment_fex': 'EquipmentFex', # noqa: E501
'inventory_device_info': 'InventoryDeviceInfo', # noqa: E501
'registered_device': 'RegisteredDevice', # noqa: E501
'account_moid': 'AccountMoid', # noqa: E501
@@ -219,7 +231,10 @@ def __init__(self, *args, **kwargs): # noqa: E501
model (str): The model information of the Network Element.. [optional] # noqa: E501
serial (str): The serial number for the Network Element.. [optional] # noqa: E501
source_object_type (str): The source object type of this view MO.. [optional] # noqa: E501
+ compute_blade (ComputeBladeRelationship): [optional] # noqa: E501
compute_rack_unit (ComputeRackUnitRelationship): [optional] # noqa: E501
+ equipment_chassis (EquipmentChassisRelationship): [optional] # noqa: E501
+ equipment_fex (EquipmentFexRelationship): [optional] # noqa: E501
inventory_device_info (InventoryDeviceInfoRelationship): [optional] # noqa: E501
registered_device (AssetDeviceRegistrationRelationship): [optional] # noqa: E501
account_moid (str): The Account ID for this managed object.. [optional] # noqa: E501
diff --git a/intersight/model/equipment_device_summary_all_of.py b/intersight/model/equipment_device_summary_all_of.py
index d9001d8cac..506313e8ba 100644
--- a/intersight/model/equipment_device_summary_all_of.py
+++ b/intersight/model/equipment_device_summary_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
@@ -29,10 +29,16 @@
def lazy_import():
from intersight.model.asset_device_registration_relationship import AssetDeviceRegistrationRelationship
+ from intersight.model.compute_blade_relationship import ComputeBladeRelationship
from intersight.model.compute_rack_unit_relationship import ComputeRackUnitRelationship
+ from intersight.model.equipment_chassis_relationship import EquipmentChassisRelationship
+ from intersight.model.equipment_fex_relationship import EquipmentFexRelationship
from intersight.model.inventory_device_info_relationship import InventoryDeviceInfoRelationship
globals()['AssetDeviceRegistrationRelationship'] = AssetDeviceRegistrationRelationship
+ globals()['ComputeBladeRelationship'] = ComputeBladeRelationship
globals()['ComputeRackUnitRelationship'] = ComputeRackUnitRelationship
+ globals()['EquipmentChassisRelationship'] = EquipmentChassisRelationship
+ globals()['EquipmentFexRelationship'] = EquipmentFexRelationship
globals()['InventoryDeviceInfoRelationship'] = InventoryDeviceInfoRelationship
@@ -94,7 +100,10 @@ def openapi_types():
'model': (str,), # noqa: E501
'serial': (str,), # noqa: E501
'source_object_type': (str,), # noqa: E501
+ 'compute_blade': (ComputeBladeRelationship,), # noqa: E501
'compute_rack_unit': (ComputeRackUnitRelationship,), # noqa: E501
+ 'equipment_chassis': (EquipmentChassisRelationship,), # noqa: E501
+ 'equipment_fex': (EquipmentFexRelationship,), # noqa: E501
'inventory_device_info': (InventoryDeviceInfoRelationship,), # noqa: E501
'registered_device': (AssetDeviceRegistrationRelationship,), # noqa: E501
}
@@ -111,7 +120,10 @@ def discriminator():
'model': 'Model', # noqa: E501
'serial': 'Serial', # noqa: E501
'source_object_type': 'SourceObjectType', # noqa: E501
+ 'compute_blade': 'ComputeBlade', # noqa: E501
'compute_rack_unit': 'ComputeRackUnit', # noqa: E501
+ 'equipment_chassis': 'EquipmentChassis', # noqa: E501
+ 'equipment_fex': 'EquipmentFex', # noqa: E501
'inventory_device_info': 'InventoryDeviceInfo', # noqa: E501
'registered_device': 'RegisteredDevice', # noqa: E501
}
@@ -170,7 +182,10 @@ def __init__(self, *args, **kwargs): # noqa: E501
model (str): The model information of the Network Element.. [optional] # noqa: E501
serial (str): The serial number for the Network Element.. [optional] # noqa: E501
source_object_type (str): The source object type of this view MO.. [optional] # noqa: E501
+ compute_blade (ComputeBladeRelationship): [optional] # noqa: E501
compute_rack_unit (ComputeRackUnitRelationship): [optional] # noqa: E501
+ equipment_chassis (EquipmentChassisRelationship): [optional] # noqa: E501
+ equipment_fex (EquipmentFexRelationship): [optional] # noqa: E501
inventory_device_info (InventoryDeviceInfoRelationship): [optional] # noqa: E501
registered_device (AssetDeviceRegistrationRelationship): [optional] # noqa: E501
"""
diff --git a/intersight/model/equipment_device_summary_list.py b/intersight/model/equipment_device_summary_list.py
index f1e4ca1de7..1e406e9d8f 100644
--- a/intersight/model/equipment_device_summary_list.py
+++ b/intersight/model/equipment_device_summary_list.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/equipment_device_summary_list_all_of.py b/intersight/model/equipment_device_summary_list_all_of.py
index f485003e66..7955136d97 100644
--- a/intersight/model/equipment_device_summary_list_all_of.py
+++ b/intersight/model/equipment_device_summary_list_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/equipment_device_summary_response.py b/intersight/model/equipment_device_summary_response.py
index dd240a37f6..fd71b4ae64 100644
--- a/intersight/model/equipment_device_summary_response.py
+++ b/intersight/model/equipment_device_summary_response.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/equipment_expander_module.py b/intersight/model/equipment_expander_module.py
new file mode 100644
index 0000000000..751322803a
--- /dev/null
+++ b/intersight/model/equipment_expander_module.py
@@ -0,0 +1,403 @@
+"""
+ Cisco Intersight
+
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
+
+ The version of the OpenAPI document: 1.0.9-4506
+ Contact: intersight@cisco.com
+ Generated by: https://openapi-generator.tech
+"""
+
+
+import re # noqa: F401
+import sys # noqa: F401
+
+from intersight.model_utils import ( # noqa: F401
+ ApiTypeError,
+ ModelComposed,
+ ModelNormal,
+ ModelSimple,
+ cached_property,
+ change_keys_js_to_python,
+ convert_js_args_to_python_args,
+ date,
+ datetime,
+ file_type,
+ none_type,
+ validate_get_composed_info,
+)
+
+def lazy_import():
+ from intersight.model.asset_device_registration_relationship import AssetDeviceRegistrationRelationship
+ from intersight.model.display_names import DisplayNames
+ from intersight.model.equipment_base import EquipmentBase
+ from intersight.model.equipment_chassis_relationship import EquipmentChassisRelationship
+ from intersight.model.equipment_expander_module_all_of import EquipmentExpanderModuleAllOf
+ from intersight.model.equipment_fan_module_relationship import EquipmentFanModuleRelationship
+ from intersight.model.equipment_fru_relationship import EquipmentFruRelationship
+ from intersight.model.mo_base_mo_relationship import MoBaseMoRelationship
+ from intersight.model.mo_tag import MoTag
+ from intersight.model.mo_version_context import MoVersionContext
+ globals()['AssetDeviceRegistrationRelationship'] = AssetDeviceRegistrationRelationship
+ globals()['DisplayNames'] = DisplayNames
+ globals()['EquipmentBase'] = EquipmentBase
+ globals()['EquipmentChassisRelationship'] = EquipmentChassisRelationship
+ globals()['EquipmentExpanderModuleAllOf'] = EquipmentExpanderModuleAllOf
+ globals()['EquipmentFanModuleRelationship'] = EquipmentFanModuleRelationship
+ globals()['EquipmentFruRelationship'] = EquipmentFruRelationship
+ globals()['MoBaseMoRelationship'] = MoBaseMoRelationship
+ globals()['MoTag'] = MoTag
+ globals()['MoVersionContext'] = MoVersionContext
+
+
+class EquipmentExpanderModule(ModelComposed):
+ """NOTE: This class is auto generated by OpenAPI Generator.
+ Ref: https://openapi-generator.tech
+
+ Do not edit the class manually.
+
+ Attributes:
+ allowed_values (dict): The key is the tuple path to the attribute
+ and the for var_name this is (var_name,). The value is a dict
+ with a capitalized key describing the allowed value and an allowed
+ value. These dicts store the allowed enum values.
+ attribute_map (dict): The key is attribute name
+ and the value is json key in definition.
+ discriminator_value_class_map (dict): A dict to go from the discriminator
+ variable value to the discriminator class name.
+ validations (dict): The key is the tuple path to the attribute
+ and the for var_name this is (var_name,). The value is a dict
+ that stores validations for max_length, min_length, max_items,
+ min_items, exclusive_maximum, inclusive_maximum, exclusive_minimum,
+ inclusive_minimum, and regex.
+ additional_properties_type (tuple): A tuple of classes accepted
+ as additional properties values.
+ """
+
+ allowed_values = {
+ ('class_id',): {
+ 'EQUIPMENT.EXPANDERMODULE': "equipment.ExpanderModule",
+ },
+ ('object_type',): {
+ 'EQUIPMENT.EXPANDERMODULE': "equipment.ExpanderModule",
+ },
+ ('oper_reason',): {
+ 'None': None,
+ 'UNKNOWN': "Unknown",
+ 'OK': "OK",
+ 'OFFLINE': "Offline",
+ 'MISSING': "Missing",
+ 'TEMPERATUREWARNING': "TemperatureWarning",
+ 'TEMPERATURECRITICAL': "TemperatureCritical",
+ 'INPUTVOLTAGEWARNING': "InputVoltageWarning",
+ 'INPUTVOLTAGECRITICAL': "InputVoltageCritical",
+ 'OUTPUTVOLTAGEWARNING': "OutputVoltageWarning",
+ 'OUTPUTVOLTAGECRITICAL': "OutputVoltageCritical",
+ 'OUTPUTCURRENTWARNING': "OutputCurrentWarning",
+ 'OUTPUTCURRENTCRITICAL': "OutputCurrentCritical",
+ 'SPEEDWARNING': "SpeedWarning",
+ 'SPEEDCRITICAL': "SpeedCritical",
+ 'FANMISSINGWARNING': "FanMissingWarning",
+ 'FANSMISSINGCRITICAL': "FansMissingCritical",
+ 'IOCARDPOSTWARNING': "IocardPostWarning",
+ 'ASICPOSTWARNING': "AsicPostWarning",
+ 'FRUSTATECRITICAL': "FruStateCritical",
+ 'FRUSTATEWARNING': "FruStateWarning",
+ 'ALTERNATEIMAGEWARNING': "AlternateImageWarning",
+ 'SELECTEDIMAGEWARNING': "SelectedImageWarning",
+ 'LOWMEMORYCRITICAL': "LowMemoryCritical",
+ 'LOWMEMORYWARNING': "LowMemoryWarning",
+ 'POWERCRITICAL': "PowerCritical",
+ 'POWERWARNING': "PowerWarning",
+ 'THERMALSAFEMODECRITICAL': "ThermalSafeModeCritical",
+ 'PSUREDUNDANCYLOSTCRITICAL': "PsuRedundancyLostCritical",
+ 'INPUTPOWERWARNING': "InputPowerWarning",
+ 'INPUTPOWERCRITICAL': "InputPowerCritical",
+ 'OUTPUTPOWERWARNING': "OutputPowerWarning",
+ 'OUTPUTPOWERCRITICAL': "OutputPowerCritical",
+ 'FANGENERALCRITICAL': "FanGeneralCritical",
+ 'POWERSUPPLYGENERALCRITICAL': "PowerSupplyGeneralCritical",
+ 'POWERSUPPLYINPUTWARNING': "PowerSupplyInputWarning",
+ 'POWERSUPPLYOUTPUTCRITICAL': "PowerSupplyOutputCritical",
+ 'POWERSUPPLYINPUTLOSTWARNING': "PowerSupplyInputLostWarning",
+ 'POWERSUPPLYUNRESPONSIVECRITICAL': "PowerSupplyUnresponsiveCritical",
+ 'FANUNRESPONSIVECRITICAL': "FanUnresponsiveCritical",
+ 'MEMORYUNCORRECTABLEERROR': "MemoryUncorrectableError",
+ 'MEMORYTEMPERATUREWARNING': "MemoryTemperatureWarning",
+ 'MEMORYTEMPERATURECRITICAL': "MemoryTemperatureCritical",
+ 'MEMORYBANKERROR': "MemoryBankError",
+ 'MEMORYRANKERROR': "MemoryRankError",
+ 'MOTHERBOARDPOWERCRITICAL': "MotherBoardPowerCritical",
+ 'MOTHERBOARDTEMPERATUREWARNING': "MotherBoardTemperatureWarning",
+ 'MOTHERBOARDTEMPERATURECRITICAL': "MotherBoardTemperatureCritical",
+ 'MOTHERBOARDVOLTAGEWARNING': "MotherBoardVoltageWarning",
+ 'MOTHERBOARDVOLTAGECRITICAL': "MotherBoardVoltageCritical",
+ 'PROCESSORCATERR': "ProcessorCatErr",
+ 'PROCESSORTHERMTRIP': "ProcessorThermTrip",
+ 'COMPONENTNOTOPERATIONAL': "ComponentNotOperational",
+ 'COMPONENTNOTREACHABLE': "ComponentNotReachable",
+ 'PROCESSORTEMPERATUREWARNING': "ProcessorTemperatureWarning",
+ 'PROCESSORTEMPERATURECRITICAL': "ProcessorTemperatureCritical",
+ },
+ }
+
+ validations = {
+ }
+
+ @cached_property
+ def additional_properties_type():
+ """
+ This must be a method because a model may have properties that are
+ of type self, this must run after the class is loaded
+ """
+ lazy_import()
+ return (bool, date, datetime, dict, float, int, list, str, none_type,) # noqa: E501
+
+ _nullable = False
+
+ @cached_property
+ def openapi_types():
+ """
+ This must be a method because a model may have properties that are
+ of type self, this must run after the class is loaded
+
+ Returns
+ openapi_types (dict): The key is attribute name
+ and the value is attribute type.
+ """
+ lazy_import()
+ return {
+ 'class_id': (str,), # noqa: E501
+ 'object_type': (str,), # noqa: E501
+ 'module_id': (int,), # noqa: E501
+ 'oper_reason': ([str], none_type,), # noqa: E501
+ 'oper_state': (str,), # noqa: E501
+ 'part_number': (str,), # noqa: E501
+ 'equipment_chassis': (EquipmentChassisRelationship,), # noqa: E501
+ 'fan_modules': ([EquipmentFanModuleRelationship], none_type,), # noqa: E501
+ 'registered_device': (AssetDeviceRegistrationRelationship,), # noqa: E501
+ 'account_moid': (str,), # noqa: E501
+ 'create_time': (datetime,), # noqa: E501
+ 'domain_group_moid': (str,), # noqa: E501
+ 'mod_time': (datetime,), # noqa: E501
+ 'moid': (str,), # noqa: E501
+ 'owners': ([str], none_type,), # noqa: E501
+ 'shared_scope': (str,), # noqa: E501
+ 'tags': ([MoTag], none_type,), # noqa: E501
+ 'version_context': (MoVersionContext,), # noqa: E501
+ 'ancestors': ([MoBaseMoRelationship], none_type,), # noqa: E501
+ 'parent': (MoBaseMoRelationship,), # noqa: E501
+ 'permission_resources': ([MoBaseMoRelationship], none_type,), # noqa: E501
+ 'display_names': (DisplayNames,), # noqa: E501
+ 'device_mo_id': (str,), # noqa: E501
+ 'dn': (str,), # noqa: E501
+ 'rn': (str,), # noqa: E501
+ 'model': (str,), # noqa: E501
+ 'presence': (str,), # noqa: E501
+ 'revision': (str,), # noqa: E501
+ 'serial': (str,), # noqa: E501
+ 'vendor': (str,), # noqa: E501
+ 'previous_fru': (EquipmentFruRelationship,), # noqa: E501
+ }
+
+ @cached_property
+ def discriminator():
+ val = {
+ }
+ if not val:
+ return None
+ return {'class_id': val}
+
+ attribute_map = {
+ 'class_id': 'ClassId', # noqa: E501
+ 'object_type': 'ObjectType', # noqa: E501
+ 'module_id': 'ModuleId', # noqa: E501
+ 'oper_reason': 'OperReason', # noqa: E501
+ 'oper_state': 'OperState', # noqa: E501
+ 'part_number': 'PartNumber', # noqa: E501
+ 'equipment_chassis': 'EquipmentChassis', # noqa: E501
+ 'fan_modules': 'FanModules', # noqa: E501
+ 'registered_device': 'RegisteredDevice', # noqa: E501
+ 'account_moid': 'AccountMoid', # noqa: E501
+ 'create_time': 'CreateTime', # noqa: E501
+ 'domain_group_moid': 'DomainGroupMoid', # noqa: E501
+ 'mod_time': 'ModTime', # noqa: E501
+ 'moid': 'Moid', # noqa: E501
+ 'owners': 'Owners', # noqa: E501
+ 'shared_scope': 'SharedScope', # noqa: E501
+ 'tags': 'Tags', # noqa: E501
+ 'version_context': 'VersionContext', # noqa: E501
+ 'ancestors': 'Ancestors', # noqa: E501
+ 'parent': 'Parent', # noqa: E501
+ 'permission_resources': 'PermissionResources', # noqa: E501
+ 'display_names': 'DisplayNames', # noqa: E501
+ 'device_mo_id': 'DeviceMoId', # noqa: E501
+ 'dn': 'Dn', # noqa: E501
+ 'rn': 'Rn', # noqa: E501
+ 'model': 'Model', # noqa: E501
+ 'presence': 'Presence', # noqa: E501
+ 'revision': 'Revision', # noqa: E501
+ 'serial': 'Serial', # noqa: E501
+ 'vendor': 'Vendor', # noqa: E501
+ 'previous_fru': 'PreviousFru', # noqa: E501
+ }
+
+ required_properties = set([
+ '_data_store',
+ '_check_type',
+ '_spec_property_naming',
+ '_path_to_item',
+ '_configuration',
+ '_visited_composed_classes',
+ '_composed_instances',
+ '_var_name_to_model_instances',
+ '_additional_properties_model_instances',
+ ])
+
+ @convert_js_args_to_python_args
+ def __init__(self, *args, **kwargs): # noqa: E501
+ """EquipmentExpanderModule - a model defined in OpenAPI
+
+ Args:
+
+ Keyword Args:
+ class_id (str): The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.. defaults to "equipment.ExpanderModule", must be one of ["equipment.ExpanderModule", ] # noqa: E501
+ object_type (str): The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.. defaults to "equipment.ExpanderModule", must be one of ["equipment.ExpanderModule", ] # noqa: E501
+ _check_type (bool): if True, values for parameters in openapi_types
+ will be type checked and a TypeError will be
+ raised if the wrong type is input.
+ Defaults to True
+ _path_to_item (tuple/list): This is a list of keys or values to
+ drill down to the model in received_data
+ when deserializing a response
+ _spec_property_naming (bool): True if the variable names in the input data
+ are serialized names, as specified in the OpenAPI document.
+ False if the variable names in the input data
+ are pythonic names, e.g. snake case (default)
+ _configuration (Configuration): the instance to use when
+ deserializing a file_type parameter.
+ If passed, type conversion is attempted
+ If omitted no type conversion is done.
+ _visited_composed_classes (tuple): This stores a tuple of
+ classes that we have traveled through so that
+ if we see that class again we will not use its
+ discriminator again.
+ When traveling through a discriminator, the
+ composed schema that is
+ is traveled through is added to this set.
+ For example if Animal has a discriminator
+ petType and we pass in "Dog", and the class Dog
+ allOf includes Animal, we move through Animal
+ once using the discriminator, and pick Dog.
+ Then in Dog, we will make an instance of the
+ Animal class but this time we won't travel
+ through its discriminator because we passed in
+ _visited_composed_classes = (Animal,)
+ module_id (int): Module identifier for the expander module.. [optional] # noqa: E501
+ oper_reason ([str], none_type): [optional] # noqa: E501
+ oper_state (str): Operational state of expander module.. [optional] # noqa: E501
+ part_number (str): Part number identifier for the expander module.. [optional] # noqa: E501
+ equipment_chassis (EquipmentChassisRelationship): [optional] # noqa: E501
+ fan_modules ([EquipmentFanModuleRelationship], none_type): An array of relationships to equipmentFanModule resources.. [optional] # noqa: E501
+ registered_device (AssetDeviceRegistrationRelationship): [optional] # noqa: E501
+ account_moid (str): The Account ID for this managed object.. [optional] # noqa: E501
+ create_time (datetime): The time when this managed object was created.. [optional] # noqa: E501
+ domain_group_moid (str): The DomainGroup ID for this managed object.. [optional] # noqa: E501
+ mod_time (datetime): The time when this managed object was last modified.. [optional] # noqa: E501
+ moid (str): The unique identifier of this Managed Object instance.. [optional] # noqa: E501
+ owners ([str], none_type): [optional] # noqa: E501
+ shared_scope (str): Intersight provides pre-built workflows, tasks and policies to end users through global catalogs. Objects that are made available through global catalogs are said to have a 'shared' ownership. Shared objects are either made globally available to all end users or restricted to end users based on their license entitlement. Users can use this property to differentiate the scope (global or a specific license tier) to which a shared MO belongs.. [optional] # noqa: E501
+ tags ([MoTag], none_type): [optional] # noqa: E501
+ version_context (MoVersionContext): [optional] # noqa: E501
+ ancestors ([MoBaseMoRelationship], none_type): An array of relationships to moBaseMo resources.. [optional] # noqa: E501
+ parent (MoBaseMoRelationship): [optional] # noqa: E501
+ permission_resources ([MoBaseMoRelationship], none_type): An array of relationships to moBaseMo resources.. [optional] # noqa: E501
+ display_names (DisplayNames): [optional] # noqa: E501
+ device_mo_id (str): The database identifier of the registered device of an object.. [optional] # noqa: E501
+ dn (str): The Distinguished Name unambiguously identifies an object in the system.. [optional] # noqa: E501
+ rn (str): The Relative Name uniquely identifies an object within a given context.. [optional] # noqa: E501
+ model (str): This field identifies the model of the given component.. [optional] # noqa: E501
+ presence (str): This field identifies the presence (equipped) or absence of the given component.. [optional] # noqa: E501
+ revision (str): This field identifies the revision of the given component.. [optional] # noqa: E501
+ serial (str): This field identifies the serial of the given component.. [optional] # noqa: E501
+ vendor (str): This field identifies the vendor of the given component.. [optional] # noqa: E501
+ previous_fru (EquipmentFruRelationship): [optional] # noqa: E501
+ """
+
+ class_id = kwargs.get('class_id', "equipment.ExpanderModule")
+ object_type = kwargs.get('object_type', "equipment.ExpanderModule")
+ _check_type = kwargs.pop('_check_type', True)
+ _spec_property_naming = kwargs.pop('_spec_property_naming', False)
+ _path_to_item = kwargs.pop('_path_to_item', ())
+ _configuration = kwargs.pop('_configuration', None)
+ _visited_composed_classes = kwargs.pop('_visited_composed_classes', ())
+
+ if args:
+ raise ApiTypeError(
+ "Invalid positional arguments=%s passed to %s. Remove those invalid positional arguments." % (
+ args,
+ self.__class__.__name__,
+ ),
+ path_to_item=_path_to_item,
+ valid_classes=(self.__class__,),
+ )
+
+ self._data_store = {}
+ self._check_type = _check_type
+ self._spec_property_naming = _spec_property_naming
+ self._path_to_item = _path_to_item
+ self._configuration = _configuration
+ self._visited_composed_classes = _visited_composed_classes + (self.__class__,)
+
+ constant_args = {
+ '_check_type': _check_type,
+ '_path_to_item': _path_to_item,
+ '_spec_property_naming': _spec_property_naming,
+ '_configuration': _configuration,
+ '_visited_composed_classes': self._visited_composed_classes,
+ }
+ required_args = {
+ 'class_id': class_id,
+ 'object_type': object_type,
+ }
+ model_args = {}
+ model_args.update(required_args)
+ model_args.update(kwargs)
+ composed_info = validate_get_composed_info(
+ constant_args, model_args, self)
+ self._composed_instances = composed_info[0]
+ self._var_name_to_model_instances = composed_info[1]
+ self._additional_properties_model_instances = composed_info[2]
+ unused_args = composed_info[3]
+
+ for var_name, var_value in required_args.items():
+ setattr(self, var_name, var_value)
+ for var_name, var_value in kwargs.items():
+ if var_name in unused_args and \
+ self._configuration is not None and \
+ self._configuration.discard_unknown_keys and \
+ not self._additional_properties_model_instances:
+ # discard variable.
+ continue
+ setattr(self, var_name, var_value)
+
+ @cached_property
+ def _composed_schemas():
+ # we need this here to make our import statements work
+ # we must store _composed_schemas in here so the code is only run
+ # when we invoke this method. If we kept this at the class
+ # level we would get an error beause the class level
+ # code would be run when this module is imported, and these composed
+ # classes don't exist yet because their module has not finished
+ # loading
+ lazy_import()
+ return {
+ 'anyOf': [
+ ],
+ 'allOf': [
+ EquipmentBase,
+ EquipmentExpanderModuleAllOf,
+ ],
+ 'oneOf': [
+ ],
+ }
diff --git a/intersight/model/equipment_expander_module_all_of.py b/intersight/model/equipment_expander_module_all_of.py
new file mode 100644
index 0000000000..03ba91f2c1
--- /dev/null
+++ b/intersight/model/equipment_expander_module_all_of.py
@@ -0,0 +1,270 @@
+"""
+ Cisco Intersight
+
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
+
+ The version of the OpenAPI document: 1.0.9-4506
+ Contact: intersight@cisco.com
+ Generated by: https://openapi-generator.tech
+"""
+
+
+import re # noqa: F401
+import sys # noqa: F401
+
+from intersight.model_utils import ( # noqa: F401
+ ApiTypeError,
+ ModelComposed,
+ ModelNormal,
+ ModelSimple,
+ cached_property,
+ change_keys_js_to_python,
+ convert_js_args_to_python_args,
+ date,
+ datetime,
+ file_type,
+ none_type,
+ validate_get_composed_info,
+)
+
+def lazy_import():
+ from intersight.model.asset_device_registration_relationship import AssetDeviceRegistrationRelationship
+ from intersight.model.equipment_chassis_relationship import EquipmentChassisRelationship
+ from intersight.model.equipment_fan_module_relationship import EquipmentFanModuleRelationship
+ globals()['AssetDeviceRegistrationRelationship'] = AssetDeviceRegistrationRelationship
+ globals()['EquipmentChassisRelationship'] = EquipmentChassisRelationship
+ globals()['EquipmentFanModuleRelationship'] = EquipmentFanModuleRelationship
+
+
+class EquipmentExpanderModuleAllOf(ModelNormal):
+ """NOTE: This class is auto generated by OpenAPI Generator.
+ Ref: https://openapi-generator.tech
+
+ Do not edit the class manually.
+
+ Attributes:
+ allowed_values (dict): The key is the tuple path to the attribute
+ and the for var_name this is (var_name,). The value is a dict
+ with a capitalized key describing the allowed value and an allowed
+ value. These dicts store the allowed enum values.
+ attribute_map (dict): The key is attribute name
+ and the value is json key in definition.
+ discriminator_value_class_map (dict): A dict to go from the discriminator
+ variable value to the discriminator class name.
+ validations (dict): The key is the tuple path to the attribute
+ and the for var_name this is (var_name,). The value is a dict
+ that stores validations for max_length, min_length, max_items,
+ min_items, exclusive_maximum, inclusive_maximum, exclusive_minimum,
+ inclusive_minimum, and regex.
+ additional_properties_type (tuple): A tuple of classes accepted
+ as additional properties values.
+ """
+
+ allowed_values = {
+ ('class_id',): {
+ 'EQUIPMENT.EXPANDERMODULE': "equipment.ExpanderModule",
+ },
+ ('object_type',): {
+ 'EQUIPMENT.EXPANDERMODULE': "equipment.ExpanderModule",
+ },
+ ('oper_reason',): {
+ 'None': None,
+ 'UNKNOWN': "Unknown",
+ 'OK': "OK",
+ 'OFFLINE': "Offline",
+ 'MISSING': "Missing",
+ 'TEMPERATUREWARNING': "TemperatureWarning",
+ 'TEMPERATURECRITICAL': "TemperatureCritical",
+ 'INPUTVOLTAGEWARNING': "InputVoltageWarning",
+ 'INPUTVOLTAGECRITICAL': "InputVoltageCritical",
+ 'OUTPUTVOLTAGEWARNING': "OutputVoltageWarning",
+ 'OUTPUTVOLTAGECRITICAL': "OutputVoltageCritical",
+ 'OUTPUTCURRENTWARNING': "OutputCurrentWarning",
+ 'OUTPUTCURRENTCRITICAL': "OutputCurrentCritical",
+ 'SPEEDWARNING': "SpeedWarning",
+ 'SPEEDCRITICAL': "SpeedCritical",
+ 'FANMISSINGWARNING': "FanMissingWarning",
+ 'FANSMISSINGCRITICAL': "FansMissingCritical",
+ 'IOCARDPOSTWARNING': "IocardPostWarning",
+ 'ASICPOSTWARNING': "AsicPostWarning",
+ 'FRUSTATECRITICAL': "FruStateCritical",
+ 'FRUSTATEWARNING': "FruStateWarning",
+ 'ALTERNATEIMAGEWARNING': "AlternateImageWarning",
+ 'SELECTEDIMAGEWARNING': "SelectedImageWarning",
+ 'LOWMEMORYCRITICAL': "LowMemoryCritical",
+ 'LOWMEMORYWARNING': "LowMemoryWarning",
+ 'POWERCRITICAL': "PowerCritical",
+ 'POWERWARNING': "PowerWarning",
+ 'THERMALSAFEMODECRITICAL': "ThermalSafeModeCritical",
+ 'PSUREDUNDANCYLOSTCRITICAL': "PsuRedundancyLostCritical",
+ 'INPUTPOWERWARNING': "InputPowerWarning",
+ 'INPUTPOWERCRITICAL': "InputPowerCritical",
+ 'OUTPUTPOWERWARNING': "OutputPowerWarning",
+ 'OUTPUTPOWERCRITICAL': "OutputPowerCritical",
+ 'FANGENERALCRITICAL': "FanGeneralCritical",
+ 'POWERSUPPLYGENERALCRITICAL': "PowerSupplyGeneralCritical",
+ 'POWERSUPPLYINPUTWARNING': "PowerSupplyInputWarning",
+ 'POWERSUPPLYOUTPUTCRITICAL': "PowerSupplyOutputCritical",
+ 'POWERSUPPLYINPUTLOSTWARNING': "PowerSupplyInputLostWarning",
+ 'POWERSUPPLYUNRESPONSIVECRITICAL': "PowerSupplyUnresponsiveCritical",
+ 'FANUNRESPONSIVECRITICAL': "FanUnresponsiveCritical",
+ 'MEMORYUNCORRECTABLEERROR': "MemoryUncorrectableError",
+ 'MEMORYTEMPERATUREWARNING': "MemoryTemperatureWarning",
+ 'MEMORYTEMPERATURECRITICAL': "MemoryTemperatureCritical",
+ 'MEMORYBANKERROR': "MemoryBankError",
+ 'MEMORYRANKERROR': "MemoryRankError",
+ 'MOTHERBOARDPOWERCRITICAL': "MotherBoardPowerCritical",
+ 'MOTHERBOARDTEMPERATUREWARNING': "MotherBoardTemperatureWarning",
+ 'MOTHERBOARDTEMPERATURECRITICAL': "MotherBoardTemperatureCritical",
+ 'MOTHERBOARDVOLTAGEWARNING': "MotherBoardVoltageWarning",
+ 'MOTHERBOARDVOLTAGECRITICAL': "MotherBoardVoltageCritical",
+ 'PROCESSORCATERR': "ProcessorCatErr",
+ 'PROCESSORTHERMTRIP': "ProcessorThermTrip",
+ 'COMPONENTNOTOPERATIONAL': "ComponentNotOperational",
+ 'COMPONENTNOTREACHABLE': "ComponentNotReachable",
+ 'PROCESSORTEMPERATUREWARNING': "ProcessorTemperatureWarning",
+ 'PROCESSORTEMPERATURECRITICAL': "ProcessorTemperatureCritical",
+ },
+ }
+
+ validations = {
+ }
+
+ additional_properties_type = None
+
+ _nullable = False
+
+ @cached_property
+ def openapi_types():
+ """
+ This must be a method because a model may have properties that are
+ of type self, this must run after the class is loaded
+
+ Returns
+ openapi_types (dict): The key is attribute name
+ and the value is attribute type.
+ """
+ lazy_import()
+ return {
+ 'class_id': (str,), # noqa: E501
+ 'object_type': (str,), # noqa: E501
+ 'module_id': (int,), # noqa: E501
+ 'oper_reason': ([str], none_type,), # noqa: E501
+ 'oper_state': (str,), # noqa: E501
+ 'part_number': (str,), # noqa: E501
+ 'equipment_chassis': (EquipmentChassisRelationship,), # noqa: E501
+ 'fan_modules': ([EquipmentFanModuleRelationship], none_type,), # noqa: E501
+ 'registered_device': (AssetDeviceRegistrationRelationship,), # noqa: E501
+ }
+
+ @cached_property
+ def discriminator():
+ return None
+
+
+ attribute_map = {
+ 'class_id': 'ClassId', # noqa: E501
+ 'object_type': 'ObjectType', # noqa: E501
+ 'module_id': 'ModuleId', # noqa: E501
+ 'oper_reason': 'OperReason', # noqa: E501
+ 'oper_state': 'OperState', # noqa: E501
+ 'part_number': 'PartNumber', # noqa: E501
+ 'equipment_chassis': 'EquipmentChassis', # noqa: E501
+ 'fan_modules': 'FanModules', # noqa: E501
+ 'registered_device': 'RegisteredDevice', # noqa: E501
+ }
+
+ _composed_schemas = {}
+
+ required_properties = set([
+ '_data_store',
+ '_check_type',
+ '_spec_property_naming',
+ '_path_to_item',
+ '_configuration',
+ '_visited_composed_classes',
+ ])
+
+ @convert_js_args_to_python_args
+ def __init__(self, *args, **kwargs): # noqa: E501
+ """EquipmentExpanderModuleAllOf - a model defined in OpenAPI
+
+ Args:
+
+ Keyword Args:
+ class_id (str): The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.. defaults to "equipment.ExpanderModule", must be one of ["equipment.ExpanderModule", ] # noqa: E501
+ object_type (str): The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.. defaults to "equipment.ExpanderModule", must be one of ["equipment.ExpanderModule", ] # noqa: E501
+ _check_type (bool): if True, values for parameters in openapi_types
+ will be type checked and a TypeError will be
+ raised if the wrong type is input.
+ Defaults to True
+ _path_to_item (tuple/list): This is a list of keys or values to
+ drill down to the model in received_data
+ when deserializing a response
+ _spec_property_naming (bool): True if the variable names in the input data
+ are serialized names, as specified in the OpenAPI document.
+ False if the variable names in the input data
+ are pythonic names, e.g. snake case (default)
+ _configuration (Configuration): the instance to use when
+ deserializing a file_type parameter.
+ If passed, type conversion is attempted
+ If omitted no type conversion is done.
+ _visited_composed_classes (tuple): This stores a tuple of
+ classes that we have traveled through so that
+ if we see that class again we will not use its
+ discriminator again.
+ When traveling through a discriminator, the
+ composed schema that is
+ is traveled through is added to this set.
+ For example if Animal has a discriminator
+ petType and we pass in "Dog", and the class Dog
+ allOf includes Animal, we move through Animal
+ once using the discriminator, and pick Dog.
+ Then in Dog, we will make an instance of the
+ Animal class but this time we won't travel
+ through its discriminator because we passed in
+ _visited_composed_classes = (Animal,)
+ module_id (int): Module identifier for the expander module.. [optional] # noqa: E501
+ oper_reason ([str], none_type): [optional] # noqa: E501
+ oper_state (str): Operational state of expander module.. [optional] # noqa: E501
+ part_number (str): Part number identifier for the expander module.. [optional] # noqa: E501
+ equipment_chassis (EquipmentChassisRelationship): [optional] # noqa: E501
+ fan_modules ([EquipmentFanModuleRelationship], none_type): An array of relationships to equipmentFanModule resources.. [optional] # noqa: E501
+ registered_device (AssetDeviceRegistrationRelationship): [optional] # noqa: E501
+ """
+
+ class_id = kwargs.get('class_id', "equipment.ExpanderModule")
+ object_type = kwargs.get('object_type', "equipment.ExpanderModule")
+ _check_type = kwargs.pop('_check_type', True)
+ _spec_property_naming = kwargs.pop('_spec_property_naming', False)
+ _path_to_item = kwargs.pop('_path_to_item', ())
+ _configuration = kwargs.pop('_configuration', None)
+ _visited_composed_classes = kwargs.pop('_visited_composed_classes', ())
+
+ if args:
+ raise ApiTypeError(
+ "Invalid positional arguments=%s passed to %s. Remove those invalid positional arguments." % (
+ args,
+ self.__class__.__name__,
+ ),
+ path_to_item=_path_to_item,
+ valid_classes=(self.__class__,),
+ )
+
+ self._data_store = {}
+ self._check_type = _check_type
+ self._spec_property_naming = _spec_property_naming
+ self._path_to_item = _path_to_item
+ self._configuration = _configuration
+ self._visited_composed_classes = _visited_composed_classes + (self.__class__,)
+
+ self.class_id = class_id
+ self.object_type = object_type
+ for var_name, var_value in kwargs.items():
+ if var_name not in self.attribute_map and \
+ self._configuration is not None and \
+ self._configuration.discard_unknown_keys and \
+ self.additional_properties_type is None:
+ # discard variable.
+ continue
+ setattr(self, var_name, var_value)
diff --git a/intersight/model/equipment_expander_module_list.py b/intersight/model/equipment_expander_module_list.py
new file mode 100644
index 0000000000..f93ad6af0c
--- /dev/null
+++ b/intersight/model/equipment_expander_module_list.py
@@ -0,0 +1,238 @@
+"""
+ Cisco Intersight
+
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
+
+ The version of the OpenAPI document: 1.0.9-4506
+ Contact: intersight@cisco.com
+ Generated by: https://openapi-generator.tech
+"""
+
+
+import re # noqa: F401
+import sys # noqa: F401
+
+from intersight.model_utils import ( # noqa: F401
+ ApiTypeError,
+ ModelComposed,
+ ModelNormal,
+ ModelSimple,
+ cached_property,
+ change_keys_js_to_python,
+ convert_js_args_to_python_args,
+ date,
+ datetime,
+ file_type,
+ none_type,
+ validate_get_composed_info,
+)
+
+def lazy_import():
+ from intersight.model.equipment_expander_module import EquipmentExpanderModule
+ from intersight.model.equipment_expander_module_list_all_of import EquipmentExpanderModuleListAllOf
+ from intersight.model.mo_base_response import MoBaseResponse
+ globals()['EquipmentExpanderModule'] = EquipmentExpanderModule
+ globals()['EquipmentExpanderModuleListAllOf'] = EquipmentExpanderModuleListAllOf
+ globals()['MoBaseResponse'] = MoBaseResponse
+
+
+class EquipmentExpanderModuleList(ModelComposed):
+ """NOTE: This class is auto generated by OpenAPI Generator.
+ Ref: https://openapi-generator.tech
+
+ Do not edit the class manually.
+
+ Attributes:
+ allowed_values (dict): The key is the tuple path to the attribute
+ and the for var_name this is (var_name,). The value is a dict
+ with a capitalized key describing the allowed value and an allowed
+ value. These dicts store the allowed enum values.
+ attribute_map (dict): The key is attribute name
+ and the value is json key in definition.
+ discriminator_value_class_map (dict): A dict to go from the discriminator
+ variable value to the discriminator class name.
+ validations (dict): The key is the tuple path to the attribute
+ and the for var_name this is (var_name,). The value is a dict
+ that stores validations for max_length, min_length, max_items,
+ min_items, exclusive_maximum, inclusive_maximum, exclusive_minimum,
+ inclusive_minimum, and regex.
+ additional_properties_type (tuple): A tuple of classes accepted
+ as additional properties values.
+ """
+
+ allowed_values = {
+ }
+
+ validations = {
+ }
+
+ @cached_property
+ def additional_properties_type():
+ """
+ This must be a method because a model may have properties that are
+ of type self, this must run after the class is loaded
+ """
+ lazy_import()
+ return (bool, date, datetime, dict, float, int, list, str, none_type,) # noqa: E501
+
+ _nullable = False
+
+ @cached_property
+ def openapi_types():
+ """
+ This must be a method because a model may have properties that are
+ of type self, this must run after the class is loaded
+
+ Returns
+ openapi_types (dict): The key is attribute name
+ and the value is attribute type.
+ """
+ lazy_import()
+ return {
+ 'object_type': (str,), # noqa: E501
+ 'count': (int,), # noqa: E501
+ 'results': ([EquipmentExpanderModule], none_type,), # noqa: E501
+ }
+
+ @cached_property
+ def discriminator():
+ val = {
+ }
+ if not val:
+ return None
+ return {'object_type': val}
+
+ attribute_map = {
+ 'object_type': 'ObjectType', # noqa: E501
+ 'count': 'Count', # noqa: E501
+ 'results': 'Results', # noqa: E501
+ }
+
+ required_properties = set([
+ '_data_store',
+ '_check_type',
+ '_spec_property_naming',
+ '_path_to_item',
+ '_configuration',
+ '_visited_composed_classes',
+ '_composed_instances',
+ '_var_name_to_model_instances',
+ '_additional_properties_model_instances',
+ ])
+
+ @convert_js_args_to_python_args
+ def __init__(self, object_type, *args, **kwargs): # noqa: E501
+ """EquipmentExpanderModuleList - a model defined in OpenAPI
+
+ Args:
+ object_type (str): A discriminator value to disambiguate the schema of a HTTP GET response body.
+
+ Keyword Args:
+ _check_type (bool): if True, values for parameters in openapi_types
+ will be type checked and a TypeError will be
+ raised if the wrong type is input.
+ Defaults to True
+ _path_to_item (tuple/list): This is a list of keys or values to
+ drill down to the model in received_data
+ when deserializing a response
+ _spec_property_naming (bool): True if the variable names in the input data
+ are serialized names, as specified in the OpenAPI document.
+ False if the variable names in the input data
+ are pythonic names, e.g. snake case (default)
+ _configuration (Configuration): the instance to use when
+ deserializing a file_type parameter.
+ If passed, type conversion is attempted
+ If omitted no type conversion is done.
+ _visited_composed_classes (tuple): This stores a tuple of
+ classes that we have traveled through so that
+ if we see that class again we will not use its
+ discriminator again.
+ When traveling through a discriminator, the
+ composed schema that is
+ is traveled through is added to this set.
+ For example if Animal has a discriminator
+ petType and we pass in "Dog", and the class Dog
+ allOf includes Animal, we move through Animal
+ once using the discriminator, and pick Dog.
+ Then in Dog, we will make an instance of the
+ Animal class but this time we won't travel
+ through its discriminator because we passed in
+ _visited_composed_classes = (Animal,)
+ count (int): The total number of 'equipment.ExpanderModule' resources matching the request, accross all pages. The 'Count' attribute is included when the HTTP GET request includes the '$inlinecount' parameter.. [optional] # noqa: E501
+ results ([EquipmentExpanderModule], none_type): The array of 'equipment.ExpanderModule' resources matching the request.. [optional] # noqa: E501
+ """
+
+ _check_type = kwargs.pop('_check_type', True)
+ _spec_property_naming = kwargs.pop('_spec_property_naming', False)
+ _path_to_item = kwargs.pop('_path_to_item', ())
+ _configuration = kwargs.pop('_configuration', None)
+ _visited_composed_classes = kwargs.pop('_visited_composed_classes', ())
+
+ if args:
+ raise ApiTypeError(
+ "Invalid positional arguments=%s passed to %s. Remove those invalid positional arguments." % (
+ args,
+ self.__class__.__name__,
+ ),
+ path_to_item=_path_to_item,
+ valid_classes=(self.__class__,),
+ )
+
+ self._data_store = {}
+ self._check_type = _check_type
+ self._spec_property_naming = _spec_property_naming
+ self._path_to_item = _path_to_item
+ self._configuration = _configuration
+ self._visited_composed_classes = _visited_composed_classes + (self.__class__,)
+
+ constant_args = {
+ '_check_type': _check_type,
+ '_path_to_item': _path_to_item,
+ '_spec_property_naming': _spec_property_naming,
+ '_configuration': _configuration,
+ '_visited_composed_classes': self._visited_composed_classes,
+ }
+ required_args = {
+ 'object_type': object_type,
+ }
+ model_args = {}
+ model_args.update(required_args)
+ model_args.update(kwargs)
+ composed_info = validate_get_composed_info(
+ constant_args, model_args, self)
+ self._composed_instances = composed_info[0]
+ self._var_name_to_model_instances = composed_info[1]
+ self._additional_properties_model_instances = composed_info[2]
+ unused_args = composed_info[3]
+
+ for var_name, var_value in required_args.items():
+ setattr(self, var_name, var_value)
+ for var_name, var_value in kwargs.items():
+ if var_name in unused_args and \
+ self._configuration is not None and \
+ self._configuration.discard_unknown_keys and \
+ not self._additional_properties_model_instances:
+ # discard variable.
+ continue
+ setattr(self, var_name, var_value)
+
+ @cached_property
+ def _composed_schemas():
+ # we need this here to make our import statements work
+ # we must store _composed_schemas in here so the code is only run
+ # when we invoke this method. If we kept this at the class
+ # level we would get an error beause the class level
+ # code would be run when this module is imported, and these composed
+ # classes don't exist yet because their module has not finished
+ # loading
+ lazy_import()
+ return {
+ 'anyOf': [
+ ],
+ 'allOf': [
+ EquipmentExpanderModuleListAllOf,
+ MoBaseResponse,
+ ],
+ 'oneOf': [
+ ],
+ }
diff --git a/intersight/model/equipment_expander_module_list_all_of.py b/intersight/model/equipment_expander_module_list_all_of.py
new file mode 100644
index 0000000000..bb50b1f8d1
--- /dev/null
+++ b/intersight/model/equipment_expander_module_list_all_of.py
@@ -0,0 +1,175 @@
+"""
+ Cisco Intersight
+
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
+
+ The version of the OpenAPI document: 1.0.9-4506
+ Contact: intersight@cisco.com
+ Generated by: https://openapi-generator.tech
+"""
+
+
+import re # noqa: F401
+import sys # noqa: F401
+
+from intersight.model_utils import ( # noqa: F401
+ ApiTypeError,
+ ModelComposed,
+ ModelNormal,
+ ModelSimple,
+ cached_property,
+ change_keys_js_to_python,
+ convert_js_args_to_python_args,
+ date,
+ datetime,
+ file_type,
+ none_type,
+ validate_get_composed_info,
+)
+
+def lazy_import():
+ from intersight.model.equipment_expander_module import EquipmentExpanderModule
+ globals()['EquipmentExpanderModule'] = EquipmentExpanderModule
+
+
+class EquipmentExpanderModuleListAllOf(ModelNormal):
+ """NOTE: This class is auto generated by OpenAPI Generator.
+ Ref: https://openapi-generator.tech
+
+ Do not edit the class manually.
+
+ Attributes:
+ allowed_values (dict): The key is the tuple path to the attribute
+ and the for var_name this is (var_name,). The value is a dict
+ with a capitalized key describing the allowed value and an allowed
+ value. These dicts store the allowed enum values.
+ attribute_map (dict): The key is attribute name
+ and the value is json key in definition.
+ discriminator_value_class_map (dict): A dict to go from the discriminator
+ variable value to the discriminator class name.
+ validations (dict): The key is the tuple path to the attribute
+ and the for var_name this is (var_name,). The value is a dict
+ that stores validations for max_length, min_length, max_items,
+ min_items, exclusive_maximum, inclusive_maximum, exclusive_minimum,
+ inclusive_minimum, and regex.
+ additional_properties_type (tuple): A tuple of classes accepted
+ as additional properties values.
+ """
+
+ allowed_values = {
+ }
+
+ validations = {
+ }
+
+ additional_properties_type = None
+
+ _nullable = False
+
+ @cached_property
+ def openapi_types():
+ """
+ This must be a method because a model may have properties that are
+ of type self, this must run after the class is loaded
+
+ Returns
+ openapi_types (dict): The key is attribute name
+ and the value is attribute type.
+ """
+ lazy_import()
+ return {
+ 'count': (int,), # noqa: E501
+ 'results': ([EquipmentExpanderModule], none_type,), # noqa: E501
+ }
+
+ @cached_property
+ def discriminator():
+ return None
+
+
+ attribute_map = {
+ 'count': 'Count', # noqa: E501
+ 'results': 'Results', # noqa: E501
+ }
+
+ _composed_schemas = {}
+
+ required_properties = set([
+ '_data_store',
+ '_check_type',
+ '_spec_property_naming',
+ '_path_to_item',
+ '_configuration',
+ '_visited_composed_classes',
+ ])
+
+ @convert_js_args_to_python_args
+ def __init__(self, *args, **kwargs): # noqa: E501
+ """EquipmentExpanderModuleListAllOf - a model defined in OpenAPI
+
+ Keyword Args:
+ _check_type (bool): if True, values for parameters in openapi_types
+ will be type checked and a TypeError will be
+ raised if the wrong type is input.
+ Defaults to True
+ _path_to_item (tuple/list): This is a list of keys or values to
+ drill down to the model in received_data
+ when deserializing a response
+ _spec_property_naming (bool): True if the variable names in the input data
+ are serialized names, as specified in the OpenAPI document.
+ False if the variable names in the input data
+ are pythonic names, e.g. snake case (default)
+ _configuration (Configuration): the instance to use when
+ deserializing a file_type parameter.
+ If passed, type conversion is attempted
+ If omitted no type conversion is done.
+ _visited_composed_classes (tuple): This stores a tuple of
+ classes that we have traveled through so that
+ if we see that class again we will not use its
+ discriminator again.
+ When traveling through a discriminator, the
+ composed schema that is
+ is traveled through is added to this set.
+ For example if Animal has a discriminator
+ petType and we pass in "Dog", and the class Dog
+ allOf includes Animal, we move through Animal
+ once using the discriminator, and pick Dog.
+ Then in Dog, we will make an instance of the
+ Animal class but this time we won't travel
+ through its discriminator because we passed in
+ _visited_composed_classes = (Animal,)
+ count (int): The total number of 'equipment.ExpanderModule' resources matching the request, accross all pages. The 'Count' attribute is included when the HTTP GET request includes the '$inlinecount' parameter.. [optional] # noqa: E501
+ results ([EquipmentExpanderModule], none_type): The array of 'equipment.ExpanderModule' resources matching the request.. [optional] # noqa: E501
+ """
+
+ _check_type = kwargs.pop('_check_type', True)
+ _spec_property_naming = kwargs.pop('_spec_property_naming', False)
+ _path_to_item = kwargs.pop('_path_to_item', ())
+ _configuration = kwargs.pop('_configuration', None)
+ _visited_composed_classes = kwargs.pop('_visited_composed_classes', ())
+
+ if args:
+ raise ApiTypeError(
+ "Invalid positional arguments=%s passed to %s. Remove those invalid positional arguments." % (
+ args,
+ self.__class__.__name__,
+ ),
+ path_to_item=_path_to_item,
+ valid_classes=(self.__class__,),
+ )
+
+ self._data_store = {}
+ self._check_type = _check_type
+ self._spec_property_naming = _spec_property_naming
+ self._path_to_item = _path_to_item
+ self._configuration = _configuration
+ self._visited_composed_classes = _visited_composed_classes + (self.__class__,)
+
+ for var_name, var_value in kwargs.items():
+ if var_name not in self.attribute_map and \
+ self._configuration is not None and \
+ self._configuration.discard_unknown_keys and \
+ self.additional_properties_type is None:
+ # discard variable.
+ continue
+ setattr(self, var_name, var_value)
diff --git a/intersight/model/equipment_expander_module_relationship.py b/intersight/model/equipment_expander_module_relationship.py
new file mode 100644
index 0000000000..024714b260
--- /dev/null
+++ b/intersight/model/equipment_expander_module_relationship.py
@@ -0,0 +1,1167 @@
+"""
+ Cisco Intersight
+
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
+
+ The version of the OpenAPI document: 1.0.9-4506
+ Contact: intersight@cisco.com
+ Generated by: https://openapi-generator.tech
+"""
+
+
+import re # noqa: F401
+import sys # noqa: F401
+
+from intersight.model_utils import ( # noqa: F401
+ ApiTypeError,
+ ModelComposed,
+ ModelNormal,
+ ModelSimple,
+ cached_property,
+ change_keys_js_to_python,
+ convert_js_args_to_python_args,
+ date,
+ datetime,
+ file_type,
+ none_type,
+ validate_get_composed_info,
+)
+
+def lazy_import():
+ from intersight.model.asset_device_registration_relationship import AssetDeviceRegistrationRelationship
+ from intersight.model.display_names import DisplayNames
+ from intersight.model.equipment_chassis_relationship import EquipmentChassisRelationship
+ from intersight.model.equipment_expander_module import EquipmentExpanderModule
+ from intersight.model.equipment_fan_module_relationship import EquipmentFanModuleRelationship
+ from intersight.model.equipment_fru_relationship import EquipmentFruRelationship
+ from intersight.model.mo_base_mo_relationship import MoBaseMoRelationship
+ from intersight.model.mo_mo_ref import MoMoRef
+ from intersight.model.mo_tag import MoTag
+ from intersight.model.mo_version_context import MoVersionContext
+ globals()['AssetDeviceRegistrationRelationship'] = AssetDeviceRegistrationRelationship
+ globals()['DisplayNames'] = DisplayNames
+ globals()['EquipmentChassisRelationship'] = EquipmentChassisRelationship
+ globals()['EquipmentExpanderModule'] = EquipmentExpanderModule
+ globals()['EquipmentFanModuleRelationship'] = EquipmentFanModuleRelationship
+ globals()['EquipmentFruRelationship'] = EquipmentFruRelationship
+ globals()['MoBaseMoRelationship'] = MoBaseMoRelationship
+ globals()['MoMoRef'] = MoMoRef
+ globals()['MoTag'] = MoTag
+ globals()['MoVersionContext'] = MoVersionContext
+
+
+class EquipmentExpanderModuleRelationship(ModelComposed):
+ """NOTE: This class is auto generated by OpenAPI Generator.
+ Ref: https://openapi-generator.tech
+
+ Do not edit the class manually.
+
+ Attributes:
+ allowed_values (dict): The key is the tuple path to the attribute
+ and the for var_name this is (var_name,). The value is a dict
+ with a capitalized key describing the allowed value and an allowed
+ value. These dicts store the allowed enum values.
+ attribute_map (dict): The key is attribute name
+ and the value is json key in definition.
+ discriminator_value_class_map (dict): A dict to go from the discriminator
+ variable value to the discriminator class name.
+ validations (dict): The key is the tuple path to the attribute
+ and the for var_name this is (var_name,). The value is a dict
+ that stores validations for max_length, min_length, max_items,
+ min_items, exclusive_maximum, inclusive_maximum, exclusive_minimum,
+ inclusive_minimum, and regex.
+ additional_properties_type (tuple): A tuple of classes accepted
+ as additional properties values.
+ """
+
+ allowed_values = {
+ ('class_id',): {
+ 'MO.MOREF': "mo.MoRef",
+ },
+ ('oper_reason',): {
+ 'None': None,
+ 'UNKNOWN': "Unknown",
+ 'OK': "OK",
+ 'OFFLINE': "Offline",
+ 'MISSING': "Missing",
+ 'TEMPERATUREWARNING': "TemperatureWarning",
+ 'TEMPERATURECRITICAL': "TemperatureCritical",
+ 'INPUTVOLTAGEWARNING': "InputVoltageWarning",
+ 'INPUTVOLTAGECRITICAL': "InputVoltageCritical",
+ 'OUTPUTVOLTAGEWARNING': "OutputVoltageWarning",
+ 'OUTPUTVOLTAGECRITICAL': "OutputVoltageCritical",
+ 'OUTPUTCURRENTWARNING': "OutputCurrentWarning",
+ 'OUTPUTCURRENTCRITICAL': "OutputCurrentCritical",
+ 'SPEEDWARNING': "SpeedWarning",
+ 'SPEEDCRITICAL': "SpeedCritical",
+ 'FANMISSINGWARNING': "FanMissingWarning",
+ 'FANSMISSINGCRITICAL': "FansMissingCritical",
+ 'IOCARDPOSTWARNING': "IocardPostWarning",
+ 'ASICPOSTWARNING': "AsicPostWarning",
+ 'FRUSTATECRITICAL': "FruStateCritical",
+ 'FRUSTATEWARNING': "FruStateWarning",
+ 'ALTERNATEIMAGEWARNING': "AlternateImageWarning",
+ 'SELECTEDIMAGEWARNING': "SelectedImageWarning",
+ 'LOWMEMORYCRITICAL': "LowMemoryCritical",
+ 'LOWMEMORYWARNING': "LowMemoryWarning",
+ 'POWERCRITICAL': "PowerCritical",
+ 'POWERWARNING': "PowerWarning",
+ 'THERMALSAFEMODECRITICAL': "ThermalSafeModeCritical",
+ 'PSUREDUNDANCYLOSTCRITICAL': "PsuRedundancyLostCritical",
+ 'INPUTPOWERWARNING': "InputPowerWarning",
+ 'INPUTPOWERCRITICAL': "InputPowerCritical",
+ 'OUTPUTPOWERWARNING': "OutputPowerWarning",
+ 'OUTPUTPOWERCRITICAL': "OutputPowerCritical",
+ 'FANGENERALCRITICAL': "FanGeneralCritical",
+ 'POWERSUPPLYGENERALCRITICAL': "PowerSupplyGeneralCritical",
+ 'POWERSUPPLYINPUTWARNING': "PowerSupplyInputWarning",
+ 'POWERSUPPLYOUTPUTCRITICAL': "PowerSupplyOutputCritical",
+ 'POWERSUPPLYINPUTLOSTWARNING': "PowerSupplyInputLostWarning",
+ 'POWERSUPPLYUNRESPONSIVECRITICAL': "PowerSupplyUnresponsiveCritical",
+ 'FANUNRESPONSIVECRITICAL': "FanUnresponsiveCritical",
+ 'MEMORYUNCORRECTABLEERROR': "MemoryUncorrectableError",
+ 'MEMORYTEMPERATUREWARNING': "MemoryTemperatureWarning",
+ 'MEMORYTEMPERATURECRITICAL': "MemoryTemperatureCritical",
+ 'MEMORYBANKERROR': "MemoryBankError",
+ 'MEMORYRANKERROR': "MemoryRankError",
+ 'MOTHERBOARDPOWERCRITICAL': "MotherBoardPowerCritical",
+ 'MOTHERBOARDTEMPERATUREWARNING': "MotherBoardTemperatureWarning",
+ 'MOTHERBOARDTEMPERATURECRITICAL': "MotherBoardTemperatureCritical",
+ 'MOTHERBOARDVOLTAGEWARNING': "MotherBoardVoltageWarning",
+ 'MOTHERBOARDVOLTAGECRITICAL': "MotherBoardVoltageCritical",
+ 'PROCESSORCATERR': "ProcessorCatErr",
+ 'PROCESSORTHERMTRIP': "ProcessorThermTrip",
+ 'COMPONENTNOTOPERATIONAL': "ComponentNotOperational",
+ 'COMPONENTNOTREACHABLE': "ComponentNotReachable",
+ 'PROCESSORTEMPERATUREWARNING': "ProcessorTemperatureWarning",
+ 'PROCESSORTEMPERATURECRITICAL': "ProcessorTemperatureCritical",
+ },
+ ('object_type',): {
+ 'AAA.AUDITRECORD': "aaa.AuditRecord",
+ 'AAA.RETENTIONCONFIG': "aaa.RetentionConfig",
+ 'AAA.RETENTIONPOLICY': "aaa.RetentionPolicy",
+ 'ACCESS.POLICY': "access.Policy",
+ 'ADAPTER.CONFIGPOLICY': "adapter.ConfigPolicy",
+ 'ADAPTER.EXTETHINTERFACE': "adapter.ExtEthInterface",
+ 'ADAPTER.HOSTETHINTERFACE': "adapter.HostEthInterface",
+ 'ADAPTER.HOSTFCINTERFACE': "adapter.HostFcInterface",
+ 'ADAPTER.HOSTISCSIINTERFACE': "adapter.HostIscsiInterface",
+ 'ADAPTER.UNIT': "adapter.Unit",
+ 'ADAPTER.UNITEXPANDER': "adapter.UnitExpander",
+ 'APPLIANCE.APPSTATUS': "appliance.AppStatus",
+ 'APPLIANCE.AUTORMAPOLICY': "appliance.AutoRmaPolicy",
+ 'APPLIANCE.BACKUP': "appliance.Backup",
+ 'APPLIANCE.BACKUPPOLICY': "appliance.BackupPolicy",
+ 'APPLIANCE.CERTIFICATESETTING': "appliance.CertificateSetting",
+ 'APPLIANCE.DATAEXPORTPOLICY': "appliance.DataExportPolicy",
+ 'APPLIANCE.DEVICECERTIFICATE': "appliance.DeviceCertificate",
+ 'APPLIANCE.DEVICECLAIM': "appliance.DeviceClaim",
+ 'APPLIANCE.DEVICEUPGRADEPOLICY': "appliance.DeviceUpgradePolicy",
+ 'APPLIANCE.DIAGSETTING': "appliance.DiagSetting",
+ 'APPLIANCE.EXTERNALSYSLOGSETTING': "appliance.ExternalSyslogSetting",
+ 'APPLIANCE.FILESYSTEMSTATUS': "appliance.FileSystemStatus",
+ 'APPLIANCE.GROUPSTATUS': "appliance.GroupStatus",
+ 'APPLIANCE.IMAGEBUNDLE': "appliance.ImageBundle",
+ 'APPLIANCE.NODEINFO': "appliance.NodeInfo",
+ 'APPLIANCE.NODESTATUS': "appliance.NodeStatus",
+ 'APPLIANCE.RELEASENOTE': "appliance.ReleaseNote",
+ 'APPLIANCE.REMOTEFILEIMPORT': "appliance.RemoteFileImport",
+ 'APPLIANCE.RESTORE': "appliance.Restore",
+ 'APPLIANCE.SETUPINFO': "appliance.SetupInfo",
+ 'APPLIANCE.SYSTEMINFO': "appliance.SystemInfo",
+ 'APPLIANCE.SYSTEMSTATUS': "appliance.SystemStatus",
+ 'APPLIANCE.UPGRADE': "appliance.Upgrade",
+ 'APPLIANCE.UPGRADEPOLICY': "appliance.UpgradePolicy",
+ 'ASSET.CLUSTERMEMBER': "asset.ClusterMember",
+ 'ASSET.DEPLOYMENT': "asset.Deployment",
+ 'ASSET.DEPLOYMENTDEVICE': "asset.DeploymentDevice",
+ 'ASSET.DEVICECLAIM': "asset.DeviceClaim",
+ 'ASSET.DEVICECONFIGURATION': "asset.DeviceConfiguration",
+ 'ASSET.DEVICECONNECTORMANAGER': "asset.DeviceConnectorManager",
+ 'ASSET.DEVICECONTRACTINFORMATION': "asset.DeviceContractInformation",
+ 'ASSET.DEVICEREGISTRATION': "asset.DeviceRegistration",
+ 'ASSET.SUBSCRIPTION': "asset.Subscription",
+ 'ASSET.SUBSCRIPTIONACCOUNT': "asset.SubscriptionAccount",
+ 'ASSET.SUBSCRIPTIONDEVICECONTRACTINFORMATION': "asset.SubscriptionDeviceContractInformation",
+ 'ASSET.TARGET': "asset.Target",
+ 'BIOS.BOOTDEVICE': "bios.BootDevice",
+ 'BIOS.BOOTMODE': "bios.BootMode",
+ 'BIOS.POLICY': "bios.Policy",
+ 'BIOS.SYSTEMBOOTORDER': "bios.SystemBootOrder",
+ 'BIOS.TOKENSETTINGS': "bios.TokenSettings",
+ 'BIOS.UNIT': "bios.Unit",
+ 'BIOS.VFSELECTMEMORYRASCONFIGURATION': "bios.VfSelectMemoryRasConfiguration",
+ 'BOOT.CDDDEVICE': "boot.CddDevice",
+ 'BOOT.DEVICEBOOTMODE': "boot.DeviceBootMode",
+ 'BOOT.DEVICEBOOTSECURITY': "boot.DeviceBootSecurity",
+ 'BOOT.HDDDEVICE': "boot.HddDevice",
+ 'BOOT.ISCSIDEVICE': "boot.IscsiDevice",
+ 'BOOT.NVMEDEVICE': "boot.NvmeDevice",
+ 'BOOT.PCHSTORAGEDEVICE': "boot.PchStorageDevice",
+ 'BOOT.PRECISIONPOLICY': "boot.PrecisionPolicy",
+ 'BOOT.PXEDEVICE': "boot.PxeDevice",
+ 'BOOT.SANDEVICE': "boot.SanDevice",
+ 'BOOT.SDDEVICE': "boot.SdDevice",
+ 'BOOT.UEFISHELLDEVICE': "boot.UefiShellDevice",
+ 'BOOT.USBDEVICE': "boot.UsbDevice",
+ 'BOOT.VMEDIADEVICE': "boot.VmediaDevice",
+ 'BULK.EXPORT': "bulk.Export",
+ 'BULK.EXPORTEDITEM': "bulk.ExportedItem",
+ 'BULK.MOCLONER': "bulk.MoCloner",
+ 'BULK.MOMERGER': "bulk.MoMerger",
+ 'BULK.REQUEST': "bulk.Request",
+ 'BULK.SUBREQUESTOBJ': "bulk.SubRequestObj",
+ 'CAPABILITY.ADAPTERUNITDESCRIPTOR': "capability.AdapterUnitDescriptor",
+ 'CAPABILITY.CATALOG': "capability.Catalog",
+ 'CAPABILITY.CHASSISDESCRIPTOR': "capability.ChassisDescriptor",
+ 'CAPABILITY.CHASSISMANUFACTURINGDEF': "capability.ChassisManufacturingDef",
+ 'CAPABILITY.CIMCFIRMWAREDESCRIPTOR': "capability.CimcFirmwareDescriptor",
+ 'CAPABILITY.EQUIPMENTPHYSICALDEF': "capability.EquipmentPhysicalDef",
+ 'CAPABILITY.EQUIPMENTSLOTARRAY': "capability.EquipmentSlotArray",
+ 'CAPABILITY.FANMODULEDESCRIPTOR': "capability.FanModuleDescriptor",
+ 'CAPABILITY.FANMODULEMANUFACTURINGDEF': "capability.FanModuleManufacturingDef",
+ 'CAPABILITY.IOCARDCAPABILITYDEF': "capability.IoCardCapabilityDef",
+ 'CAPABILITY.IOCARDDESCRIPTOR': "capability.IoCardDescriptor",
+ 'CAPABILITY.IOCARDMANUFACTURINGDEF': "capability.IoCardManufacturingDef",
+ 'CAPABILITY.PORTGROUPAGGREGATIONDEF': "capability.PortGroupAggregationDef",
+ 'CAPABILITY.PSUDESCRIPTOR': "capability.PsuDescriptor",
+ 'CAPABILITY.PSUMANUFACTURINGDEF': "capability.PsuManufacturingDef",
+ 'CAPABILITY.SERVERSCHEMADESCRIPTOR': "capability.ServerSchemaDescriptor",
+ 'CAPABILITY.SIOCMODULECAPABILITYDEF': "capability.SiocModuleCapabilityDef",
+ 'CAPABILITY.SIOCMODULEDESCRIPTOR': "capability.SiocModuleDescriptor",
+ 'CAPABILITY.SIOCMODULEMANUFACTURINGDEF': "capability.SiocModuleManufacturingDef",
+ 'CAPABILITY.SWITCHCAPABILITY': "capability.SwitchCapability",
+ 'CAPABILITY.SWITCHDESCRIPTOR': "capability.SwitchDescriptor",
+ 'CAPABILITY.SWITCHMANUFACTURINGDEF': "capability.SwitchManufacturingDef",
+ 'CERTIFICATEMANAGEMENT.POLICY': "certificatemanagement.Policy",
+ 'CHASSIS.CONFIGCHANGEDETAIL': "chassis.ConfigChangeDetail",
+ 'CHASSIS.CONFIGIMPORT': "chassis.ConfigImport",
+ 'CHASSIS.CONFIGRESULT': "chassis.ConfigResult",
+ 'CHASSIS.CONFIGRESULTENTRY': "chassis.ConfigResultEntry",
+ 'CHASSIS.IOMPROFILE': "chassis.IomProfile",
+ 'CHASSIS.PROFILE': "chassis.Profile",
+ 'CLOUD.AWSBILLINGUNIT': "cloud.AwsBillingUnit",
+ 'CLOUD.AWSKEYPAIR': "cloud.AwsKeyPair",
+ 'CLOUD.AWSNETWORKINTERFACE': "cloud.AwsNetworkInterface",
+ 'CLOUD.AWSORGANIZATIONALUNIT': "cloud.AwsOrganizationalUnit",
+ 'CLOUD.AWSSECURITYGROUP': "cloud.AwsSecurityGroup",
+ 'CLOUD.AWSSUBNET': "cloud.AwsSubnet",
+ 'CLOUD.AWSVIRTUALMACHINE': "cloud.AwsVirtualMachine",
+ 'CLOUD.AWSVOLUME': "cloud.AwsVolume",
+ 'CLOUD.AWSVPC': "cloud.AwsVpc",
+ 'CLOUD.COLLECTINVENTORY': "cloud.CollectInventory",
+ 'CLOUD.REGIONS': "cloud.Regions",
+ 'CLOUD.SKUCONTAINERTYPE': "cloud.SkuContainerType",
+ 'CLOUD.SKUDATABASETYPE': "cloud.SkuDatabaseType",
+ 'CLOUD.SKUINSTANCETYPE': "cloud.SkuInstanceType",
+ 'CLOUD.SKUNETWORKTYPE': "cloud.SkuNetworkType",
+ 'CLOUD.SKUVOLUMETYPE': "cloud.SkuVolumeType",
+ 'CLOUD.TFCAGENTPOOL': "cloud.TfcAgentpool",
+ 'CLOUD.TFCORGANIZATION': "cloud.TfcOrganization",
+ 'CLOUD.TFCWORKSPACE': "cloud.TfcWorkspace",
+ 'COMM.HTTPPROXYPOLICY': "comm.HttpProxyPolicy",
+ 'COMPUTE.BLADE': "compute.Blade",
+ 'COMPUTE.BLADEIDENTITY': "compute.BladeIdentity",
+ 'COMPUTE.BOARD': "compute.Board",
+ 'COMPUTE.MAPPING': "compute.Mapping",
+ 'COMPUTE.PHYSICALSUMMARY': "compute.PhysicalSummary",
+ 'COMPUTE.RACKUNIT': "compute.RackUnit",
+ 'COMPUTE.RACKUNITIDENTITY': "compute.RackUnitIdentity",
+ 'COMPUTE.SERVERSETTING': "compute.ServerSetting",
+ 'COMPUTE.VMEDIA': "compute.Vmedia",
+ 'COND.ALARM': "cond.Alarm",
+ 'COND.ALARMAGGREGATION': "cond.AlarmAggregation",
+ 'COND.HCLSTATUS': "cond.HclStatus",
+ 'COND.HCLSTATUSDETAIL': "cond.HclStatusDetail",
+ 'COND.HCLSTATUSJOB': "cond.HclStatusJob",
+ 'CONNECTORPACK.CONNECTORPACKUPGRADE': "connectorpack.ConnectorPackUpgrade",
+ 'CONNECTORPACK.UPGRADEIMPACT': "connectorpack.UpgradeImpact",
+ 'CRD.CUSTOMRESOURCE': "crd.CustomResource",
+ 'DEVICECONNECTOR.POLICY': "deviceconnector.Policy",
+ 'EQUIPMENT.CHASSIS': "equipment.Chassis",
+ 'EQUIPMENT.CHASSISIDENTITY': "equipment.ChassisIdentity",
+ 'EQUIPMENT.CHASSISOPERATION': "equipment.ChassisOperation",
+ 'EQUIPMENT.DEVICESUMMARY': "equipment.DeviceSummary",
+ 'EQUIPMENT.EXPANDERMODULE': "equipment.ExpanderModule",
+ 'EQUIPMENT.FAN': "equipment.Fan",
+ 'EQUIPMENT.FANCONTROL': "equipment.FanControl",
+ 'EQUIPMENT.FANMODULE': "equipment.FanModule",
+ 'EQUIPMENT.FEX': "equipment.Fex",
+ 'EQUIPMENT.FEXIDENTITY': "equipment.FexIdentity",
+ 'EQUIPMENT.FEXOPERATION': "equipment.FexOperation",
+ 'EQUIPMENT.FRU': "equipment.Fru",
+ 'EQUIPMENT.IDENTITYSUMMARY': "equipment.IdentitySummary",
+ 'EQUIPMENT.IOCARD': "equipment.IoCard",
+ 'EQUIPMENT.IOCARDOPERATION': "equipment.IoCardOperation",
+ 'EQUIPMENT.IOEXPANDER': "equipment.IoExpander",
+ 'EQUIPMENT.LOCATORLED': "equipment.LocatorLed",
+ 'EQUIPMENT.PSU': "equipment.Psu",
+ 'EQUIPMENT.PSUCONTROL': "equipment.PsuControl",
+ 'EQUIPMENT.RACKENCLOSURE': "equipment.RackEnclosure",
+ 'EQUIPMENT.RACKENCLOSURESLOT': "equipment.RackEnclosureSlot",
+ 'EQUIPMENT.SHAREDIOMODULE': "equipment.SharedIoModule",
+ 'EQUIPMENT.SWITCHCARD': "equipment.SwitchCard",
+ 'EQUIPMENT.SYSTEMIOCONTROLLER': "equipment.SystemIoController",
+ 'EQUIPMENT.TPM': "equipment.Tpm",
+ 'EQUIPMENT.TRANSCEIVER': "equipment.Transceiver",
+ 'ETHER.HOSTPORT': "ether.HostPort",
+ 'ETHER.NETWORKPORT': "ether.NetworkPort",
+ 'ETHER.PHYSICALPORT': "ether.PhysicalPort",
+ 'ETHER.PORTCHANNEL': "ether.PortChannel",
+ 'EXTERNALSITE.AUTHORIZATION': "externalsite.Authorization",
+ 'FABRIC.APPLIANCEPCROLE': "fabric.AppliancePcRole",
+ 'FABRIC.APPLIANCEROLE': "fabric.ApplianceRole",
+ 'FABRIC.CONFIGCHANGEDETAIL': "fabric.ConfigChangeDetail",
+ 'FABRIC.CONFIGRESULT': "fabric.ConfigResult",
+ 'FABRIC.CONFIGRESULTENTRY': "fabric.ConfigResultEntry",
+ 'FABRIC.ELEMENTIDENTITY': "fabric.ElementIdentity",
+ 'FABRIC.ESTIMATEIMPACT': "fabric.EstimateImpact",
+ 'FABRIC.ETHNETWORKCONTROLPOLICY': "fabric.EthNetworkControlPolicy",
+ 'FABRIC.ETHNETWORKGROUPPOLICY': "fabric.EthNetworkGroupPolicy",
+ 'FABRIC.ETHNETWORKPOLICY': "fabric.EthNetworkPolicy",
+ 'FABRIC.FCNETWORKPOLICY': "fabric.FcNetworkPolicy",
+ 'FABRIC.FCUPLINKPCROLE': "fabric.FcUplinkPcRole",
+ 'FABRIC.FCUPLINKROLE': "fabric.FcUplinkRole",
+ 'FABRIC.FCOEUPLINKPCROLE': "fabric.FcoeUplinkPcRole",
+ 'FABRIC.FCOEUPLINKROLE': "fabric.FcoeUplinkRole",
+ 'FABRIC.FLOWCONTROLPOLICY': "fabric.FlowControlPolicy",
+ 'FABRIC.LINKAGGREGATIONPOLICY': "fabric.LinkAggregationPolicy",
+ 'FABRIC.LINKCONTROLPOLICY': "fabric.LinkControlPolicy",
+ 'FABRIC.MULTICASTPOLICY': "fabric.MulticastPolicy",
+ 'FABRIC.PCMEMBER': "fabric.PcMember",
+ 'FABRIC.PCOPERATION': "fabric.PcOperation",
+ 'FABRIC.PORTMODE': "fabric.PortMode",
+ 'FABRIC.PORTOPERATION': "fabric.PortOperation",
+ 'FABRIC.PORTPOLICY': "fabric.PortPolicy",
+ 'FABRIC.SERVERROLE': "fabric.ServerRole",
+ 'FABRIC.SWITCHCLUSTERPROFILE': "fabric.SwitchClusterProfile",
+ 'FABRIC.SWITCHCONTROLPOLICY': "fabric.SwitchControlPolicy",
+ 'FABRIC.SWITCHPROFILE': "fabric.SwitchProfile",
+ 'FABRIC.SYSTEMQOSPOLICY': "fabric.SystemQosPolicy",
+ 'FABRIC.UPLINKPCROLE': "fabric.UplinkPcRole",
+ 'FABRIC.UPLINKROLE': "fabric.UplinkRole",
+ 'FABRIC.VLAN': "fabric.Vlan",
+ 'FABRIC.VSAN': "fabric.Vsan",
+ 'FAULT.INSTANCE': "fault.Instance",
+ 'FC.PHYSICALPORT': "fc.PhysicalPort",
+ 'FC.PORTCHANNEL': "fc.PortChannel",
+ 'FCPOOL.FCBLOCK': "fcpool.FcBlock",
+ 'FCPOOL.LEASE': "fcpool.Lease",
+ 'FCPOOL.POOL': "fcpool.Pool",
+ 'FCPOOL.POOLMEMBER': "fcpool.PoolMember",
+ 'FCPOOL.UNIVERSE': "fcpool.Universe",
+ 'FEEDBACK.FEEDBACKPOST': "feedback.FeedbackPost",
+ 'FIRMWARE.BIOSDESCRIPTOR': "firmware.BiosDescriptor",
+ 'FIRMWARE.BOARDCONTROLLERDESCRIPTOR': "firmware.BoardControllerDescriptor",
+ 'FIRMWARE.CHASSISUPGRADE': "firmware.ChassisUpgrade",
+ 'FIRMWARE.CIMCDESCRIPTOR': "firmware.CimcDescriptor",
+ 'FIRMWARE.DIMMDESCRIPTOR': "firmware.DimmDescriptor",
+ 'FIRMWARE.DISTRIBUTABLE': "firmware.Distributable",
+ 'FIRMWARE.DISTRIBUTABLEMETA': "firmware.DistributableMeta",
+ 'FIRMWARE.DRIVEDESCRIPTOR': "firmware.DriveDescriptor",
+ 'FIRMWARE.DRIVERDISTRIBUTABLE': "firmware.DriverDistributable",
+ 'FIRMWARE.EULA': "firmware.Eula",
+ 'FIRMWARE.FIRMWARESUMMARY': "firmware.FirmwareSummary",
+ 'FIRMWARE.GPUDESCRIPTOR': "firmware.GpuDescriptor",
+ 'FIRMWARE.HBADESCRIPTOR': "firmware.HbaDescriptor",
+ 'FIRMWARE.IOMDESCRIPTOR': "firmware.IomDescriptor",
+ 'FIRMWARE.MSWITCHDESCRIPTOR': "firmware.MswitchDescriptor",
+ 'FIRMWARE.NXOSDESCRIPTOR': "firmware.NxosDescriptor",
+ 'FIRMWARE.PCIEDESCRIPTOR': "firmware.PcieDescriptor",
+ 'FIRMWARE.PSUDESCRIPTOR': "firmware.PsuDescriptor",
+ 'FIRMWARE.RUNNINGFIRMWARE': "firmware.RunningFirmware",
+ 'FIRMWARE.SASEXPANDERDESCRIPTOR': "firmware.SasExpanderDescriptor",
+ 'FIRMWARE.SERVERCONFIGURATIONUTILITYDISTRIBUTABLE': "firmware.ServerConfigurationUtilityDistributable",
+ 'FIRMWARE.STORAGECONTROLLERDESCRIPTOR': "firmware.StorageControllerDescriptor",
+ 'FIRMWARE.SWITCHUPGRADE': "firmware.SwitchUpgrade",
+ 'FIRMWARE.UNSUPPORTEDVERSIONUPGRADE': "firmware.UnsupportedVersionUpgrade",
+ 'FIRMWARE.UPGRADE': "firmware.Upgrade",
+ 'FIRMWARE.UPGRADEIMPACT': "firmware.UpgradeImpact",
+ 'FIRMWARE.UPGRADEIMPACTSTATUS': "firmware.UpgradeImpactStatus",
+ 'FIRMWARE.UPGRADESTATUS': "firmware.UpgradeStatus",
+ 'FORECAST.CATALOG': "forecast.Catalog",
+ 'FORECAST.DEFINITION': "forecast.Definition",
+ 'FORECAST.INSTANCE': "forecast.Instance",
+ 'GRAPHICS.CARD': "graphics.Card",
+ 'GRAPHICS.CONTROLLER': "graphics.Controller",
+ 'HCL.COMPATIBILITYSTATUS': "hcl.CompatibilityStatus",
+ 'HCL.DRIVERIMAGE': "hcl.DriverImage",
+ 'HCL.EXEMPTEDCATALOG': "hcl.ExemptedCatalog",
+ 'HCL.HYPERFLEXSOFTWARECOMPATIBILITYINFO': "hcl.HyperflexSoftwareCompatibilityInfo",
+ 'HCL.OPERATINGSYSTEM': "hcl.OperatingSystem",
+ 'HCL.OPERATINGSYSTEMVENDOR': "hcl.OperatingSystemVendor",
+ 'HCL.SUPPORTEDDRIVERNAME': "hcl.SupportedDriverName",
+ 'HYPERFLEX.ALARM': "hyperflex.Alarm",
+ 'HYPERFLEX.APPCATALOG': "hyperflex.AppCatalog",
+ 'HYPERFLEX.AUTOSUPPORTPOLICY': "hyperflex.AutoSupportPolicy",
+ 'HYPERFLEX.BACKUPCLUSTER': "hyperflex.BackupCluster",
+ 'HYPERFLEX.CAPABILITYINFO': "hyperflex.CapabilityInfo",
+ 'HYPERFLEX.CISCOHYPERVISORMANAGER': "hyperflex.CiscoHypervisorManager",
+ 'HYPERFLEX.CLUSTER': "hyperflex.Cluster",
+ 'HYPERFLEX.CLUSTERBACKUPPOLICY': "hyperflex.ClusterBackupPolicy",
+ 'HYPERFLEX.CLUSTERBACKUPPOLICYDEPLOYMENT': "hyperflex.ClusterBackupPolicyDeployment",
+ 'HYPERFLEX.CLUSTERHEALTHCHECKEXECUTIONSNAPSHOT': "hyperflex.ClusterHealthCheckExecutionSnapshot",
+ 'HYPERFLEX.CLUSTERNETWORKPOLICY': "hyperflex.ClusterNetworkPolicy",
+ 'HYPERFLEX.CLUSTERPROFILE': "hyperflex.ClusterProfile",
+ 'HYPERFLEX.CLUSTERREPLICATIONNETWORKPOLICY': "hyperflex.ClusterReplicationNetworkPolicy",
+ 'HYPERFLEX.CLUSTERREPLICATIONNETWORKPOLICYDEPLOYMENT': "hyperflex.ClusterReplicationNetworkPolicyDeployment",
+ 'HYPERFLEX.CLUSTERSTORAGEPOLICY': "hyperflex.ClusterStoragePolicy",
+ 'HYPERFLEX.CONFIGRESULT': "hyperflex.ConfigResult",
+ 'HYPERFLEX.CONFIGRESULTENTRY': "hyperflex.ConfigResultEntry",
+ 'HYPERFLEX.DATAPROTECTIONPEER': "hyperflex.DataProtectionPeer",
+ 'HYPERFLEX.DATASTORESTATISTIC': "hyperflex.DatastoreStatistic",
+ 'HYPERFLEX.DEVICEPACKAGEDOWNLOADSTATE': "hyperflex.DevicePackageDownloadState",
+ 'HYPERFLEX.DRIVE': "hyperflex.Drive",
+ 'HYPERFLEX.EXTFCSTORAGEPOLICY': "hyperflex.ExtFcStoragePolicy",
+ 'HYPERFLEX.EXTISCSISTORAGEPOLICY': "hyperflex.ExtIscsiStoragePolicy",
+ 'HYPERFLEX.FEATURELIMITEXTERNAL': "hyperflex.FeatureLimitExternal",
+ 'HYPERFLEX.FEATURELIMITINTERNAL': "hyperflex.FeatureLimitInternal",
+ 'HYPERFLEX.HEALTH': "hyperflex.Health",
+ 'HYPERFLEX.HEALTHCHECKDEFINITION': "hyperflex.HealthCheckDefinition",
+ 'HYPERFLEX.HEALTHCHECKEXECUTION': "hyperflex.HealthCheckExecution",
+ 'HYPERFLEX.HEALTHCHECKEXECUTIONSNAPSHOT': "hyperflex.HealthCheckExecutionSnapshot",
+ 'HYPERFLEX.HEALTHCHECKPACKAGECHECKSUM': "hyperflex.HealthCheckPackageChecksum",
+ 'HYPERFLEX.HXAPCLUSTER': "hyperflex.HxapCluster",
+ 'HYPERFLEX.HXAPDATACENTER': "hyperflex.HxapDatacenter",
+ 'HYPERFLEX.HXAPDVUPLINK': "hyperflex.HxapDvUplink",
+ 'HYPERFLEX.HXAPDVSWITCH': "hyperflex.HxapDvswitch",
+ 'HYPERFLEX.HXAPHOST': "hyperflex.HxapHost",
+ 'HYPERFLEX.HXAPHOSTINTERFACE': "hyperflex.HxapHostInterface",
+ 'HYPERFLEX.HXAPHOSTVSWITCH': "hyperflex.HxapHostVswitch",
+ 'HYPERFLEX.HXAPNETWORK': "hyperflex.HxapNetwork",
+ 'HYPERFLEX.HXAPVIRTUALDISK': "hyperflex.HxapVirtualDisk",
+ 'HYPERFLEX.HXAPVIRTUALMACHINE': "hyperflex.HxapVirtualMachine",
+ 'HYPERFLEX.HXAPVIRTUALMACHINENETWORKINTERFACE': "hyperflex.HxapVirtualMachineNetworkInterface",
+ 'HYPERFLEX.HXDPVERSION': "hyperflex.HxdpVersion",
+ 'HYPERFLEX.LICENSE': "hyperflex.License",
+ 'HYPERFLEX.LOCALCREDENTIALPOLICY': "hyperflex.LocalCredentialPolicy",
+ 'HYPERFLEX.NODE': "hyperflex.Node",
+ 'HYPERFLEX.NODECONFIGPOLICY': "hyperflex.NodeConfigPolicy",
+ 'HYPERFLEX.NODEPROFILE': "hyperflex.NodeProfile",
+ 'HYPERFLEX.PROXYSETTINGPOLICY': "hyperflex.ProxySettingPolicy",
+ 'HYPERFLEX.SERVERFIRMWAREVERSION': "hyperflex.ServerFirmwareVersion",
+ 'HYPERFLEX.SERVERFIRMWAREVERSIONENTRY': "hyperflex.ServerFirmwareVersionEntry",
+ 'HYPERFLEX.SERVERMODEL': "hyperflex.ServerModel",
+ 'HYPERFLEX.SOFTWAREDISTRIBUTIONCOMPONENT': "hyperflex.SoftwareDistributionComponent",
+ 'HYPERFLEX.SOFTWAREDISTRIBUTIONENTRY': "hyperflex.SoftwareDistributionEntry",
+ 'HYPERFLEX.SOFTWAREDISTRIBUTIONVERSION': "hyperflex.SoftwareDistributionVersion",
+ 'HYPERFLEX.SOFTWAREVERSIONPOLICY': "hyperflex.SoftwareVersionPolicy",
+ 'HYPERFLEX.STORAGECONTAINER': "hyperflex.StorageContainer",
+ 'HYPERFLEX.SYSCONFIGPOLICY': "hyperflex.SysConfigPolicy",
+ 'HYPERFLEX.UCSMCONFIGPOLICY': "hyperflex.UcsmConfigPolicy",
+ 'HYPERFLEX.VCENTERCONFIGPOLICY': "hyperflex.VcenterConfigPolicy",
+ 'HYPERFLEX.VMBACKUPINFO': "hyperflex.VmBackupInfo",
+ 'HYPERFLEX.VMIMPORTOPERATION': "hyperflex.VmImportOperation",
+ 'HYPERFLEX.VMRESTOREOPERATION': "hyperflex.VmRestoreOperation",
+ 'HYPERFLEX.VMSNAPSHOTINFO': "hyperflex.VmSnapshotInfo",
+ 'HYPERFLEX.VOLUME': "hyperflex.Volume",
+ 'HYPERFLEX.WITNESSCONFIGURATION': "hyperflex.WitnessConfiguration",
+ 'IAAS.CONNECTORPACK': "iaas.ConnectorPack",
+ 'IAAS.DEVICESTATUS': "iaas.DeviceStatus",
+ 'IAAS.DIAGNOSTICMESSAGES': "iaas.DiagnosticMessages",
+ 'IAAS.LICENSEINFO': "iaas.LicenseInfo",
+ 'IAAS.MOSTRUNTASKS': "iaas.MostRunTasks",
+ 'IAAS.SERVICEREQUEST': "iaas.ServiceRequest",
+ 'IAAS.UCSDINFO': "iaas.UcsdInfo",
+ 'IAAS.UCSDMANAGEDINFRA': "iaas.UcsdManagedInfra",
+ 'IAAS.UCSDMESSAGES': "iaas.UcsdMessages",
+ 'IAM.ACCOUNT': "iam.Account",
+ 'IAM.ACCOUNTEXPERIENCE': "iam.AccountExperience",
+ 'IAM.APIKEY': "iam.ApiKey",
+ 'IAM.APPREGISTRATION': "iam.AppRegistration",
+ 'IAM.BANNERMESSAGE': "iam.BannerMessage",
+ 'IAM.CERTIFICATE': "iam.Certificate",
+ 'IAM.CERTIFICATEREQUEST': "iam.CertificateRequest",
+ 'IAM.DOMAINGROUP': "iam.DomainGroup",
+ 'IAM.ENDPOINTPRIVILEGE': "iam.EndPointPrivilege",
+ 'IAM.ENDPOINTROLE': "iam.EndPointRole",
+ 'IAM.ENDPOINTUSER': "iam.EndPointUser",
+ 'IAM.ENDPOINTUSERPOLICY': "iam.EndPointUserPolicy",
+ 'IAM.ENDPOINTUSERROLE': "iam.EndPointUserRole",
+ 'IAM.IDP': "iam.Idp",
+ 'IAM.IDPREFERENCE': "iam.IdpReference",
+ 'IAM.IPACCESSMANAGEMENT': "iam.IpAccessManagement",
+ 'IAM.IPADDRESS': "iam.IpAddress",
+ 'IAM.LDAPGROUP': "iam.LdapGroup",
+ 'IAM.LDAPPOLICY': "iam.LdapPolicy",
+ 'IAM.LDAPPROVIDER': "iam.LdapProvider",
+ 'IAM.LOCALUSERPASSWORD': "iam.LocalUserPassword",
+ 'IAM.LOCALUSERPASSWORDPOLICY': "iam.LocalUserPasswordPolicy",
+ 'IAM.OAUTHTOKEN': "iam.OAuthToken",
+ 'IAM.PERMISSION': "iam.Permission",
+ 'IAM.PRIVATEKEYSPEC': "iam.PrivateKeySpec",
+ 'IAM.PRIVILEGE': "iam.Privilege",
+ 'IAM.PRIVILEGESET': "iam.PrivilegeSet",
+ 'IAM.QUALIFIER': "iam.Qualifier",
+ 'IAM.RESOURCELIMITS': "iam.ResourceLimits",
+ 'IAM.RESOURCEPERMISSION': "iam.ResourcePermission",
+ 'IAM.RESOURCEROLES': "iam.ResourceRoles",
+ 'IAM.ROLE': "iam.Role",
+ 'IAM.SECURITYHOLDER': "iam.SecurityHolder",
+ 'IAM.SERVICEPROVIDER': "iam.ServiceProvider",
+ 'IAM.SESSION': "iam.Session",
+ 'IAM.SESSIONLIMITS': "iam.SessionLimits",
+ 'IAM.SYSTEM': "iam.System",
+ 'IAM.TRUSTPOINT': "iam.TrustPoint",
+ 'IAM.USER': "iam.User",
+ 'IAM.USERGROUP': "iam.UserGroup",
+ 'IAM.USERPREFERENCE': "iam.UserPreference",
+ 'INVENTORY.DEVICEINFO': "inventory.DeviceInfo",
+ 'INVENTORY.DNMOBINDING': "inventory.DnMoBinding",
+ 'INVENTORY.GENERICINVENTORY': "inventory.GenericInventory",
+ 'INVENTORY.GENERICINVENTORYHOLDER': "inventory.GenericInventoryHolder",
+ 'INVENTORY.REQUEST': "inventory.Request",
+ 'IPMIOVERLAN.POLICY': "ipmioverlan.Policy",
+ 'IPPOOL.BLOCKLEASE': "ippool.BlockLease",
+ 'IPPOOL.IPLEASE': "ippool.IpLease",
+ 'IPPOOL.POOL': "ippool.Pool",
+ 'IPPOOL.POOLMEMBER': "ippool.PoolMember",
+ 'IPPOOL.SHADOWBLOCK': "ippool.ShadowBlock",
+ 'IPPOOL.SHADOWPOOL': "ippool.ShadowPool",
+ 'IPPOOL.UNIVERSE': "ippool.Universe",
+ 'IQNPOOL.BLOCK': "iqnpool.Block",
+ 'IQNPOOL.LEASE': "iqnpool.Lease",
+ 'IQNPOOL.POOL': "iqnpool.Pool",
+ 'IQNPOOL.POOLMEMBER': "iqnpool.PoolMember",
+ 'IQNPOOL.UNIVERSE': "iqnpool.Universe",
+ 'IWOTENANT.TENANTSTATUS': "iwotenant.TenantStatus",
+ 'KUBERNETES.ACICNIAPIC': "kubernetes.AciCniApic",
+ 'KUBERNETES.ACICNIPROFILE': "kubernetes.AciCniProfile",
+ 'KUBERNETES.ACICNITENANTCLUSTERALLOCATION': "kubernetes.AciCniTenantClusterAllocation",
+ 'KUBERNETES.ADDONDEFINITION': "kubernetes.AddonDefinition",
+ 'KUBERNETES.ADDONPOLICY': "kubernetes.AddonPolicy",
+ 'KUBERNETES.ADDONREPOSITORY': "kubernetes.AddonRepository",
+ 'KUBERNETES.BAREMETALNODEPROFILE': "kubernetes.BaremetalNodeProfile",
+ 'KUBERNETES.CATALOG': "kubernetes.Catalog",
+ 'KUBERNETES.CLUSTER': "kubernetes.Cluster",
+ 'KUBERNETES.CLUSTERADDONPROFILE': "kubernetes.ClusterAddonProfile",
+ 'KUBERNETES.CLUSTERPROFILE': "kubernetes.ClusterProfile",
+ 'KUBERNETES.CONFIGRESULT': "kubernetes.ConfigResult",
+ 'KUBERNETES.CONFIGRESULTENTRY': "kubernetes.ConfigResultEntry",
+ 'KUBERNETES.CONTAINERRUNTIMEPOLICY': "kubernetes.ContainerRuntimePolicy",
+ 'KUBERNETES.DAEMONSET': "kubernetes.DaemonSet",
+ 'KUBERNETES.DEPLOYMENT': "kubernetes.Deployment",
+ 'KUBERNETES.INGRESS': "kubernetes.Ingress",
+ 'KUBERNETES.NETWORKPOLICY': "kubernetes.NetworkPolicy",
+ 'KUBERNETES.NODE': "kubernetes.Node",
+ 'KUBERNETES.NODEGROUPPROFILE': "kubernetes.NodeGroupProfile",
+ 'KUBERNETES.POD': "kubernetes.Pod",
+ 'KUBERNETES.SERVICE': "kubernetes.Service",
+ 'KUBERNETES.STATEFULSET': "kubernetes.StatefulSet",
+ 'KUBERNETES.SYSCONFIGPOLICY': "kubernetes.SysConfigPolicy",
+ 'KUBERNETES.TRUSTEDREGISTRIESPOLICY': "kubernetes.TrustedRegistriesPolicy",
+ 'KUBERNETES.VERSION': "kubernetes.Version",
+ 'KUBERNETES.VERSIONPOLICY': "kubernetes.VersionPolicy",
+ 'KUBERNETES.VIRTUALMACHINEINFRACONFIGPOLICY': "kubernetes.VirtualMachineInfraConfigPolicy",
+ 'KUBERNETES.VIRTUALMACHINEINFRASTRUCTUREPROVIDER': "kubernetes.VirtualMachineInfrastructureProvider",
+ 'KUBERNETES.VIRTUALMACHINEINSTANCETYPE': "kubernetes.VirtualMachineInstanceType",
+ 'KUBERNETES.VIRTUALMACHINENODEPROFILE': "kubernetes.VirtualMachineNodeProfile",
+ 'KVM.POLICY': "kvm.Policy",
+ 'KVM.SESSION': "kvm.Session",
+ 'KVM.TUNNEL': "kvm.Tunnel",
+ 'KVM.VMCONSOLE': "kvm.VmConsole",
+ 'LICENSE.ACCOUNTLICENSEDATA': "license.AccountLicenseData",
+ 'LICENSE.CUSTOMEROP': "license.CustomerOp",
+ 'LICENSE.IWOCUSTOMEROP': "license.IwoCustomerOp",
+ 'LICENSE.IWOLICENSECOUNT': "license.IwoLicenseCount",
+ 'LICENSE.LICENSEINFO': "license.LicenseInfo",
+ 'LICENSE.LICENSERESERVATIONOP': "license.LicenseReservationOp",
+ 'LICENSE.SMARTLICENSETOKEN': "license.SmartlicenseToken",
+ 'LS.SERVICEPROFILE': "ls.ServiceProfile",
+ 'MACPOOL.IDBLOCK': "macpool.IdBlock",
+ 'MACPOOL.LEASE': "macpool.Lease",
+ 'MACPOOL.POOL': "macpool.Pool",
+ 'MACPOOL.POOLMEMBER': "macpool.PoolMember",
+ 'MACPOOL.UNIVERSE': "macpool.Universe",
+ 'MANAGEMENT.CONTROLLER': "management.Controller",
+ 'MANAGEMENT.ENTITY': "management.Entity",
+ 'MANAGEMENT.INTERFACE': "management.Interface",
+ 'MEMORY.ARRAY': "memory.Array",
+ 'MEMORY.PERSISTENTMEMORYCONFIGRESULT': "memory.PersistentMemoryConfigResult",
+ 'MEMORY.PERSISTENTMEMORYCONFIGURATION': "memory.PersistentMemoryConfiguration",
+ 'MEMORY.PERSISTENTMEMORYNAMESPACE': "memory.PersistentMemoryNamespace",
+ 'MEMORY.PERSISTENTMEMORYNAMESPACECONFIGRESULT': "memory.PersistentMemoryNamespaceConfigResult",
+ 'MEMORY.PERSISTENTMEMORYPOLICY': "memory.PersistentMemoryPolicy",
+ 'MEMORY.PERSISTENTMEMORYREGION': "memory.PersistentMemoryRegion",
+ 'MEMORY.PERSISTENTMEMORYUNIT': "memory.PersistentMemoryUnit",
+ 'MEMORY.UNIT': "memory.Unit",
+ 'META.DEFINITION': "meta.Definition",
+ 'NETWORK.ELEMENT': "network.Element",
+ 'NETWORK.ELEMENTSUMMARY': "network.ElementSummary",
+ 'NETWORK.FCZONEINFO': "network.FcZoneInfo",
+ 'NETWORK.VLANPORTINFO': "network.VlanPortInfo",
+ 'NETWORKCONFIG.POLICY': "networkconfig.Policy",
+ 'NIAAPI.APICCCOPOST': "niaapi.ApicCcoPost",
+ 'NIAAPI.APICFIELDNOTICE': "niaapi.ApicFieldNotice",
+ 'NIAAPI.APICHWEOL': "niaapi.ApicHweol",
+ 'NIAAPI.APICLATESTMAINTAINEDRELEASE': "niaapi.ApicLatestMaintainedRelease",
+ 'NIAAPI.APICRELEASERECOMMEND': "niaapi.ApicReleaseRecommend",
+ 'NIAAPI.APICSWEOL': "niaapi.ApicSweol",
+ 'NIAAPI.DCNMCCOPOST': "niaapi.DcnmCcoPost",
+ 'NIAAPI.DCNMFIELDNOTICE': "niaapi.DcnmFieldNotice",
+ 'NIAAPI.DCNMHWEOL': "niaapi.DcnmHweol",
+ 'NIAAPI.DCNMLATESTMAINTAINEDRELEASE': "niaapi.DcnmLatestMaintainedRelease",
+ 'NIAAPI.DCNMRELEASERECOMMEND': "niaapi.DcnmReleaseRecommend",
+ 'NIAAPI.DCNMSWEOL': "niaapi.DcnmSweol",
+ 'NIAAPI.FILEDOWNLOADER': "niaapi.FileDownloader",
+ 'NIAAPI.NIAMETADATA': "niaapi.NiaMetadata",
+ 'NIAAPI.NIBFILEDOWNLOADER': "niaapi.NibFileDownloader",
+ 'NIAAPI.NIBMETADATA': "niaapi.NibMetadata",
+ 'NIAAPI.VERSIONREGEX': "niaapi.VersionRegex",
+ 'NIATELEMETRY.AAALDAPPROVIDERDETAILS': "niatelemetry.AaaLdapProviderDetails",
+ 'NIATELEMETRY.AAARADIUSPROVIDERDETAILS': "niatelemetry.AaaRadiusProviderDetails",
+ 'NIATELEMETRY.AAATACACSPROVIDERDETAILS': "niatelemetry.AaaTacacsProviderDetails",
+ 'NIATELEMETRY.APICCOREFILEDETAILS': "niatelemetry.ApicCoreFileDetails",
+ 'NIATELEMETRY.APICDBGEXPRSEXPORTDEST': "niatelemetry.ApicDbgexpRsExportDest",
+ 'NIATELEMETRY.APICDBGEXPRSTSSCHEDULER': "niatelemetry.ApicDbgexpRsTsScheduler",
+ 'NIATELEMETRY.APICFANDETAILS': "niatelemetry.ApicFanDetails",
+ 'NIATELEMETRY.APICFEXDETAILS': "niatelemetry.ApicFexDetails",
+ 'NIATELEMETRY.APICFLASHDETAILS': "niatelemetry.ApicFlashDetails",
+ 'NIATELEMETRY.APICNTPAUTH': "niatelemetry.ApicNtpAuth",
+ 'NIATELEMETRY.APICPSUDETAILS': "niatelemetry.ApicPsuDetails",
+ 'NIATELEMETRY.APICREALMDETAILS': "niatelemetry.ApicRealmDetails",
+ 'NIATELEMETRY.APICSNMPCOMMUNITYACCESSDETAILS': "niatelemetry.ApicSnmpCommunityAccessDetails",
+ 'NIATELEMETRY.APICSNMPCOMMUNITYDETAILS': "niatelemetry.ApicSnmpCommunityDetails",
+ 'NIATELEMETRY.APICSNMPTRAPDETAILS': "niatelemetry.ApicSnmpTrapDetails",
+ 'NIATELEMETRY.APICSNMPVERSIONTHREEDETAILS': "niatelemetry.ApicSnmpVersionThreeDetails",
+ 'NIATELEMETRY.APICSYSLOGGRP': "niatelemetry.ApicSysLogGrp",
+ 'NIATELEMETRY.APICSYSLOGSRC': "niatelemetry.ApicSysLogSrc",
+ 'NIATELEMETRY.APICTRANSCEIVERDETAILS': "niatelemetry.ApicTransceiverDetails",
+ 'NIATELEMETRY.APICUIPAGECOUNTS': "niatelemetry.ApicUiPageCounts",
+ 'NIATELEMETRY.APPDETAILS': "niatelemetry.AppDetails",
+ 'NIATELEMETRY.DCNMFANDETAILS': "niatelemetry.DcnmFanDetails",
+ 'NIATELEMETRY.DCNMFEXDETAILS': "niatelemetry.DcnmFexDetails",
+ 'NIATELEMETRY.DCNMMODULEDETAILS': "niatelemetry.DcnmModuleDetails",
+ 'NIATELEMETRY.DCNMPSUDETAILS': "niatelemetry.DcnmPsuDetails",
+ 'NIATELEMETRY.DCNMTRANSCEIVERDETAILS': "niatelemetry.DcnmTransceiverDetails",
+ 'NIATELEMETRY.EPG': "niatelemetry.Epg",
+ 'NIATELEMETRY.FABRICMODULEDETAILS': "niatelemetry.FabricModuleDetails",
+ 'NIATELEMETRY.FAULT': "niatelemetry.Fault",
+ 'NIATELEMETRY.HTTPSACLCONTRACTDETAILS': "niatelemetry.HttpsAclContractDetails",
+ 'NIATELEMETRY.HTTPSACLCONTRACTFILTERMAP': "niatelemetry.HttpsAclContractFilterMap",
+ 'NIATELEMETRY.HTTPSACLEPGCONTRACTMAP': "niatelemetry.HttpsAclEpgContractMap",
+ 'NIATELEMETRY.HTTPSACLEPGDETAILS': "niatelemetry.HttpsAclEpgDetails",
+ 'NIATELEMETRY.HTTPSACLFILTERDETAILS': "niatelemetry.HttpsAclFilterDetails",
+ 'NIATELEMETRY.LC': "niatelemetry.Lc",
+ 'NIATELEMETRY.MSOCONTRACTDETAILS': "niatelemetry.MsoContractDetails",
+ 'NIATELEMETRY.MSOEPGDETAILS': "niatelemetry.MsoEpgDetails",
+ 'NIATELEMETRY.MSOSCHEMADETAILS': "niatelemetry.MsoSchemaDetails",
+ 'NIATELEMETRY.MSOSITEDETAILS': "niatelemetry.MsoSiteDetails",
+ 'NIATELEMETRY.MSOTENANTDETAILS': "niatelemetry.MsoTenantDetails",
+ 'NIATELEMETRY.NEXUSDASHBOARDCONTROLLERDETAILS': "niatelemetry.NexusDashboardControllerDetails",
+ 'NIATELEMETRY.NEXUSDASHBOARDDETAILS': "niatelemetry.NexusDashboardDetails",
+ 'NIATELEMETRY.NEXUSDASHBOARDMEMORYDETAILS': "niatelemetry.NexusDashboardMemoryDetails",
+ 'NIATELEMETRY.NEXUSDASHBOARDS': "niatelemetry.NexusDashboards",
+ 'NIATELEMETRY.NIAFEATUREUSAGE': "niatelemetry.NiaFeatureUsage",
+ 'NIATELEMETRY.NIAINVENTORY': "niatelemetry.NiaInventory",
+ 'NIATELEMETRY.NIAINVENTORYDCNM': "niatelemetry.NiaInventoryDcnm",
+ 'NIATELEMETRY.NIAINVENTORYFABRIC': "niatelemetry.NiaInventoryFabric",
+ 'NIATELEMETRY.NIALICENSESTATE': "niatelemetry.NiaLicenseState",
+ 'NIATELEMETRY.PASSWORDSTRENGTHCHECK': "niatelemetry.PasswordStrengthCheck",
+ 'NIATELEMETRY.SITEINVENTORY': "niatelemetry.SiteInventory",
+ 'NIATELEMETRY.SSHVERSIONTWO': "niatelemetry.SshVersionTwo",
+ 'NIATELEMETRY.SUPERVISORMODULEDETAILS': "niatelemetry.SupervisorModuleDetails",
+ 'NIATELEMETRY.SYSTEMCONTROLLERDETAILS': "niatelemetry.SystemControllerDetails",
+ 'NIATELEMETRY.TENANT': "niatelemetry.Tenant",
+ 'NOTIFICATION.ACCOUNTSUBSCRIPTION': "notification.AccountSubscription",
+ 'NTP.POLICY': "ntp.Policy",
+ 'OPRS.DEPLOYMENT': "oprs.Deployment",
+ 'OPRS.SYNCTARGETLISTMESSAGE': "oprs.SyncTargetListMessage",
+ 'ORGANIZATION.ORGANIZATION': "organization.Organization",
+ 'OS.BULKINSTALLINFO': "os.BulkInstallInfo",
+ 'OS.CATALOG': "os.Catalog",
+ 'OS.CONFIGURATIONFILE': "os.ConfigurationFile",
+ 'OS.DISTRIBUTION': "os.Distribution",
+ 'OS.INSTALL': "os.Install",
+ 'OS.OSSUPPORT': "os.OsSupport",
+ 'OS.SUPPORTEDVERSION': "os.SupportedVersion",
+ 'OS.TEMPLATEFILE': "os.TemplateFile",
+ 'OS.VALIDINSTALLTARGET': "os.ValidInstallTarget",
+ 'PCI.COPROCESSORCARD': "pci.CoprocessorCard",
+ 'PCI.DEVICE': "pci.Device",
+ 'PCI.LINK': "pci.Link",
+ 'PCI.SWITCH': "pci.Switch",
+ 'PORT.GROUP': "port.Group",
+ 'PORT.MACBINDING': "port.MacBinding",
+ 'PORT.SUBGROUP': "port.SubGroup",
+ 'POWER.CONTROLSTATE': "power.ControlState",
+ 'POWER.POLICY': "power.Policy",
+ 'PROCESSOR.UNIT': "processor.Unit",
+ 'RECOMMENDATION.CAPACITYRUNWAY': "recommendation.CapacityRunway",
+ 'RECOMMENDATION.PHYSICALITEM': "recommendation.PhysicalItem",
+ 'RECOVERY.BACKUPCONFIGPOLICY': "recovery.BackupConfigPolicy",
+ 'RECOVERY.BACKUPPROFILE': "recovery.BackupProfile",
+ 'RECOVERY.CONFIGRESULT': "recovery.ConfigResult",
+ 'RECOVERY.CONFIGRESULTENTRY': "recovery.ConfigResultEntry",
+ 'RECOVERY.ONDEMANDBACKUP': "recovery.OnDemandBackup",
+ 'RECOVERY.RESTORE': "recovery.Restore",
+ 'RECOVERY.SCHEDULECONFIGPOLICY': "recovery.ScheduleConfigPolicy",
+ 'RESOURCE.GROUP': "resource.Group",
+ 'RESOURCE.GROUPMEMBER': "resource.GroupMember",
+ 'RESOURCE.LICENSERESOURCECOUNT': "resource.LicenseResourceCount",
+ 'RESOURCE.MEMBERSHIP': "resource.Membership",
+ 'RESOURCE.MEMBERSHIPHOLDER': "resource.MembershipHolder",
+ 'RESOURCEPOOL.LEASE': "resourcepool.Lease",
+ 'RESOURCEPOOL.LEASERESOURCE': "resourcepool.LeaseResource",
+ 'RESOURCEPOOL.POOL': "resourcepool.Pool",
+ 'RESOURCEPOOL.POOLMEMBER': "resourcepool.PoolMember",
+ 'RESOURCEPOOL.UNIVERSE': "resourcepool.Universe",
+ 'RPROXY.REVERSEPROXY': "rproxy.ReverseProxy",
+ 'SDCARD.POLICY': "sdcard.Policy",
+ 'SDWAN.PROFILE': "sdwan.Profile",
+ 'SDWAN.ROUTERNODE': "sdwan.RouterNode",
+ 'SDWAN.ROUTERPOLICY': "sdwan.RouterPolicy",
+ 'SDWAN.VMANAGEACCOUNTPOLICY': "sdwan.VmanageAccountPolicy",
+ 'SEARCH.SEARCHITEM': "search.SearchItem",
+ 'SEARCH.TAGITEM': "search.TagItem",
+ 'SECURITY.UNIT': "security.Unit",
+ 'SERVER.CONFIGCHANGEDETAIL': "server.ConfigChangeDetail",
+ 'SERVER.CONFIGIMPORT': "server.ConfigImport",
+ 'SERVER.CONFIGRESULT': "server.ConfigResult",
+ 'SERVER.CONFIGRESULTENTRY': "server.ConfigResultEntry",
+ 'SERVER.PROFILE': "server.Profile",
+ 'SERVER.PROFILETEMPLATE': "server.ProfileTemplate",
+ 'SMTP.POLICY': "smtp.Policy",
+ 'SNMP.POLICY': "snmp.Policy",
+ 'SOFTWARE.APPLIANCEDISTRIBUTABLE': "software.ApplianceDistributable",
+ 'SOFTWARE.DOWNLOADHISTORY': "software.DownloadHistory",
+ 'SOFTWARE.HCLMETA': "software.HclMeta",
+ 'SOFTWARE.HYPERFLEXBUNDLEDISTRIBUTABLE': "software.HyperflexBundleDistributable",
+ 'SOFTWARE.HYPERFLEXDISTRIBUTABLE': "software.HyperflexDistributable",
+ 'SOFTWARE.RELEASEMETA': "software.ReleaseMeta",
+ 'SOFTWARE.SOLUTIONDISTRIBUTABLE': "software.SolutionDistributable",
+ 'SOFTWARE.UCSDBUNDLEDISTRIBUTABLE': "software.UcsdBundleDistributable",
+ 'SOFTWARE.UCSDDISTRIBUTABLE': "software.UcsdDistributable",
+ 'SOFTWAREREPOSITORY.AUTHORIZATION': "softwarerepository.Authorization",
+ 'SOFTWAREREPOSITORY.CACHEDIMAGE': "softwarerepository.CachedImage",
+ 'SOFTWAREREPOSITORY.CATALOG': "softwarerepository.Catalog",
+ 'SOFTWAREREPOSITORY.CATEGORYMAPPER': "softwarerepository.CategoryMapper",
+ 'SOFTWAREREPOSITORY.CATEGORYMAPPERMODEL': "softwarerepository.CategoryMapperModel",
+ 'SOFTWAREREPOSITORY.CATEGORYSUPPORTCONSTRAINT': "softwarerepository.CategorySupportConstraint",
+ 'SOFTWAREREPOSITORY.DOWNLOADSPEC': "softwarerepository.DownloadSpec",
+ 'SOFTWAREREPOSITORY.OPERATINGSYSTEMFILE': "softwarerepository.OperatingSystemFile",
+ 'SOFTWAREREPOSITORY.RELEASE': "softwarerepository.Release",
+ 'SOL.POLICY': "sol.Policy",
+ 'SSH.POLICY': "ssh.Policy",
+ 'STORAGE.CONTROLLER': "storage.Controller",
+ 'STORAGE.DISKGROUP': "storage.DiskGroup",
+ 'STORAGE.DISKSLOT': "storage.DiskSlot",
+ 'STORAGE.DRIVEGROUP': "storage.DriveGroup",
+ 'STORAGE.ENCLOSURE': "storage.Enclosure",
+ 'STORAGE.ENCLOSUREDISK': "storage.EnclosureDisk",
+ 'STORAGE.ENCLOSUREDISKSLOTEP': "storage.EnclosureDiskSlotEp",
+ 'STORAGE.FLEXFLASHCONTROLLER': "storage.FlexFlashController",
+ 'STORAGE.FLEXFLASHCONTROLLERPROPS': "storage.FlexFlashControllerProps",
+ 'STORAGE.FLEXFLASHPHYSICALDRIVE': "storage.FlexFlashPhysicalDrive",
+ 'STORAGE.FLEXFLASHVIRTUALDRIVE': "storage.FlexFlashVirtualDrive",
+ 'STORAGE.FLEXUTILCONTROLLER': "storage.FlexUtilController",
+ 'STORAGE.FLEXUTILPHYSICALDRIVE': "storage.FlexUtilPhysicalDrive",
+ 'STORAGE.FLEXUTILVIRTUALDRIVE': "storage.FlexUtilVirtualDrive",
+ 'STORAGE.HITACHIARRAY': "storage.HitachiArray",
+ 'STORAGE.HITACHICONTROLLER': "storage.HitachiController",
+ 'STORAGE.HITACHIDISK': "storage.HitachiDisk",
+ 'STORAGE.HITACHIHOST': "storage.HitachiHost",
+ 'STORAGE.HITACHIHOSTLUN': "storage.HitachiHostLun",
+ 'STORAGE.HITACHIPARITYGROUP': "storage.HitachiParityGroup",
+ 'STORAGE.HITACHIPOOL': "storage.HitachiPool",
+ 'STORAGE.HITACHIPORT': "storage.HitachiPort",
+ 'STORAGE.HITACHIVOLUME': "storage.HitachiVolume",
+ 'STORAGE.HYPERFLEXSTORAGECONTAINER': "storage.HyperFlexStorageContainer",
+ 'STORAGE.HYPERFLEXVOLUME': "storage.HyperFlexVolume",
+ 'STORAGE.ITEM': "storage.Item",
+ 'STORAGE.NETAPPAGGREGATE': "storage.NetAppAggregate",
+ 'STORAGE.NETAPPBASEDISK': "storage.NetAppBaseDisk",
+ 'STORAGE.NETAPPCLUSTER': "storage.NetAppCluster",
+ 'STORAGE.NETAPPETHERNETPORT': "storage.NetAppEthernetPort",
+ 'STORAGE.NETAPPEXPORTPOLICY': "storage.NetAppExportPolicy",
+ 'STORAGE.NETAPPFCINTERFACE': "storage.NetAppFcInterface",
+ 'STORAGE.NETAPPFCPORT': "storage.NetAppFcPort",
+ 'STORAGE.NETAPPINITIATORGROUP': "storage.NetAppInitiatorGroup",
+ 'STORAGE.NETAPPIPINTERFACE': "storage.NetAppIpInterface",
+ 'STORAGE.NETAPPLICENSE': "storage.NetAppLicense",
+ 'STORAGE.NETAPPLUN': "storage.NetAppLun",
+ 'STORAGE.NETAPPLUNMAP': "storage.NetAppLunMap",
+ 'STORAGE.NETAPPNODE': "storage.NetAppNode",
+ 'STORAGE.NETAPPSTORAGEVM': "storage.NetAppStorageVm",
+ 'STORAGE.NETAPPVOLUME': "storage.NetAppVolume",
+ 'STORAGE.NETAPPVOLUMESNAPSHOT': "storage.NetAppVolumeSnapshot",
+ 'STORAGE.PHYSICALDISK': "storage.PhysicalDisk",
+ 'STORAGE.PHYSICALDISKEXTENSION': "storage.PhysicalDiskExtension",
+ 'STORAGE.PHYSICALDISKUSAGE': "storage.PhysicalDiskUsage",
+ 'STORAGE.PUREARRAY': "storage.PureArray",
+ 'STORAGE.PURECONTROLLER': "storage.PureController",
+ 'STORAGE.PUREDISK': "storage.PureDisk",
+ 'STORAGE.PUREHOST': "storage.PureHost",
+ 'STORAGE.PUREHOSTGROUP': "storage.PureHostGroup",
+ 'STORAGE.PUREHOSTLUN': "storage.PureHostLun",
+ 'STORAGE.PUREPORT': "storage.PurePort",
+ 'STORAGE.PUREPROTECTIONGROUP': "storage.PureProtectionGroup",
+ 'STORAGE.PUREPROTECTIONGROUPSNAPSHOT': "storage.PureProtectionGroupSnapshot",
+ 'STORAGE.PUREREPLICATIONSCHEDULE': "storage.PureReplicationSchedule",
+ 'STORAGE.PURESNAPSHOTSCHEDULE': "storage.PureSnapshotSchedule",
+ 'STORAGE.PUREVOLUME': "storage.PureVolume",
+ 'STORAGE.PUREVOLUMESNAPSHOT': "storage.PureVolumeSnapshot",
+ 'STORAGE.SASEXPANDER': "storage.SasExpander",
+ 'STORAGE.SASPORT': "storage.SasPort",
+ 'STORAGE.SPAN': "storage.Span",
+ 'STORAGE.STORAGEPOLICY': "storage.StoragePolicy",
+ 'STORAGE.VDMEMBEREP': "storage.VdMemberEp",
+ 'STORAGE.VIRTUALDRIVE': "storage.VirtualDrive",
+ 'STORAGE.VIRTUALDRIVECONTAINER': "storage.VirtualDriveContainer",
+ 'STORAGE.VIRTUALDRIVEEXTENSION': "storage.VirtualDriveExtension",
+ 'STORAGE.VIRTUALDRIVEIDENTITY': "storage.VirtualDriveIdentity",
+ 'SYSLOG.POLICY': "syslog.Policy",
+ 'TAM.ADVISORYCOUNT': "tam.AdvisoryCount",
+ 'TAM.ADVISORYDEFINITION': "tam.AdvisoryDefinition",
+ 'TAM.ADVISORYINFO': "tam.AdvisoryInfo",
+ 'TAM.ADVISORYINSTANCE': "tam.AdvisoryInstance",
+ 'TAM.SECURITYADVISORY': "tam.SecurityAdvisory",
+ 'TASK.HITACHISCOPEDINVENTORY': "task.HitachiScopedInventory",
+ 'TASK.HXAPSCOPEDINVENTORY': "task.HxapScopedInventory",
+ 'TASK.NETAPPSCOPEDINVENTORY': "task.NetAppScopedInventory",
+ 'TASK.PUBLICCLOUDSCOPEDINVENTORY': "task.PublicCloudScopedInventory",
+ 'TASK.PURESCOPEDINVENTORY': "task.PureScopedInventory",
+ 'TASK.SERVERSCOPEDINVENTORY': "task.ServerScopedInventory",
+ 'TECHSUPPORTMANAGEMENT.COLLECTIONCONTROLPOLICY': "techsupportmanagement.CollectionControlPolicy",
+ 'TECHSUPPORTMANAGEMENT.DOWNLOAD': "techsupportmanagement.Download",
+ 'TECHSUPPORTMANAGEMENT.TECHSUPPORTBUNDLE': "techsupportmanagement.TechSupportBundle",
+ 'TECHSUPPORTMANAGEMENT.TECHSUPPORTSTATUS': "techsupportmanagement.TechSupportStatus",
+ 'TERMINAL.AUDITLOG': "terminal.AuditLog",
+ 'THERMAL.POLICY': "thermal.Policy",
+ 'TOP.SYSTEM': "top.System",
+ 'UCSD.BACKUPINFO': "ucsd.BackupInfo",
+ 'UUIDPOOL.BLOCK': "uuidpool.Block",
+ 'UUIDPOOL.POOL': "uuidpool.Pool",
+ 'UUIDPOOL.POOLMEMBER': "uuidpool.PoolMember",
+ 'UUIDPOOL.UNIVERSE': "uuidpool.Universe",
+ 'UUIDPOOL.UUIDLEASE': "uuidpool.UuidLease",
+ 'VIRTUALIZATION.HOST': "virtualization.Host",
+ 'VIRTUALIZATION.VIRTUALDISK': "virtualization.VirtualDisk",
+ 'VIRTUALIZATION.VIRTUALMACHINE': "virtualization.VirtualMachine",
+ 'VIRTUALIZATION.VMWARECLUSTER': "virtualization.VmwareCluster",
+ 'VIRTUALIZATION.VMWAREDATACENTER': "virtualization.VmwareDatacenter",
+ 'VIRTUALIZATION.VMWAREDATASTORE': "virtualization.VmwareDatastore",
+ 'VIRTUALIZATION.VMWAREDATASTORECLUSTER': "virtualization.VmwareDatastoreCluster",
+ 'VIRTUALIZATION.VMWAREDISTRIBUTEDNETWORK': "virtualization.VmwareDistributedNetwork",
+ 'VIRTUALIZATION.VMWAREDISTRIBUTEDSWITCH': "virtualization.VmwareDistributedSwitch",
+ 'VIRTUALIZATION.VMWAREFOLDER': "virtualization.VmwareFolder",
+ 'VIRTUALIZATION.VMWAREHOST': "virtualization.VmwareHost",
+ 'VIRTUALIZATION.VMWAREKERNELNETWORK': "virtualization.VmwareKernelNetwork",
+ 'VIRTUALIZATION.VMWARENETWORK': "virtualization.VmwareNetwork",
+ 'VIRTUALIZATION.VMWAREPHYSICALNETWORKINTERFACE': "virtualization.VmwarePhysicalNetworkInterface",
+ 'VIRTUALIZATION.VMWAREUPLINKPORT': "virtualization.VmwareUplinkPort",
+ 'VIRTUALIZATION.VMWAREVCENTER': "virtualization.VmwareVcenter",
+ 'VIRTUALIZATION.VMWAREVIRTUALDISK': "virtualization.VmwareVirtualDisk",
+ 'VIRTUALIZATION.VMWAREVIRTUALMACHINE': "virtualization.VmwareVirtualMachine",
+ 'VIRTUALIZATION.VMWAREVIRTUALMACHINESNAPSHOT': "virtualization.VmwareVirtualMachineSnapshot",
+ 'VIRTUALIZATION.VMWAREVIRTUALNETWORKINTERFACE': "virtualization.VmwareVirtualNetworkInterface",
+ 'VIRTUALIZATION.VMWAREVIRTUALSWITCH': "virtualization.VmwareVirtualSwitch",
+ 'VMEDIA.POLICY': "vmedia.Policy",
+ 'VMRC.CONSOLE': "vmrc.Console",
+ 'VNIC.ETHADAPTERPOLICY': "vnic.EthAdapterPolicy",
+ 'VNIC.ETHIF': "vnic.EthIf",
+ 'VNIC.ETHNETWORKPOLICY': "vnic.EthNetworkPolicy",
+ 'VNIC.ETHQOSPOLICY': "vnic.EthQosPolicy",
+ 'VNIC.FCADAPTERPOLICY': "vnic.FcAdapterPolicy",
+ 'VNIC.FCIF': "vnic.FcIf",
+ 'VNIC.FCNETWORKPOLICY': "vnic.FcNetworkPolicy",
+ 'VNIC.FCQOSPOLICY': "vnic.FcQosPolicy",
+ 'VNIC.ISCSIADAPTERPOLICY': "vnic.IscsiAdapterPolicy",
+ 'VNIC.ISCSIBOOTPOLICY': "vnic.IscsiBootPolicy",
+ 'VNIC.ISCSISTATICTARGETPOLICY': "vnic.IscsiStaticTargetPolicy",
+ 'VNIC.LANCONNECTIVITYPOLICY': "vnic.LanConnectivityPolicy",
+ 'VNIC.LCPSTATUS': "vnic.LcpStatus",
+ 'VNIC.SANCONNECTIVITYPOLICY': "vnic.SanConnectivityPolicy",
+ 'VNIC.SCPSTATUS': "vnic.ScpStatus",
+ 'VRF.VRF': "vrf.Vrf",
+ 'WORKFLOW.BATCHAPIEXECUTOR': "workflow.BatchApiExecutor",
+ 'WORKFLOW.BUILDTASKMETA': "workflow.BuildTaskMeta",
+ 'WORKFLOW.BUILDTASKMETAOWNER': "workflow.BuildTaskMetaOwner",
+ 'WORKFLOW.CATALOG': "workflow.Catalog",
+ 'WORKFLOW.CUSTOMDATATYPEDEFINITION': "workflow.CustomDataTypeDefinition",
+ 'WORKFLOW.ERRORRESPONSEHANDLER': "workflow.ErrorResponseHandler",
+ 'WORKFLOW.PENDINGDYNAMICWORKFLOWINFO': "workflow.PendingDynamicWorkflowInfo",
+ 'WORKFLOW.ROLLBACKWORKFLOW': "workflow.RollbackWorkflow",
+ 'WORKFLOW.TASKDEBUGLOG': "workflow.TaskDebugLog",
+ 'WORKFLOW.TASKDEFINITION': "workflow.TaskDefinition",
+ 'WORKFLOW.TASKINFO': "workflow.TaskInfo",
+ 'WORKFLOW.TASKMETADATA': "workflow.TaskMetadata",
+ 'WORKFLOW.TASKNOTIFICATION': "workflow.TaskNotification",
+ 'WORKFLOW.TEMPLATEEVALUATION': "workflow.TemplateEvaluation",
+ 'WORKFLOW.TEMPLATEFUNCTIONMETA': "workflow.TemplateFunctionMeta",
+ 'WORKFLOW.WORKFLOWDEFINITION': "workflow.WorkflowDefinition",
+ 'WORKFLOW.WORKFLOWINFO': "workflow.WorkflowInfo",
+ 'WORKFLOW.WORKFLOWMETA': "workflow.WorkflowMeta",
+ 'WORKFLOW.WORKFLOWMETADATA': "workflow.WorkflowMetadata",
+ 'WORKFLOW.WORKFLOWNOTIFICATION': "workflow.WorkflowNotification",
+ },
+ }
+
+ validations = {
+ }
+
+ @cached_property
+ def additional_properties_type():
+ """
+ This must be a method because a model may have properties that are
+ of type self, this must run after the class is loaded
+ """
+ lazy_import()
+ return (bool, date, datetime, dict, float, int, list, str, none_type,) # noqa: E501
+
+ _nullable = False
+
+ @cached_property
+ def openapi_types():
+ """
+ This must be a method because a model may have properties that are
+ of type self, this must run after the class is loaded
+
+ Returns
+ openapi_types (dict): The key is attribute name
+ and the value is attribute type.
+ """
+ lazy_import()
+ return {
+ 'class_id': (str,), # noqa: E501
+ 'moid': (str,), # noqa: E501
+ 'selector': (str,), # noqa: E501
+ 'link': (str,), # noqa: E501
+ 'account_moid': (str,), # noqa: E501
+ 'create_time': (datetime,), # noqa: E501
+ 'domain_group_moid': (str,), # noqa: E501
+ 'mod_time': (datetime,), # noqa: E501
+ 'owners': ([str], none_type,), # noqa: E501
+ 'shared_scope': (str,), # noqa: E501
+ 'tags': ([MoTag], none_type,), # noqa: E501
+ 'version_context': (MoVersionContext,), # noqa: E501
+ 'ancestors': ([MoBaseMoRelationship], none_type,), # noqa: E501
+ 'parent': (MoBaseMoRelationship,), # noqa: E501
+ 'permission_resources': ([MoBaseMoRelationship], none_type,), # noqa: E501
+ 'display_names': (DisplayNames,), # noqa: E501
+ 'device_mo_id': (str,), # noqa: E501
+ 'dn': (str,), # noqa: E501
+ 'rn': (str,), # noqa: E501
+ 'model': (str,), # noqa: E501
+ 'presence': (str,), # noqa: E501
+ 'revision': (str,), # noqa: E501
+ 'serial': (str,), # noqa: E501
+ 'vendor': (str,), # noqa: E501
+ 'previous_fru': (EquipmentFruRelationship,), # noqa: E501
+ 'module_id': (int,), # noqa: E501
+ 'oper_reason': ([str], none_type,), # noqa: E501
+ 'oper_state': (str,), # noqa: E501
+ 'part_number': (str,), # noqa: E501
+ 'equipment_chassis': (EquipmentChassisRelationship,), # noqa: E501
+ 'fan_modules': ([EquipmentFanModuleRelationship], none_type,), # noqa: E501
+ 'registered_device': (AssetDeviceRegistrationRelationship,), # noqa: E501
+ 'object_type': (str,), # noqa: E501
+ }
+
+ @cached_property
+ def discriminator():
+ lazy_import()
+ val = {
+ 'equipment.ExpanderModule': EquipmentExpanderModule,
+ 'mo.MoRef': MoMoRef,
+ }
+ if not val:
+ return None
+ return {'class_id': val}
+
+ attribute_map = {
+ 'class_id': 'ClassId', # noqa: E501
+ 'moid': 'Moid', # noqa: E501
+ 'selector': 'Selector', # noqa: E501
+ 'link': 'link', # noqa: E501
+ 'account_moid': 'AccountMoid', # noqa: E501
+ 'create_time': 'CreateTime', # noqa: E501
+ 'domain_group_moid': 'DomainGroupMoid', # noqa: E501
+ 'mod_time': 'ModTime', # noqa: E501
+ 'owners': 'Owners', # noqa: E501
+ 'shared_scope': 'SharedScope', # noqa: E501
+ 'tags': 'Tags', # noqa: E501
+ 'version_context': 'VersionContext', # noqa: E501
+ 'ancestors': 'Ancestors', # noqa: E501
+ 'parent': 'Parent', # noqa: E501
+ 'permission_resources': 'PermissionResources', # noqa: E501
+ 'display_names': 'DisplayNames', # noqa: E501
+ 'device_mo_id': 'DeviceMoId', # noqa: E501
+ 'dn': 'Dn', # noqa: E501
+ 'rn': 'Rn', # noqa: E501
+ 'model': 'Model', # noqa: E501
+ 'presence': 'Presence', # noqa: E501
+ 'revision': 'Revision', # noqa: E501
+ 'serial': 'Serial', # noqa: E501
+ 'vendor': 'Vendor', # noqa: E501
+ 'previous_fru': 'PreviousFru', # noqa: E501
+ 'module_id': 'ModuleId', # noqa: E501
+ 'oper_reason': 'OperReason', # noqa: E501
+ 'oper_state': 'OperState', # noqa: E501
+ 'part_number': 'PartNumber', # noqa: E501
+ 'equipment_chassis': 'EquipmentChassis', # noqa: E501
+ 'fan_modules': 'FanModules', # noqa: E501
+ 'registered_device': 'RegisteredDevice', # noqa: E501
+ 'object_type': 'ObjectType', # noqa: E501
+ }
+
+ required_properties = set([
+ '_data_store',
+ '_check_type',
+ '_spec_property_naming',
+ '_path_to_item',
+ '_configuration',
+ '_visited_composed_classes',
+ '_composed_instances',
+ '_var_name_to_model_instances',
+ '_additional_properties_model_instances',
+ ])
+
+ @convert_js_args_to_python_args
+ def __init__(self, *args, **kwargs): # noqa: E501
+ """EquipmentExpanderModuleRelationship - a model defined in OpenAPI
+
+ Args:
+
+ Keyword Args:
+ class_id (str): The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.. defaults to "mo.MoRef", must be one of ["mo.MoRef", ] # noqa: E501
+ _check_type (bool): if True, values for parameters in openapi_types
+ will be type checked and a TypeError will be
+ raised if the wrong type is input.
+ Defaults to True
+ _path_to_item (tuple/list): This is a list of keys or values to
+ drill down to the model in received_data
+ when deserializing a response
+ _spec_property_naming (bool): True if the variable names in the input data
+ are serialized names, as specified in the OpenAPI document.
+ False if the variable names in the input data
+ are pythonic names, e.g. snake case (default)
+ _configuration (Configuration): the instance to use when
+ deserializing a file_type parameter.
+ If passed, type conversion is attempted
+ If omitted no type conversion is done.
+ _visited_composed_classes (tuple): This stores a tuple of
+ classes that we have traveled through so that
+ if we see that class again we will not use its
+ discriminator again.
+ When traveling through a discriminator, the
+ composed schema that is
+ is traveled through is added to this set.
+ For example if Animal has a discriminator
+ petType and we pass in "Dog", and the class Dog
+ allOf includes Animal, we move through Animal
+ once using the discriminator, and pick Dog.
+ Then in Dog, we will make an instance of the
+ Animal class but this time we won't travel
+ through its discriminator because we passed in
+ _visited_composed_classes = (Animal,)
+ moid (str): The Moid of the referenced REST resource.. [optional] # noqa: E501
+ selector (str): An OData $filter expression which describes the REST resource to be referenced. This field may be set instead of 'moid' by clients. 1. If 'moid' is set this field is ignored. 1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of the resource matching the filter expression and populates it in the MoRef that is part of the object instance being inserted/updated to fulfill the REST request. An error is returned if the filter matches zero or more than one REST resource. An example filter string is: Serial eq '3AA8B7T11'.. [optional] # noqa: E501
+ link (str): A URL to an instance of the 'mo.MoRef' class.. [optional] # noqa: E501
+ account_moid (str): The Account ID for this managed object.. [optional] # noqa: E501
+ create_time (datetime): The time when this managed object was created.. [optional] # noqa: E501
+ domain_group_moid (str): The DomainGroup ID for this managed object.. [optional] # noqa: E501
+ mod_time (datetime): The time when this managed object was last modified.. [optional] # noqa: E501
+ owners ([str], none_type): [optional] # noqa: E501
+ shared_scope (str): Intersight provides pre-built workflows, tasks and policies to end users through global catalogs. Objects that are made available through global catalogs are said to have a 'shared' ownership. Shared objects are either made globally available to all end users or restricted to end users based on their license entitlement. Users can use this property to differentiate the scope (global or a specific license tier) to which a shared MO belongs.. [optional] # noqa: E501
+ tags ([MoTag], none_type): [optional] # noqa: E501
+ version_context (MoVersionContext): [optional] # noqa: E501
+ ancestors ([MoBaseMoRelationship], none_type): An array of relationships to moBaseMo resources.. [optional] # noqa: E501
+ parent (MoBaseMoRelationship): [optional] # noqa: E501
+ permission_resources ([MoBaseMoRelationship], none_type): An array of relationships to moBaseMo resources.. [optional] # noqa: E501
+ display_names (DisplayNames): [optional] # noqa: E501
+ device_mo_id (str): The database identifier of the registered device of an object.. [optional] # noqa: E501
+ dn (str): The Distinguished Name unambiguously identifies an object in the system.. [optional] # noqa: E501
+ rn (str): The Relative Name uniquely identifies an object within a given context.. [optional] # noqa: E501
+ model (str): This field identifies the model of the given component.. [optional] # noqa: E501
+ presence (str): This field identifies the presence (equipped) or absence of the given component.. [optional] # noqa: E501
+ revision (str): This field identifies the revision of the given component.. [optional] # noqa: E501
+ serial (str): This field identifies the serial of the given component.. [optional] # noqa: E501
+ vendor (str): This field identifies the vendor of the given component.. [optional] # noqa: E501
+ previous_fru (EquipmentFruRelationship): [optional] # noqa: E501
+ module_id (int): Module identifier for the expander module.. [optional] # noqa: E501
+ oper_reason ([str], none_type): [optional] # noqa: E501
+ oper_state (str): Operational state of expander module.. [optional] # noqa: E501
+ part_number (str): Part number identifier for the expander module.. [optional] # noqa: E501
+ equipment_chassis (EquipmentChassisRelationship): [optional] # noqa: E501
+ fan_modules ([EquipmentFanModuleRelationship], none_type): An array of relationships to equipmentFanModule resources.. [optional] # noqa: E501
+ registered_device (AssetDeviceRegistrationRelationship): [optional] # noqa: E501
+ object_type (str): The fully-qualified name of the remote type referred by this relationship.. [optional] # noqa: E501
+ """
+
+ class_id = kwargs.get('class_id', "mo.MoRef")
+ _check_type = kwargs.pop('_check_type', True)
+ _spec_property_naming = kwargs.pop('_spec_property_naming', False)
+ _path_to_item = kwargs.pop('_path_to_item', ())
+ _configuration = kwargs.pop('_configuration', None)
+ _visited_composed_classes = kwargs.pop('_visited_composed_classes', ())
+
+ if args:
+ raise ApiTypeError(
+ "Invalid positional arguments=%s passed to %s. Remove those invalid positional arguments." % (
+ args,
+ self.__class__.__name__,
+ ),
+ path_to_item=_path_to_item,
+ valid_classes=(self.__class__,),
+ )
+
+ self._data_store = {}
+ self._check_type = _check_type
+ self._spec_property_naming = _spec_property_naming
+ self._path_to_item = _path_to_item
+ self._configuration = _configuration
+ self._visited_composed_classes = _visited_composed_classes + (self.__class__,)
+
+ constant_args = {
+ '_check_type': _check_type,
+ '_path_to_item': _path_to_item,
+ '_spec_property_naming': _spec_property_naming,
+ '_configuration': _configuration,
+ '_visited_composed_classes': self._visited_composed_classes,
+ }
+ required_args = {
+ 'class_id': class_id,
+ }
+ model_args = {}
+ model_args.update(required_args)
+ model_args.update(kwargs)
+ composed_info = validate_get_composed_info(
+ constant_args, model_args, self)
+ self._composed_instances = composed_info[0]
+ self._var_name_to_model_instances = composed_info[1]
+ self._additional_properties_model_instances = composed_info[2]
+ unused_args = composed_info[3]
+
+ for var_name, var_value in required_args.items():
+ setattr(self, var_name, var_value)
+ for var_name, var_value in kwargs.items():
+ if var_name in unused_args and \
+ self._configuration is not None and \
+ self._configuration.discard_unknown_keys and \
+ not self._additional_properties_model_instances:
+ # discard variable.
+ continue
+ setattr(self, var_name, var_value)
+
+ @cached_property
+ def _composed_schemas():
+ # we need this here to make our import statements work
+ # we must store _composed_schemas in here so the code is only run
+ # when we invoke this method. If we kept this at the class
+ # level we would get an error beause the class level
+ # code would be run when this module is imported, and these composed
+ # classes don't exist yet because their module has not finished
+ # loading
+ lazy_import()
+ return {
+ 'anyOf': [
+ ],
+ 'allOf': [
+ ],
+ 'oneOf': [
+ EquipmentExpanderModule,
+ MoMoRef,
+ none_type,
+ ],
+ }
diff --git a/intersight/model/equipment_expander_module_response.py b/intersight/model/equipment_expander_module_response.py
new file mode 100644
index 0000000000..833a1a5272
--- /dev/null
+++ b/intersight/model/equipment_expander_module_response.py
@@ -0,0 +1,249 @@
+"""
+ Cisco Intersight
+
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
+
+ The version of the OpenAPI document: 1.0.9-4506
+ Contact: intersight@cisco.com
+ Generated by: https://openapi-generator.tech
+"""
+
+
+import re # noqa: F401
+import sys # noqa: F401
+
+from intersight.model_utils import ( # noqa: F401
+ ApiTypeError,
+ ModelComposed,
+ ModelNormal,
+ ModelSimple,
+ cached_property,
+ change_keys_js_to_python,
+ convert_js_args_to_python_args,
+ date,
+ datetime,
+ file_type,
+ none_type,
+ validate_get_composed_info,
+)
+
+def lazy_import():
+ from intersight.model.equipment_expander_module_list import EquipmentExpanderModuleList
+ from intersight.model.mo_aggregate_transform import MoAggregateTransform
+ from intersight.model.mo_document_count import MoDocumentCount
+ from intersight.model.mo_tag_key_summary import MoTagKeySummary
+ from intersight.model.mo_tag_summary import MoTagSummary
+ globals()['EquipmentExpanderModuleList'] = EquipmentExpanderModuleList
+ globals()['MoAggregateTransform'] = MoAggregateTransform
+ globals()['MoDocumentCount'] = MoDocumentCount
+ globals()['MoTagKeySummary'] = MoTagKeySummary
+ globals()['MoTagSummary'] = MoTagSummary
+
+
+class EquipmentExpanderModuleResponse(ModelComposed):
+ """NOTE: This class is auto generated by OpenAPI Generator.
+ Ref: https://openapi-generator.tech
+
+ Do not edit the class manually.
+
+ Attributes:
+ allowed_values (dict): The key is the tuple path to the attribute
+ and the for var_name this is (var_name,). The value is a dict
+ with a capitalized key describing the allowed value and an allowed
+ value. These dicts store the allowed enum values.
+ attribute_map (dict): The key is attribute name
+ and the value is json key in definition.
+ discriminator_value_class_map (dict): A dict to go from the discriminator
+ variable value to the discriminator class name.
+ validations (dict): The key is the tuple path to the attribute
+ and the for var_name this is (var_name,). The value is a dict
+ that stores validations for max_length, min_length, max_items,
+ min_items, exclusive_maximum, inclusive_maximum, exclusive_minimum,
+ inclusive_minimum, and regex.
+ additional_properties_type (tuple): A tuple of classes accepted
+ as additional properties values.
+ """
+
+ allowed_values = {
+ }
+
+ validations = {
+ }
+
+ @cached_property
+ def additional_properties_type():
+ """
+ This must be a method because a model may have properties that are
+ of type self, this must run after the class is loaded
+ """
+ lazy_import()
+ return (bool, date, datetime, dict, float, int, list, str, none_type,) # noqa: E501
+
+ _nullable = False
+
+ @cached_property
+ def openapi_types():
+ """
+ This must be a method because a model may have properties that are
+ of type self, this must run after the class is loaded
+
+ Returns
+ openapi_types (dict): The key is attribute name
+ and the value is attribute type.
+ """
+ lazy_import()
+ return {
+ 'object_type': (str,), # noqa: E501
+ 'count': (int,), # noqa: E501
+ 'results': ([MoTagKeySummary], none_type,), # noqa: E501
+ }
+
+ @cached_property
+ def discriminator():
+ lazy_import()
+ val = {
+ 'equipment.ExpanderModule.List': EquipmentExpanderModuleList,
+ 'mo.AggregateTransform': MoAggregateTransform,
+ 'mo.DocumentCount': MoDocumentCount,
+ 'mo.TagSummary': MoTagSummary,
+ }
+ if not val:
+ return None
+ return {'object_type': val}
+
+ attribute_map = {
+ 'object_type': 'ObjectType', # noqa: E501
+ 'count': 'Count', # noqa: E501
+ 'results': 'Results', # noqa: E501
+ }
+
+ required_properties = set([
+ '_data_store',
+ '_check_type',
+ '_spec_property_naming',
+ '_path_to_item',
+ '_configuration',
+ '_visited_composed_classes',
+ '_composed_instances',
+ '_var_name_to_model_instances',
+ '_additional_properties_model_instances',
+ ])
+
+ @convert_js_args_to_python_args
+ def __init__(self, object_type, *args, **kwargs): # noqa: E501
+ """EquipmentExpanderModuleResponse - a model defined in OpenAPI
+
+ Args:
+ object_type (str): A discriminator value to disambiguate the schema of a HTTP GET response body.
+
+ Keyword Args:
+ _check_type (bool): if True, values for parameters in openapi_types
+ will be type checked and a TypeError will be
+ raised if the wrong type is input.
+ Defaults to True
+ _path_to_item (tuple/list): This is a list of keys or values to
+ drill down to the model in received_data
+ when deserializing a response
+ _spec_property_naming (bool): True if the variable names in the input data
+ are serialized names, as specified in the OpenAPI document.
+ False if the variable names in the input data
+ are pythonic names, e.g. snake case (default)
+ _configuration (Configuration): the instance to use when
+ deserializing a file_type parameter.
+ If passed, type conversion is attempted
+ If omitted no type conversion is done.
+ _visited_composed_classes (tuple): This stores a tuple of
+ classes that we have traveled through so that
+ if we see that class again we will not use its
+ discriminator again.
+ When traveling through a discriminator, the
+ composed schema that is
+ is traveled through is added to this set.
+ For example if Animal has a discriminator
+ petType and we pass in "Dog", and the class Dog
+ allOf includes Animal, we move through Animal
+ once using the discriminator, and pick Dog.
+ Then in Dog, we will make an instance of the
+ Animal class but this time we won't travel
+ through its discriminator because we passed in
+ _visited_composed_classes = (Animal,)
+ count (int): The total number of 'equipment.ExpanderModule' resources matching the request, accross all pages. The 'Count' attribute is included when the HTTP GET request includes the '$inlinecount' parameter.. [optional] # noqa: E501
+ results ([MoTagKeySummary], none_type): [optional] # noqa: E501
+ """
+
+ _check_type = kwargs.pop('_check_type', True)
+ _spec_property_naming = kwargs.pop('_spec_property_naming', False)
+ _path_to_item = kwargs.pop('_path_to_item', ())
+ _configuration = kwargs.pop('_configuration', None)
+ _visited_composed_classes = kwargs.pop('_visited_composed_classes', ())
+
+ if args:
+ raise ApiTypeError(
+ "Invalid positional arguments=%s passed to %s. Remove those invalid positional arguments." % (
+ args,
+ self.__class__.__name__,
+ ),
+ path_to_item=_path_to_item,
+ valid_classes=(self.__class__,),
+ )
+
+ self._data_store = {}
+ self._check_type = _check_type
+ self._spec_property_naming = _spec_property_naming
+ self._path_to_item = _path_to_item
+ self._configuration = _configuration
+ self._visited_composed_classes = _visited_composed_classes + (self.__class__,)
+
+ constant_args = {
+ '_check_type': _check_type,
+ '_path_to_item': _path_to_item,
+ '_spec_property_naming': _spec_property_naming,
+ '_configuration': _configuration,
+ '_visited_composed_classes': self._visited_composed_classes,
+ }
+ required_args = {
+ 'object_type': object_type,
+ }
+ model_args = {}
+ model_args.update(required_args)
+ model_args.update(kwargs)
+ composed_info = validate_get_composed_info(
+ constant_args, model_args, self)
+ self._composed_instances = composed_info[0]
+ self._var_name_to_model_instances = composed_info[1]
+ self._additional_properties_model_instances = composed_info[2]
+ unused_args = composed_info[3]
+
+ for var_name, var_value in required_args.items():
+ setattr(self, var_name, var_value)
+ for var_name, var_value in kwargs.items():
+ if var_name in unused_args and \
+ self._configuration is not None and \
+ self._configuration.discard_unknown_keys and \
+ not self._additional_properties_model_instances:
+ # discard variable.
+ continue
+ setattr(self, var_name, var_value)
+
+ @cached_property
+ def _composed_schemas():
+ # we need this here to make our import statements work
+ # we must store _composed_schemas in here so the code is only run
+ # when we invoke this method. If we kept this at the class
+ # level we would get an error beause the class level
+ # code would be run when this module is imported, and these composed
+ # classes don't exist yet because their module has not finished
+ # loading
+ lazy_import()
+ return {
+ 'anyOf': [
+ ],
+ 'allOf': [
+ ],
+ 'oneOf': [
+ EquipmentExpanderModuleList,
+ MoAggregateTransform,
+ MoDocumentCount,
+ MoTagSummary,
+ ],
+ }
diff --git a/intersight/model/equipment_fan.py b/intersight/model/equipment_fan.py
index 5879aa4d14..37f295f8ce 100644
--- a/intersight/model/equipment_fan.py
+++ b/intersight/model/equipment_fan.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
@@ -127,6 +127,8 @@ class EquipmentFan(ModelComposed):
'MEMORYUNCORRECTABLEERROR': "MemoryUncorrectableError",
'MEMORYTEMPERATUREWARNING': "MemoryTemperatureWarning",
'MEMORYTEMPERATURECRITICAL': "MemoryTemperatureCritical",
+ 'MEMORYBANKERROR': "MemoryBankError",
+ 'MEMORYRANKERROR': "MemoryRankError",
'MOTHERBOARDPOWERCRITICAL': "MotherBoardPowerCritical",
'MOTHERBOARDTEMPERATUREWARNING': "MotherBoardTemperatureWarning",
'MOTHERBOARDTEMPERATURECRITICAL': "MotherBoardTemperatureCritical",
diff --git a/intersight/model/equipment_fan_all_of.py b/intersight/model/equipment_fan_all_of.py
index 76fb54f042..50507f5a4a 100644
--- a/intersight/model/equipment_fan_all_of.py
+++ b/intersight/model/equipment_fan_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
@@ -113,6 +113,8 @@ class EquipmentFanAllOf(ModelNormal):
'MEMORYUNCORRECTABLEERROR': "MemoryUncorrectableError",
'MEMORYTEMPERATUREWARNING': "MemoryTemperatureWarning",
'MEMORYTEMPERATURECRITICAL': "MemoryTemperatureCritical",
+ 'MEMORYBANKERROR': "MemoryBankError",
+ 'MEMORYRANKERROR': "MemoryRankError",
'MOTHERBOARDPOWERCRITICAL': "MotherBoardPowerCritical",
'MOTHERBOARDTEMPERATUREWARNING': "MotherBoardTemperatureWarning",
'MOTHERBOARDTEMPERATURECRITICAL': "MotherBoardTemperatureCritical",
diff --git a/intersight/model/equipment_fan_control.py b/intersight/model/equipment_fan_control.py
index eff10adb4e..a17641ed79 100644
--- a/intersight/model/equipment_fan_control.py
+++ b/intersight/model/equipment_fan_control.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/equipment_fan_control_all_of.py b/intersight/model/equipment_fan_control_all_of.py
index 594c92af1c..e8159b88c9 100644
--- a/intersight/model/equipment_fan_control_all_of.py
+++ b/intersight/model/equipment_fan_control_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/equipment_fan_control_list.py b/intersight/model/equipment_fan_control_list.py
index 9360141fff..0fbc71c851 100644
--- a/intersight/model/equipment_fan_control_list.py
+++ b/intersight/model/equipment_fan_control_list.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/equipment_fan_control_list_all_of.py b/intersight/model/equipment_fan_control_list_all_of.py
index a3a92963a3..496b7123b5 100644
--- a/intersight/model/equipment_fan_control_list_all_of.py
+++ b/intersight/model/equipment_fan_control_list_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/equipment_fan_control_relationship.py b/intersight/model/equipment_fan_control_relationship.py
index 10ff58d01d..4929b4e990 100644
--- a/intersight/model/equipment_fan_control_relationship.py
+++ b/intersight/model/equipment_fan_control_relationship.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
@@ -87,6 +87,8 @@ class EquipmentFanControlRelationship(ModelComposed):
},
('object_type',): {
'AAA.AUDITRECORD': "aaa.AuditRecord",
+ 'AAA.RETENTIONCONFIG': "aaa.RetentionConfig",
+ 'AAA.RETENTIONPOLICY': "aaa.RetentionPolicy",
'ACCESS.POLICY': "access.Policy",
'ADAPTER.CONFIGPOLICY': "adapter.ConfigPolicy",
'ADAPTER.EXTETHINTERFACE': "adapter.ExtEthInterface",
@@ -103,6 +105,7 @@ class EquipmentFanControlRelationship(ModelComposed):
'APPLIANCE.DATAEXPORTPOLICY': "appliance.DataExportPolicy",
'APPLIANCE.DEVICECERTIFICATE': "appliance.DeviceCertificate",
'APPLIANCE.DEVICECLAIM': "appliance.DeviceClaim",
+ 'APPLIANCE.DEVICEUPGRADEPOLICY': "appliance.DeviceUpgradePolicy",
'APPLIANCE.DIAGSETTING': "appliance.DiagSetting",
'APPLIANCE.EXTERNALSYSLOGSETTING': "appliance.ExternalSyslogSetting",
'APPLIANCE.FILESYSTEMSTATUS': "appliance.FileSystemStatus",
@@ -151,9 +154,12 @@ class EquipmentFanControlRelationship(ModelComposed):
'BOOT.UEFISHELLDEVICE': "boot.UefiShellDevice",
'BOOT.USBDEVICE': "boot.UsbDevice",
'BOOT.VMEDIADEVICE': "boot.VmediaDevice",
+ 'BULK.EXPORT': "bulk.Export",
+ 'BULK.EXPORTEDITEM': "bulk.ExportedItem",
'BULK.MOCLONER': "bulk.MoCloner",
'BULK.MOMERGER': "bulk.MoMerger",
'BULK.REQUEST': "bulk.Request",
+ 'BULK.SUBREQUESTOBJ': "bulk.SubRequestObj",
'CAPABILITY.ADAPTERUNITDESCRIPTOR': "capability.AdapterUnitDescriptor",
'CAPABILITY.CATALOG': "capability.Catalog",
'CAPABILITY.CHASSISDESCRIPTOR': "capability.ChassisDescriptor",
@@ -217,10 +223,6 @@ class EquipmentFanControlRelationship(ModelComposed):
'COND.HCLSTATUS': "cond.HclStatus",
'COND.HCLSTATUSDETAIL': "cond.HclStatusDetail",
'COND.HCLSTATUSJOB': "cond.HclStatusJob",
- 'CONFIG.EXPORTEDITEM': "config.ExportedItem",
- 'CONFIG.EXPORTER': "config.Exporter",
- 'CONFIG.IMPORTEDITEM': "config.ImportedItem",
- 'CONFIG.IMPORTER': "config.Importer",
'CONNECTORPACK.CONNECTORPACKUPGRADE': "connectorpack.ConnectorPackUpgrade",
'CONNECTORPACK.UPGRADEIMPACT': "connectorpack.UpgradeImpact",
'CRD.CUSTOMRESOURCE': "crd.CustomResource",
@@ -229,6 +231,7 @@ class EquipmentFanControlRelationship(ModelComposed):
'EQUIPMENT.CHASSISIDENTITY': "equipment.ChassisIdentity",
'EQUIPMENT.CHASSISOPERATION': "equipment.ChassisOperation",
'EQUIPMENT.DEVICESUMMARY': "equipment.DeviceSummary",
+ 'EQUIPMENT.EXPANDERMODULE': "equipment.ExpanderModule",
'EQUIPMENT.FAN': "equipment.Fan",
'EQUIPMENT.FANCONTROL': "equipment.FanControl",
'EQUIPMENT.FANMODULE': "equipment.FanModule",
@@ -477,6 +480,7 @@ class EquipmentFanControlRelationship(ModelComposed):
'KUBERNETES.ADDONDEFINITION': "kubernetes.AddonDefinition",
'KUBERNETES.ADDONPOLICY': "kubernetes.AddonPolicy",
'KUBERNETES.ADDONREPOSITORY': "kubernetes.AddonRepository",
+ 'KUBERNETES.BAREMETALNODEPROFILE': "kubernetes.BaremetalNodeProfile",
'KUBERNETES.CATALOG': "kubernetes.Catalog",
'KUBERNETES.CLUSTER': "kubernetes.Cluster",
'KUBERNETES.CLUSTERADDONPROFILE': "kubernetes.ClusterAddonProfile",
@@ -646,6 +650,11 @@ class EquipmentFanControlRelationship(ModelComposed):
'RESOURCE.LICENSERESOURCECOUNT': "resource.LicenseResourceCount",
'RESOURCE.MEMBERSHIP': "resource.Membership",
'RESOURCE.MEMBERSHIPHOLDER': "resource.MembershipHolder",
+ 'RESOURCEPOOL.LEASE': "resourcepool.Lease",
+ 'RESOURCEPOOL.LEASERESOURCE': "resourcepool.LeaseResource",
+ 'RESOURCEPOOL.POOL': "resourcepool.Pool",
+ 'RESOURCEPOOL.POOLMEMBER': "resourcepool.PoolMember",
+ 'RESOURCEPOOL.UNIVERSE': "resourcepool.Universe",
'RPROXY.REVERSEPROXY': "rproxy.ReverseProxy",
'SDCARD.POLICY': "sdcard.Policy",
'SDWAN.PROFILE': "sdwan.Profile",
@@ -761,6 +770,7 @@ class EquipmentFanControlRelationship(ModelComposed):
'TASK.NETAPPSCOPEDINVENTORY': "task.NetAppScopedInventory",
'TASK.PUBLICCLOUDSCOPEDINVENTORY': "task.PublicCloudScopedInventory",
'TASK.PURESCOPEDINVENTORY': "task.PureScopedInventory",
+ 'TASK.SERVERSCOPEDINVENTORY': "task.ServerScopedInventory",
'TECHSUPPORTMANAGEMENT.COLLECTIONCONTROLPOLICY': "techsupportmanagement.CollectionControlPolicy",
'TECHSUPPORTMANAGEMENT.DOWNLOAD': "techsupportmanagement.Download",
'TECHSUPPORTMANAGEMENT.TECHSUPPORTBUNDLE': "techsupportmanagement.TechSupportBundle",
@@ -792,6 +802,7 @@ class EquipmentFanControlRelationship(ModelComposed):
'VIRTUALIZATION.VMWAREVCENTER': "virtualization.VmwareVcenter",
'VIRTUALIZATION.VMWAREVIRTUALDISK': "virtualization.VmwareVirtualDisk",
'VIRTUALIZATION.VMWAREVIRTUALMACHINE': "virtualization.VmwareVirtualMachine",
+ 'VIRTUALIZATION.VMWAREVIRTUALMACHINESNAPSHOT': "virtualization.VmwareVirtualMachineSnapshot",
'VIRTUALIZATION.VMWAREVIRTUALNETWORKINTERFACE': "virtualization.VmwareVirtualNetworkInterface",
'VIRTUALIZATION.VMWAREVIRTUALSWITCH': "virtualization.VmwareVirtualSwitch",
'VMEDIA.POLICY': "vmedia.Policy",
@@ -824,12 +835,14 @@ class EquipmentFanControlRelationship(ModelComposed):
'WORKFLOW.TASKDEFINITION': "workflow.TaskDefinition",
'WORKFLOW.TASKINFO': "workflow.TaskInfo",
'WORKFLOW.TASKMETADATA': "workflow.TaskMetadata",
+ 'WORKFLOW.TASKNOTIFICATION': "workflow.TaskNotification",
'WORKFLOW.TEMPLATEEVALUATION': "workflow.TemplateEvaluation",
'WORKFLOW.TEMPLATEFUNCTIONMETA': "workflow.TemplateFunctionMeta",
'WORKFLOW.WORKFLOWDEFINITION': "workflow.WorkflowDefinition",
'WORKFLOW.WORKFLOWINFO': "workflow.WorkflowInfo",
'WORKFLOW.WORKFLOWMETA': "workflow.WorkflowMeta",
'WORKFLOW.WORKFLOWMETADATA': "workflow.WorkflowMetadata",
+ 'WORKFLOW.WORKFLOWNOTIFICATION': "workflow.WorkflowNotification",
},
}
diff --git a/intersight/model/equipment_fan_control_response.py b/intersight/model/equipment_fan_control_response.py
index f9824052e2..ada3678421 100644
--- a/intersight/model/equipment_fan_control_response.py
+++ b/intersight/model/equipment_fan_control_response.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/equipment_fan_list.py b/intersight/model/equipment_fan_list.py
index 7bf14cbe27..cce03521a9 100644
--- a/intersight/model/equipment_fan_list.py
+++ b/intersight/model/equipment_fan_list.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/equipment_fan_list_all_of.py b/intersight/model/equipment_fan_list_all_of.py
index cc0a5772db..c8522e48d6 100644
--- a/intersight/model/equipment_fan_list_all_of.py
+++ b/intersight/model/equipment_fan_list_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/equipment_fan_module.py b/intersight/model/equipment_fan_module.py
index f158dfc745..be1f0c2560 100644
--- a/intersight/model/equipment_fan_module.py
+++ b/intersight/model/equipment_fan_module.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
@@ -33,9 +33,11 @@ def lazy_import():
from intersight.model.display_names import DisplayNames
from intersight.model.equipment_base import EquipmentBase
from intersight.model.equipment_chassis_relationship import EquipmentChassisRelationship
+ from intersight.model.equipment_expander_module_relationship import EquipmentExpanderModuleRelationship
from intersight.model.equipment_fan_module_all_of import EquipmentFanModuleAllOf
from intersight.model.equipment_fan_relationship import EquipmentFanRelationship
from intersight.model.equipment_fru_relationship import EquipmentFruRelationship
+ from intersight.model.equipment_io_card_relationship import EquipmentIoCardRelationship
from intersight.model.equipment_rack_enclosure_relationship import EquipmentRackEnclosureRelationship
from intersight.model.inventory_device_info_relationship import InventoryDeviceInfoRelationship
from intersight.model.mo_base_mo_relationship import MoBaseMoRelationship
@@ -47,9 +49,11 @@ def lazy_import():
globals()['DisplayNames'] = DisplayNames
globals()['EquipmentBase'] = EquipmentBase
globals()['EquipmentChassisRelationship'] = EquipmentChassisRelationship
+ globals()['EquipmentExpanderModuleRelationship'] = EquipmentExpanderModuleRelationship
globals()['EquipmentFanModuleAllOf'] = EquipmentFanModuleAllOf
globals()['EquipmentFanRelationship'] = EquipmentFanRelationship
globals()['EquipmentFruRelationship'] = EquipmentFruRelationship
+ globals()['EquipmentIoCardRelationship'] = EquipmentIoCardRelationship
globals()['EquipmentRackEnclosureRelationship'] = EquipmentRackEnclosureRelationship
globals()['InventoryDeviceInfoRelationship'] = InventoryDeviceInfoRelationship
globals()['MoBaseMoRelationship'] = MoBaseMoRelationship
@@ -133,6 +137,8 @@ class EquipmentFanModule(ModelComposed):
'MEMORYUNCORRECTABLEERROR': "MemoryUncorrectableError",
'MEMORYTEMPERATUREWARNING': "MemoryTemperatureWarning",
'MEMORYTEMPERATURECRITICAL': "MemoryTemperatureCritical",
+ 'MEMORYBANKERROR': "MemoryBankError",
+ 'MEMORYRANKERROR': "MemoryRankError",
'MOTHERBOARDPOWERCRITICAL': "MotherBoardPowerCritical",
'MOTHERBOARDTEMPERATUREWARNING': "MotherBoardTemperatureWarning",
'MOTHERBOARDTEMPERATURECRITICAL': "MotherBoardTemperatureCritical",
@@ -186,6 +192,8 @@ def openapi_types():
'vid': (str,), # noqa: E501
'compute_rack_unit': (ComputeRackUnitRelationship,), # noqa: E501
'equipment_chassis': (EquipmentChassisRelationship,), # noqa: E501
+ 'equipment_expander_module': (EquipmentExpanderModuleRelationship,), # noqa: E501
+ 'equipment_io_card': (EquipmentIoCardRelationship,), # noqa: E501
'equipment_rack_enclosure': (EquipmentRackEnclosureRelationship,), # noqa: E501
'fans': ([EquipmentFanRelationship], none_type,), # noqa: E501
'inventory_device_info': (InventoryDeviceInfoRelationship,), # noqa: E501
@@ -237,6 +245,8 @@ def discriminator():
'vid': 'Vid', # noqa: E501
'compute_rack_unit': 'ComputeRackUnit', # noqa: E501
'equipment_chassis': 'EquipmentChassis', # noqa: E501
+ 'equipment_expander_module': 'EquipmentExpanderModule', # noqa: E501
+ 'equipment_io_card': 'EquipmentIoCard', # noqa: E501
'equipment_rack_enclosure': 'EquipmentRackEnclosure', # noqa: E501
'fans': 'Fans', # noqa: E501
'inventory_device_info': 'InventoryDeviceInfo', # noqa: E501
@@ -328,6 +338,8 @@ def __init__(self, *args, **kwargs): # noqa: E501
vid (str): This field identifies the Vendor ID for this Fan Module.. [optional] # noqa: E501
compute_rack_unit (ComputeRackUnitRelationship): [optional] # noqa: E501
equipment_chassis (EquipmentChassisRelationship): [optional] # noqa: E501
+ equipment_expander_module (EquipmentExpanderModuleRelationship): [optional] # noqa: E501
+ equipment_io_card (EquipmentIoCardRelationship): [optional] # noqa: E501
equipment_rack_enclosure (EquipmentRackEnclosureRelationship): [optional] # noqa: E501
fans ([EquipmentFanRelationship], none_type): An array of relationships to equipmentFan resources.. [optional] # noqa: E501
inventory_device_info (InventoryDeviceInfoRelationship): [optional] # noqa: E501
diff --git a/intersight/model/equipment_fan_module_all_of.py b/intersight/model/equipment_fan_module_all_of.py
index 7631b9320e..faf85ddb43 100644
--- a/intersight/model/equipment_fan_module_all_of.py
+++ b/intersight/model/equipment_fan_module_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
@@ -31,14 +31,18 @@ def lazy_import():
from intersight.model.asset_device_registration_relationship import AssetDeviceRegistrationRelationship
from intersight.model.compute_rack_unit_relationship import ComputeRackUnitRelationship
from intersight.model.equipment_chassis_relationship import EquipmentChassisRelationship
+ from intersight.model.equipment_expander_module_relationship import EquipmentExpanderModuleRelationship
from intersight.model.equipment_fan_relationship import EquipmentFanRelationship
+ from intersight.model.equipment_io_card_relationship import EquipmentIoCardRelationship
from intersight.model.equipment_rack_enclosure_relationship import EquipmentRackEnclosureRelationship
from intersight.model.inventory_device_info_relationship import InventoryDeviceInfoRelationship
from intersight.model.network_element_relationship import NetworkElementRelationship
globals()['AssetDeviceRegistrationRelationship'] = AssetDeviceRegistrationRelationship
globals()['ComputeRackUnitRelationship'] = ComputeRackUnitRelationship
globals()['EquipmentChassisRelationship'] = EquipmentChassisRelationship
+ globals()['EquipmentExpanderModuleRelationship'] = EquipmentExpanderModuleRelationship
globals()['EquipmentFanRelationship'] = EquipmentFanRelationship
+ globals()['EquipmentIoCardRelationship'] = EquipmentIoCardRelationship
globals()['EquipmentRackEnclosureRelationship'] = EquipmentRackEnclosureRelationship
globals()['InventoryDeviceInfoRelationship'] = InventoryDeviceInfoRelationship
globals()['NetworkElementRelationship'] = NetworkElementRelationship
@@ -119,6 +123,8 @@ class EquipmentFanModuleAllOf(ModelNormal):
'MEMORYUNCORRECTABLEERROR': "MemoryUncorrectableError",
'MEMORYTEMPERATUREWARNING': "MemoryTemperatureWarning",
'MEMORYTEMPERATURECRITICAL': "MemoryTemperatureCritical",
+ 'MEMORYBANKERROR': "MemoryBankError",
+ 'MEMORYRANKERROR': "MemoryRankError",
'MOTHERBOARDPOWERCRITICAL': "MotherBoardPowerCritical",
'MOTHERBOARDTEMPERATUREWARNING': "MotherBoardTemperatureWarning",
'MOTHERBOARDTEMPERATURECRITICAL': "MotherBoardTemperatureCritical",
@@ -165,6 +171,8 @@ def openapi_types():
'vid': (str,), # noqa: E501
'compute_rack_unit': (ComputeRackUnitRelationship,), # noqa: E501
'equipment_chassis': (EquipmentChassisRelationship,), # noqa: E501
+ 'equipment_expander_module': (EquipmentExpanderModuleRelationship,), # noqa: E501
+ 'equipment_io_card': (EquipmentIoCardRelationship,), # noqa: E501
'equipment_rack_enclosure': (EquipmentRackEnclosureRelationship,), # noqa: E501
'fans': ([EquipmentFanRelationship], none_type,), # noqa: E501
'inventory_device_info': (InventoryDeviceInfoRelationship,), # noqa: E501
@@ -191,6 +199,8 @@ def discriminator():
'vid': 'Vid', # noqa: E501
'compute_rack_unit': 'ComputeRackUnit', # noqa: E501
'equipment_chassis': 'EquipmentChassis', # noqa: E501
+ 'equipment_expander_module': 'EquipmentExpanderModule', # noqa: E501
+ 'equipment_io_card': 'EquipmentIoCard', # noqa: E501
'equipment_rack_enclosure': 'EquipmentRackEnclosure', # noqa: E501
'fans': 'Fans', # noqa: E501
'inventory_device_info': 'InventoryDeviceInfo', # noqa: E501
@@ -259,6 +269,8 @@ def __init__(self, *args, **kwargs): # noqa: E501
vid (str): This field identifies the Vendor ID for this Fan Module.. [optional] # noqa: E501
compute_rack_unit (ComputeRackUnitRelationship): [optional] # noqa: E501
equipment_chassis (EquipmentChassisRelationship): [optional] # noqa: E501
+ equipment_expander_module (EquipmentExpanderModuleRelationship): [optional] # noqa: E501
+ equipment_io_card (EquipmentIoCardRelationship): [optional] # noqa: E501
equipment_rack_enclosure (EquipmentRackEnclosureRelationship): [optional] # noqa: E501
fans ([EquipmentFanRelationship], none_type): An array of relationships to equipmentFan resources.. [optional] # noqa: E501
inventory_device_info (InventoryDeviceInfoRelationship): [optional] # noqa: E501
diff --git a/intersight/model/equipment_fan_module_list.py b/intersight/model/equipment_fan_module_list.py
index 2a91625c02..551376043b 100644
--- a/intersight/model/equipment_fan_module_list.py
+++ b/intersight/model/equipment_fan_module_list.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/equipment_fan_module_list_all_of.py b/intersight/model/equipment_fan_module_list_all_of.py
index b236d47147..a66a434f4e 100644
--- a/intersight/model/equipment_fan_module_list_all_of.py
+++ b/intersight/model/equipment_fan_module_list_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/equipment_fan_module_relationship.py b/intersight/model/equipment_fan_module_relationship.py
index 1bde6976f5..67f74025a9 100644
--- a/intersight/model/equipment_fan_module_relationship.py
+++ b/intersight/model/equipment_fan_module_relationship.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
@@ -32,9 +32,11 @@ def lazy_import():
from intersight.model.compute_rack_unit_relationship import ComputeRackUnitRelationship
from intersight.model.display_names import DisplayNames
from intersight.model.equipment_chassis_relationship import EquipmentChassisRelationship
+ from intersight.model.equipment_expander_module_relationship import EquipmentExpanderModuleRelationship
from intersight.model.equipment_fan_module import EquipmentFanModule
from intersight.model.equipment_fan_relationship import EquipmentFanRelationship
from intersight.model.equipment_fru_relationship import EquipmentFruRelationship
+ from intersight.model.equipment_io_card_relationship import EquipmentIoCardRelationship
from intersight.model.equipment_rack_enclosure_relationship import EquipmentRackEnclosureRelationship
from intersight.model.inventory_device_info_relationship import InventoryDeviceInfoRelationship
from intersight.model.mo_base_mo_relationship import MoBaseMoRelationship
@@ -46,9 +48,11 @@ def lazy_import():
globals()['ComputeRackUnitRelationship'] = ComputeRackUnitRelationship
globals()['DisplayNames'] = DisplayNames
globals()['EquipmentChassisRelationship'] = EquipmentChassisRelationship
+ globals()['EquipmentExpanderModuleRelationship'] = EquipmentExpanderModuleRelationship
globals()['EquipmentFanModule'] = EquipmentFanModule
globals()['EquipmentFanRelationship'] = EquipmentFanRelationship
globals()['EquipmentFruRelationship'] = EquipmentFruRelationship
+ globals()['EquipmentIoCardRelationship'] = EquipmentIoCardRelationship
globals()['EquipmentRackEnclosureRelationship'] = EquipmentRackEnclosureRelationship
globals()['InventoryDeviceInfoRelationship'] = InventoryDeviceInfoRelationship
globals()['MoBaseMoRelationship'] = MoBaseMoRelationship
@@ -130,6 +134,8 @@ class EquipmentFanModuleRelationship(ModelComposed):
'MEMORYUNCORRECTABLEERROR': "MemoryUncorrectableError",
'MEMORYTEMPERATUREWARNING': "MemoryTemperatureWarning",
'MEMORYTEMPERATURECRITICAL': "MemoryTemperatureCritical",
+ 'MEMORYBANKERROR': "MemoryBankError",
+ 'MEMORYRANKERROR': "MemoryRankError",
'MOTHERBOARDPOWERCRITICAL': "MotherBoardPowerCritical",
'MOTHERBOARDTEMPERATUREWARNING': "MotherBoardTemperatureWarning",
'MOTHERBOARDTEMPERATURECRITICAL': "MotherBoardTemperatureCritical",
@@ -144,6 +150,8 @@ class EquipmentFanModuleRelationship(ModelComposed):
},
('object_type',): {
'AAA.AUDITRECORD': "aaa.AuditRecord",
+ 'AAA.RETENTIONCONFIG': "aaa.RetentionConfig",
+ 'AAA.RETENTIONPOLICY': "aaa.RetentionPolicy",
'ACCESS.POLICY': "access.Policy",
'ADAPTER.CONFIGPOLICY': "adapter.ConfigPolicy",
'ADAPTER.EXTETHINTERFACE': "adapter.ExtEthInterface",
@@ -160,6 +168,7 @@ class EquipmentFanModuleRelationship(ModelComposed):
'APPLIANCE.DATAEXPORTPOLICY': "appliance.DataExportPolicy",
'APPLIANCE.DEVICECERTIFICATE': "appliance.DeviceCertificate",
'APPLIANCE.DEVICECLAIM': "appliance.DeviceClaim",
+ 'APPLIANCE.DEVICEUPGRADEPOLICY': "appliance.DeviceUpgradePolicy",
'APPLIANCE.DIAGSETTING': "appliance.DiagSetting",
'APPLIANCE.EXTERNALSYSLOGSETTING': "appliance.ExternalSyslogSetting",
'APPLIANCE.FILESYSTEMSTATUS': "appliance.FileSystemStatus",
@@ -208,9 +217,12 @@ class EquipmentFanModuleRelationship(ModelComposed):
'BOOT.UEFISHELLDEVICE': "boot.UefiShellDevice",
'BOOT.USBDEVICE': "boot.UsbDevice",
'BOOT.VMEDIADEVICE': "boot.VmediaDevice",
+ 'BULK.EXPORT': "bulk.Export",
+ 'BULK.EXPORTEDITEM': "bulk.ExportedItem",
'BULK.MOCLONER': "bulk.MoCloner",
'BULK.MOMERGER': "bulk.MoMerger",
'BULK.REQUEST': "bulk.Request",
+ 'BULK.SUBREQUESTOBJ': "bulk.SubRequestObj",
'CAPABILITY.ADAPTERUNITDESCRIPTOR': "capability.AdapterUnitDescriptor",
'CAPABILITY.CATALOG': "capability.Catalog",
'CAPABILITY.CHASSISDESCRIPTOR': "capability.ChassisDescriptor",
@@ -274,10 +286,6 @@ class EquipmentFanModuleRelationship(ModelComposed):
'COND.HCLSTATUS': "cond.HclStatus",
'COND.HCLSTATUSDETAIL': "cond.HclStatusDetail",
'COND.HCLSTATUSJOB': "cond.HclStatusJob",
- 'CONFIG.EXPORTEDITEM': "config.ExportedItem",
- 'CONFIG.EXPORTER': "config.Exporter",
- 'CONFIG.IMPORTEDITEM': "config.ImportedItem",
- 'CONFIG.IMPORTER': "config.Importer",
'CONNECTORPACK.CONNECTORPACKUPGRADE': "connectorpack.ConnectorPackUpgrade",
'CONNECTORPACK.UPGRADEIMPACT': "connectorpack.UpgradeImpact",
'CRD.CUSTOMRESOURCE': "crd.CustomResource",
@@ -286,6 +294,7 @@ class EquipmentFanModuleRelationship(ModelComposed):
'EQUIPMENT.CHASSISIDENTITY': "equipment.ChassisIdentity",
'EQUIPMENT.CHASSISOPERATION': "equipment.ChassisOperation",
'EQUIPMENT.DEVICESUMMARY': "equipment.DeviceSummary",
+ 'EQUIPMENT.EXPANDERMODULE': "equipment.ExpanderModule",
'EQUIPMENT.FAN': "equipment.Fan",
'EQUIPMENT.FANCONTROL': "equipment.FanControl",
'EQUIPMENT.FANMODULE': "equipment.FanModule",
@@ -534,6 +543,7 @@ class EquipmentFanModuleRelationship(ModelComposed):
'KUBERNETES.ADDONDEFINITION': "kubernetes.AddonDefinition",
'KUBERNETES.ADDONPOLICY': "kubernetes.AddonPolicy",
'KUBERNETES.ADDONREPOSITORY': "kubernetes.AddonRepository",
+ 'KUBERNETES.BAREMETALNODEPROFILE': "kubernetes.BaremetalNodeProfile",
'KUBERNETES.CATALOG': "kubernetes.Catalog",
'KUBERNETES.CLUSTER': "kubernetes.Cluster",
'KUBERNETES.CLUSTERADDONPROFILE': "kubernetes.ClusterAddonProfile",
@@ -703,6 +713,11 @@ class EquipmentFanModuleRelationship(ModelComposed):
'RESOURCE.LICENSERESOURCECOUNT': "resource.LicenseResourceCount",
'RESOURCE.MEMBERSHIP': "resource.Membership",
'RESOURCE.MEMBERSHIPHOLDER': "resource.MembershipHolder",
+ 'RESOURCEPOOL.LEASE': "resourcepool.Lease",
+ 'RESOURCEPOOL.LEASERESOURCE': "resourcepool.LeaseResource",
+ 'RESOURCEPOOL.POOL': "resourcepool.Pool",
+ 'RESOURCEPOOL.POOLMEMBER': "resourcepool.PoolMember",
+ 'RESOURCEPOOL.UNIVERSE': "resourcepool.Universe",
'RPROXY.REVERSEPROXY': "rproxy.ReverseProxy",
'SDCARD.POLICY': "sdcard.Policy",
'SDWAN.PROFILE': "sdwan.Profile",
@@ -818,6 +833,7 @@ class EquipmentFanModuleRelationship(ModelComposed):
'TASK.NETAPPSCOPEDINVENTORY': "task.NetAppScopedInventory",
'TASK.PUBLICCLOUDSCOPEDINVENTORY': "task.PublicCloudScopedInventory",
'TASK.PURESCOPEDINVENTORY': "task.PureScopedInventory",
+ 'TASK.SERVERSCOPEDINVENTORY': "task.ServerScopedInventory",
'TECHSUPPORTMANAGEMENT.COLLECTIONCONTROLPOLICY': "techsupportmanagement.CollectionControlPolicy",
'TECHSUPPORTMANAGEMENT.DOWNLOAD': "techsupportmanagement.Download",
'TECHSUPPORTMANAGEMENT.TECHSUPPORTBUNDLE': "techsupportmanagement.TechSupportBundle",
@@ -849,6 +865,7 @@ class EquipmentFanModuleRelationship(ModelComposed):
'VIRTUALIZATION.VMWAREVCENTER': "virtualization.VmwareVcenter",
'VIRTUALIZATION.VMWAREVIRTUALDISK': "virtualization.VmwareVirtualDisk",
'VIRTUALIZATION.VMWAREVIRTUALMACHINE': "virtualization.VmwareVirtualMachine",
+ 'VIRTUALIZATION.VMWAREVIRTUALMACHINESNAPSHOT': "virtualization.VmwareVirtualMachineSnapshot",
'VIRTUALIZATION.VMWAREVIRTUALNETWORKINTERFACE': "virtualization.VmwareVirtualNetworkInterface",
'VIRTUALIZATION.VMWAREVIRTUALSWITCH': "virtualization.VmwareVirtualSwitch",
'VMEDIA.POLICY': "vmedia.Policy",
@@ -881,12 +898,14 @@ class EquipmentFanModuleRelationship(ModelComposed):
'WORKFLOW.TASKDEFINITION': "workflow.TaskDefinition",
'WORKFLOW.TASKINFO': "workflow.TaskInfo",
'WORKFLOW.TASKMETADATA': "workflow.TaskMetadata",
+ 'WORKFLOW.TASKNOTIFICATION': "workflow.TaskNotification",
'WORKFLOW.TEMPLATEEVALUATION': "workflow.TemplateEvaluation",
'WORKFLOW.TEMPLATEFUNCTIONMETA': "workflow.TemplateFunctionMeta",
'WORKFLOW.WORKFLOWDEFINITION': "workflow.WorkflowDefinition",
'WORKFLOW.WORKFLOWINFO': "workflow.WorkflowInfo",
'WORKFLOW.WORKFLOWMETA': "workflow.WorkflowMeta",
'WORKFLOW.WORKFLOWMETADATA': "workflow.WorkflowMetadata",
+ 'WORKFLOW.WORKFLOWNOTIFICATION': "workflow.WorkflowNotification",
},
}
@@ -952,6 +971,8 @@ def openapi_types():
'vid': (str,), # noqa: E501
'compute_rack_unit': (ComputeRackUnitRelationship,), # noqa: E501
'equipment_chassis': (EquipmentChassisRelationship,), # noqa: E501
+ 'equipment_expander_module': (EquipmentExpanderModuleRelationship,), # noqa: E501
+ 'equipment_io_card': (EquipmentIoCardRelationship,), # noqa: E501
'equipment_rack_enclosure': (EquipmentRackEnclosureRelationship,), # noqa: E501
'fans': ([EquipmentFanRelationship], none_type,), # noqa: E501
'inventory_device_info': (InventoryDeviceInfoRelationship,), # noqa: E501
@@ -1008,6 +1029,8 @@ def discriminator():
'vid': 'Vid', # noqa: E501
'compute_rack_unit': 'ComputeRackUnit', # noqa: E501
'equipment_chassis': 'EquipmentChassis', # noqa: E501
+ 'equipment_expander_module': 'EquipmentExpanderModule', # noqa: E501
+ 'equipment_io_card': 'EquipmentIoCard', # noqa: E501
'equipment_rack_enclosure': 'EquipmentRackEnclosure', # noqa: E501
'fans': 'Fans', # noqa: E501
'inventory_device_info': 'InventoryDeviceInfo', # noqa: E501
@@ -1101,6 +1124,8 @@ def __init__(self, *args, **kwargs): # noqa: E501
vid (str): This field identifies the Vendor ID for this Fan Module.. [optional] # noqa: E501
compute_rack_unit (ComputeRackUnitRelationship): [optional] # noqa: E501
equipment_chassis (EquipmentChassisRelationship): [optional] # noqa: E501
+ equipment_expander_module (EquipmentExpanderModuleRelationship): [optional] # noqa: E501
+ equipment_io_card (EquipmentIoCardRelationship): [optional] # noqa: E501
equipment_rack_enclosure (EquipmentRackEnclosureRelationship): [optional] # noqa: E501
fans ([EquipmentFanRelationship], none_type): An array of relationships to equipmentFan resources.. [optional] # noqa: E501
inventory_device_info (InventoryDeviceInfoRelationship): [optional] # noqa: E501
diff --git a/intersight/model/equipment_fan_module_response.py b/intersight/model/equipment_fan_module_response.py
index 546cba240d..cad8dfe18d 100644
--- a/intersight/model/equipment_fan_module_response.py
+++ b/intersight/model/equipment_fan_module_response.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/equipment_fan_relationship.py b/intersight/model/equipment_fan_relationship.py
index 34b22343d8..9f4aeda4f3 100644
--- a/intersight/model/equipment_fan_relationship.py
+++ b/intersight/model/equipment_fan_relationship.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
@@ -124,6 +124,8 @@ class EquipmentFanRelationship(ModelComposed):
'MEMORYUNCORRECTABLEERROR': "MemoryUncorrectableError",
'MEMORYTEMPERATUREWARNING': "MemoryTemperatureWarning",
'MEMORYTEMPERATURECRITICAL': "MemoryTemperatureCritical",
+ 'MEMORYBANKERROR': "MemoryBankError",
+ 'MEMORYRANKERROR': "MemoryRankError",
'MOTHERBOARDPOWERCRITICAL': "MotherBoardPowerCritical",
'MOTHERBOARDTEMPERATUREWARNING': "MotherBoardTemperatureWarning",
'MOTHERBOARDTEMPERATURECRITICAL': "MotherBoardTemperatureCritical",
@@ -138,6 +140,8 @@ class EquipmentFanRelationship(ModelComposed):
},
('object_type',): {
'AAA.AUDITRECORD': "aaa.AuditRecord",
+ 'AAA.RETENTIONCONFIG': "aaa.RetentionConfig",
+ 'AAA.RETENTIONPOLICY': "aaa.RetentionPolicy",
'ACCESS.POLICY': "access.Policy",
'ADAPTER.CONFIGPOLICY': "adapter.ConfigPolicy",
'ADAPTER.EXTETHINTERFACE': "adapter.ExtEthInterface",
@@ -154,6 +158,7 @@ class EquipmentFanRelationship(ModelComposed):
'APPLIANCE.DATAEXPORTPOLICY': "appliance.DataExportPolicy",
'APPLIANCE.DEVICECERTIFICATE': "appliance.DeviceCertificate",
'APPLIANCE.DEVICECLAIM': "appliance.DeviceClaim",
+ 'APPLIANCE.DEVICEUPGRADEPOLICY': "appliance.DeviceUpgradePolicy",
'APPLIANCE.DIAGSETTING': "appliance.DiagSetting",
'APPLIANCE.EXTERNALSYSLOGSETTING': "appliance.ExternalSyslogSetting",
'APPLIANCE.FILESYSTEMSTATUS': "appliance.FileSystemStatus",
@@ -202,9 +207,12 @@ class EquipmentFanRelationship(ModelComposed):
'BOOT.UEFISHELLDEVICE': "boot.UefiShellDevice",
'BOOT.USBDEVICE': "boot.UsbDevice",
'BOOT.VMEDIADEVICE': "boot.VmediaDevice",
+ 'BULK.EXPORT': "bulk.Export",
+ 'BULK.EXPORTEDITEM': "bulk.ExportedItem",
'BULK.MOCLONER': "bulk.MoCloner",
'BULK.MOMERGER': "bulk.MoMerger",
'BULK.REQUEST': "bulk.Request",
+ 'BULK.SUBREQUESTOBJ': "bulk.SubRequestObj",
'CAPABILITY.ADAPTERUNITDESCRIPTOR': "capability.AdapterUnitDescriptor",
'CAPABILITY.CATALOG': "capability.Catalog",
'CAPABILITY.CHASSISDESCRIPTOR': "capability.ChassisDescriptor",
@@ -268,10 +276,6 @@ class EquipmentFanRelationship(ModelComposed):
'COND.HCLSTATUS': "cond.HclStatus",
'COND.HCLSTATUSDETAIL': "cond.HclStatusDetail",
'COND.HCLSTATUSJOB': "cond.HclStatusJob",
- 'CONFIG.EXPORTEDITEM': "config.ExportedItem",
- 'CONFIG.EXPORTER': "config.Exporter",
- 'CONFIG.IMPORTEDITEM': "config.ImportedItem",
- 'CONFIG.IMPORTER': "config.Importer",
'CONNECTORPACK.CONNECTORPACKUPGRADE': "connectorpack.ConnectorPackUpgrade",
'CONNECTORPACK.UPGRADEIMPACT': "connectorpack.UpgradeImpact",
'CRD.CUSTOMRESOURCE': "crd.CustomResource",
@@ -280,6 +284,7 @@ class EquipmentFanRelationship(ModelComposed):
'EQUIPMENT.CHASSISIDENTITY': "equipment.ChassisIdentity",
'EQUIPMENT.CHASSISOPERATION': "equipment.ChassisOperation",
'EQUIPMENT.DEVICESUMMARY': "equipment.DeviceSummary",
+ 'EQUIPMENT.EXPANDERMODULE': "equipment.ExpanderModule",
'EQUIPMENT.FAN': "equipment.Fan",
'EQUIPMENT.FANCONTROL': "equipment.FanControl",
'EQUIPMENT.FANMODULE': "equipment.FanModule",
@@ -528,6 +533,7 @@ class EquipmentFanRelationship(ModelComposed):
'KUBERNETES.ADDONDEFINITION': "kubernetes.AddonDefinition",
'KUBERNETES.ADDONPOLICY': "kubernetes.AddonPolicy",
'KUBERNETES.ADDONREPOSITORY': "kubernetes.AddonRepository",
+ 'KUBERNETES.BAREMETALNODEPROFILE': "kubernetes.BaremetalNodeProfile",
'KUBERNETES.CATALOG': "kubernetes.Catalog",
'KUBERNETES.CLUSTER': "kubernetes.Cluster",
'KUBERNETES.CLUSTERADDONPROFILE': "kubernetes.ClusterAddonProfile",
@@ -697,6 +703,11 @@ class EquipmentFanRelationship(ModelComposed):
'RESOURCE.LICENSERESOURCECOUNT': "resource.LicenseResourceCount",
'RESOURCE.MEMBERSHIP': "resource.Membership",
'RESOURCE.MEMBERSHIPHOLDER': "resource.MembershipHolder",
+ 'RESOURCEPOOL.LEASE': "resourcepool.Lease",
+ 'RESOURCEPOOL.LEASERESOURCE': "resourcepool.LeaseResource",
+ 'RESOURCEPOOL.POOL': "resourcepool.Pool",
+ 'RESOURCEPOOL.POOLMEMBER': "resourcepool.PoolMember",
+ 'RESOURCEPOOL.UNIVERSE': "resourcepool.Universe",
'RPROXY.REVERSEPROXY': "rproxy.ReverseProxy",
'SDCARD.POLICY': "sdcard.Policy",
'SDWAN.PROFILE': "sdwan.Profile",
@@ -812,6 +823,7 @@ class EquipmentFanRelationship(ModelComposed):
'TASK.NETAPPSCOPEDINVENTORY': "task.NetAppScopedInventory",
'TASK.PUBLICCLOUDSCOPEDINVENTORY': "task.PublicCloudScopedInventory",
'TASK.PURESCOPEDINVENTORY': "task.PureScopedInventory",
+ 'TASK.SERVERSCOPEDINVENTORY': "task.ServerScopedInventory",
'TECHSUPPORTMANAGEMENT.COLLECTIONCONTROLPOLICY': "techsupportmanagement.CollectionControlPolicy",
'TECHSUPPORTMANAGEMENT.DOWNLOAD': "techsupportmanagement.Download",
'TECHSUPPORTMANAGEMENT.TECHSUPPORTBUNDLE': "techsupportmanagement.TechSupportBundle",
@@ -843,6 +855,7 @@ class EquipmentFanRelationship(ModelComposed):
'VIRTUALIZATION.VMWAREVCENTER': "virtualization.VmwareVcenter",
'VIRTUALIZATION.VMWAREVIRTUALDISK': "virtualization.VmwareVirtualDisk",
'VIRTUALIZATION.VMWAREVIRTUALMACHINE': "virtualization.VmwareVirtualMachine",
+ 'VIRTUALIZATION.VMWAREVIRTUALMACHINESNAPSHOT': "virtualization.VmwareVirtualMachineSnapshot",
'VIRTUALIZATION.VMWAREVIRTUALNETWORKINTERFACE': "virtualization.VmwareVirtualNetworkInterface",
'VIRTUALIZATION.VMWAREVIRTUALSWITCH': "virtualization.VmwareVirtualSwitch",
'VMEDIA.POLICY': "vmedia.Policy",
@@ -875,12 +888,14 @@ class EquipmentFanRelationship(ModelComposed):
'WORKFLOW.TASKDEFINITION': "workflow.TaskDefinition",
'WORKFLOW.TASKINFO': "workflow.TaskInfo",
'WORKFLOW.TASKMETADATA': "workflow.TaskMetadata",
+ 'WORKFLOW.TASKNOTIFICATION': "workflow.TaskNotification",
'WORKFLOW.TEMPLATEEVALUATION': "workflow.TemplateEvaluation",
'WORKFLOW.TEMPLATEFUNCTIONMETA': "workflow.TemplateFunctionMeta",
'WORKFLOW.WORKFLOWDEFINITION': "workflow.WorkflowDefinition",
'WORKFLOW.WORKFLOWINFO': "workflow.WorkflowInfo",
'WORKFLOW.WORKFLOWMETA': "workflow.WorkflowMeta",
'WORKFLOW.WORKFLOWMETADATA': "workflow.WorkflowMetadata",
+ 'WORKFLOW.WORKFLOWNOTIFICATION': "workflow.WorkflowNotification",
},
}
diff --git a/intersight/model/equipment_fan_response.py b/intersight/model/equipment_fan_response.py
index 1fdd74a391..c8a7a2d94b 100644
--- a/intersight/model/equipment_fan_response.py
+++ b/intersight/model/equipment_fan_response.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/equipment_fex.py b/intersight/model/equipment_fex.py
index 6db78611fc..7f38cc00cb 100644
--- a/intersight/model/equipment_fex.py
+++ b/intersight/model/equipment_fex.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
@@ -139,6 +139,8 @@ class EquipmentFex(ModelComposed):
'MEMORYUNCORRECTABLEERROR': "MemoryUncorrectableError",
'MEMORYTEMPERATUREWARNING': "MemoryTemperatureWarning",
'MEMORYTEMPERATURECRITICAL': "MemoryTemperatureCritical",
+ 'MEMORYBANKERROR': "MemoryBankError",
+ 'MEMORYRANKERROR': "MemoryRankError",
'MOTHERBOARDPOWERCRITICAL': "MotherBoardPowerCritical",
'MOTHERBOARDTEMPERATUREWARNING': "MotherBoardTemperatureWarning",
'MOTHERBOARDTEMPERATURECRITICAL': "MotherBoardTemperatureCritical",
diff --git a/intersight/model/equipment_fex_all_of.py b/intersight/model/equipment_fex_all_of.py
index 3f1d09f2c8..52a57b1772 100644
--- a/intersight/model/equipment_fex_all_of.py
+++ b/intersight/model/equipment_fex_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/equipment_fex_identity.py b/intersight/model/equipment_fex_identity.py
index 838200e63b..daeb3a3ff8 100644
--- a/intersight/model/equipment_fex_identity.py
+++ b/intersight/model/equipment_fex_identity.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/equipment_fex_identity_all_of.py b/intersight/model/equipment_fex_identity_all_of.py
index 2894b29540..25dde8bb6b 100644
--- a/intersight/model/equipment_fex_identity_all_of.py
+++ b/intersight/model/equipment_fex_identity_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/equipment_fex_identity_list.py b/intersight/model/equipment_fex_identity_list.py
index f2039c5244..87bfd33c86 100644
--- a/intersight/model/equipment_fex_identity_list.py
+++ b/intersight/model/equipment_fex_identity_list.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/equipment_fex_identity_list_all_of.py b/intersight/model/equipment_fex_identity_list_all_of.py
index fd55cd7a16..d126810cd1 100644
--- a/intersight/model/equipment_fex_identity_list_all_of.py
+++ b/intersight/model/equipment_fex_identity_list_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/equipment_fex_identity_response.py b/intersight/model/equipment_fex_identity_response.py
index 97fcb3f478..b418005ca6 100644
--- a/intersight/model/equipment_fex_identity_response.py
+++ b/intersight/model/equipment_fex_identity_response.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/equipment_fex_list.py b/intersight/model/equipment_fex_list.py
index a06f215b43..b0e7e41e2b 100644
--- a/intersight/model/equipment_fex_list.py
+++ b/intersight/model/equipment_fex_list.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/equipment_fex_list_all_of.py b/intersight/model/equipment_fex_list_all_of.py
index b83c2ca1c3..af2bbe121a 100644
--- a/intersight/model/equipment_fex_list_all_of.py
+++ b/intersight/model/equipment_fex_list_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/equipment_fex_operation.py b/intersight/model/equipment_fex_operation.py
index 763df72bb6..dff8aed0a8 100644
--- a/intersight/model/equipment_fex_operation.py
+++ b/intersight/model/equipment_fex_operation.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/equipment_fex_operation_all_of.py b/intersight/model/equipment_fex_operation_all_of.py
index bd6a28d5e4..5d592a6898 100644
--- a/intersight/model/equipment_fex_operation_all_of.py
+++ b/intersight/model/equipment_fex_operation_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/equipment_fex_operation_list.py b/intersight/model/equipment_fex_operation_list.py
index 395ab26607..80742b6fa0 100644
--- a/intersight/model/equipment_fex_operation_list.py
+++ b/intersight/model/equipment_fex_operation_list.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/equipment_fex_operation_list_all_of.py b/intersight/model/equipment_fex_operation_list_all_of.py
index d452002c4c..c14827753a 100644
--- a/intersight/model/equipment_fex_operation_list_all_of.py
+++ b/intersight/model/equipment_fex_operation_list_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/equipment_fex_operation_response.py b/intersight/model/equipment_fex_operation_response.py
index ffbd62d38e..93df97a68b 100644
--- a/intersight/model/equipment_fex_operation_response.py
+++ b/intersight/model/equipment_fex_operation_response.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/equipment_fex_relationship.py b/intersight/model/equipment_fex_relationship.py
index c91b7c7550..a65857b283 100644
--- a/intersight/model/equipment_fex_relationship.py
+++ b/intersight/model/equipment_fex_relationship.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
@@ -136,6 +136,8 @@ class EquipmentFexRelationship(ModelComposed):
'MEMORYUNCORRECTABLEERROR': "MemoryUncorrectableError",
'MEMORYTEMPERATUREWARNING': "MemoryTemperatureWarning",
'MEMORYTEMPERATURECRITICAL': "MemoryTemperatureCritical",
+ 'MEMORYBANKERROR': "MemoryBankError",
+ 'MEMORYRANKERROR': "MemoryRankError",
'MOTHERBOARDPOWERCRITICAL': "MotherBoardPowerCritical",
'MOTHERBOARDTEMPERATUREWARNING': "MotherBoardTemperatureWarning",
'MOTHERBOARDTEMPERATURECRITICAL': "MotherBoardTemperatureCritical",
@@ -150,6 +152,8 @@ class EquipmentFexRelationship(ModelComposed):
},
('object_type',): {
'AAA.AUDITRECORD': "aaa.AuditRecord",
+ 'AAA.RETENTIONCONFIG': "aaa.RetentionConfig",
+ 'AAA.RETENTIONPOLICY': "aaa.RetentionPolicy",
'ACCESS.POLICY': "access.Policy",
'ADAPTER.CONFIGPOLICY': "adapter.ConfigPolicy",
'ADAPTER.EXTETHINTERFACE': "adapter.ExtEthInterface",
@@ -166,6 +170,7 @@ class EquipmentFexRelationship(ModelComposed):
'APPLIANCE.DATAEXPORTPOLICY': "appliance.DataExportPolicy",
'APPLIANCE.DEVICECERTIFICATE': "appliance.DeviceCertificate",
'APPLIANCE.DEVICECLAIM': "appliance.DeviceClaim",
+ 'APPLIANCE.DEVICEUPGRADEPOLICY': "appliance.DeviceUpgradePolicy",
'APPLIANCE.DIAGSETTING': "appliance.DiagSetting",
'APPLIANCE.EXTERNALSYSLOGSETTING': "appliance.ExternalSyslogSetting",
'APPLIANCE.FILESYSTEMSTATUS': "appliance.FileSystemStatus",
@@ -214,9 +219,12 @@ class EquipmentFexRelationship(ModelComposed):
'BOOT.UEFISHELLDEVICE': "boot.UefiShellDevice",
'BOOT.USBDEVICE': "boot.UsbDevice",
'BOOT.VMEDIADEVICE': "boot.VmediaDevice",
+ 'BULK.EXPORT': "bulk.Export",
+ 'BULK.EXPORTEDITEM': "bulk.ExportedItem",
'BULK.MOCLONER': "bulk.MoCloner",
'BULK.MOMERGER': "bulk.MoMerger",
'BULK.REQUEST': "bulk.Request",
+ 'BULK.SUBREQUESTOBJ': "bulk.SubRequestObj",
'CAPABILITY.ADAPTERUNITDESCRIPTOR': "capability.AdapterUnitDescriptor",
'CAPABILITY.CATALOG': "capability.Catalog",
'CAPABILITY.CHASSISDESCRIPTOR': "capability.ChassisDescriptor",
@@ -280,10 +288,6 @@ class EquipmentFexRelationship(ModelComposed):
'COND.HCLSTATUS': "cond.HclStatus",
'COND.HCLSTATUSDETAIL': "cond.HclStatusDetail",
'COND.HCLSTATUSJOB': "cond.HclStatusJob",
- 'CONFIG.EXPORTEDITEM': "config.ExportedItem",
- 'CONFIG.EXPORTER': "config.Exporter",
- 'CONFIG.IMPORTEDITEM': "config.ImportedItem",
- 'CONFIG.IMPORTER': "config.Importer",
'CONNECTORPACK.CONNECTORPACKUPGRADE': "connectorpack.ConnectorPackUpgrade",
'CONNECTORPACK.UPGRADEIMPACT': "connectorpack.UpgradeImpact",
'CRD.CUSTOMRESOURCE': "crd.CustomResource",
@@ -292,6 +296,7 @@ class EquipmentFexRelationship(ModelComposed):
'EQUIPMENT.CHASSISIDENTITY': "equipment.ChassisIdentity",
'EQUIPMENT.CHASSISOPERATION': "equipment.ChassisOperation",
'EQUIPMENT.DEVICESUMMARY': "equipment.DeviceSummary",
+ 'EQUIPMENT.EXPANDERMODULE': "equipment.ExpanderModule",
'EQUIPMENT.FAN': "equipment.Fan",
'EQUIPMENT.FANCONTROL': "equipment.FanControl",
'EQUIPMENT.FANMODULE': "equipment.FanModule",
@@ -540,6 +545,7 @@ class EquipmentFexRelationship(ModelComposed):
'KUBERNETES.ADDONDEFINITION': "kubernetes.AddonDefinition",
'KUBERNETES.ADDONPOLICY': "kubernetes.AddonPolicy",
'KUBERNETES.ADDONREPOSITORY': "kubernetes.AddonRepository",
+ 'KUBERNETES.BAREMETALNODEPROFILE': "kubernetes.BaremetalNodeProfile",
'KUBERNETES.CATALOG': "kubernetes.Catalog",
'KUBERNETES.CLUSTER': "kubernetes.Cluster",
'KUBERNETES.CLUSTERADDONPROFILE': "kubernetes.ClusterAddonProfile",
@@ -709,6 +715,11 @@ class EquipmentFexRelationship(ModelComposed):
'RESOURCE.LICENSERESOURCECOUNT': "resource.LicenseResourceCount",
'RESOURCE.MEMBERSHIP': "resource.Membership",
'RESOURCE.MEMBERSHIPHOLDER': "resource.MembershipHolder",
+ 'RESOURCEPOOL.LEASE': "resourcepool.Lease",
+ 'RESOURCEPOOL.LEASERESOURCE': "resourcepool.LeaseResource",
+ 'RESOURCEPOOL.POOL': "resourcepool.Pool",
+ 'RESOURCEPOOL.POOLMEMBER': "resourcepool.PoolMember",
+ 'RESOURCEPOOL.UNIVERSE': "resourcepool.Universe",
'RPROXY.REVERSEPROXY': "rproxy.ReverseProxy",
'SDCARD.POLICY': "sdcard.Policy",
'SDWAN.PROFILE': "sdwan.Profile",
@@ -824,6 +835,7 @@ class EquipmentFexRelationship(ModelComposed):
'TASK.NETAPPSCOPEDINVENTORY': "task.NetAppScopedInventory",
'TASK.PUBLICCLOUDSCOPEDINVENTORY': "task.PublicCloudScopedInventory",
'TASK.PURESCOPEDINVENTORY': "task.PureScopedInventory",
+ 'TASK.SERVERSCOPEDINVENTORY': "task.ServerScopedInventory",
'TECHSUPPORTMANAGEMENT.COLLECTIONCONTROLPOLICY': "techsupportmanagement.CollectionControlPolicy",
'TECHSUPPORTMANAGEMENT.DOWNLOAD': "techsupportmanagement.Download",
'TECHSUPPORTMANAGEMENT.TECHSUPPORTBUNDLE': "techsupportmanagement.TechSupportBundle",
@@ -855,6 +867,7 @@ class EquipmentFexRelationship(ModelComposed):
'VIRTUALIZATION.VMWAREVCENTER': "virtualization.VmwareVcenter",
'VIRTUALIZATION.VMWAREVIRTUALDISK': "virtualization.VmwareVirtualDisk",
'VIRTUALIZATION.VMWAREVIRTUALMACHINE': "virtualization.VmwareVirtualMachine",
+ 'VIRTUALIZATION.VMWAREVIRTUALMACHINESNAPSHOT': "virtualization.VmwareVirtualMachineSnapshot",
'VIRTUALIZATION.VMWAREVIRTUALNETWORKINTERFACE': "virtualization.VmwareVirtualNetworkInterface",
'VIRTUALIZATION.VMWAREVIRTUALSWITCH': "virtualization.VmwareVirtualSwitch",
'VMEDIA.POLICY': "vmedia.Policy",
@@ -887,12 +900,14 @@ class EquipmentFexRelationship(ModelComposed):
'WORKFLOW.TASKDEFINITION': "workflow.TaskDefinition",
'WORKFLOW.TASKINFO': "workflow.TaskInfo",
'WORKFLOW.TASKMETADATA': "workflow.TaskMetadata",
+ 'WORKFLOW.TASKNOTIFICATION': "workflow.TaskNotification",
'WORKFLOW.TEMPLATEEVALUATION': "workflow.TemplateEvaluation",
'WORKFLOW.TEMPLATEFUNCTIONMETA': "workflow.TemplateFunctionMeta",
'WORKFLOW.WORKFLOWDEFINITION': "workflow.WorkflowDefinition",
'WORKFLOW.WORKFLOWINFO': "workflow.WorkflowInfo",
'WORKFLOW.WORKFLOWMETA': "workflow.WorkflowMeta",
'WORKFLOW.WORKFLOWMETADATA': "workflow.WorkflowMetadata",
+ 'WORKFLOW.WORKFLOWNOTIFICATION': "workflow.WorkflowNotification",
},
}
diff --git a/intersight/model/equipment_fex_response.py b/intersight/model/equipment_fex_response.py
index bbeb80060c..adbe0ca9cd 100644
--- a/intersight/model/equipment_fex_response.py
+++ b/intersight/model/equipment_fex_response.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/equipment_fru.py b/intersight/model/equipment_fru.py
index 5b35432675..bef78b664e 100644
--- a/intersight/model/equipment_fru.py
+++ b/intersight/model/equipment_fru.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/equipment_fru_all_of.py b/intersight/model/equipment_fru_all_of.py
index dc127ce67c..3b89cd15f4 100644
--- a/intersight/model/equipment_fru_all_of.py
+++ b/intersight/model/equipment_fru_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/equipment_fru_list.py b/intersight/model/equipment_fru_list.py
index 116392e4a5..a1038f0b0d 100644
--- a/intersight/model/equipment_fru_list.py
+++ b/intersight/model/equipment_fru_list.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/equipment_fru_list_all_of.py b/intersight/model/equipment_fru_list_all_of.py
index 092c452b00..dfb599393d 100644
--- a/intersight/model/equipment_fru_list_all_of.py
+++ b/intersight/model/equipment_fru_list_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/equipment_fru_relationship.py b/intersight/model/equipment_fru_relationship.py
index e7ecae39ab..c180e14c54 100644
--- a/intersight/model/equipment_fru_relationship.py
+++ b/intersight/model/equipment_fru_relationship.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
@@ -85,6 +85,8 @@ class EquipmentFruRelationship(ModelComposed):
},
('object_type',): {
'AAA.AUDITRECORD': "aaa.AuditRecord",
+ 'AAA.RETENTIONCONFIG': "aaa.RetentionConfig",
+ 'AAA.RETENTIONPOLICY': "aaa.RetentionPolicy",
'ACCESS.POLICY': "access.Policy",
'ADAPTER.CONFIGPOLICY': "adapter.ConfigPolicy",
'ADAPTER.EXTETHINTERFACE': "adapter.ExtEthInterface",
@@ -101,6 +103,7 @@ class EquipmentFruRelationship(ModelComposed):
'APPLIANCE.DATAEXPORTPOLICY': "appliance.DataExportPolicy",
'APPLIANCE.DEVICECERTIFICATE': "appliance.DeviceCertificate",
'APPLIANCE.DEVICECLAIM': "appliance.DeviceClaim",
+ 'APPLIANCE.DEVICEUPGRADEPOLICY': "appliance.DeviceUpgradePolicy",
'APPLIANCE.DIAGSETTING': "appliance.DiagSetting",
'APPLIANCE.EXTERNALSYSLOGSETTING': "appliance.ExternalSyslogSetting",
'APPLIANCE.FILESYSTEMSTATUS': "appliance.FileSystemStatus",
@@ -149,9 +152,12 @@ class EquipmentFruRelationship(ModelComposed):
'BOOT.UEFISHELLDEVICE': "boot.UefiShellDevice",
'BOOT.USBDEVICE': "boot.UsbDevice",
'BOOT.VMEDIADEVICE': "boot.VmediaDevice",
+ 'BULK.EXPORT': "bulk.Export",
+ 'BULK.EXPORTEDITEM': "bulk.ExportedItem",
'BULK.MOCLONER': "bulk.MoCloner",
'BULK.MOMERGER': "bulk.MoMerger",
'BULK.REQUEST': "bulk.Request",
+ 'BULK.SUBREQUESTOBJ': "bulk.SubRequestObj",
'CAPABILITY.ADAPTERUNITDESCRIPTOR': "capability.AdapterUnitDescriptor",
'CAPABILITY.CATALOG': "capability.Catalog",
'CAPABILITY.CHASSISDESCRIPTOR': "capability.ChassisDescriptor",
@@ -215,10 +221,6 @@ class EquipmentFruRelationship(ModelComposed):
'COND.HCLSTATUS': "cond.HclStatus",
'COND.HCLSTATUSDETAIL': "cond.HclStatusDetail",
'COND.HCLSTATUSJOB': "cond.HclStatusJob",
- 'CONFIG.EXPORTEDITEM': "config.ExportedItem",
- 'CONFIG.EXPORTER': "config.Exporter",
- 'CONFIG.IMPORTEDITEM': "config.ImportedItem",
- 'CONFIG.IMPORTER': "config.Importer",
'CONNECTORPACK.CONNECTORPACKUPGRADE': "connectorpack.ConnectorPackUpgrade",
'CONNECTORPACK.UPGRADEIMPACT': "connectorpack.UpgradeImpact",
'CRD.CUSTOMRESOURCE': "crd.CustomResource",
@@ -227,6 +229,7 @@ class EquipmentFruRelationship(ModelComposed):
'EQUIPMENT.CHASSISIDENTITY': "equipment.ChassisIdentity",
'EQUIPMENT.CHASSISOPERATION': "equipment.ChassisOperation",
'EQUIPMENT.DEVICESUMMARY': "equipment.DeviceSummary",
+ 'EQUIPMENT.EXPANDERMODULE': "equipment.ExpanderModule",
'EQUIPMENT.FAN': "equipment.Fan",
'EQUIPMENT.FANCONTROL': "equipment.FanControl",
'EQUIPMENT.FANMODULE': "equipment.FanModule",
@@ -475,6 +478,7 @@ class EquipmentFruRelationship(ModelComposed):
'KUBERNETES.ADDONDEFINITION': "kubernetes.AddonDefinition",
'KUBERNETES.ADDONPOLICY': "kubernetes.AddonPolicy",
'KUBERNETES.ADDONREPOSITORY': "kubernetes.AddonRepository",
+ 'KUBERNETES.BAREMETALNODEPROFILE': "kubernetes.BaremetalNodeProfile",
'KUBERNETES.CATALOG': "kubernetes.Catalog",
'KUBERNETES.CLUSTER': "kubernetes.Cluster",
'KUBERNETES.CLUSTERADDONPROFILE': "kubernetes.ClusterAddonProfile",
@@ -644,6 +648,11 @@ class EquipmentFruRelationship(ModelComposed):
'RESOURCE.LICENSERESOURCECOUNT': "resource.LicenseResourceCount",
'RESOURCE.MEMBERSHIP': "resource.Membership",
'RESOURCE.MEMBERSHIPHOLDER': "resource.MembershipHolder",
+ 'RESOURCEPOOL.LEASE': "resourcepool.Lease",
+ 'RESOURCEPOOL.LEASERESOURCE': "resourcepool.LeaseResource",
+ 'RESOURCEPOOL.POOL': "resourcepool.Pool",
+ 'RESOURCEPOOL.POOLMEMBER': "resourcepool.PoolMember",
+ 'RESOURCEPOOL.UNIVERSE': "resourcepool.Universe",
'RPROXY.REVERSEPROXY': "rproxy.ReverseProxy",
'SDCARD.POLICY': "sdcard.Policy",
'SDWAN.PROFILE': "sdwan.Profile",
@@ -759,6 +768,7 @@ class EquipmentFruRelationship(ModelComposed):
'TASK.NETAPPSCOPEDINVENTORY': "task.NetAppScopedInventory",
'TASK.PUBLICCLOUDSCOPEDINVENTORY': "task.PublicCloudScopedInventory",
'TASK.PURESCOPEDINVENTORY': "task.PureScopedInventory",
+ 'TASK.SERVERSCOPEDINVENTORY': "task.ServerScopedInventory",
'TECHSUPPORTMANAGEMENT.COLLECTIONCONTROLPOLICY': "techsupportmanagement.CollectionControlPolicy",
'TECHSUPPORTMANAGEMENT.DOWNLOAD': "techsupportmanagement.Download",
'TECHSUPPORTMANAGEMENT.TECHSUPPORTBUNDLE': "techsupportmanagement.TechSupportBundle",
@@ -790,6 +800,7 @@ class EquipmentFruRelationship(ModelComposed):
'VIRTUALIZATION.VMWAREVCENTER': "virtualization.VmwareVcenter",
'VIRTUALIZATION.VMWAREVIRTUALDISK': "virtualization.VmwareVirtualDisk",
'VIRTUALIZATION.VMWAREVIRTUALMACHINE': "virtualization.VmwareVirtualMachine",
+ 'VIRTUALIZATION.VMWAREVIRTUALMACHINESNAPSHOT': "virtualization.VmwareVirtualMachineSnapshot",
'VIRTUALIZATION.VMWAREVIRTUALNETWORKINTERFACE': "virtualization.VmwareVirtualNetworkInterface",
'VIRTUALIZATION.VMWAREVIRTUALSWITCH': "virtualization.VmwareVirtualSwitch",
'VMEDIA.POLICY': "vmedia.Policy",
@@ -822,12 +833,14 @@ class EquipmentFruRelationship(ModelComposed):
'WORKFLOW.TASKDEFINITION': "workflow.TaskDefinition",
'WORKFLOW.TASKINFO': "workflow.TaskInfo",
'WORKFLOW.TASKMETADATA': "workflow.TaskMetadata",
+ 'WORKFLOW.TASKNOTIFICATION': "workflow.TaskNotification",
'WORKFLOW.TEMPLATEEVALUATION': "workflow.TemplateEvaluation",
'WORKFLOW.TEMPLATEFUNCTIONMETA': "workflow.TemplateFunctionMeta",
'WORKFLOW.WORKFLOWDEFINITION': "workflow.WorkflowDefinition",
'WORKFLOW.WORKFLOWINFO': "workflow.WorkflowInfo",
'WORKFLOW.WORKFLOWMETA': "workflow.WorkflowMeta",
'WORKFLOW.WORKFLOWMETADATA': "workflow.WorkflowMetadata",
+ 'WORKFLOW.WORKFLOWNOTIFICATION': "workflow.WorkflowNotification",
},
}
diff --git a/intersight/model/equipment_fru_response.py b/intersight/model/equipment_fru_response.py
index 41c361ce7c..14974b62d0 100644
--- a/intersight/model/equipment_fru_response.py
+++ b/intersight/model/equipment_fru_response.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/equipment_identity.py b/intersight/model/equipment_identity.py
index 59d5c6914c..1962d3828f 100644
--- a/intersight/model/equipment_identity.py
+++ b/intersight/model/equipment_identity.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/equipment_identity_all_of.py b/intersight/model/equipment_identity_all_of.py
index 659e41d99f..3240825263 100644
--- a/intersight/model/equipment_identity_all_of.py
+++ b/intersight/model/equipment_identity_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/equipment_identity_summary.py b/intersight/model/equipment_identity_summary.py
index 030f8d34b4..ea0c111b47 100644
--- a/intersight/model/equipment_identity_summary.py
+++ b/intersight/model/equipment_identity_summary.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/equipment_identity_summary_all_of.py b/intersight/model/equipment_identity_summary_all_of.py
index 5f08f41020..0783db9115 100644
--- a/intersight/model/equipment_identity_summary_all_of.py
+++ b/intersight/model/equipment_identity_summary_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/equipment_identity_summary_list.py b/intersight/model/equipment_identity_summary_list.py
index b873fad738..25abbbbedd 100644
--- a/intersight/model/equipment_identity_summary_list.py
+++ b/intersight/model/equipment_identity_summary_list.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/equipment_identity_summary_list_all_of.py b/intersight/model/equipment_identity_summary_list_all_of.py
index e419f24e62..7530dfb66f 100644
--- a/intersight/model/equipment_identity_summary_list_all_of.py
+++ b/intersight/model/equipment_identity_summary_list_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/equipment_identity_summary_response.py b/intersight/model/equipment_identity_summary_response.py
index 3da02721b1..93f54bc27d 100644
--- a/intersight/model/equipment_identity_summary_response.py
+++ b/intersight/model/equipment_identity_summary_response.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/equipment_io_card.py b/intersight/model/equipment_io_card.py
index a5308c9bc2..829dde7190 100644
--- a/intersight/model/equipment_io_card.py
+++ b/intersight/model/equipment_io_card.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
@@ -32,6 +32,7 @@ def lazy_import():
from intersight.model.compute_ip_address import ComputeIpAddress
from intersight.model.display_names import DisplayNames
from intersight.model.equipment_chassis_relationship import EquipmentChassisRelationship
+ from intersight.model.equipment_fan_module_relationship import EquipmentFanModuleRelationship
from intersight.model.equipment_fex_relationship import EquipmentFexRelationship
from intersight.model.equipment_fru_relationship import EquipmentFruRelationship
from intersight.model.equipment_io_card_all_of import EquipmentIoCardAllOf
@@ -47,6 +48,7 @@ def lazy_import():
globals()['ComputeIpAddress'] = ComputeIpAddress
globals()['DisplayNames'] = DisplayNames
globals()['EquipmentChassisRelationship'] = EquipmentChassisRelationship
+ globals()['EquipmentFanModuleRelationship'] = EquipmentFanModuleRelationship
globals()['EquipmentFexRelationship'] = EquipmentFexRelationship
globals()['EquipmentFruRelationship'] = EquipmentFruRelationship
globals()['EquipmentIoCardAllOf'] = EquipmentIoCardAllOf
@@ -135,6 +137,8 @@ class EquipmentIoCard(ModelComposed):
'MEMORYUNCORRECTABLEERROR': "MemoryUncorrectableError",
'MEMORYTEMPERATUREWARNING': "MemoryTemperatureWarning",
'MEMORYTEMPERATURECRITICAL': "MemoryTemperatureCritical",
+ 'MEMORYBANKERROR': "MemoryBankError",
+ 'MEMORYRANKERROR': "MemoryRankError",
'MOTHERBOARDPOWERCRITICAL': "MotherBoardPowerCritical",
'MOTHERBOARDTEMPERATUREWARNING': "MotherBoardTemperatureWarning",
'MOTHERBOARDTEMPERATURECRITICAL': "MotherBoardTemperatureCritical",
@@ -183,6 +187,7 @@ def openapi_types():
'side': (str,), # noqa: E501
'equipment_chassis': (EquipmentChassisRelationship,), # noqa: E501
'equipment_fex': (EquipmentFexRelationship,), # noqa: E501
+ 'fan_modules': ([EquipmentFanModuleRelationship], none_type,), # noqa: E501
'inventory_device_info': (InventoryDeviceInfoRelationship,), # noqa: E501
'physical_device_registration': (AssetDeviceRegistrationRelationship,), # noqa: E501
'registered_device': (AssetDeviceRegistrationRelationship,), # noqa: E501
@@ -241,6 +246,7 @@ def discriminator():
'side': 'Side', # noqa: E501
'equipment_chassis': 'EquipmentChassis', # noqa: E501
'equipment_fex': 'EquipmentFex', # noqa: E501
+ 'fan_modules': 'FanModules', # noqa: E501
'inventory_device_info': 'InventoryDeviceInfo', # noqa: E501
'physical_device_registration': 'PhysicalDeviceRegistration', # noqa: E501
'registered_device': 'RegisteredDevice', # noqa: E501
@@ -339,6 +345,7 @@ def __init__(self, *args, **kwargs): # noqa: E501
side (str): Location of IOM within a chassis. The value can be left or right.. [optional] # noqa: E501
equipment_chassis (EquipmentChassisRelationship): [optional] # noqa: E501
equipment_fex (EquipmentFexRelationship): [optional] # noqa: E501
+ fan_modules ([EquipmentFanModuleRelationship], none_type): An array of relationships to equipmentFanModule resources.. [optional] # noqa: E501
inventory_device_info (InventoryDeviceInfoRelationship): [optional] # noqa: E501
physical_device_registration (AssetDeviceRegistrationRelationship): [optional] # noqa: E501
registered_device (AssetDeviceRegistrationRelationship): [optional] # noqa: E501
diff --git a/intersight/model/equipment_io_card_all_of.py b/intersight/model/equipment_io_card_all_of.py
index 118277a37b..9e97b21337 100644
--- a/intersight/model/equipment_io_card_all_of.py
+++ b/intersight/model/equipment_io_card_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
@@ -31,11 +31,13 @@ def lazy_import():
from intersight.model.asset_device_registration_relationship import AssetDeviceRegistrationRelationship
from intersight.model.compute_ip_address import ComputeIpAddress
from intersight.model.equipment_chassis_relationship import EquipmentChassisRelationship
+ from intersight.model.equipment_fan_module_relationship import EquipmentFanModuleRelationship
from intersight.model.equipment_fex_relationship import EquipmentFexRelationship
from intersight.model.inventory_device_info_relationship import InventoryDeviceInfoRelationship
globals()['AssetDeviceRegistrationRelationship'] = AssetDeviceRegistrationRelationship
globals()['ComputeIpAddress'] = ComputeIpAddress
globals()['EquipmentChassisRelationship'] = EquipmentChassisRelationship
+ globals()['EquipmentFanModuleRelationship'] = EquipmentFanModuleRelationship
globals()['EquipmentFexRelationship'] = EquipmentFexRelationship
globals()['InventoryDeviceInfoRelationship'] = InventoryDeviceInfoRelationship
@@ -100,6 +102,7 @@ def openapi_types():
'side': (str,), # noqa: E501
'equipment_chassis': (EquipmentChassisRelationship,), # noqa: E501
'equipment_fex': (EquipmentFexRelationship,), # noqa: E501
+ 'fan_modules': ([EquipmentFanModuleRelationship], none_type,), # noqa: E501
'inventory_device_info': (InventoryDeviceInfoRelationship,), # noqa: E501
'physical_device_registration': (AssetDeviceRegistrationRelationship,), # noqa: E501
'registered_device': (AssetDeviceRegistrationRelationship,), # noqa: E501
@@ -119,6 +122,7 @@ def discriminator():
'side': 'Side', # noqa: E501
'equipment_chassis': 'EquipmentChassis', # noqa: E501
'equipment_fex': 'EquipmentFex', # noqa: E501
+ 'fan_modules': 'FanModules', # noqa: E501
'inventory_device_info': 'InventoryDeviceInfo', # noqa: E501
'physical_device_registration': 'PhysicalDeviceRegistration', # noqa: E501
'registered_device': 'RegisteredDevice', # noqa: E501
@@ -180,6 +184,7 @@ def __init__(self, *args, **kwargs): # noqa: E501
side (str): Location of IOM within a chassis. The value can be left or right.. [optional] # noqa: E501
equipment_chassis (EquipmentChassisRelationship): [optional] # noqa: E501
equipment_fex (EquipmentFexRelationship): [optional] # noqa: E501
+ fan_modules ([EquipmentFanModuleRelationship], none_type): An array of relationships to equipmentFanModule resources.. [optional] # noqa: E501
inventory_device_info (InventoryDeviceInfoRelationship): [optional] # noqa: E501
physical_device_registration (AssetDeviceRegistrationRelationship): [optional] # noqa: E501
registered_device (AssetDeviceRegistrationRelationship): [optional] # noqa: E501
diff --git a/intersight/model/equipment_io_card_base.py b/intersight/model/equipment_io_card_base.py
index 1825aaa42b..e8b7ba3e15 100644
--- a/intersight/model/equipment_io_card_base.py
+++ b/intersight/model/equipment_io_card_base.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
@@ -131,6 +131,8 @@ class EquipmentIoCardBase(ModelComposed):
'MEMORYUNCORRECTABLEERROR': "MemoryUncorrectableError",
'MEMORYTEMPERATUREWARNING': "MemoryTemperatureWarning",
'MEMORYTEMPERATURECRITICAL': "MemoryTemperatureCritical",
+ 'MEMORYBANKERROR': "MemoryBankError",
+ 'MEMORYRANKERROR': "MemoryRankError",
'MOTHERBOARDPOWERCRITICAL': "MotherBoardPowerCritical",
'MOTHERBOARDTEMPERATUREWARNING': "MotherBoardTemperatureWarning",
'MOTHERBOARDTEMPERATURECRITICAL': "MotherBoardTemperatureCritical",
diff --git a/intersight/model/equipment_io_card_base_all_of.py b/intersight/model/equipment_io_card_base_all_of.py
index ead1e307f4..39b0b1bc4a 100644
--- a/intersight/model/equipment_io_card_base_all_of.py
+++ b/intersight/model/equipment_io_card_base_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
@@ -113,6 +113,8 @@ class EquipmentIoCardBaseAllOf(ModelNormal):
'MEMORYUNCORRECTABLEERROR': "MemoryUncorrectableError",
'MEMORYTEMPERATUREWARNING': "MemoryTemperatureWarning",
'MEMORYTEMPERATURECRITICAL': "MemoryTemperatureCritical",
+ 'MEMORYBANKERROR': "MemoryBankError",
+ 'MEMORYRANKERROR': "MemoryRankError",
'MOTHERBOARDPOWERCRITICAL': "MotherBoardPowerCritical",
'MOTHERBOARDTEMPERATUREWARNING': "MotherBoardTemperatureWarning",
'MOTHERBOARDTEMPERATURECRITICAL': "MotherBoardTemperatureCritical",
diff --git a/intersight/model/equipment_io_card_base_relationship.py b/intersight/model/equipment_io_card_base_relationship.py
index b881be442a..996ccb130b 100644
--- a/intersight/model/equipment_io_card_base_relationship.py
+++ b/intersight/model/equipment_io_card_base_relationship.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
@@ -122,6 +122,8 @@ class EquipmentIoCardBaseRelationship(ModelComposed):
'MEMORYUNCORRECTABLEERROR': "MemoryUncorrectableError",
'MEMORYTEMPERATUREWARNING': "MemoryTemperatureWarning",
'MEMORYTEMPERATURECRITICAL': "MemoryTemperatureCritical",
+ 'MEMORYBANKERROR': "MemoryBankError",
+ 'MEMORYRANKERROR': "MemoryRankError",
'MOTHERBOARDPOWERCRITICAL': "MotherBoardPowerCritical",
'MOTHERBOARDTEMPERATUREWARNING': "MotherBoardTemperatureWarning",
'MOTHERBOARDTEMPERATURECRITICAL': "MotherBoardTemperatureCritical",
@@ -136,6 +138,8 @@ class EquipmentIoCardBaseRelationship(ModelComposed):
},
('object_type',): {
'AAA.AUDITRECORD': "aaa.AuditRecord",
+ 'AAA.RETENTIONCONFIG': "aaa.RetentionConfig",
+ 'AAA.RETENTIONPOLICY': "aaa.RetentionPolicy",
'ACCESS.POLICY': "access.Policy",
'ADAPTER.CONFIGPOLICY': "adapter.ConfigPolicy",
'ADAPTER.EXTETHINTERFACE': "adapter.ExtEthInterface",
@@ -152,6 +156,7 @@ class EquipmentIoCardBaseRelationship(ModelComposed):
'APPLIANCE.DATAEXPORTPOLICY': "appliance.DataExportPolicy",
'APPLIANCE.DEVICECERTIFICATE': "appliance.DeviceCertificate",
'APPLIANCE.DEVICECLAIM': "appliance.DeviceClaim",
+ 'APPLIANCE.DEVICEUPGRADEPOLICY': "appliance.DeviceUpgradePolicy",
'APPLIANCE.DIAGSETTING': "appliance.DiagSetting",
'APPLIANCE.EXTERNALSYSLOGSETTING': "appliance.ExternalSyslogSetting",
'APPLIANCE.FILESYSTEMSTATUS': "appliance.FileSystemStatus",
@@ -200,9 +205,12 @@ class EquipmentIoCardBaseRelationship(ModelComposed):
'BOOT.UEFISHELLDEVICE': "boot.UefiShellDevice",
'BOOT.USBDEVICE': "boot.UsbDevice",
'BOOT.VMEDIADEVICE': "boot.VmediaDevice",
+ 'BULK.EXPORT': "bulk.Export",
+ 'BULK.EXPORTEDITEM': "bulk.ExportedItem",
'BULK.MOCLONER': "bulk.MoCloner",
'BULK.MOMERGER': "bulk.MoMerger",
'BULK.REQUEST': "bulk.Request",
+ 'BULK.SUBREQUESTOBJ': "bulk.SubRequestObj",
'CAPABILITY.ADAPTERUNITDESCRIPTOR': "capability.AdapterUnitDescriptor",
'CAPABILITY.CATALOG': "capability.Catalog",
'CAPABILITY.CHASSISDESCRIPTOR': "capability.ChassisDescriptor",
@@ -266,10 +274,6 @@ class EquipmentIoCardBaseRelationship(ModelComposed):
'COND.HCLSTATUS': "cond.HclStatus",
'COND.HCLSTATUSDETAIL': "cond.HclStatusDetail",
'COND.HCLSTATUSJOB': "cond.HclStatusJob",
- 'CONFIG.EXPORTEDITEM': "config.ExportedItem",
- 'CONFIG.EXPORTER': "config.Exporter",
- 'CONFIG.IMPORTEDITEM': "config.ImportedItem",
- 'CONFIG.IMPORTER': "config.Importer",
'CONNECTORPACK.CONNECTORPACKUPGRADE': "connectorpack.ConnectorPackUpgrade",
'CONNECTORPACK.UPGRADEIMPACT': "connectorpack.UpgradeImpact",
'CRD.CUSTOMRESOURCE': "crd.CustomResource",
@@ -278,6 +282,7 @@ class EquipmentIoCardBaseRelationship(ModelComposed):
'EQUIPMENT.CHASSISIDENTITY': "equipment.ChassisIdentity",
'EQUIPMENT.CHASSISOPERATION': "equipment.ChassisOperation",
'EQUIPMENT.DEVICESUMMARY': "equipment.DeviceSummary",
+ 'EQUIPMENT.EXPANDERMODULE': "equipment.ExpanderModule",
'EQUIPMENT.FAN': "equipment.Fan",
'EQUIPMENT.FANCONTROL': "equipment.FanControl",
'EQUIPMENT.FANMODULE': "equipment.FanModule",
@@ -526,6 +531,7 @@ class EquipmentIoCardBaseRelationship(ModelComposed):
'KUBERNETES.ADDONDEFINITION': "kubernetes.AddonDefinition",
'KUBERNETES.ADDONPOLICY': "kubernetes.AddonPolicy",
'KUBERNETES.ADDONREPOSITORY': "kubernetes.AddonRepository",
+ 'KUBERNETES.BAREMETALNODEPROFILE': "kubernetes.BaremetalNodeProfile",
'KUBERNETES.CATALOG': "kubernetes.Catalog",
'KUBERNETES.CLUSTER': "kubernetes.Cluster",
'KUBERNETES.CLUSTERADDONPROFILE': "kubernetes.ClusterAddonProfile",
@@ -695,6 +701,11 @@ class EquipmentIoCardBaseRelationship(ModelComposed):
'RESOURCE.LICENSERESOURCECOUNT': "resource.LicenseResourceCount",
'RESOURCE.MEMBERSHIP': "resource.Membership",
'RESOURCE.MEMBERSHIPHOLDER': "resource.MembershipHolder",
+ 'RESOURCEPOOL.LEASE': "resourcepool.Lease",
+ 'RESOURCEPOOL.LEASERESOURCE': "resourcepool.LeaseResource",
+ 'RESOURCEPOOL.POOL': "resourcepool.Pool",
+ 'RESOURCEPOOL.POOLMEMBER': "resourcepool.PoolMember",
+ 'RESOURCEPOOL.UNIVERSE': "resourcepool.Universe",
'RPROXY.REVERSEPROXY': "rproxy.ReverseProxy",
'SDCARD.POLICY': "sdcard.Policy",
'SDWAN.PROFILE': "sdwan.Profile",
@@ -810,6 +821,7 @@ class EquipmentIoCardBaseRelationship(ModelComposed):
'TASK.NETAPPSCOPEDINVENTORY': "task.NetAppScopedInventory",
'TASK.PUBLICCLOUDSCOPEDINVENTORY': "task.PublicCloudScopedInventory",
'TASK.PURESCOPEDINVENTORY': "task.PureScopedInventory",
+ 'TASK.SERVERSCOPEDINVENTORY': "task.ServerScopedInventory",
'TECHSUPPORTMANAGEMENT.COLLECTIONCONTROLPOLICY': "techsupportmanagement.CollectionControlPolicy",
'TECHSUPPORTMANAGEMENT.DOWNLOAD': "techsupportmanagement.Download",
'TECHSUPPORTMANAGEMENT.TECHSUPPORTBUNDLE': "techsupportmanagement.TechSupportBundle",
@@ -841,6 +853,7 @@ class EquipmentIoCardBaseRelationship(ModelComposed):
'VIRTUALIZATION.VMWAREVCENTER': "virtualization.VmwareVcenter",
'VIRTUALIZATION.VMWAREVIRTUALDISK': "virtualization.VmwareVirtualDisk",
'VIRTUALIZATION.VMWAREVIRTUALMACHINE': "virtualization.VmwareVirtualMachine",
+ 'VIRTUALIZATION.VMWAREVIRTUALMACHINESNAPSHOT': "virtualization.VmwareVirtualMachineSnapshot",
'VIRTUALIZATION.VMWAREVIRTUALNETWORKINTERFACE': "virtualization.VmwareVirtualNetworkInterface",
'VIRTUALIZATION.VMWAREVIRTUALSWITCH': "virtualization.VmwareVirtualSwitch",
'VMEDIA.POLICY': "vmedia.Policy",
@@ -873,12 +886,14 @@ class EquipmentIoCardBaseRelationship(ModelComposed):
'WORKFLOW.TASKDEFINITION': "workflow.TaskDefinition",
'WORKFLOW.TASKINFO': "workflow.TaskInfo",
'WORKFLOW.TASKMETADATA': "workflow.TaskMetadata",
+ 'WORKFLOW.TASKNOTIFICATION': "workflow.TaskNotification",
'WORKFLOW.TEMPLATEEVALUATION': "workflow.TemplateEvaluation",
'WORKFLOW.TEMPLATEFUNCTIONMETA': "workflow.TemplateFunctionMeta",
'WORKFLOW.WORKFLOWDEFINITION': "workflow.WorkflowDefinition",
'WORKFLOW.WORKFLOWINFO': "workflow.WorkflowInfo",
'WORKFLOW.WORKFLOWMETA': "workflow.WorkflowMeta",
'WORKFLOW.WORKFLOWMETADATA': "workflow.WorkflowMetadata",
+ 'WORKFLOW.WORKFLOWNOTIFICATION': "workflow.WorkflowNotification",
},
}
diff --git a/intersight/model/equipment_io_card_identity.py b/intersight/model/equipment_io_card_identity.py
index 24ddc2c515..c456553dd0 100644
--- a/intersight/model/equipment_io_card_identity.py
+++ b/intersight/model/equipment_io_card_identity.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/equipment_io_card_identity_all_of.py b/intersight/model/equipment_io_card_identity_all_of.py
index 04ce03f046..6200613ac7 100644
--- a/intersight/model/equipment_io_card_identity_all_of.py
+++ b/intersight/model/equipment_io_card_identity_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/equipment_io_card_list.py b/intersight/model/equipment_io_card_list.py
index 43af610ee0..33bc950aa0 100644
--- a/intersight/model/equipment_io_card_list.py
+++ b/intersight/model/equipment_io_card_list.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/equipment_io_card_list_all_of.py b/intersight/model/equipment_io_card_list_all_of.py
index 23c98b32be..5ac8d9e646 100644
--- a/intersight/model/equipment_io_card_list_all_of.py
+++ b/intersight/model/equipment_io_card_list_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/equipment_io_card_operation.py b/intersight/model/equipment_io_card_operation.py
index 38afdcbe0d..763f63c10b 100644
--- a/intersight/model/equipment_io_card_operation.py
+++ b/intersight/model/equipment_io_card_operation.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/equipment_io_card_operation_all_of.py b/intersight/model/equipment_io_card_operation_all_of.py
index 17bae631bc..ad0525d6fa 100644
--- a/intersight/model/equipment_io_card_operation_all_of.py
+++ b/intersight/model/equipment_io_card_operation_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/equipment_io_card_operation_list.py b/intersight/model/equipment_io_card_operation_list.py
index 39d6e343a4..c8bb59d04f 100644
--- a/intersight/model/equipment_io_card_operation_list.py
+++ b/intersight/model/equipment_io_card_operation_list.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/equipment_io_card_operation_list_all_of.py b/intersight/model/equipment_io_card_operation_list_all_of.py
index 8968e98d70..e597cb41f2 100644
--- a/intersight/model/equipment_io_card_operation_list_all_of.py
+++ b/intersight/model/equipment_io_card_operation_list_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/equipment_io_card_operation_response.py b/intersight/model/equipment_io_card_operation_response.py
index 97994fffcf..02e99febe4 100644
--- a/intersight/model/equipment_io_card_operation_response.py
+++ b/intersight/model/equipment_io_card_operation_response.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/equipment_io_card_relationship.py b/intersight/model/equipment_io_card_relationship.py
index ace4058484..3655b110fc 100644
--- a/intersight/model/equipment_io_card_relationship.py
+++ b/intersight/model/equipment_io_card_relationship.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
@@ -32,6 +32,7 @@ def lazy_import():
from intersight.model.compute_ip_address import ComputeIpAddress
from intersight.model.display_names import DisplayNames
from intersight.model.equipment_chassis_relationship import EquipmentChassisRelationship
+ from intersight.model.equipment_fan_module_relationship import EquipmentFanModuleRelationship
from intersight.model.equipment_fex_relationship import EquipmentFexRelationship
from intersight.model.equipment_fru_relationship import EquipmentFruRelationship
from intersight.model.equipment_io_card import EquipmentIoCard
@@ -47,6 +48,7 @@ def lazy_import():
globals()['ComputeIpAddress'] = ComputeIpAddress
globals()['DisplayNames'] = DisplayNames
globals()['EquipmentChassisRelationship'] = EquipmentChassisRelationship
+ globals()['EquipmentFanModuleRelationship'] = EquipmentFanModuleRelationship
globals()['EquipmentFexRelationship'] = EquipmentFexRelationship
globals()['EquipmentFruRelationship'] = EquipmentFruRelationship
globals()['EquipmentIoCard'] = EquipmentIoCard
@@ -132,6 +134,8 @@ class EquipmentIoCardRelationship(ModelComposed):
'MEMORYUNCORRECTABLEERROR': "MemoryUncorrectableError",
'MEMORYTEMPERATUREWARNING': "MemoryTemperatureWarning",
'MEMORYTEMPERATURECRITICAL': "MemoryTemperatureCritical",
+ 'MEMORYBANKERROR': "MemoryBankError",
+ 'MEMORYRANKERROR': "MemoryRankError",
'MOTHERBOARDPOWERCRITICAL': "MotherBoardPowerCritical",
'MOTHERBOARDTEMPERATUREWARNING': "MotherBoardTemperatureWarning",
'MOTHERBOARDTEMPERATURECRITICAL': "MotherBoardTemperatureCritical",
@@ -146,6 +150,8 @@ class EquipmentIoCardRelationship(ModelComposed):
},
('object_type',): {
'AAA.AUDITRECORD': "aaa.AuditRecord",
+ 'AAA.RETENTIONCONFIG': "aaa.RetentionConfig",
+ 'AAA.RETENTIONPOLICY': "aaa.RetentionPolicy",
'ACCESS.POLICY': "access.Policy",
'ADAPTER.CONFIGPOLICY': "adapter.ConfigPolicy",
'ADAPTER.EXTETHINTERFACE': "adapter.ExtEthInterface",
@@ -162,6 +168,7 @@ class EquipmentIoCardRelationship(ModelComposed):
'APPLIANCE.DATAEXPORTPOLICY': "appliance.DataExportPolicy",
'APPLIANCE.DEVICECERTIFICATE': "appliance.DeviceCertificate",
'APPLIANCE.DEVICECLAIM': "appliance.DeviceClaim",
+ 'APPLIANCE.DEVICEUPGRADEPOLICY': "appliance.DeviceUpgradePolicy",
'APPLIANCE.DIAGSETTING': "appliance.DiagSetting",
'APPLIANCE.EXTERNALSYSLOGSETTING': "appliance.ExternalSyslogSetting",
'APPLIANCE.FILESYSTEMSTATUS': "appliance.FileSystemStatus",
@@ -210,9 +217,12 @@ class EquipmentIoCardRelationship(ModelComposed):
'BOOT.UEFISHELLDEVICE': "boot.UefiShellDevice",
'BOOT.USBDEVICE': "boot.UsbDevice",
'BOOT.VMEDIADEVICE': "boot.VmediaDevice",
+ 'BULK.EXPORT': "bulk.Export",
+ 'BULK.EXPORTEDITEM': "bulk.ExportedItem",
'BULK.MOCLONER': "bulk.MoCloner",
'BULK.MOMERGER': "bulk.MoMerger",
'BULK.REQUEST': "bulk.Request",
+ 'BULK.SUBREQUESTOBJ': "bulk.SubRequestObj",
'CAPABILITY.ADAPTERUNITDESCRIPTOR': "capability.AdapterUnitDescriptor",
'CAPABILITY.CATALOG': "capability.Catalog",
'CAPABILITY.CHASSISDESCRIPTOR': "capability.ChassisDescriptor",
@@ -276,10 +286,6 @@ class EquipmentIoCardRelationship(ModelComposed):
'COND.HCLSTATUS': "cond.HclStatus",
'COND.HCLSTATUSDETAIL': "cond.HclStatusDetail",
'COND.HCLSTATUSJOB': "cond.HclStatusJob",
- 'CONFIG.EXPORTEDITEM': "config.ExportedItem",
- 'CONFIG.EXPORTER': "config.Exporter",
- 'CONFIG.IMPORTEDITEM': "config.ImportedItem",
- 'CONFIG.IMPORTER': "config.Importer",
'CONNECTORPACK.CONNECTORPACKUPGRADE': "connectorpack.ConnectorPackUpgrade",
'CONNECTORPACK.UPGRADEIMPACT': "connectorpack.UpgradeImpact",
'CRD.CUSTOMRESOURCE': "crd.CustomResource",
@@ -288,6 +294,7 @@ class EquipmentIoCardRelationship(ModelComposed):
'EQUIPMENT.CHASSISIDENTITY': "equipment.ChassisIdentity",
'EQUIPMENT.CHASSISOPERATION': "equipment.ChassisOperation",
'EQUIPMENT.DEVICESUMMARY': "equipment.DeviceSummary",
+ 'EQUIPMENT.EXPANDERMODULE': "equipment.ExpanderModule",
'EQUIPMENT.FAN': "equipment.Fan",
'EQUIPMENT.FANCONTROL': "equipment.FanControl",
'EQUIPMENT.FANMODULE': "equipment.FanModule",
@@ -536,6 +543,7 @@ class EquipmentIoCardRelationship(ModelComposed):
'KUBERNETES.ADDONDEFINITION': "kubernetes.AddonDefinition",
'KUBERNETES.ADDONPOLICY': "kubernetes.AddonPolicy",
'KUBERNETES.ADDONREPOSITORY': "kubernetes.AddonRepository",
+ 'KUBERNETES.BAREMETALNODEPROFILE': "kubernetes.BaremetalNodeProfile",
'KUBERNETES.CATALOG': "kubernetes.Catalog",
'KUBERNETES.CLUSTER': "kubernetes.Cluster",
'KUBERNETES.CLUSTERADDONPROFILE': "kubernetes.ClusterAddonProfile",
@@ -705,6 +713,11 @@ class EquipmentIoCardRelationship(ModelComposed):
'RESOURCE.LICENSERESOURCECOUNT': "resource.LicenseResourceCount",
'RESOURCE.MEMBERSHIP': "resource.Membership",
'RESOURCE.MEMBERSHIPHOLDER': "resource.MembershipHolder",
+ 'RESOURCEPOOL.LEASE': "resourcepool.Lease",
+ 'RESOURCEPOOL.LEASERESOURCE': "resourcepool.LeaseResource",
+ 'RESOURCEPOOL.POOL': "resourcepool.Pool",
+ 'RESOURCEPOOL.POOLMEMBER': "resourcepool.PoolMember",
+ 'RESOURCEPOOL.UNIVERSE': "resourcepool.Universe",
'RPROXY.REVERSEPROXY': "rproxy.ReverseProxy",
'SDCARD.POLICY': "sdcard.Policy",
'SDWAN.PROFILE': "sdwan.Profile",
@@ -820,6 +833,7 @@ class EquipmentIoCardRelationship(ModelComposed):
'TASK.NETAPPSCOPEDINVENTORY': "task.NetAppScopedInventory",
'TASK.PUBLICCLOUDSCOPEDINVENTORY': "task.PublicCloudScopedInventory",
'TASK.PURESCOPEDINVENTORY': "task.PureScopedInventory",
+ 'TASK.SERVERSCOPEDINVENTORY': "task.ServerScopedInventory",
'TECHSUPPORTMANAGEMENT.COLLECTIONCONTROLPOLICY': "techsupportmanagement.CollectionControlPolicy",
'TECHSUPPORTMANAGEMENT.DOWNLOAD': "techsupportmanagement.Download",
'TECHSUPPORTMANAGEMENT.TECHSUPPORTBUNDLE': "techsupportmanagement.TechSupportBundle",
@@ -851,6 +865,7 @@ class EquipmentIoCardRelationship(ModelComposed):
'VIRTUALIZATION.VMWAREVCENTER': "virtualization.VmwareVcenter",
'VIRTUALIZATION.VMWAREVIRTUALDISK': "virtualization.VmwareVirtualDisk",
'VIRTUALIZATION.VMWAREVIRTUALMACHINE': "virtualization.VmwareVirtualMachine",
+ 'VIRTUALIZATION.VMWAREVIRTUALMACHINESNAPSHOT': "virtualization.VmwareVirtualMachineSnapshot",
'VIRTUALIZATION.VMWAREVIRTUALNETWORKINTERFACE': "virtualization.VmwareVirtualNetworkInterface",
'VIRTUALIZATION.VMWAREVIRTUALSWITCH': "virtualization.VmwareVirtualSwitch",
'VMEDIA.POLICY': "vmedia.Policy",
@@ -883,12 +898,14 @@ class EquipmentIoCardRelationship(ModelComposed):
'WORKFLOW.TASKDEFINITION': "workflow.TaskDefinition",
'WORKFLOW.TASKINFO': "workflow.TaskInfo",
'WORKFLOW.TASKMETADATA': "workflow.TaskMetadata",
+ 'WORKFLOW.TASKNOTIFICATION': "workflow.TaskNotification",
'WORKFLOW.TEMPLATEEVALUATION': "workflow.TemplateEvaluation",
'WORKFLOW.TEMPLATEFUNCTIONMETA': "workflow.TemplateFunctionMeta",
'WORKFLOW.WORKFLOWDEFINITION': "workflow.WorkflowDefinition",
'WORKFLOW.WORKFLOWINFO': "workflow.WorkflowInfo",
'WORKFLOW.WORKFLOWMETA': "workflow.WorkflowMeta",
'WORKFLOW.WORKFLOWMETADATA': "workflow.WorkflowMetadata",
+ 'WORKFLOW.WORKFLOWNOTIFICATION': "workflow.WorkflowNotification",
},
}
@@ -963,6 +980,7 @@ def openapi_types():
'side': (str,), # noqa: E501
'equipment_chassis': (EquipmentChassisRelationship,), # noqa: E501
'equipment_fex': (EquipmentFexRelationship,), # noqa: E501
+ 'fan_modules': ([EquipmentFanModuleRelationship], none_type,), # noqa: E501
'inventory_device_info': (InventoryDeviceInfoRelationship,), # noqa: E501
'physical_device_registration': (AssetDeviceRegistrationRelationship,), # noqa: E501
'registered_device': (AssetDeviceRegistrationRelationship,), # noqa: E501
@@ -1026,6 +1044,7 @@ def discriminator():
'side': 'Side', # noqa: E501
'equipment_chassis': 'EquipmentChassis', # noqa: E501
'equipment_fex': 'EquipmentFex', # noqa: E501
+ 'fan_modules': 'FanModules', # noqa: E501
'inventory_device_info': 'InventoryDeviceInfo', # noqa: E501
'physical_device_registration': 'PhysicalDeviceRegistration', # noqa: E501
'registered_device': 'RegisteredDevice', # noqa: E501
@@ -1126,6 +1145,7 @@ def __init__(self, *args, **kwargs): # noqa: E501
side (str): Location of IOM within a chassis. The value can be left or right.. [optional] # noqa: E501
equipment_chassis (EquipmentChassisRelationship): [optional] # noqa: E501
equipment_fex (EquipmentFexRelationship): [optional] # noqa: E501
+ fan_modules ([EquipmentFanModuleRelationship], none_type): An array of relationships to equipmentFanModule resources.. [optional] # noqa: E501
inventory_device_info (InventoryDeviceInfoRelationship): [optional] # noqa: E501
physical_device_registration (AssetDeviceRegistrationRelationship): [optional] # noqa: E501
registered_device (AssetDeviceRegistrationRelationship): [optional] # noqa: E501
diff --git a/intersight/model/equipment_io_card_response.py b/intersight/model/equipment_io_card_response.py
index c0ae6c4c2c..a116982b93 100644
--- a/intersight/model/equipment_io_card_response.py
+++ b/intersight/model/equipment_io_card_response.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/equipment_io_expander.py b/intersight/model/equipment_io_expander.py
index ee5580e32f..801f318eb2 100644
--- a/intersight/model/equipment_io_expander.py
+++ b/intersight/model/equipment_io_expander.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/equipment_io_expander_all_of.py b/intersight/model/equipment_io_expander_all_of.py
index 905f1b700c..8031a75a4f 100644
--- a/intersight/model/equipment_io_expander_all_of.py
+++ b/intersight/model/equipment_io_expander_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/equipment_io_expander_list.py b/intersight/model/equipment_io_expander_list.py
index a20d7aaee4..ba547cbbcc 100644
--- a/intersight/model/equipment_io_expander_list.py
+++ b/intersight/model/equipment_io_expander_list.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/equipment_io_expander_list_all_of.py b/intersight/model/equipment_io_expander_list_all_of.py
index 80eda33870..da297c7652 100644
--- a/intersight/model/equipment_io_expander_list_all_of.py
+++ b/intersight/model/equipment_io_expander_list_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/equipment_io_expander_relationship.py b/intersight/model/equipment_io_expander_relationship.py
index bc4f1c41fc..145d46ee36 100644
--- a/intersight/model/equipment_io_expander_relationship.py
+++ b/intersight/model/equipment_io_expander_relationship.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
@@ -80,6 +80,8 @@ class EquipmentIoExpanderRelationship(ModelComposed):
},
('object_type',): {
'AAA.AUDITRECORD': "aaa.AuditRecord",
+ 'AAA.RETENTIONCONFIG': "aaa.RetentionConfig",
+ 'AAA.RETENTIONPOLICY': "aaa.RetentionPolicy",
'ACCESS.POLICY': "access.Policy",
'ADAPTER.CONFIGPOLICY': "adapter.ConfigPolicy",
'ADAPTER.EXTETHINTERFACE': "adapter.ExtEthInterface",
@@ -96,6 +98,7 @@ class EquipmentIoExpanderRelationship(ModelComposed):
'APPLIANCE.DATAEXPORTPOLICY': "appliance.DataExportPolicy",
'APPLIANCE.DEVICECERTIFICATE': "appliance.DeviceCertificate",
'APPLIANCE.DEVICECLAIM': "appliance.DeviceClaim",
+ 'APPLIANCE.DEVICEUPGRADEPOLICY': "appliance.DeviceUpgradePolicy",
'APPLIANCE.DIAGSETTING': "appliance.DiagSetting",
'APPLIANCE.EXTERNALSYSLOGSETTING': "appliance.ExternalSyslogSetting",
'APPLIANCE.FILESYSTEMSTATUS': "appliance.FileSystemStatus",
@@ -144,9 +147,12 @@ class EquipmentIoExpanderRelationship(ModelComposed):
'BOOT.UEFISHELLDEVICE': "boot.UefiShellDevice",
'BOOT.USBDEVICE': "boot.UsbDevice",
'BOOT.VMEDIADEVICE': "boot.VmediaDevice",
+ 'BULK.EXPORT': "bulk.Export",
+ 'BULK.EXPORTEDITEM': "bulk.ExportedItem",
'BULK.MOCLONER': "bulk.MoCloner",
'BULK.MOMERGER': "bulk.MoMerger",
'BULK.REQUEST': "bulk.Request",
+ 'BULK.SUBREQUESTOBJ': "bulk.SubRequestObj",
'CAPABILITY.ADAPTERUNITDESCRIPTOR': "capability.AdapterUnitDescriptor",
'CAPABILITY.CATALOG': "capability.Catalog",
'CAPABILITY.CHASSISDESCRIPTOR': "capability.ChassisDescriptor",
@@ -210,10 +216,6 @@ class EquipmentIoExpanderRelationship(ModelComposed):
'COND.HCLSTATUS': "cond.HclStatus",
'COND.HCLSTATUSDETAIL': "cond.HclStatusDetail",
'COND.HCLSTATUSJOB': "cond.HclStatusJob",
- 'CONFIG.EXPORTEDITEM': "config.ExportedItem",
- 'CONFIG.EXPORTER': "config.Exporter",
- 'CONFIG.IMPORTEDITEM': "config.ImportedItem",
- 'CONFIG.IMPORTER': "config.Importer",
'CONNECTORPACK.CONNECTORPACKUPGRADE': "connectorpack.ConnectorPackUpgrade",
'CONNECTORPACK.UPGRADEIMPACT': "connectorpack.UpgradeImpact",
'CRD.CUSTOMRESOURCE': "crd.CustomResource",
@@ -222,6 +224,7 @@ class EquipmentIoExpanderRelationship(ModelComposed):
'EQUIPMENT.CHASSISIDENTITY': "equipment.ChassisIdentity",
'EQUIPMENT.CHASSISOPERATION': "equipment.ChassisOperation",
'EQUIPMENT.DEVICESUMMARY': "equipment.DeviceSummary",
+ 'EQUIPMENT.EXPANDERMODULE': "equipment.ExpanderModule",
'EQUIPMENT.FAN': "equipment.Fan",
'EQUIPMENT.FANCONTROL': "equipment.FanControl",
'EQUIPMENT.FANMODULE': "equipment.FanModule",
@@ -470,6 +473,7 @@ class EquipmentIoExpanderRelationship(ModelComposed):
'KUBERNETES.ADDONDEFINITION': "kubernetes.AddonDefinition",
'KUBERNETES.ADDONPOLICY': "kubernetes.AddonPolicy",
'KUBERNETES.ADDONREPOSITORY': "kubernetes.AddonRepository",
+ 'KUBERNETES.BAREMETALNODEPROFILE': "kubernetes.BaremetalNodeProfile",
'KUBERNETES.CATALOG': "kubernetes.Catalog",
'KUBERNETES.CLUSTER': "kubernetes.Cluster",
'KUBERNETES.CLUSTERADDONPROFILE': "kubernetes.ClusterAddonProfile",
@@ -639,6 +643,11 @@ class EquipmentIoExpanderRelationship(ModelComposed):
'RESOURCE.LICENSERESOURCECOUNT': "resource.LicenseResourceCount",
'RESOURCE.MEMBERSHIP': "resource.Membership",
'RESOURCE.MEMBERSHIPHOLDER': "resource.MembershipHolder",
+ 'RESOURCEPOOL.LEASE': "resourcepool.Lease",
+ 'RESOURCEPOOL.LEASERESOURCE': "resourcepool.LeaseResource",
+ 'RESOURCEPOOL.POOL': "resourcepool.Pool",
+ 'RESOURCEPOOL.POOLMEMBER': "resourcepool.PoolMember",
+ 'RESOURCEPOOL.UNIVERSE': "resourcepool.Universe",
'RPROXY.REVERSEPROXY': "rproxy.ReverseProxy",
'SDCARD.POLICY': "sdcard.Policy",
'SDWAN.PROFILE': "sdwan.Profile",
@@ -754,6 +763,7 @@ class EquipmentIoExpanderRelationship(ModelComposed):
'TASK.NETAPPSCOPEDINVENTORY': "task.NetAppScopedInventory",
'TASK.PUBLICCLOUDSCOPEDINVENTORY': "task.PublicCloudScopedInventory",
'TASK.PURESCOPEDINVENTORY': "task.PureScopedInventory",
+ 'TASK.SERVERSCOPEDINVENTORY': "task.ServerScopedInventory",
'TECHSUPPORTMANAGEMENT.COLLECTIONCONTROLPOLICY': "techsupportmanagement.CollectionControlPolicy",
'TECHSUPPORTMANAGEMENT.DOWNLOAD': "techsupportmanagement.Download",
'TECHSUPPORTMANAGEMENT.TECHSUPPORTBUNDLE': "techsupportmanagement.TechSupportBundle",
@@ -785,6 +795,7 @@ class EquipmentIoExpanderRelationship(ModelComposed):
'VIRTUALIZATION.VMWAREVCENTER': "virtualization.VmwareVcenter",
'VIRTUALIZATION.VMWAREVIRTUALDISK': "virtualization.VmwareVirtualDisk",
'VIRTUALIZATION.VMWAREVIRTUALMACHINE': "virtualization.VmwareVirtualMachine",
+ 'VIRTUALIZATION.VMWAREVIRTUALMACHINESNAPSHOT': "virtualization.VmwareVirtualMachineSnapshot",
'VIRTUALIZATION.VMWAREVIRTUALNETWORKINTERFACE': "virtualization.VmwareVirtualNetworkInterface",
'VIRTUALIZATION.VMWAREVIRTUALSWITCH': "virtualization.VmwareVirtualSwitch",
'VMEDIA.POLICY': "vmedia.Policy",
@@ -817,12 +828,14 @@ class EquipmentIoExpanderRelationship(ModelComposed):
'WORKFLOW.TASKDEFINITION': "workflow.TaskDefinition",
'WORKFLOW.TASKINFO': "workflow.TaskInfo",
'WORKFLOW.TASKMETADATA': "workflow.TaskMetadata",
+ 'WORKFLOW.TASKNOTIFICATION': "workflow.TaskNotification",
'WORKFLOW.TEMPLATEEVALUATION': "workflow.TemplateEvaluation",
'WORKFLOW.TEMPLATEFUNCTIONMETA': "workflow.TemplateFunctionMeta",
'WORKFLOW.WORKFLOWDEFINITION': "workflow.WorkflowDefinition",
'WORKFLOW.WORKFLOWINFO': "workflow.WorkflowInfo",
'WORKFLOW.WORKFLOWMETA': "workflow.WorkflowMeta",
'WORKFLOW.WORKFLOWMETADATA': "workflow.WorkflowMetadata",
+ 'WORKFLOW.WORKFLOWNOTIFICATION': "workflow.WorkflowNotification",
},
}
diff --git a/intersight/model/equipment_io_expander_response.py b/intersight/model/equipment_io_expander_response.py
index 25b0dc9eae..c48e7a21e7 100644
--- a/intersight/model/equipment_io_expander_response.py
+++ b/intersight/model/equipment_io_expander_response.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/equipment_locator_led.py b/intersight/model/equipment_locator_led.py
index 1911a1c831..4e387ba3be 100644
--- a/intersight/model/equipment_locator_led.py
+++ b/intersight/model/equipment_locator_led.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/equipment_locator_led_all_of.py b/intersight/model/equipment_locator_led_all_of.py
index 50249d55b3..f4ca701e61 100644
--- a/intersight/model/equipment_locator_led_all_of.py
+++ b/intersight/model/equipment_locator_led_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/equipment_locator_led_list.py b/intersight/model/equipment_locator_led_list.py
index 6376debdaa..93362f06f8 100644
--- a/intersight/model/equipment_locator_led_list.py
+++ b/intersight/model/equipment_locator_led_list.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/equipment_locator_led_list_all_of.py b/intersight/model/equipment_locator_led_list_all_of.py
index 625b6005af..b05ffc76f8 100644
--- a/intersight/model/equipment_locator_led_list_all_of.py
+++ b/intersight/model/equipment_locator_led_list_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/equipment_locator_led_relationship.py b/intersight/model/equipment_locator_led_relationship.py
index 9de1eb1666..3e9ef3bc79 100644
--- a/intersight/model/equipment_locator_led_relationship.py
+++ b/intersight/model/equipment_locator_led_relationship.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
@@ -86,6 +86,8 @@ class EquipmentLocatorLedRelationship(ModelComposed):
},
('object_type',): {
'AAA.AUDITRECORD': "aaa.AuditRecord",
+ 'AAA.RETENTIONCONFIG': "aaa.RetentionConfig",
+ 'AAA.RETENTIONPOLICY': "aaa.RetentionPolicy",
'ACCESS.POLICY': "access.Policy",
'ADAPTER.CONFIGPOLICY': "adapter.ConfigPolicy",
'ADAPTER.EXTETHINTERFACE': "adapter.ExtEthInterface",
@@ -102,6 +104,7 @@ class EquipmentLocatorLedRelationship(ModelComposed):
'APPLIANCE.DATAEXPORTPOLICY': "appliance.DataExportPolicy",
'APPLIANCE.DEVICECERTIFICATE': "appliance.DeviceCertificate",
'APPLIANCE.DEVICECLAIM': "appliance.DeviceClaim",
+ 'APPLIANCE.DEVICEUPGRADEPOLICY': "appliance.DeviceUpgradePolicy",
'APPLIANCE.DIAGSETTING': "appliance.DiagSetting",
'APPLIANCE.EXTERNALSYSLOGSETTING': "appliance.ExternalSyslogSetting",
'APPLIANCE.FILESYSTEMSTATUS': "appliance.FileSystemStatus",
@@ -150,9 +153,12 @@ class EquipmentLocatorLedRelationship(ModelComposed):
'BOOT.UEFISHELLDEVICE': "boot.UefiShellDevice",
'BOOT.USBDEVICE': "boot.UsbDevice",
'BOOT.VMEDIADEVICE': "boot.VmediaDevice",
+ 'BULK.EXPORT': "bulk.Export",
+ 'BULK.EXPORTEDITEM': "bulk.ExportedItem",
'BULK.MOCLONER': "bulk.MoCloner",
'BULK.MOMERGER': "bulk.MoMerger",
'BULK.REQUEST': "bulk.Request",
+ 'BULK.SUBREQUESTOBJ': "bulk.SubRequestObj",
'CAPABILITY.ADAPTERUNITDESCRIPTOR': "capability.AdapterUnitDescriptor",
'CAPABILITY.CATALOG': "capability.Catalog",
'CAPABILITY.CHASSISDESCRIPTOR': "capability.ChassisDescriptor",
@@ -216,10 +222,6 @@ class EquipmentLocatorLedRelationship(ModelComposed):
'COND.HCLSTATUS': "cond.HclStatus",
'COND.HCLSTATUSDETAIL': "cond.HclStatusDetail",
'COND.HCLSTATUSJOB': "cond.HclStatusJob",
- 'CONFIG.EXPORTEDITEM': "config.ExportedItem",
- 'CONFIG.EXPORTER': "config.Exporter",
- 'CONFIG.IMPORTEDITEM': "config.ImportedItem",
- 'CONFIG.IMPORTER': "config.Importer",
'CONNECTORPACK.CONNECTORPACKUPGRADE': "connectorpack.ConnectorPackUpgrade",
'CONNECTORPACK.UPGRADEIMPACT': "connectorpack.UpgradeImpact",
'CRD.CUSTOMRESOURCE': "crd.CustomResource",
@@ -228,6 +230,7 @@ class EquipmentLocatorLedRelationship(ModelComposed):
'EQUIPMENT.CHASSISIDENTITY': "equipment.ChassisIdentity",
'EQUIPMENT.CHASSISOPERATION': "equipment.ChassisOperation",
'EQUIPMENT.DEVICESUMMARY': "equipment.DeviceSummary",
+ 'EQUIPMENT.EXPANDERMODULE': "equipment.ExpanderModule",
'EQUIPMENT.FAN': "equipment.Fan",
'EQUIPMENT.FANCONTROL': "equipment.FanControl",
'EQUIPMENT.FANMODULE': "equipment.FanModule",
@@ -476,6 +479,7 @@ class EquipmentLocatorLedRelationship(ModelComposed):
'KUBERNETES.ADDONDEFINITION': "kubernetes.AddonDefinition",
'KUBERNETES.ADDONPOLICY': "kubernetes.AddonPolicy",
'KUBERNETES.ADDONREPOSITORY': "kubernetes.AddonRepository",
+ 'KUBERNETES.BAREMETALNODEPROFILE': "kubernetes.BaremetalNodeProfile",
'KUBERNETES.CATALOG': "kubernetes.Catalog",
'KUBERNETES.CLUSTER': "kubernetes.Cluster",
'KUBERNETES.CLUSTERADDONPROFILE': "kubernetes.ClusterAddonProfile",
@@ -645,6 +649,11 @@ class EquipmentLocatorLedRelationship(ModelComposed):
'RESOURCE.LICENSERESOURCECOUNT': "resource.LicenseResourceCount",
'RESOURCE.MEMBERSHIP': "resource.Membership",
'RESOURCE.MEMBERSHIPHOLDER': "resource.MembershipHolder",
+ 'RESOURCEPOOL.LEASE': "resourcepool.Lease",
+ 'RESOURCEPOOL.LEASERESOURCE': "resourcepool.LeaseResource",
+ 'RESOURCEPOOL.POOL': "resourcepool.Pool",
+ 'RESOURCEPOOL.POOLMEMBER': "resourcepool.PoolMember",
+ 'RESOURCEPOOL.UNIVERSE': "resourcepool.Universe",
'RPROXY.REVERSEPROXY': "rproxy.ReverseProxy",
'SDCARD.POLICY': "sdcard.Policy",
'SDWAN.PROFILE': "sdwan.Profile",
@@ -760,6 +769,7 @@ class EquipmentLocatorLedRelationship(ModelComposed):
'TASK.NETAPPSCOPEDINVENTORY': "task.NetAppScopedInventory",
'TASK.PUBLICCLOUDSCOPEDINVENTORY': "task.PublicCloudScopedInventory",
'TASK.PURESCOPEDINVENTORY': "task.PureScopedInventory",
+ 'TASK.SERVERSCOPEDINVENTORY': "task.ServerScopedInventory",
'TECHSUPPORTMANAGEMENT.COLLECTIONCONTROLPOLICY': "techsupportmanagement.CollectionControlPolicy",
'TECHSUPPORTMANAGEMENT.DOWNLOAD': "techsupportmanagement.Download",
'TECHSUPPORTMANAGEMENT.TECHSUPPORTBUNDLE': "techsupportmanagement.TechSupportBundle",
@@ -791,6 +801,7 @@ class EquipmentLocatorLedRelationship(ModelComposed):
'VIRTUALIZATION.VMWAREVCENTER': "virtualization.VmwareVcenter",
'VIRTUALIZATION.VMWAREVIRTUALDISK': "virtualization.VmwareVirtualDisk",
'VIRTUALIZATION.VMWAREVIRTUALMACHINE': "virtualization.VmwareVirtualMachine",
+ 'VIRTUALIZATION.VMWAREVIRTUALMACHINESNAPSHOT': "virtualization.VmwareVirtualMachineSnapshot",
'VIRTUALIZATION.VMWAREVIRTUALNETWORKINTERFACE': "virtualization.VmwareVirtualNetworkInterface",
'VIRTUALIZATION.VMWAREVIRTUALSWITCH': "virtualization.VmwareVirtualSwitch",
'VMEDIA.POLICY': "vmedia.Policy",
@@ -823,12 +834,14 @@ class EquipmentLocatorLedRelationship(ModelComposed):
'WORKFLOW.TASKDEFINITION': "workflow.TaskDefinition",
'WORKFLOW.TASKINFO': "workflow.TaskInfo",
'WORKFLOW.TASKMETADATA': "workflow.TaskMetadata",
+ 'WORKFLOW.TASKNOTIFICATION': "workflow.TaskNotification",
'WORKFLOW.TEMPLATEEVALUATION': "workflow.TemplateEvaluation",
'WORKFLOW.TEMPLATEFUNCTIONMETA': "workflow.TemplateFunctionMeta",
'WORKFLOW.WORKFLOWDEFINITION': "workflow.WorkflowDefinition",
'WORKFLOW.WORKFLOWINFO': "workflow.WorkflowInfo",
'WORKFLOW.WORKFLOWMETA': "workflow.WorkflowMeta",
'WORKFLOW.WORKFLOWMETADATA': "workflow.WorkflowMetadata",
+ 'WORKFLOW.WORKFLOWNOTIFICATION': "workflow.WorkflowNotification",
},
}
diff --git a/intersight/model/equipment_locator_led_response.py b/intersight/model/equipment_locator_led_response.py
index 00b594617a..35cf9782ce 100644
--- a/intersight/model/equipment_locator_led_response.py
+++ b/intersight/model/equipment_locator_led_response.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/equipment_physical_identity.py b/intersight/model/equipment_physical_identity.py
index a4d63281db..cd45b64bb5 100644
--- a/intersight/model/equipment_physical_identity.py
+++ b/intersight/model/equipment_physical_identity.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/equipment_physical_identity_all_of.py b/intersight/model/equipment_physical_identity_all_of.py
index 600288c265..02e0971fff 100644
--- a/intersight/model/equipment_physical_identity_all_of.py
+++ b/intersight/model/equipment_physical_identity_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/equipment_physical_identity_relationship.py b/intersight/model/equipment_physical_identity_relationship.py
index 788090dc8e..b779ffb651 100644
--- a/intersight/model/equipment_physical_identity_relationship.py
+++ b/intersight/model/equipment_physical_identity_relationship.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
@@ -105,6 +105,8 @@ class EquipmentPhysicalIdentityRelationship(ModelComposed):
},
('object_type',): {
'AAA.AUDITRECORD': "aaa.AuditRecord",
+ 'AAA.RETENTIONCONFIG': "aaa.RetentionConfig",
+ 'AAA.RETENTIONPOLICY': "aaa.RetentionPolicy",
'ACCESS.POLICY': "access.Policy",
'ADAPTER.CONFIGPOLICY': "adapter.ConfigPolicy",
'ADAPTER.EXTETHINTERFACE': "adapter.ExtEthInterface",
@@ -121,6 +123,7 @@ class EquipmentPhysicalIdentityRelationship(ModelComposed):
'APPLIANCE.DATAEXPORTPOLICY': "appliance.DataExportPolicy",
'APPLIANCE.DEVICECERTIFICATE': "appliance.DeviceCertificate",
'APPLIANCE.DEVICECLAIM': "appliance.DeviceClaim",
+ 'APPLIANCE.DEVICEUPGRADEPOLICY': "appliance.DeviceUpgradePolicy",
'APPLIANCE.DIAGSETTING': "appliance.DiagSetting",
'APPLIANCE.EXTERNALSYSLOGSETTING': "appliance.ExternalSyslogSetting",
'APPLIANCE.FILESYSTEMSTATUS': "appliance.FileSystemStatus",
@@ -169,9 +172,12 @@ class EquipmentPhysicalIdentityRelationship(ModelComposed):
'BOOT.UEFISHELLDEVICE': "boot.UefiShellDevice",
'BOOT.USBDEVICE': "boot.UsbDevice",
'BOOT.VMEDIADEVICE': "boot.VmediaDevice",
+ 'BULK.EXPORT': "bulk.Export",
+ 'BULK.EXPORTEDITEM': "bulk.ExportedItem",
'BULK.MOCLONER': "bulk.MoCloner",
'BULK.MOMERGER': "bulk.MoMerger",
'BULK.REQUEST': "bulk.Request",
+ 'BULK.SUBREQUESTOBJ': "bulk.SubRequestObj",
'CAPABILITY.ADAPTERUNITDESCRIPTOR': "capability.AdapterUnitDescriptor",
'CAPABILITY.CATALOG': "capability.Catalog",
'CAPABILITY.CHASSISDESCRIPTOR': "capability.ChassisDescriptor",
@@ -235,10 +241,6 @@ class EquipmentPhysicalIdentityRelationship(ModelComposed):
'COND.HCLSTATUS': "cond.HclStatus",
'COND.HCLSTATUSDETAIL': "cond.HclStatusDetail",
'COND.HCLSTATUSJOB': "cond.HclStatusJob",
- 'CONFIG.EXPORTEDITEM': "config.ExportedItem",
- 'CONFIG.EXPORTER': "config.Exporter",
- 'CONFIG.IMPORTEDITEM': "config.ImportedItem",
- 'CONFIG.IMPORTER': "config.Importer",
'CONNECTORPACK.CONNECTORPACKUPGRADE': "connectorpack.ConnectorPackUpgrade",
'CONNECTORPACK.UPGRADEIMPACT': "connectorpack.UpgradeImpact",
'CRD.CUSTOMRESOURCE': "crd.CustomResource",
@@ -247,6 +249,7 @@ class EquipmentPhysicalIdentityRelationship(ModelComposed):
'EQUIPMENT.CHASSISIDENTITY': "equipment.ChassisIdentity",
'EQUIPMENT.CHASSISOPERATION': "equipment.ChassisOperation",
'EQUIPMENT.DEVICESUMMARY': "equipment.DeviceSummary",
+ 'EQUIPMENT.EXPANDERMODULE': "equipment.ExpanderModule",
'EQUIPMENT.FAN': "equipment.Fan",
'EQUIPMENT.FANCONTROL': "equipment.FanControl",
'EQUIPMENT.FANMODULE': "equipment.FanModule",
@@ -495,6 +498,7 @@ class EquipmentPhysicalIdentityRelationship(ModelComposed):
'KUBERNETES.ADDONDEFINITION': "kubernetes.AddonDefinition",
'KUBERNETES.ADDONPOLICY': "kubernetes.AddonPolicy",
'KUBERNETES.ADDONREPOSITORY': "kubernetes.AddonRepository",
+ 'KUBERNETES.BAREMETALNODEPROFILE': "kubernetes.BaremetalNodeProfile",
'KUBERNETES.CATALOG': "kubernetes.Catalog",
'KUBERNETES.CLUSTER': "kubernetes.Cluster",
'KUBERNETES.CLUSTERADDONPROFILE': "kubernetes.ClusterAddonProfile",
@@ -664,6 +668,11 @@ class EquipmentPhysicalIdentityRelationship(ModelComposed):
'RESOURCE.LICENSERESOURCECOUNT': "resource.LicenseResourceCount",
'RESOURCE.MEMBERSHIP': "resource.Membership",
'RESOURCE.MEMBERSHIPHOLDER': "resource.MembershipHolder",
+ 'RESOURCEPOOL.LEASE': "resourcepool.Lease",
+ 'RESOURCEPOOL.LEASERESOURCE': "resourcepool.LeaseResource",
+ 'RESOURCEPOOL.POOL': "resourcepool.Pool",
+ 'RESOURCEPOOL.POOLMEMBER': "resourcepool.PoolMember",
+ 'RESOURCEPOOL.UNIVERSE': "resourcepool.Universe",
'RPROXY.REVERSEPROXY': "rproxy.ReverseProxy",
'SDCARD.POLICY': "sdcard.Policy",
'SDWAN.PROFILE': "sdwan.Profile",
@@ -779,6 +788,7 @@ class EquipmentPhysicalIdentityRelationship(ModelComposed):
'TASK.NETAPPSCOPEDINVENTORY': "task.NetAppScopedInventory",
'TASK.PUBLICCLOUDSCOPEDINVENTORY': "task.PublicCloudScopedInventory",
'TASK.PURESCOPEDINVENTORY': "task.PureScopedInventory",
+ 'TASK.SERVERSCOPEDINVENTORY': "task.ServerScopedInventory",
'TECHSUPPORTMANAGEMENT.COLLECTIONCONTROLPOLICY': "techsupportmanagement.CollectionControlPolicy",
'TECHSUPPORTMANAGEMENT.DOWNLOAD': "techsupportmanagement.Download",
'TECHSUPPORTMANAGEMENT.TECHSUPPORTBUNDLE': "techsupportmanagement.TechSupportBundle",
@@ -810,6 +820,7 @@ class EquipmentPhysicalIdentityRelationship(ModelComposed):
'VIRTUALIZATION.VMWAREVCENTER': "virtualization.VmwareVcenter",
'VIRTUALIZATION.VMWAREVIRTUALDISK': "virtualization.VmwareVirtualDisk",
'VIRTUALIZATION.VMWAREVIRTUALMACHINE': "virtualization.VmwareVirtualMachine",
+ 'VIRTUALIZATION.VMWAREVIRTUALMACHINESNAPSHOT': "virtualization.VmwareVirtualMachineSnapshot",
'VIRTUALIZATION.VMWAREVIRTUALNETWORKINTERFACE': "virtualization.VmwareVirtualNetworkInterface",
'VIRTUALIZATION.VMWAREVIRTUALSWITCH': "virtualization.VmwareVirtualSwitch",
'VMEDIA.POLICY': "vmedia.Policy",
@@ -842,12 +853,14 @@ class EquipmentPhysicalIdentityRelationship(ModelComposed):
'WORKFLOW.TASKDEFINITION': "workflow.TaskDefinition",
'WORKFLOW.TASKINFO': "workflow.TaskInfo",
'WORKFLOW.TASKMETADATA': "workflow.TaskMetadata",
+ 'WORKFLOW.TASKNOTIFICATION': "workflow.TaskNotification",
'WORKFLOW.TEMPLATEEVALUATION': "workflow.TemplateEvaluation",
'WORKFLOW.TEMPLATEFUNCTIONMETA': "workflow.TemplateFunctionMeta",
'WORKFLOW.WORKFLOWDEFINITION': "workflow.WorkflowDefinition",
'WORKFLOW.WORKFLOWINFO': "workflow.WorkflowInfo",
'WORKFLOW.WORKFLOWMETA': "workflow.WorkflowMeta",
'WORKFLOW.WORKFLOWMETADATA': "workflow.WorkflowMetadata",
+ 'WORKFLOW.WORKFLOWNOTIFICATION': "workflow.WorkflowNotification",
},
}
diff --git a/intersight/model/equipment_psu.py b/intersight/model/equipment_psu.py
index dd3edf531f..24f0cece53 100644
--- a/intersight/model/equipment_psu.py
+++ b/intersight/model/equipment_psu.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
@@ -133,6 +133,8 @@ class EquipmentPsu(ModelComposed):
'MEMORYUNCORRECTABLEERROR': "MemoryUncorrectableError",
'MEMORYTEMPERATUREWARNING': "MemoryTemperatureWarning",
'MEMORYTEMPERATURECRITICAL': "MemoryTemperatureCritical",
+ 'MEMORYBANKERROR': "MemoryBankError",
+ 'MEMORYRANKERROR': "MemoryRankError",
'MOTHERBOARDPOWERCRITICAL': "MotherBoardPowerCritical",
'MOTHERBOARDTEMPERATUREWARNING': "MotherBoardTemperatureWarning",
'MOTHERBOARDTEMPERATURECRITICAL': "MotherBoardTemperatureCritical",
diff --git a/intersight/model/equipment_psu_all_of.py b/intersight/model/equipment_psu_all_of.py
index d57ae00345..d87f934471 100644
--- a/intersight/model/equipment_psu_all_of.py
+++ b/intersight/model/equipment_psu_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
@@ -119,6 +119,8 @@ class EquipmentPsuAllOf(ModelNormal):
'MEMORYUNCORRECTABLEERROR': "MemoryUncorrectableError",
'MEMORYTEMPERATUREWARNING': "MemoryTemperatureWarning",
'MEMORYTEMPERATURECRITICAL': "MemoryTemperatureCritical",
+ 'MEMORYBANKERROR': "MemoryBankError",
+ 'MEMORYRANKERROR': "MemoryRankError",
'MOTHERBOARDPOWERCRITICAL': "MotherBoardPowerCritical",
'MOTHERBOARDTEMPERATUREWARNING': "MotherBoardTemperatureWarning",
'MOTHERBOARDTEMPERATURECRITICAL': "MotherBoardTemperatureCritical",
diff --git a/intersight/model/equipment_psu_control.py b/intersight/model/equipment_psu_control.py
index 36facbc3bc..9e203bf3fd 100644
--- a/intersight/model/equipment_psu_control.py
+++ b/intersight/model/equipment_psu_control.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
@@ -125,6 +125,8 @@ class EquipmentPsuControl(ModelComposed):
'MEMORYUNCORRECTABLEERROR': "MemoryUncorrectableError",
'MEMORYTEMPERATUREWARNING': "MemoryTemperatureWarning",
'MEMORYTEMPERATURECRITICAL': "MemoryTemperatureCritical",
+ 'MEMORYBANKERROR': "MemoryBankError",
+ 'MEMORYRANKERROR': "MemoryRankError",
'MOTHERBOARDPOWERCRITICAL': "MotherBoardPowerCritical",
'MOTHERBOARDTEMPERATUREWARNING': "MotherBoardTemperatureWarning",
'MOTHERBOARDTEMPERATURECRITICAL': "MotherBoardTemperatureCritical",
diff --git a/intersight/model/equipment_psu_control_all_of.py b/intersight/model/equipment_psu_control_all_of.py
index 01ef6410f0..c72f4e9a64 100644
--- a/intersight/model/equipment_psu_control_all_of.py
+++ b/intersight/model/equipment_psu_control_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
@@ -111,6 +111,8 @@ class EquipmentPsuControlAllOf(ModelNormal):
'MEMORYUNCORRECTABLEERROR': "MemoryUncorrectableError",
'MEMORYTEMPERATUREWARNING': "MemoryTemperatureWarning",
'MEMORYTEMPERATURECRITICAL': "MemoryTemperatureCritical",
+ 'MEMORYBANKERROR': "MemoryBankError",
+ 'MEMORYRANKERROR': "MemoryRankError",
'MOTHERBOARDPOWERCRITICAL': "MotherBoardPowerCritical",
'MOTHERBOARDTEMPERATUREWARNING': "MotherBoardTemperatureWarning",
'MOTHERBOARDTEMPERATURECRITICAL': "MotherBoardTemperatureCritical",
diff --git a/intersight/model/equipment_psu_control_list.py b/intersight/model/equipment_psu_control_list.py
index 899dfb24eb..44bd35b3a3 100644
--- a/intersight/model/equipment_psu_control_list.py
+++ b/intersight/model/equipment_psu_control_list.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/equipment_psu_control_list_all_of.py b/intersight/model/equipment_psu_control_list_all_of.py
index f5a7e2d3aa..d2dfeaa247 100644
--- a/intersight/model/equipment_psu_control_list_all_of.py
+++ b/intersight/model/equipment_psu_control_list_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/equipment_psu_control_relationship.py b/intersight/model/equipment_psu_control_relationship.py
index a62b8c3a89..7f807c116e 100644
--- a/intersight/model/equipment_psu_control_relationship.py
+++ b/intersight/model/equipment_psu_control_relationship.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
@@ -122,6 +122,8 @@ class EquipmentPsuControlRelationship(ModelComposed):
'MEMORYUNCORRECTABLEERROR': "MemoryUncorrectableError",
'MEMORYTEMPERATUREWARNING': "MemoryTemperatureWarning",
'MEMORYTEMPERATURECRITICAL': "MemoryTemperatureCritical",
+ 'MEMORYBANKERROR': "MemoryBankError",
+ 'MEMORYRANKERROR': "MemoryRankError",
'MOTHERBOARDPOWERCRITICAL': "MotherBoardPowerCritical",
'MOTHERBOARDTEMPERATUREWARNING': "MotherBoardTemperatureWarning",
'MOTHERBOARDTEMPERATURECRITICAL': "MotherBoardTemperatureCritical",
@@ -136,6 +138,8 @@ class EquipmentPsuControlRelationship(ModelComposed):
},
('object_type',): {
'AAA.AUDITRECORD': "aaa.AuditRecord",
+ 'AAA.RETENTIONCONFIG': "aaa.RetentionConfig",
+ 'AAA.RETENTIONPOLICY': "aaa.RetentionPolicy",
'ACCESS.POLICY': "access.Policy",
'ADAPTER.CONFIGPOLICY': "adapter.ConfigPolicy",
'ADAPTER.EXTETHINTERFACE': "adapter.ExtEthInterface",
@@ -152,6 +156,7 @@ class EquipmentPsuControlRelationship(ModelComposed):
'APPLIANCE.DATAEXPORTPOLICY': "appliance.DataExportPolicy",
'APPLIANCE.DEVICECERTIFICATE': "appliance.DeviceCertificate",
'APPLIANCE.DEVICECLAIM': "appliance.DeviceClaim",
+ 'APPLIANCE.DEVICEUPGRADEPOLICY': "appliance.DeviceUpgradePolicy",
'APPLIANCE.DIAGSETTING': "appliance.DiagSetting",
'APPLIANCE.EXTERNALSYSLOGSETTING': "appliance.ExternalSyslogSetting",
'APPLIANCE.FILESYSTEMSTATUS': "appliance.FileSystemStatus",
@@ -200,9 +205,12 @@ class EquipmentPsuControlRelationship(ModelComposed):
'BOOT.UEFISHELLDEVICE': "boot.UefiShellDevice",
'BOOT.USBDEVICE': "boot.UsbDevice",
'BOOT.VMEDIADEVICE': "boot.VmediaDevice",
+ 'BULK.EXPORT': "bulk.Export",
+ 'BULK.EXPORTEDITEM': "bulk.ExportedItem",
'BULK.MOCLONER': "bulk.MoCloner",
'BULK.MOMERGER': "bulk.MoMerger",
'BULK.REQUEST': "bulk.Request",
+ 'BULK.SUBREQUESTOBJ': "bulk.SubRequestObj",
'CAPABILITY.ADAPTERUNITDESCRIPTOR': "capability.AdapterUnitDescriptor",
'CAPABILITY.CATALOG': "capability.Catalog",
'CAPABILITY.CHASSISDESCRIPTOR': "capability.ChassisDescriptor",
@@ -266,10 +274,6 @@ class EquipmentPsuControlRelationship(ModelComposed):
'COND.HCLSTATUS': "cond.HclStatus",
'COND.HCLSTATUSDETAIL': "cond.HclStatusDetail",
'COND.HCLSTATUSJOB': "cond.HclStatusJob",
- 'CONFIG.EXPORTEDITEM': "config.ExportedItem",
- 'CONFIG.EXPORTER': "config.Exporter",
- 'CONFIG.IMPORTEDITEM': "config.ImportedItem",
- 'CONFIG.IMPORTER': "config.Importer",
'CONNECTORPACK.CONNECTORPACKUPGRADE': "connectorpack.ConnectorPackUpgrade",
'CONNECTORPACK.UPGRADEIMPACT': "connectorpack.UpgradeImpact",
'CRD.CUSTOMRESOURCE': "crd.CustomResource",
@@ -278,6 +282,7 @@ class EquipmentPsuControlRelationship(ModelComposed):
'EQUIPMENT.CHASSISIDENTITY': "equipment.ChassisIdentity",
'EQUIPMENT.CHASSISOPERATION': "equipment.ChassisOperation",
'EQUIPMENT.DEVICESUMMARY': "equipment.DeviceSummary",
+ 'EQUIPMENT.EXPANDERMODULE': "equipment.ExpanderModule",
'EQUIPMENT.FAN': "equipment.Fan",
'EQUIPMENT.FANCONTROL': "equipment.FanControl",
'EQUIPMENT.FANMODULE': "equipment.FanModule",
@@ -526,6 +531,7 @@ class EquipmentPsuControlRelationship(ModelComposed):
'KUBERNETES.ADDONDEFINITION': "kubernetes.AddonDefinition",
'KUBERNETES.ADDONPOLICY': "kubernetes.AddonPolicy",
'KUBERNETES.ADDONREPOSITORY': "kubernetes.AddonRepository",
+ 'KUBERNETES.BAREMETALNODEPROFILE': "kubernetes.BaremetalNodeProfile",
'KUBERNETES.CATALOG': "kubernetes.Catalog",
'KUBERNETES.CLUSTER': "kubernetes.Cluster",
'KUBERNETES.CLUSTERADDONPROFILE': "kubernetes.ClusterAddonProfile",
@@ -695,6 +701,11 @@ class EquipmentPsuControlRelationship(ModelComposed):
'RESOURCE.LICENSERESOURCECOUNT': "resource.LicenseResourceCount",
'RESOURCE.MEMBERSHIP': "resource.Membership",
'RESOURCE.MEMBERSHIPHOLDER': "resource.MembershipHolder",
+ 'RESOURCEPOOL.LEASE': "resourcepool.Lease",
+ 'RESOURCEPOOL.LEASERESOURCE': "resourcepool.LeaseResource",
+ 'RESOURCEPOOL.POOL': "resourcepool.Pool",
+ 'RESOURCEPOOL.POOLMEMBER': "resourcepool.PoolMember",
+ 'RESOURCEPOOL.UNIVERSE': "resourcepool.Universe",
'RPROXY.REVERSEPROXY': "rproxy.ReverseProxy",
'SDCARD.POLICY': "sdcard.Policy",
'SDWAN.PROFILE': "sdwan.Profile",
@@ -810,6 +821,7 @@ class EquipmentPsuControlRelationship(ModelComposed):
'TASK.NETAPPSCOPEDINVENTORY': "task.NetAppScopedInventory",
'TASK.PUBLICCLOUDSCOPEDINVENTORY': "task.PublicCloudScopedInventory",
'TASK.PURESCOPEDINVENTORY': "task.PureScopedInventory",
+ 'TASK.SERVERSCOPEDINVENTORY': "task.ServerScopedInventory",
'TECHSUPPORTMANAGEMENT.COLLECTIONCONTROLPOLICY': "techsupportmanagement.CollectionControlPolicy",
'TECHSUPPORTMANAGEMENT.DOWNLOAD': "techsupportmanagement.Download",
'TECHSUPPORTMANAGEMENT.TECHSUPPORTBUNDLE': "techsupportmanagement.TechSupportBundle",
@@ -841,6 +853,7 @@ class EquipmentPsuControlRelationship(ModelComposed):
'VIRTUALIZATION.VMWAREVCENTER': "virtualization.VmwareVcenter",
'VIRTUALIZATION.VMWAREVIRTUALDISK': "virtualization.VmwareVirtualDisk",
'VIRTUALIZATION.VMWAREVIRTUALMACHINE': "virtualization.VmwareVirtualMachine",
+ 'VIRTUALIZATION.VMWAREVIRTUALMACHINESNAPSHOT': "virtualization.VmwareVirtualMachineSnapshot",
'VIRTUALIZATION.VMWAREVIRTUALNETWORKINTERFACE': "virtualization.VmwareVirtualNetworkInterface",
'VIRTUALIZATION.VMWAREVIRTUALSWITCH': "virtualization.VmwareVirtualSwitch",
'VMEDIA.POLICY': "vmedia.Policy",
@@ -873,12 +886,14 @@ class EquipmentPsuControlRelationship(ModelComposed):
'WORKFLOW.TASKDEFINITION': "workflow.TaskDefinition",
'WORKFLOW.TASKINFO': "workflow.TaskInfo",
'WORKFLOW.TASKMETADATA': "workflow.TaskMetadata",
+ 'WORKFLOW.TASKNOTIFICATION': "workflow.TaskNotification",
'WORKFLOW.TEMPLATEEVALUATION': "workflow.TemplateEvaluation",
'WORKFLOW.TEMPLATEFUNCTIONMETA': "workflow.TemplateFunctionMeta",
'WORKFLOW.WORKFLOWDEFINITION': "workflow.WorkflowDefinition",
'WORKFLOW.WORKFLOWINFO': "workflow.WorkflowInfo",
'WORKFLOW.WORKFLOWMETA': "workflow.WorkflowMeta",
'WORKFLOW.WORKFLOWMETADATA': "workflow.WorkflowMetadata",
+ 'WORKFLOW.WORKFLOWNOTIFICATION': "workflow.WorkflowNotification",
},
}
diff --git a/intersight/model/equipment_psu_control_response.py b/intersight/model/equipment_psu_control_response.py
index 7567e1fbd4..410ea4202e 100644
--- a/intersight/model/equipment_psu_control_response.py
+++ b/intersight/model/equipment_psu_control_response.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/equipment_psu_list.py b/intersight/model/equipment_psu_list.py
index d1871d0c78..5f787b958b 100644
--- a/intersight/model/equipment_psu_list.py
+++ b/intersight/model/equipment_psu_list.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/equipment_psu_list_all_of.py b/intersight/model/equipment_psu_list_all_of.py
index 520869a32f..5892b35206 100644
--- a/intersight/model/equipment_psu_list_all_of.py
+++ b/intersight/model/equipment_psu_list_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/equipment_psu_relationship.py b/intersight/model/equipment_psu_relationship.py
index a60aaa2b73..a975e5cff5 100644
--- a/intersight/model/equipment_psu_relationship.py
+++ b/intersight/model/equipment_psu_relationship.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
@@ -130,6 +130,8 @@ class EquipmentPsuRelationship(ModelComposed):
'MEMORYUNCORRECTABLEERROR': "MemoryUncorrectableError",
'MEMORYTEMPERATUREWARNING': "MemoryTemperatureWarning",
'MEMORYTEMPERATURECRITICAL': "MemoryTemperatureCritical",
+ 'MEMORYBANKERROR': "MemoryBankError",
+ 'MEMORYRANKERROR': "MemoryRankError",
'MOTHERBOARDPOWERCRITICAL': "MotherBoardPowerCritical",
'MOTHERBOARDTEMPERATUREWARNING': "MotherBoardTemperatureWarning",
'MOTHERBOARDTEMPERATURECRITICAL': "MotherBoardTemperatureCritical",
@@ -144,6 +146,8 @@ class EquipmentPsuRelationship(ModelComposed):
},
('object_type',): {
'AAA.AUDITRECORD': "aaa.AuditRecord",
+ 'AAA.RETENTIONCONFIG': "aaa.RetentionConfig",
+ 'AAA.RETENTIONPOLICY': "aaa.RetentionPolicy",
'ACCESS.POLICY': "access.Policy",
'ADAPTER.CONFIGPOLICY': "adapter.ConfigPolicy",
'ADAPTER.EXTETHINTERFACE': "adapter.ExtEthInterface",
@@ -160,6 +164,7 @@ class EquipmentPsuRelationship(ModelComposed):
'APPLIANCE.DATAEXPORTPOLICY': "appliance.DataExportPolicy",
'APPLIANCE.DEVICECERTIFICATE': "appliance.DeviceCertificate",
'APPLIANCE.DEVICECLAIM': "appliance.DeviceClaim",
+ 'APPLIANCE.DEVICEUPGRADEPOLICY': "appliance.DeviceUpgradePolicy",
'APPLIANCE.DIAGSETTING': "appliance.DiagSetting",
'APPLIANCE.EXTERNALSYSLOGSETTING': "appliance.ExternalSyslogSetting",
'APPLIANCE.FILESYSTEMSTATUS': "appliance.FileSystemStatus",
@@ -208,9 +213,12 @@ class EquipmentPsuRelationship(ModelComposed):
'BOOT.UEFISHELLDEVICE': "boot.UefiShellDevice",
'BOOT.USBDEVICE': "boot.UsbDevice",
'BOOT.VMEDIADEVICE': "boot.VmediaDevice",
+ 'BULK.EXPORT': "bulk.Export",
+ 'BULK.EXPORTEDITEM': "bulk.ExportedItem",
'BULK.MOCLONER': "bulk.MoCloner",
'BULK.MOMERGER': "bulk.MoMerger",
'BULK.REQUEST': "bulk.Request",
+ 'BULK.SUBREQUESTOBJ': "bulk.SubRequestObj",
'CAPABILITY.ADAPTERUNITDESCRIPTOR': "capability.AdapterUnitDescriptor",
'CAPABILITY.CATALOG': "capability.Catalog",
'CAPABILITY.CHASSISDESCRIPTOR': "capability.ChassisDescriptor",
@@ -274,10 +282,6 @@ class EquipmentPsuRelationship(ModelComposed):
'COND.HCLSTATUS': "cond.HclStatus",
'COND.HCLSTATUSDETAIL': "cond.HclStatusDetail",
'COND.HCLSTATUSJOB': "cond.HclStatusJob",
- 'CONFIG.EXPORTEDITEM': "config.ExportedItem",
- 'CONFIG.EXPORTER': "config.Exporter",
- 'CONFIG.IMPORTEDITEM': "config.ImportedItem",
- 'CONFIG.IMPORTER': "config.Importer",
'CONNECTORPACK.CONNECTORPACKUPGRADE': "connectorpack.ConnectorPackUpgrade",
'CONNECTORPACK.UPGRADEIMPACT': "connectorpack.UpgradeImpact",
'CRD.CUSTOMRESOURCE': "crd.CustomResource",
@@ -286,6 +290,7 @@ class EquipmentPsuRelationship(ModelComposed):
'EQUIPMENT.CHASSISIDENTITY': "equipment.ChassisIdentity",
'EQUIPMENT.CHASSISOPERATION': "equipment.ChassisOperation",
'EQUIPMENT.DEVICESUMMARY': "equipment.DeviceSummary",
+ 'EQUIPMENT.EXPANDERMODULE': "equipment.ExpanderModule",
'EQUIPMENT.FAN': "equipment.Fan",
'EQUIPMENT.FANCONTROL': "equipment.FanControl",
'EQUIPMENT.FANMODULE': "equipment.FanModule",
@@ -534,6 +539,7 @@ class EquipmentPsuRelationship(ModelComposed):
'KUBERNETES.ADDONDEFINITION': "kubernetes.AddonDefinition",
'KUBERNETES.ADDONPOLICY': "kubernetes.AddonPolicy",
'KUBERNETES.ADDONREPOSITORY': "kubernetes.AddonRepository",
+ 'KUBERNETES.BAREMETALNODEPROFILE': "kubernetes.BaremetalNodeProfile",
'KUBERNETES.CATALOG': "kubernetes.Catalog",
'KUBERNETES.CLUSTER': "kubernetes.Cluster",
'KUBERNETES.CLUSTERADDONPROFILE': "kubernetes.ClusterAddonProfile",
@@ -703,6 +709,11 @@ class EquipmentPsuRelationship(ModelComposed):
'RESOURCE.LICENSERESOURCECOUNT': "resource.LicenseResourceCount",
'RESOURCE.MEMBERSHIP': "resource.Membership",
'RESOURCE.MEMBERSHIPHOLDER': "resource.MembershipHolder",
+ 'RESOURCEPOOL.LEASE': "resourcepool.Lease",
+ 'RESOURCEPOOL.LEASERESOURCE': "resourcepool.LeaseResource",
+ 'RESOURCEPOOL.POOL': "resourcepool.Pool",
+ 'RESOURCEPOOL.POOLMEMBER': "resourcepool.PoolMember",
+ 'RESOURCEPOOL.UNIVERSE': "resourcepool.Universe",
'RPROXY.REVERSEPROXY': "rproxy.ReverseProxy",
'SDCARD.POLICY': "sdcard.Policy",
'SDWAN.PROFILE': "sdwan.Profile",
@@ -818,6 +829,7 @@ class EquipmentPsuRelationship(ModelComposed):
'TASK.NETAPPSCOPEDINVENTORY': "task.NetAppScopedInventory",
'TASK.PUBLICCLOUDSCOPEDINVENTORY': "task.PublicCloudScopedInventory",
'TASK.PURESCOPEDINVENTORY': "task.PureScopedInventory",
+ 'TASK.SERVERSCOPEDINVENTORY': "task.ServerScopedInventory",
'TECHSUPPORTMANAGEMENT.COLLECTIONCONTROLPOLICY': "techsupportmanagement.CollectionControlPolicy",
'TECHSUPPORTMANAGEMENT.DOWNLOAD': "techsupportmanagement.Download",
'TECHSUPPORTMANAGEMENT.TECHSUPPORTBUNDLE': "techsupportmanagement.TechSupportBundle",
@@ -849,6 +861,7 @@ class EquipmentPsuRelationship(ModelComposed):
'VIRTUALIZATION.VMWAREVCENTER': "virtualization.VmwareVcenter",
'VIRTUALIZATION.VMWAREVIRTUALDISK': "virtualization.VmwareVirtualDisk",
'VIRTUALIZATION.VMWAREVIRTUALMACHINE': "virtualization.VmwareVirtualMachine",
+ 'VIRTUALIZATION.VMWAREVIRTUALMACHINESNAPSHOT': "virtualization.VmwareVirtualMachineSnapshot",
'VIRTUALIZATION.VMWAREVIRTUALNETWORKINTERFACE': "virtualization.VmwareVirtualNetworkInterface",
'VIRTUALIZATION.VMWAREVIRTUALSWITCH': "virtualization.VmwareVirtualSwitch",
'VMEDIA.POLICY': "vmedia.Policy",
@@ -881,12 +894,14 @@ class EquipmentPsuRelationship(ModelComposed):
'WORKFLOW.TASKDEFINITION': "workflow.TaskDefinition",
'WORKFLOW.TASKINFO': "workflow.TaskInfo",
'WORKFLOW.TASKMETADATA': "workflow.TaskMetadata",
+ 'WORKFLOW.TASKNOTIFICATION': "workflow.TaskNotification",
'WORKFLOW.TEMPLATEEVALUATION': "workflow.TemplateEvaluation",
'WORKFLOW.TEMPLATEFUNCTIONMETA': "workflow.TemplateFunctionMeta",
'WORKFLOW.WORKFLOWDEFINITION': "workflow.WorkflowDefinition",
'WORKFLOW.WORKFLOWINFO': "workflow.WorkflowInfo",
'WORKFLOW.WORKFLOWMETA': "workflow.WorkflowMeta",
'WORKFLOW.WORKFLOWMETADATA': "workflow.WorkflowMetadata",
+ 'WORKFLOW.WORKFLOWNOTIFICATION': "workflow.WorkflowNotification",
},
}
diff --git a/intersight/model/equipment_psu_response.py b/intersight/model/equipment_psu_response.py
index ad336cef88..2c790a965c 100644
--- a/intersight/model/equipment_psu_response.py
+++ b/intersight/model/equipment_psu_response.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/equipment_rack_enclosure.py b/intersight/model/equipment_rack_enclosure.py
index 1b435f086f..a045e080b4 100644
--- a/intersight/model/equipment_rack_enclosure.py
+++ b/intersight/model/equipment_rack_enclosure.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/equipment_rack_enclosure_all_of.py b/intersight/model/equipment_rack_enclosure_all_of.py
index 4062081e73..a09f7fc304 100644
--- a/intersight/model/equipment_rack_enclosure_all_of.py
+++ b/intersight/model/equipment_rack_enclosure_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/equipment_rack_enclosure_list.py b/intersight/model/equipment_rack_enclosure_list.py
index 05cfd6a196..780610ab03 100644
--- a/intersight/model/equipment_rack_enclosure_list.py
+++ b/intersight/model/equipment_rack_enclosure_list.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/equipment_rack_enclosure_list_all_of.py b/intersight/model/equipment_rack_enclosure_list_all_of.py
index 51fef6a562..a50019ebb9 100644
--- a/intersight/model/equipment_rack_enclosure_list_all_of.py
+++ b/intersight/model/equipment_rack_enclosure_list_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/equipment_rack_enclosure_relationship.py b/intersight/model/equipment_rack_enclosure_relationship.py
index 3c0dc80359..84869c69f6 100644
--- a/intersight/model/equipment_rack_enclosure_relationship.py
+++ b/intersight/model/equipment_rack_enclosure_relationship.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
@@ -84,6 +84,8 @@ class EquipmentRackEnclosureRelationship(ModelComposed):
},
('object_type',): {
'AAA.AUDITRECORD': "aaa.AuditRecord",
+ 'AAA.RETENTIONCONFIG': "aaa.RetentionConfig",
+ 'AAA.RETENTIONPOLICY': "aaa.RetentionPolicy",
'ACCESS.POLICY': "access.Policy",
'ADAPTER.CONFIGPOLICY': "adapter.ConfigPolicy",
'ADAPTER.EXTETHINTERFACE': "adapter.ExtEthInterface",
@@ -100,6 +102,7 @@ class EquipmentRackEnclosureRelationship(ModelComposed):
'APPLIANCE.DATAEXPORTPOLICY': "appliance.DataExportPolicy",
'APPLIANCE.DEVICECERTIFICATE': "appliance.DeviceCertificate",
'APPLIANCE.DEVICECLAIM': "appliance.DeviceClaim",
+ 'APPLIANCE.DEVICEUPGRADEPOLICY': "appliance.DeviceUpgradePolicy",
'APPLIANCE.DIAGSETTING': "appliance.DiagSetting",
'APPLIANCE.EXTERNALSYSLOGSETTING': "appliance.ExternalSyslogSetting",
'APPLIANCE.FILESYSTEMSTATUS': "appliance.FileSystemStatus",
@@ -148,9 +151,12 @@ class EquipmentRackEnclosureRelationship(ModelComposed):
'BOOT.UEFISHELLDEVICE': "boot.UefiShellDevice",
'BOOT.USBDEVICE': "boot.UsbDevice",
'BOOT.VMEDIADEVICE': "boot.VmediaDevice",
+ 'BULK.EXPORT': "bulk.Export",
+ 'BULK.EXPORTEDITEM': "bulk.ExportedItem",
'BULK.MOCLONER': "bulk.MoCloner",
'BULK.MOMERGER': "bulk.MoMerger",
'BULK.REQUEST': "bulk.Request",
+ 'BULK.SUBREQUESTOBJ': "bulk.SubRequestObj",
'CAPABILITY.ADAPTERUNITDESCRIPTOR': "capability.AdapterUnitDescriptor",
'CAPABILITY.CATALOG': "capability.Catalog",
'CAPABILITY.CHASSISDESCRIPTOR': "capability.ChassisDescriptor",
@@ -214,10 +220,6 @@ class EquipmentRackEnclosureRelationship(ModelComposed):
'COND.HCLSTATUS': "cond.HclStatus",
'COND.HCLSTATUSDETAIL': "cond.HclStatusDetail",
'COND.HCLSTATUSJOB': "cond.HclStatusJob",
- 'CONFIG.EXPORTEDITEM': "config.ExportedItem",
- 'CONFIG.EXPORTER': "config.Exporter",
- 'CONFIG.IMPORTEDITEM': "config.ImportedItem",
- 'CONFIG.IMPORTER': "config.Importer",
'CONNECTORPACK.CONNECTORPACKUPGRADE': "connectorpack.ConnectorPackUpgrade",
'CONNECTORPACK.UPGRADEIMPACT': "connectorpack.UpgradeImpact",
'CRD.CUSTOMRESOURCE': "crd.CustomResource",
@@ -226,6 +228,7 @@ class EquipmentRackEnclosureRelationship(ModelComposed):
'EQUIPMENT.CHASSISIDENTITY': "equipment.ChassisIdentity",
'EQUIPMENT.CHASSISOPERATION': "equipment.ChassisOperation",
'EQUIPMENT.DEVICESUMMARY': "equipment.DeviceSummary",
+ 'EQUIPMENT.EXPANDERMODULE': "equipment.ExpanderModule",
'EQUIPMENT.FAN': "equipment.Fan",
'EQUIPMENT.FANCONTROL': "equipment.FanControl",
'EQUIPMENT.FANMODULE': "equipment.FanModule",
@@ -474,6 +477,7 @@ class EquipmentRackEnclosureRelationship(ModelComposed):
'KUBERNETES.ADDONDEFINITION': "kubernetes.AddonDefinition",
'KUBERNETES.ADDONPOLICY': "kubernetes.AddonPolicy",
'KUBERNETES.ADDONREPOSITORY': "kubernetes.AddonRepository",
+ 'KUBERNETES.BAREMETALNODEPROFILE': "kubernetes.BaremetalNodeProfile",
'KUBERNETES.CATALOG': "kubernetes.Catalog",
'KUBERNETES.CLUSTER': "kubernetes.Cluster",
'KUBERNETES.CLUSTERADDONPROFILE': "kubernetes.ClusterAddonProfile",
@@ -643,6 +647,11 @@ class EquipmentRackEnclosureRelationship(ModelComposed):
'RESOURCE.LICENSERESOURCECOUNT': "resource.LicenseResourceCount",
'RESOURCE.MEMBERSHIP': "resource.Membership",
'RESOURCE.MEMBERSHIPHOLDER': "resource.MembershipHolder",
+ 'RESOURCEPOOL.LEASE': "resourcepool.Lease",
+ 'RESOURCEPOOL.LEASERESOURCE': "resourcepool.LeaseResource",
+ 'RESOURCEPOOL.POOL': "resourcepool.Pool",
+ 'RESOURCEPOOL.POOLMEMBER': "resourcepool.PoolMember",
+ 'RESOURCEPOOL.UNIVERSE': "resourcepool.Universe",
'RPROXY.REVERSEPROXY': "rproxy.ReverseProxy",
'SDCARD.POLICY': "sdcard.Policy",
'SDWAN.PROFILE': "sdwan.Profile",
@@ -758,6 +767,7 @@ class EquipmentRackEnclosureRelationship(ModelComposed):
'TASK.NETAPPSCOPEDINVENTORY': "task.NetAppScopedInventory",
'TASK.PUBLICCLOUDSCOPEDINVENTORY': "task.PublicCloudScopedInventory",
'TASK.PURESCOPEDINVENTORY': "task.PureScopedInventory",
+ 'TASK.SERVERSCOPEDINVENTORY': "task.ServerScopedInventory",
'TECHSUPPORTMANAGEMENT.COLLECTIONCONTROLPOLICY': "techsupportmanagement.CollectionControlPolicy",
'TECHSUPPORTMANAGEMENT.DOWNLOAD': "techsupportmanagement.Download",
'TECHSUPPORTMANAGEMENT.TECHSUPPORTBUNDLE': "techsupportmanagement.TechSupportBundle",
@@ -789,6 +799,7 @@ class EquipmentRackEnclosureRelationship(ModelComposed):
'VIRTUALIZATION.VMWAREVCENTER': "virtualization.VmwareVcenter",
'VIRTUALIZATION.VMWAREVIRTUALDISK': "virtualization.VmwareVirtualDisk",
'VIRTUALIZATION.VMWAREVIRTUALMACHINE': "virtualization.VmwareVirtualMachine",
+ 'VIRTUALIZATION.VMWAREVIRTUALMACHINESNAPSHOT': "virtualization.VmwareVirtualMachineSnapshot",
'VIRTUALIZATION.VMWAREVIRTUALNETWORKINTERFACE': "virtualization.VmwareVirtualNetworkInterface",
'VIRTUALIZATION.VMWAREVIRTUALSWITCH': "virtualization.VmwareVirtualSwitch",
'VMEDIA.POLICY': "vmedia.Policy",
@@ -821,12 +832,14 @@ class EquipmentRackEnclosureRelationship(ModelComposed):
'WORKFLOW.TASKDEFINITION': "workflow.TaskDefinition",
'WORKFLOW.TASKINFO': "workflow.TaskInfo",
'WORKFLOW.TASKMETADATA': "workflow.TaskMetadata",
+ 'WORKFLOW.TASKNOTIFICATION': "workflow.TaskNotification",
'WORKFLOW.TEMPLATEEVALUATION': "workflow.TemplateEvaluation",
'WORKFLOW.TEMPLATEFUNCTIONMETA': "workflow.TemplateFunctionMeta",
'WORKFLOW.WORKFLOWDEFINITION': "workflow.WorkflowDefinition",
'WORKFLOW.WORKFLOWINFO': "workflow.WorkflowInfo",
'WORKFLOW.WORKFLOWMETA': "workflow.WorkflowMeta",
'WORKFLOW.WORKFLOWMETADATA': "workflow.WorkflowMetadata",
+ 'WORKFLOW.WORKFLOWNOTIFICATION': "workflow.WorkflowNotification",
},
}
diff --git a/intersight/model/equipment_rack_enclosure_response.py b/intersight/model/equipment_rack_enclosure_response.py
index 652658a2c6..45234cfcf6 100644
--- a/intersight/model/equipment_rack_enclosure_response.py
+++ b/intersight/model/equipment_rack_enclosure_response.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/equipment_rack_enclosure_slot.py b/intersight/model/equipment_rack_enclosure_slot.py
index 528de06a38..0a2186997d 100644
--- a/intersight/model/equipment_rack_enclosure_slot.py
+++ b/intersight/model/equipment_rack_enclosure_slot.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/equipment_rack_enclosure_slot_all_of.py b/intersight/model/equipment_rack_enclosure_slot_all_of.py
index fdee5bff17..04b912788f 100644
--- a/intersight/model/equipment_rack_enclosure_slot_all_of.py
+++ b/intersight/model/equipment_rack_enclosure_slot_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/equipment_rack_enclosure_slot_list.py b/intersight/model/equipment_rack_enclosure_slot_list.py
index 751d4477fd..7955944492 100644
--- a/intersight/model/equipment_rack_enclosure_slot_list.py
+++ b/intersight/model/equipment_rack_enclosure_slot_list.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/equipment_rack_enclosure_slot_list_all_of.py b/intersight/model/equipment_rack_enclosure_slot_list_all_of.py
index 5b6e943db3..a5d00c41ef 100644
--- a/intersight/model/equipment_rack_enclosure_slot_list_all_of.py
+++ b/intersight/model/equipment_rack_enclosure_slot_list_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/equipment_rack_enclosure_slot_relationship.py b/intersight/model/equipment_rack_enclosure_slot_relationship.py
index a0ad0e6a42..624cde1fa0 100644
--- a/intersight/model/equipment_rack_enclosure_slot_relationship.py
+++ b/intersight/model/equipment_rack_enclosure_slot_relationship.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
@@ -82,6 +82,8 @@ class EquipmentRackEnclosureSlotRelationship(ModelComposed):
},
('object_type',): {
'AAA.AUDITRECORD': "aaa.AuditRecord",
+ 'AAA.RETENTIONCONFIG': "aaa.RetentionConfig",
+ 'AAA.RETENTIONPOLICY': "aaa.RetentionPolicy",
'ACCESS.POLICY': "access.Policy",
'ADAPTER.CONFIGPOLICY': "adapter.ConfigPolicy",
'ADAPTER.EXTETHINTERFACE': "adapter.ExtEthInterface",
@@ -98,6 +100,7 @@ class EquipmentRackEnclosureSlotRelationship(ModelComposed):
'APPLIANCE.DATAEXPORTPOLICY': "appliance.DataExportPolicy",
'APPLIANCE.DEVICECERTIFICATE': "appliance.DeviceCertificate",
'APPLIANCE.DEVICECLAIM': "appliance.DeviceClaim",
+ 'APPLIANCE.DEVICEUPGRADEPOLICY': "appliance.DeviceUpgradePolicy",
'APPLIANCE.DIAGSETTING': "appliance.DiagSetting",
'APPLIANCE.EXTERNALSYSLOGSETTING': "appliance.ExternalSyslogSetting",
'APPLIANCE.FILESYSTEMSTATUS': "appliance.FileSystemStatus",
@@ -146,9 +149,12 @@ class EquipmentRackEnclosureSlotRelationship(ModelComposed):
'BOOT.UEFISHELLDEVICE': "boot.UefiShellDevice",
'BOOT.USBDEVICE': "boot.UsbDevice",
'BOOT.VMEDIADEVICE': "boot.VmediaDevice",
+ 'BULK.EXPORT': "bulk.Export",
+ 'BULK.EXPORTEDITEM': "bulk.ExportedItem",
'BULK.MOCLONER': "bulk.MoCloner",
'BULK.MOMERGER': "bulk.MoMerger",
'BULK.REQUEST': "bulk.Request",
+ 'BULK.SUBREQUESTOBJ': "bulk.SubRequestObj",
'CAPABILITY.ADAPTERUNITDESCRIPTOR': "capability.AdapterUnitDescriptor",
'CAPABILITY.CATALOG': "capability.Catalog",
'CAPABILITY.CHASSISDESCRIPTOR': "capability.ChassisDescriptor",
@@ -212,10 +218,6 @@ class EquipmentRackEnclosureSlotRelationship(ModelComposed):
'COND.HCLSTATUS': "cond.HclStatus",
'COND.HCLSTATUSDETAIL': "cond.HclStatusDetail",
'COND.HCLSTATUSJOB': "cond.HclStatusJob",
- 'CONFIG.EXPORTEDITEM': "config.ExportedItem",
- 'CONFIG.EXPORTER': "config.Exporter",
- 'CONFIG.IMPORTEDITEM': "config.ImportedItem",
- 'CONFIG.IMPORTER': "config.Importer",
'CONNECTORPACK.CONNECTORPACKUPGRADE': "connectorpack.ConnectorPackUpgrade",
'CONNECTORPACK.UPGRADEIMPACT': "connectorpack.UpgradeImpact",
'CRD.CUSTOMRESOURCE': "crd.CustomResource",
@@ -224,6 +226,7 @@ class EquipmentRackEnclosureSlotRelationship(ModelComposed):
'EQUIPMENT.CHASSISIDENTITY': "equipment.ChassisIdentity",
'EQUIPMENT.CHASSISOPERATION': "equipment.ChassisOperation",
'EQUIPMENT.DEVICESUMMARY': "equipment.DeviceSummary",
+ 'EQUIPMENT.EXPANDERMODULE': "equipment.ExpanderModule",
'EQUIPMENT.FAN': "equipment.Fan",
'EQUIPMENT.FANCONTROL': "equipment.FanControl",
'EQUIPMENT.FANMODULE': "equipment.FanModule",
@@ -472,6 +475,7 @@ class EquipmentRackEnclosureSlotRelationship(ModelComposed):
'KUBERNETES.ADDONDEFINITION': "kubernetes.AddonDefinition",
'KUBERNETES.ADDONPOLICY': "kubernetes.AddonPolicy",
'KUBERNETES.ADDONREPOSITORY': "kubernetes.AddonRepository",
+ 'KUBERNETES.BAREMETALNODEPROFILE': "kubernetes.BaremetalNodeProfile",
'KUBERNETES.CATALOG': "kubernetes.Catalog",
'KUBERNETES.CLUSTER': "kubernetes.Cluster",
'KUBERNETES.CLUSTERADDONPROFILE': "kubernetes.ClusterAddonProfile",
@@ -641,6 +645,11 @@ class EquipmentRackEnclosureSlotRelationship(ModelComposed):
'RESOURCE.LICENSERESOURCECOUNT': "resource.LicenseResourceCount",
'RESOURCE.MEMBERSHIP': "resource.Membership",
'RESOURCE.MEMBERSHIPHOLDER': "resource.MembershipHolder",
+ 'RESOURCEPOOL.LEASE': "resourcepool.Lease",
+ 'RESOURCEPOOL.LEASERESOURCE': "resourcepool.LeaseResource",
+ 'RESOURCEPOOL.POOL': "resourcepool.Pool",
+ 'RESOURCEPOOL.POOLMEMBER': "resourcepool.PoolMember",
+ 'RESOURCEPOOL.UNIVERSE': "resourcepool.Universe",
'RPROXY.REVERSEPROXY': "rproxy.ReverseProxy",
'SDCARD.POLICY': "sdcard.Policy",
'SDWAN.PROFILE': "sdwan.Profile",
@@ -756,6 +765,7 @@ class EquipmentRackEnclosureSlotRelationship(ModelComposed):
'TASK.NETAPPSCOPEDINVENTORY': "task.NetAppScopedInventory",
'TASK.PUBLICCLOUDSCOPEDINVENTORY': "task.PublicCloudScopedInventory",
'TASK.PURESCOPEDINVENTORY': "task.PureScopedInventory",
+ 'TASK.SERVERSCOPEDINVENTORY': "task.ServerScopedInventory",
'TECHSUPPORTMANAGEMENT.COLLECTIONCONTROLPOLICY': "techsupportmanagement.CollectionControlPolicy",
'TECHSUPPORTMANAGEMENT.DOWNLOAD': "techsupportmanagement.Download",
'TECHSUPPORTMANAGEMENT.TECHSUPPORTBUNDLE': "techsupportmanagement.TechSupportBundle",
@@ -787,6 +797,7 @@ class EquipmentRackEnclosureSlotRelationship(ModelComposed):
'VIRTUALIZATION.VMWAREVCENTER': "virtualization.VmwareVcenter",
'VIRTUALIZATION.VMWAREVIRTUALDISK': "virtualization.VmwareVirtualDisk",
'VIRTUALIZATION.VMWAREVIRTUALMACHINE': "virtualization.VmwareVirtualMachine",
+ 'VIRTUALIZATION.VMWAREVIRTUALMACHINESNAPSHOT': "virtualization.VmwareVirtualMachineSnapshot",
'VIRTUALIZATION.VMWAREVIRTUALNETWORKINTERFACE': "virtualization.VmwareVirtualNetworkInterface",
'VIRTUALIZATION.VMWAREVIRTUALSWITCH': "virtualization.VmwareVirtualSwitch",
'VMEDIA.POLICY': "vmedia.Policy",
@@ -819,12 +830,14 @@ class EquipmentRackEnclosureSlotRelationship(ModelComposed):
'WORKFLOW.TASKDEFINITION': "workflow.TaskDefinition",
'WORKFLOW.TASKINFO': "workflow.TaskInfo",
'WORKFLOW.TASKMETADATA': "workflow.TaskMetadata",
+ 'WORKFLOW.TASKNOTIFICATION': "workflow.TaskNotification",
'WORKFLOW.TEMPLATEEVALUATION': "workflow.TemplateEvaluation",
'WORKFLOW.TEMPLATEFUNCTIONMETA': "workflow.TemplateFunctionMeta",
'WORKFLOW.WORKFLOWDEFINITION': "workflow.WorkflowDefinition",
'WORKFLOW.WORKFLOWINFO': "workflow.WorkflowInfo",
'WORKFLOW.WORKFLOWMETA': "workflow.WorkflowMeta",
'WORKFLOW.WORKFLOWMETADATA': "workflow.WorkflowMetadata",
+ 'WORKFLOW.WORKFLOWNOTIFICATION': "workflow.WorkflowNotification",
},
}
diff --git a/intersight/model/equipment_rack_enclosure_slot_response.py b/intersight/model/equipment_rack_enclosure_slot_response.py
index 44fd02e980..971e41f8e6 100644
--- a/intersight/model/equipment_rack_enclosure_slot_response.py
+++ b/intersight/model/equipment_rack_enclosure_slot_response.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/equipment_shared_io_module.py b/intersight/model/equipment_shared_io_module.py
index ef432c655f..f4f7df7733 100644
--- a/intersight/model/equipment_shared_io_module.py
+++ b/intersight/model/equipment_shared_io_module.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/equipment_shared_io_module_all_of.py b/intersight/model/equipment_shared_io_module_all_of.py
index 15154f6d31..ed55e64025 100644
--- a/intersight/model/equipment_shared_io_module_all_of.py
+++ b/intersight/model/equipment_shared_io_module_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/equipment_shared_io_module_list.py b/intersight/model/equipment_shared_io_module_list.py
index 5d3489e6ae..2713b27dc8 100644
--- a/intersight/model/equipment_shared_io_module_list.py
+++ b/intersight/model/equipment_shared_io_module_list.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/equipment_shared_io_module_list_all_of.py b/intersight/model/equipment_shared_io_module_list_all_of.py
index f93a86ee21..c16c91a4e9 100644
--- a/intersight/model/equipment_shared_io_module_list_all_of.py
+++ b/intersight/model/equipment_shared_io_module_list_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/equipment_shared_io_module_relationship.py b/intersight/model/equipment_shared_io_module_relationship.py
index 6caa9cce90..63815db261 100644
--- a/intersight/model/equipment_shared_io_module_relationship.py
+++ b/intersight/model/equipment_shared_io_module_relationship.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
@@ -84,6 +84,8 @@ class EquipmentSharedIoModuleRelationship(ModelComposed):
},
('object_type',): {
'AAA.AUDITRECORD': "aaa.AuditRecord",
+ 'AAA.RETENTIONCONFIG': "aaa.RetentionConfig",
+ 'AAA.RETENTIONPOLICY': "aaa.RetentionPolicy",
'ACCESS.POLICY': "access.Policy",
'ADAPTER.CONFIGPOLICY': "adapter.ConfigPolicy",
'ADAPTER.EXTETHINTERFACE': "adapter.ExtEthInterface",
@@ -100,6 +102,7 @@ class EquipmentSharedIoModuleRelationship(ModelComposed):
'APPLIANCE.DATAEXPORTPOLICY': "appliance.DataExportPolicy",
'APPLIANCE.DEVICECERTIFICATE': "appliance.DeviceCertificate",
'APPLIANCE.DEVICECLAIM': "appliance.DeviceClaim",
+ 'APPLIANCE.DEVICEUPGRADEPOLICY': "appliance.DeviceUpgradePolicy",
'APPLIANCE.DIAGSETTING': "appliance.DiagSetting",
'APPLIANCE.EXTERNALSYSLOGSETTING': "appliance.ExternalSyslogSetting",
'APPLIANCE.FILESYSTEMSTATUS': "appliance.FileSystemStatus",
@@ -148,9 +151,12 @@ class EquipmentSharedIoModuleRelationship(ModelComposed):
'BOOT.UEFISHELLDEVICE': "boot.UefiShellDevice",
'BOOT.USBDEVICE': "boot.UsbDevice",
'BOOT.VMEDIADEVICE': "boot.VmediaDevice",
+ 'BULK.EXPORT': "bulk.Export",
+ 'BULK.EXPORTEDITEM': "bulk.ExportedItem",
'BULK.MOCLONER': "bulk.MoCloner",
'BULK.MOMERGER': "bulk.MoMerger",
'BULK.REQUEST': "bulk.Request",
+ 'BULK.SUBREQUESTOBJ': "bulk.SubRequestObj",
'CAPABILITY.ADAPTERUNITDESCRIPTOR': "capability.AdapterUnitDescriptor",
'CAPABILITY.CATALOG': "capability.Catalog",
'CAPABILITY.CHASSISDESCRIPTOR': "capability.ChassisDescriptor",
@@ -214,10 +220,6 @@ class EquipmentSharedIoModuleRelationship(ModelComposed):
'COND.HCLSTATUS': "cond.HclStatus",
'COND.HCLSTATUSDETAIL': "cond.HclStatusDetail",
'COND.HCLSTATUSJOB': "cond.HclStatusJob",
- 'CONFIG.EXPORTEDITEM': "config.ExportedItem",
- 'CONFIG.EXPORTER': "config.Exporter",
- 'CONFIG.IMPORTEDITEM': "config.ImportedItem",
- 'CONFIG.IMPORTER': "config.Importer",
'CONNECTORPACK.CONNECTORPACKUPGRADE': "connectorpack.ConnectorPackUpgrade",
'CONNECTORPACK.UPGRADEIMPACT': "connectorpack.UpgradeImpact",
'CRD.CUSTOMRESOURCE': "crd.CustomResource",
@@ -226,6 +228,7 @@ class EquipmentSharedIoModuleRelationship(ModelComposed):
'EQUIPMENT.CHASSISIDENTITY': "equipment.ChassisIdentity",
'EQUIPMENT.CHASSISOPERATION': "equipment.ChassisOperation",
'EQUIPMENT.DEVICESUMMARY': "equipment.DeviceSummary",
+ 'EQUIPMENT.EXPANDERMODULE': "equipment.ExpanderModule",
'EQUIPMENT.FAN': "equipment.Fan",
'EQUIPMENT.FANCONTROL': "equipment.FanControl",
'EQUIPMENT.FANMODULE': "equipment.FanModule",
@@ -474,6 +477,7 @@ class EquipmentSharedIoModuleRelationship(ModelComposed):
'KUBERNETES.ADDONDEFINITION': "kubernetes.AddonDefinition",
'KUBERNETES.ADDONPOLICY': "kubernetes.AddonPolicy",
'KUBERNETES.ADDONREPOSITORY': "kubernetes.AddonRepository",
+ 'KUBERNETES.BAREMETALNODEPROFILE': "kubernetes.BaremetalNodeProfile",
'KUBERNETES.CATALOG': "kubernetes.Catalog",
'KUBERNETES.CLUSTER': "kubernetes.Cluster",
'KUBERNETES.CLUSTERADDONPROFILE': "kubernetes.ClusterAddonProfile",
@@ -643,6 +647,11 @@ class EquipmentSharedIoModuleRelationship(ModelComposed):
'RESOURCE.LICENSERESOURCECOUNT': "resource.LicenseResourceCount",
'RESOURCE.MEMBERSHIP': "resource.Membership",
'RESOURCE.MEMBERSHIPHOLDER': "resource.MembershipHolder",
+ 'RESOURCEPOOL.LEASE': "resourcepool.Lease",
+ 'RESOURCEPOOL.LEASERESOURCE': "resourcepool.LeaseResource",
+ 'RESOURCEPOOL.POOL': "resourcepool.Pool",
+ 'RESOURCEPOOL.POOLMEMBER': "resourcepool.PoolMember",
+ 'RESOURCEPOOL.UNIVERSE': "resourcepool.Universe",
'RPROXY.REVERSEPROXY': "rproxy.ReverseProxy",
'SDCARD.POLICY': "sdcard.Policy",
'SDWAN.PROFILE': "sdwan.Profile",
@@ -758,6 +767,7 @@ class EquipmentSharedIoModuleRelationship(ModelComposed):
'TASK.NETAPPSCOPEDINVENTORY': "task.NetAppScopedInventory",
'TASK.PUBLICCLOUDSCOPEDINVENTORY': "task.PublicCloudScopedInventory",
'TASK.PURESCOPEDINVENTORY': "task.PureScopedInventory",
+ 'TASK.SERVERSCOPEDINVENTORY': "task.ServerScopedInventory",
'TECHSUPPORTMANAGEMENT.COLLECTIONCONTROLPOLICY': "techsupportmanagement.CollectionControlPolicy",
'TECHSUPPORTMANAGEMENT.DOWNLOAD': "techsupportmanagement.Download",
'TECHSUPPORTMANAGEMENT.TECHSUPPORTBUNDLE': "techsupportmanagement.TechSupportBundle",
@@ -789,6 +799,7 @@ class EquipmentSharedIoModuleRelationship(ModelComposed):
'VIRTUALIZATION.VMWAREVCENTER': "virtualization.VmwareVcenter",
'VIRTUALIZATION.VMWAREVIRTUALDISK': "virtualization.VmwareVirtualDisk",
'VIRTUALIZATION.VMWAREVIRTUALMACHINE': "virtualization.VmwareVirtualMachine",
+ 'VIRTUALIZATION.VMWAREVIRTUALMACHINESNAPSHOT': "virtualization.VmwareVirtualMachineSnapshot",
'VIRTUALIZATION.VMWAREVIRTUALNETWORKINTERFACE': "virtualization.VmwareVirtualNetworkInterface",
'VIRTUALIZATION.VMWAREVIRTUALSWITCH': "virtualization.VmwareVirtualSwitch",
'VMEDIA.POLICY': "vmedia.Policy",
@@ -821,12 +832,14 @@ class EquipmentSharedIoModuleRelationship(ModelComposed):
'WORKFLOW.TASKDEFINITION': "workflow.TaskDefinition",
'WORKFLOW.TASKINFO': "workflow.TaskInfo",
'WORKFLOW.TASKMETADATA': "workflow.TaskMetadata",
+ 'WORKFLOW.TASKNOTIFICATION': "workflow.TaskNotification",
'WORKFLOW.TEMPLATEEVALUATION': "workflow.TemplateEvaluation",
'WORKFLOW.TEMPLATEFUNCTIONMETA': "workflow.TemplateFunctionMeta",
'WORKFLOW.WORKFLOWDEFINITION': "workflow.WorkflowDefinition",
'WORKFLOW.WORKFLOWINFO': "workflow.WorkflowInfo",
'WORKFLOW.WORKFLOWMETA': "workflow.WorkflowMeta",
'WORKFLOW.WORKFLOWMETADATA': "workflow.WorkflowMetadata",
+ 'WORKFLOW.WORKFLOWNOTIFICATION': "workflow.WorkflowNotification",
},
}
diff --git a/intersight/model/equipment_shared_io_module_response.py b/intersight/model/equipment_shared_io_module_response.py
index 9f9b5a2855..a2af0c4d28 100644
--- a/intersight/model/equipment_shared_io_module_response.py
+++ b/intersight/model/equipment_shared_io_module_response.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/equipment_slot.py b/intersight/model/equipment_slot.py
index ac9a17c25e..0ef242ac51 100644
--- a/intersight/model/equipment_slot.py
+++ b/intersight/model/equipment_slot.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/equipment_slot_all_of.py b/intersight/model/equipment_slot_all_of.py
index 60ddbf9766..404738c6f2 100644
--- a/intersight/model/equipment_slot_all_of.py
+++ b/intersight/model/equipment_slot_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/equipment_switch_card.py b/intersight/model/equipment_switch_card.py
index dd8d8f7ee9..acf5d5290b 100644
--- a/intersight/model/equipment_switch_card.py
+++ b/intersight/model/equipment_switch_card.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/equipment_switch_card_all_of.py b/intersight/model/equipment_switch_card_all_of.py
index 860606e4c9..8f247ae8a9 100644
--- a/intersight/model/equipment_switch_card_all_of.py
+++ b/intersight/model/equipment_switch_card_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/equipment_switch_card_list.py b/intersight/model/equipment_switch_card_list.py
index 14b8df7bd9..7aa38cc3bc 100644
--- a/intersight/model/equipment_switch_card_list.py
+++ b/intersight/model/equipment_switch_card_list.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/equipment_switch_card_list_all_of.py b/intersight/model/equipment_switch_card_list_all_of.py
index e1291ba804..8fcc8c60e8 100644
--- a/intersight/model/equipment_switch_card_list_all_of.py
+++ b/intersight/model/equipment_switch_card_list_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/equipment_switch_card_relationship.py b/intersight/model/equipment_switch_card_relationship.py
index 29f7a11bdc..0de63c95ed 100644
--- a/intersight/model/equipment_switch_card_relationship.py
+++ b/intersight/model/equipment_switch_card_relationship.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
@@ -104,6 +104,8 @@ class EquipmentSwitchCardRelationship(ModelComposed):
},
('object_type',): {
'AAA.AUDITRECORD': "aaa.AuditRecord",
+ 'AAA.RETENTIONCONFIG': "aaa.RetentionConfig",
+ 'AAA.RETENTIONPOLICY': "aaa.RetentionPolicy",
'ACCESS.POLICY': "access.Policy",
'ADAPTER.CONFIGPOLICY': "adapter.ConfigPolicy",
'ADAPTER.EXTETHINTERFACE': "adapter.ExtEthInterface",
@@ -120,6 +122,7 @@ class EquipmentSwitchCardRelationship(ModelComposed):
'APPLIANCE.DATAEXPORTPOLICY': "appliance.DataExportPolicy",
'APPLIANCE.DEVICECERTIFICATE': "appliance.DeviceCertificate",
'APPLIANCE.DEVICECLAIM': "appliance.DeviceClaim",
+ 'APPLIANCE.DEVICEUPGRADEPOLICY': "appliance.DeviceUpgradePolicy",
'APPLIANCE.DIAGSETTING': "appliance.DiagSetting",
'APPLIANCE.EXTERNALSYSLOGSETTING': "appliance.ExternalSyslogSetting",
'APPLIANCE.FILESYSTEMSTATUS': "appliance.FileSystemStatus",
@@ -168,9 +171,12 @@ class EquipmentSwitchCardRelationship(ModelComposed):
'BOOT.UEFISHELLDEVICE': "boot.UefiShellDevice",
'BOOT.USBDEVICE': "boot.UsbDevice",
'BOOT.VMEDIADEVICE': "boot.VmediaDevice",
+ 'BULK.EXPORT': "bulk.Export",
+ 'BULK.EXPORTEDITEM': "bulk.ExportedItem",
'BULK.MOCLONER': "bulk.MoCloner",
'BULK.MOMERGER': "bulk.MoMerger",
'BULK.REQUEST': "bulk.Request",
+ 'BULK.SUBREQUESTOBJ': "bulk.SubRequestObj",
'CAPABILITY.ADAPTERUNITDESCRIPTOR': "capability.AdapterUnitDescriptor",
'CAPABILITY.CATALOG': "capability.Catalog",
'CAPABILITY.CHASSISDESCRIPTOR': "capability.ChassisDescriptor",
@@ -234,10 +240,6 @@ class EquipmentSwitchCardRelationship(ModelComposed):
'COND.HCLSTATUS': "cond.HclStatus",
'COND.HCLSTATUSDETAIL': "cond.HclStatusDetail",
'COND.HCLSTATUSJOB': "cond.HclStatusJob",
- 'CONFIG.EXPORTEDITEM': "config.ExportedItem",
- 'CONFIG.EXPORTER': "config.Exporter",
- 'CONFIG.IMPORTEDITEM': "config.ImportedItem",
- 'CONFIG.IMPORTER': "config.Importer",
'CONNECTORPACK.CONNECTORPACKUPGRADE': "connectorpack.ConnectorPackUpgrade",
'CONNECTORPACK.UPGRADEIMPACT': "connectorpack.UpgradeImpact",
'CRD.CUSTOMRESOURCE': "crd.CustomResource",
@@ -246,6 +248,7 @@ class EquipmentSwitchCardRelationship(ModelComposed):
'EQUIPMENT.CHASSISIDENTITY': "equipment.ChassisIdentity",
'EQUIPMENT.CHASSISOPERATION': "equipment.ChassisOperation",
'EQUIPMENT.DEVICESUMMARY': "equipment.DeviceSummary",
+ 'EQUIPMENT.EXPANDERMODULE': "equipment.ExpanderModule",
'EQUIPMENT.FAN': "equipment.Fan",
'EQUIPMENT.FANCONTROL': "equipment.FanControl",
'EQUIPMENT.FANMODULE': "equipment.FanModule",
@@ -494,6 +497,7 @@ class EquipmentSwitchCardRelationship(ModelComposed):
'KUBERNETES.ADDONDEFINITION': "kubernetes.AddonDefinition",
'KUBERNETES.ADDONPOLICY': "kubernetes.AddonPolicy",
'KUBERNETES.ADDONREPOSITORY': "kubernetes.AddonRepository",
+ 'KUBERNETES.BAREMETALNODEPROFILE': "kubernetes.BaremetalNodeProfile",
'KUBERNETES.CATALOG': "kubernetes.Catalog",
'KUBERNETES.CLUSTER': "kubernetes.Cluster",
'KUBERNETES.CLUSTERADDONPROFILE': "kubernetes.ClusterAddonProfile",
@@ -663,6 +667,11 @@ class EquipmentSwitchCardRelationship(ModelComposed):
'RESOURCE.LICENSERESOURCECOUNT': "resource.LicenseResourceCount",
'RESOURCE.MEMBERSHIP': "resource.Membership",
'RESOURCE.MEMBERSHIPHOLDER': "resource.MembershipHolder",
+ 'RESOURCEPOOL.LEASE': "resourcepool.Lease",
+ 'RESOURCEPOOL.LEASERESOURCE': "resourcepool.LeaseResource",
+ 'RESOURCEPOOL.POOL': "resourcepool.Pool",
+ 'RESOURCEPOOL.POOLMEMBER': "resourcepool.PoolMember",
+ 'RESOURCEPOOL.UNIVERSE': "resourcepool.Universe",
'RPROXY.REVERSEPROXY': "rproxy.ReverseProxy",
'SDCARD.POLICY': "sdcard.Policy",
'SDWAN.PROFILE': "sdwan.Profile",
@@ -778,6 +787,7 @@ class EquipmentSwitchCardRelationship(ModelComposed):
'TASK.NETAPPSCOPEDINVENTORY': "task.NetAppScopedInventory",
'TASK.PUBLICCLOUDSCOPEDINVENTORY': "task.PublicCloudScopedInventory",
'TASK.PURESCOPEDINVENTORY': "task.PureScopedInventory",
+ 'TASK.SERVERSCOPEDINVENTORY': "task.ServerScopedInventory",
'TECHSUPPORTMANAGEMENT.COLLECTIONCONTROLPOLICY': "techsupportmanagement.CollectionControlPolicy",
'TECHSUPPORTMANAGEMENT.DOWNLOAD': "techsupportmanagement.Download",
'TECHSUPPORTMANAGEMENT.TECHSUPPORTBUNDLE': "techsupportmanagement.TechSupportBundle",
@@ -809,6 +819,7 @@ class EquipmentSwitchCardRelationship(ModelComposed):
'VIRTUALIZATION.VMWAREVCENTER': "virtualization.VmwareVcenter",
'VIRTUALIZATION.VMWAREVIRTUALDISK': "virtualization.VmwareVirtualDisk",
'VIRTUALIZATION.VMWAREVIRTUALMACHINE': "virtualization.VmwareVirtualMachine",
+ 'VIRTUALIZATION.VMWAREVIRTUALMACHINESNAPSHOT': "virtualization.VmwareVirtualMachineSnapshot",
'VIRTUALIZATION.VMWAREVIRTUALNETWORKINTERFACE': "virtualization.VmwareVirtualNetworkInterface",
'VIRTUALIZATION.VMWAREVIRTUALSWITCH': "virtualization.VmwareVirtualSwitch",
'VMEDIA.POLICY': "vmedia.Policy",
@@ -841,12 +852,14 @@ class EquipmentSwitchCardRelationship(ModelComposed):
'WORKFLOW.TASKDEFINITION': "workflow.TaskDefinition",
'WORKFLOW.TASKINFO': "workflow.TaskInfo",
'WORKFLOW.TASKMETADATA': "workflow.TaskMetadata",
+ 'WORKFLOW.TASKNOTIFICATION': "workflow.TaskNotification",
'WORKFLOW.TEMPLATEEVALUATION': "workflow.TemplateEvaluation",
'WORKFLOW.TEMPLATEFUNCTIONMETA': "workflow.TemplateFunctionMeta",
'WORKFLOW.WORKFLOWDEFINITION': "workflow.WorkflowDefinition",
'WORKFLOW.WORKFLOWINFO': "workflow.WorkflowInfo",
'WORKFLOW.WORKFLOWMETA': "workflow.WorkflowMeta",
'WORKFLOW.WORKFLOWMETADATA': "workflow.WorkflowMetadata",
+ 'WORKFLOW.WORKFLOWNOTIFICATION': "workflow.WorkflowNotification",
},
}
diff --git a/intersight/model/equipment_switch_card_response.py b/intersight/model/equipment_switch_card_response.py
index 2ae082d933..32132d5c50 100644
--- a/intersight/model/equipment_switch_card_response.py
+++ b/intersight/model/equipment_switch_card_response.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/equipment_system_io_controller.py b/intersight/model/equipment_system_io_controller.py
index 6a7f5dbcf7..04ae6510f1 100644
--- a/intersight/model/equipment_system_io_controller.py
+++ b/intersight/model/equipment_system_io_controller.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/equipment_system_io_controller_all_of.py b/intersight/model/equipment_system_io_controller_all_of.py
index 09ed214096..01310ac853 100644
--- a/intersight/model/equipment_system_io_controller_all_of.py
+++ b/intersight/model/equipment_system_io_controller_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/equipment_system_io_controller_list.py b/intersight/model/equipment_system_io_controller_list.py
index ffe1e34e3a..39b477ede3 100644
--- a/intersight/model/equipment_system_io_controller_list.py
+++ b/intersight/model/equipment_system_io_controller_list.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/equipment_system_io_controller_list_all_of.py b/intersight/model/equipment_system_io_controller_list_all_of.py
index d139d706d9..9992969b02 100644
--- a/intersight/model/equipment_system_io_controller_list_all_of.py
+++ b/intersight/model/equipment_system_io_controller_list_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/equipment_system_io_controller_relationship.py b/intersight/model/equipment_system_io_controller_relationship.py
index 9f367d2ee7..90687eb768 100644
--- a/intersight/model/equipment_system_io_controller_relationship.py
+++ b/intersight/model/equipment_system_io_controller_relationship.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
@@ -84,6 +84,8 @@ class EquipmentSystemIoControllerRelationship(ModelComposed):
},
('object_type',): {
'AAA.AUDITRECORD': "aaa.AuditRecord",
+ 'AAA.RETENTIONCONFIG': "aaa.RetentionConfig",
+ 'AAA.RETENTIONPOLICY': "aaa.RetentionPolicy",
'ACCESS.POLICY': "access.Policy",
'ADAPTER.CONFIGPOLICY': "adapter.ConfigPolicy",
'ADAPTER.EXTETHINTERFACE': "adapter.ExtEthInterface",
@@ -100,6 +102,7 @@ class EquipmentSystemIoControllerRelationship(ModelComposed):
'APPLIANCE.DATAEXPORTPOLICY': "appliance.DataExportPolicy",
'APPLIANCE.DEVICECERTIFICATE': "appliance.DeviceCertificate",
'APPLIANCE.DEVICECLAIM': "appliance.DeviceClaim",
+ 'APPLIANCE.DEVICEUPGRADEPOLICY': "appliance.DeviceUpgradePolicy",
'APPLIANCE.DIAGSETTING': "appliance.DiagSetting",
'APPLIANCE.EXTERNALSYSLOGSETTING': "appliance.ExternalSyslogSetting",
'APPLIANCE.FILESYSTEMSTATUS': "appliance.FileSystemStatus",
@@ -148,9 +151,12 @@ class EquipmentSystemIoControllerRelationship(ModelComposed):
'BOOT.UEFISHELLDEVICE': "boot.UefiShellDevice",
'BOOT.USBDEVICE': "boot.UsbDevice",
'BOOT.VMEDIADEVICE': "boot.VmediaDevice",
+ 'BULK.EXPORT': "bulk.Export",
+ 'BULK.EXPORTEDITEM': "bulk.ExportedItem",
'BULK.MOCLONER': "bulk.MoCloner",
'BULK.MOMERGER': "bulk.MoMerger",
'BULK.REQUEST': "bulk.Request",
+ 'BULK.SUBREQUESTOBJ': "bulk.SubRequestObj",
'CAPABILITY.ADAPTERUNITDESCRIPTOR': "capability.AdapterUnitDescriptor",
'CAPABILITY.CATALOG': "capability.Catalog",
'CAPABILITY.CHASSISDESCRIPTOR': "capability.ChassisDescriptor",
@@ -214,10 +220,6 @@ class EquipmentSystemIoControllerRelationship(ModelComposed):
'COND.HCLSTATUS': "cond.HclStatus",
'COND.HCLSTATUSDETAIL': "cond.HclStatusDetail",
'COND.HCLSTATUSJOB': "cond.HclStatusJob",
- 'CONFIG.EXPORTEDITEM': "config.ExportedItem",
- 'CONFIG.EXPORTER': "config.Exporter",
- 'CONFIG.IMPORTEDITEM': "config.ImportedItem",
- 'CONFIG.IMPORTER': "config.Importer",
'CONNECTORPACK.CONNECTORPACKUPGRADE': "connectorpack.ConnectorPackUpgrade",
'CONNECTORPACK.UPGRADEIMPACT': "connectorpack.UpgradeImpact",
'CRD.CUSTOMRESOURCE': "crd.CustomResource",
@@ -226,6 +228,7 @@ class EquipmentSystemIoControllerRelationship(ModelComposed):
'EQUIPMENT.CHASSISIDENTITY': "equipment.ChassisIdentity",
'EQUIPMENT.CHASSISOPERATION': "equipment.ChassisOperation",
'EQUIPMENT.DEVICESUMMARY': "equipment.DeviceSummary",
+ 'EQUIPMENT.EXPANDERMODULE': "equipment.ExpanderModule",
'EQUIPMENT.FAN': "equipment.Fan",
'EQUIPMENT.FANCONTROL': "equipment.FanControl",
'EQUIPMENT.FANMODULE': "equipment.FanModule",
@@ -474,6 +477,7 @@ class EquipmentSystemIoControllerRelationship(ModelComposed):
'KUBERNETES.ADDONDEFINITION': "kubernetes.AddonDefinition",
'KUBERNETES.ADDONPOLICY': "kubernetes.AddonPolicy",
'KUBERNETES.ADDONREPOSITORY': "kubernetes.AddonRepository",
+ 'KUBERNETES.BAREMETALNODEPROFILE': "kubernetes.BaremetalNodeProfile",
'KUBERNETES.CATALOG': "kubernetes.Catalog",
'KUBERNETES.CLUSTER': "kubernetes.Cluster",
'KUBERNETES.CLUSTERADDONPROFILE': "kubernetes.ClusterAddonProfile",
@@ -643,6 +647,11 @@ class EquipmentSystemIoControllerRelationship(ModelComposed):
'RESOURCE.LICENSERESOURCECOUNT': "resource.LicenseResourceCount",
'RESOURCE.MEMBERSHIP': "resource.Membership",
'RESOURCE.MEMBERSHIPHOLDER': "resource.MembershipHolder",
+ 'RESOURCEPOOL.LEASE': "resourcepool.Lease",
+ 'RESOURCEPOOL.LEASERESOURCE': "resourcepool.LeaseResource",
+ 'RESOURCEPOOL.POOL': "resourcepool.Pool",
+ 'RESOURCEPOOL.POOLMEMBER': "resourcepool.PoolMember",
+ 'RESOURCEPOOL.UNIVERSE': "resourcepool.Universe",
'RPROXY.REVERSEPROXY': "rproxy.ReverseProxy",
'SDCARD.POLICY': "sdcard.Policy",
'SDWAN.PROFILE': "sdwan.Profile",
@@ -758,6 +767,7 @@ class EquipmentSystemIoControllerRelationship(ModelComposed):
'TASK.NETAPPSCOPEDINVENTORY': "task.NetAppScopedInventory",
'TASK.PUBLICCLOUDSCOPEDINVENTORY': "task.PublicCloudScopedInventory",
'TASK.PURESCOPEDINVENTORY': "task.PureScopedInventory",
+ 'TASK.SERVERSCOPEDINVENTORY': "task.ServerScopedInventory",
'TECHSUPPORTMANAGEMENT.COLLECTIONCONTROLPOLICY': "techsupportmanagement.CollectionControlPolicy",
'TECHSUPPORTMANAGEMENT.DOWNLOAD': "techsupportmanagement.Download",
'TECHSUPPORTMANAGEMENT.TECHSUPPORTBUNDLE': "techsupportmanagement.TechSupportBundle",
@@ -789,6 +799,7 @@ class EquipmentSystemIoControllerRelationship(ModelComposed):
'VIRTUALIZATION.VMWAREVCENTER': "virtualization.VmwareVcenter",
'VIRTUALIZATION.VMWAREVIRTUALDISK': "virtualization.VmwareVirtualDisk",
'VIRTUALIZATION.VMWAREVIRTUALMACHINE': "virtualization.VmwareVirtualMachine",
+ 'VIRTUALIZATION.VMWAREVIRTUALMACHINESNAPSHOT': "virtualization.VmwareVirtualMachineSnapshot",
'VIRTUALIZATION.VMWAREVIRTUALNETWORKINTERFACE': "virtualization.VmwareVirtualNetworkInterface",
'VIRTUALIZATION.VMWAREVIRTUALSWITCH': "virtualization.VmwareVirtualSwitch",
'VMEDIA.POLICY': "vmedia.Policy",
@@ -821,12 +832,14 @@ class EquipmentSystemIoControllerRelationship(ModelComposed):
'WORKFLOW.TASKDEFINITION': "workflow.TaskDefinition",
'WORKFLOW.TASKINFO': "workflow.TaskInfo",
'WORKFLOW.TASKMETADATA': "workflow.TaskMetadata",
+ 'WORKFLOW.TASKNOTIFICATION': "workflow.TaskNotification",
'WORKFLOW.TEMPLATEEVALUATION': "workflow.TemplateEvaluation",
'WORKFLOW.TEMPLATEFUNCTIONMETA': "workflow.TemplateFunctionMeta",
'WORKFLOW.WORKFLOWDEFINITION': "workflow.WorkflowDefinition",
'WORKFLOW.WORKFLOWINFO': "workflow.WorkflowInfo",
'WORKFLOW.WORKFLOWMETA': "workflow.WorkflowMeta",
'WORKFLOW.WORKFLOWMETADATA': "workflow.WorkflowMetadata",
+ 'WORKFLOW.WORKFLOWNOTIFICATION': "workflow.WorkflowNotification",
},
}
diff --git a/intersight/model/equipment_system_io_controller_response.py b/intersight/model/equipment_system_io_controller_response.py
index 98705dfad9..1bf747d097 100644
--- a/intersight/model/equipment_system_io_controller_response.py
+++ b/intersight/model/equipment_system_io_controller_response.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/equipment_tpm.py b/intersight/model/equipment_tpm.py
index 837bf6e516..13148f95f5 100644
--- a/intersight/model/equipment_tpm.py
+++ b/intersight/model/equipment_tpm.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/equipment_tpm_all_of.py b/intersight/model/equipment_tpm_all_of.py
index 344f00eefc..11a3959e7a 100644
--- a/intersight/model/equipment_tpm_all_of.py
+++ b/intersight/model/equipment_tpm_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/equipment_tpm_list.py b/intersight/model/equipment_tpm_list.py
index 49f45d82f1..6439e3a322 100644
--- a/intersight/model/equipment_tpm_list.py
+++ b/intersight/model/equipment_tpm_list.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/equipment_tpm_list_all_of.py b/intersight/model/equipment_tpm_list_all_of.py
index 563a472e7f..a93a756aad 100644
--- a/intersight/model/equipment_tpm_list_all_of.py
+++ b/intersight/model/equipment_tpm_list_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/equipment_tpm_relationship.py b/intersight/model/equipment_tpm_relationship.py
index 26816839d4..66169ea423 100644
--- a/intersight/model/equipment_tpm_relationship.py
+++ b/intersight/model/equipment_tpm_relationship.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
@@ -80,6 +80,8 @@ class EquipmentTpmRelationship(ModelComposed):
},
('object_type',): {
'AAA.AUDITRECORD': "aaa.AuditRecord",
+ 'AAA.RETENTIONCONFIG': "aaa.RetentionConfig",
+ 'AAA.RETENTIONPOLICY': "aaa.RetentionPolicy",
'ACCESS.POLICY': "access.Policy",
'ADAPTER.CONFIGPOLICY': "adapter.ConfigPolicy",
'ADAPTER.EXTETHINTERFACE': "adapter.ExtEthInterface",
@@ -96,6 +98,7 @@ class EquipmentTpmRelationship(ModelComposed):
'APPLIANCE.DATAEXPORTPOLICY': "appliance.DataExportPolicy",
'APPLIANCE.DEVICECERTIFICATE': "appliance.DeviceCertificate",
'APPLIANCE.DEVICECLAIM': "appliance.DeviceClaim",
+ 'APPLIANCE.DEVICEUPGRADEPOLICY': "appliance.DeviceUpgradePolicy",
'APPLIANCE.DIAGSETTING': "appliance.DiagSetting",
'APPLIANCE.EXTERNALSYSLOGSETTING': "appliance.ExternalSyslogSetting",
'APPLIANCE.FILESYSTEMSTATUS': "appliance.FileSystemStatus",
@@ -144,9 +147,12 @@ class EquipmentTpmRelationship(ModelComposed):
'BOOT.UEFISHELLDEVICE': "boot.UefiShellDevice",
'BOOT.USBDEVICE': "boot.UsbDevice",
'BOOT.VMEDIADEVICE': "boot.VmediaDevice",
+ 'BULK.EXPORT': "bulk.Export",
+ 'BULK.EXPORTEDITEM': "bulk.ExportedItem",
'BULK.MOCLONER': "bulk.MoCloner",
'BULK.MOMERGER': "bulk.MoMerger",
'BULK.REQUEST': "bulk.Request",
+ 'BULK.SUBREQUESTOBJ': "bulk.SubRequestObj",
'CAPABILITY.ADAPTERUNITDESCRIPTOR': "capability.AdapterUnitDescriptor",
'CAPABILITY.CATALOG': "capability.Catalog",
'CAPABILITY.CHASSISDESCRIPTOR': "capability.ChassisDescriptor",
@@ -210,10 +216,6 @@ class EquipmentTpmRelationship(ModelComposed):
'COND.HCLSTATUS': "cond.HclStatus",
'COND.HCLSTATUSDETAIL': "cond.HclStatusDetail",
'COND.HCLSTATUSJOB': "cond.HclStatusJob",
- 'CONFIG.EXPORTEDITEM': "config.ExportedItem",
- 'CONFIG.EXPORTER': "config.Exporter",
- 'CONFIG.IMPORTEDITEM': "config.ImportedItem",
- 'CONFIG.IMPORTER': "config.Importer",
'CONNECTORPACK.CONNECTORPACKUPGRADE': "connectorpack.ConnectorPackUpgrade",
'CONNECTORPACK.UPGRADEIMPACT': "connectorpack.UpgradeImpact",
'CRD.CUSTOMRESOURCE': "crd.CustomResource",
@@ -222,6 +224,7 @@ class EquipmentTpmRelationship(ModelComposed):
'EQUIPMENT.CHASSISIDENTITY': "equipment.ChassisIdentity",
'EQUIPMENT.CHASSISOPERATION': "equipment.ChassisOperation",
'EQUIPMENT.DEVICESUMMARY': "equipment.DeviceSummary",
+ 'EQUIPMENT.EXPANDERMODULE': "equipment.ExpanderModule",
'EQUIPMENT.FAN': "equipment.Fan",
'EQUIPMENT.FANCONTROL': "equipment.FanControl",
'EQUIPMENT.FANMODULE': "equipment.FanModule",
@@ -470,6 +473,7 @@ class EquipmentTpmRelationship(ModelComposed):
'KUBERNETES.ADDONDEFINITION': "kubernetes.AddonDefinition",
'KUBERNETES.ADDONPOLICY': "kubernetes.AddonPolicy",
'KUBERNETES.ADDONREPOSITORY': "kubernetes.AddonRepository",
+ 'KUBERNETES.BAREMETALNODEPROFILE': "kubernetes.BaremetalNodeProfile",
'KUBERNETES.CATALOG': "kubernetes.Catalog",
'KUBERNETES.CLUSTER': "kubernetes.Cluster",
'KUBERNETES.CLUSTERADDONPROFILE': "kubernetes.ClusterAddonProfile",
@@ -639,6 +643,11 @@ class EquipmentTpmRelationship(ModelComposed):
'RESOURCE.LICENSERESOURCECOUNT': "resource.LicenseResourceCount",
'RESOURCE.MEMBERSHIP': "resource.Membership",
'RESOURCE.MEMBERSHIPHOLDER': "resource.MembershipHolder",
+ 'RESOURCEPOOL.LEASE': "resourcepool.Lease",
+ 'RESOURCEPOOL.LEASERESOURCE': "resourcepool.LeaseResource",
+ 'RESOURCEPOOL.POOL': "resourcepool.Pool",
+ 'RESOURCEPOOL.POOLMEMBER': "resourcepool.PoolMember",
+ 'RESOURCEPOOL.UNIVERSE': "resourcepool.Universe",
'RPROXY.REVERSEPROXY': "rproxy.ReverseProxy",
'SDCARD.POLICY': "sdcard.Policy",
'SDWAN.PROFILE': "sdwan.Profile",
@@ -754,6 +763,7 @@ class EquipmentTpmRelationship(ModelComposed):
'TASK.NETAPPSCOPEDINVENTORY': "task.NetAppScopedInventory",
'TASK.PUBLICCLOUDSCOPEDINVENTORY': "task.PublicCloudScopedInventory",
'TASK.PURESCOPEDINVENTORY': "task.PureScopedInventory",
+ 'TASK.SERVERSCOPEDINVENTORY': "task.ServerScopedInventory",
'TECHSUPPORTMANAGEMENT.COLLECTIONCONTROLPOLICY': "techsupportmanagement.CollectionControlPolicy",
'TECHSUPPORTMANAGEMENT.DOWNLOAD': "techsupportmanagement.Download",
'TECHSUPPORTMANAGEMENT.TECHSUPPORTBUNDLE': "techsupportmanagement.TechSupportBundle",
@@ -785,6 +795,7 @@ class EquipmentTpmRelationship(ModelComposed):
'VIRTUALIZATION.VMWAREVCENTER': "virtualization.VmwareVcenter",
'VIRTUALIZATION.VMWAREVIRTUALDISK': "virtualization.VmwareVirtualDisk",
'VIRTUALIZATION.VMWAREVIRTUALMACHINE': "virtualization.VmwareVirtualMachine",
+ 'VIRTUALIZATION.VMWAREVIRTUALMACHINESNAPSHOT': "virtualization.VmwareVirtualMachineSnapshot",
'VIRTUALIZATION.VMWAREVIRTUALNETWORKINTERFACE': "virtualization.VmwareVirtualNetworkInterface",
'VIRTUALIZATION.VMWAREVIRTUALSWITCH': "virtualization.VmwareVirtualSwitch",
'VMEDIA.POLICY': "vmedia.Policy",
@@ -817,12 +828,14 @@ class EquipmentTpmRelationship(ModelComposed):
'WORKFLOW.TASKDEFINITION': "workflow.TaskDefinition",
'WORKFLOW.TASKINFO': "workflow.TaskInfo",
'WORKFLOW.TASKMETADATA': "workflow.TaskMetadata",
+ 'WORKFLOW.TASKNOTIFICATION': "workflow.TaskNotification",
'WORKFLOW.TEMPLATEEVALUATION': "workflow.TemplateEvaluation",
'WORKFLOW.TEMPLATEFUNCTIONMETA': "workflow.TemplateFunctionMeta",
'WORKFLOW.WORKFLOWDEFINITION': "workflow.WorkflowDefinition",
'WORKFLOW.WORKFLOWINFO': "workflow.WorkflowInfo",
'WORKFLOW.WORKFLOWMETA': "workflow.WorkflowMeta",
'WORKFLOW.WORKFLOWMETADATA': "workflow.WorkflowMetadata",
+ 'WORKFLOW.WORKFLOWNOTIFICATION': "workflow.WorkflowNotification",
},
}
diff --git a/intersight/model/equipment_tpm_response.py b/intersight/model/equipment_tpm_response.py
index ad1870ce2d..f6d5e1d774 100644
--- a/intersight/model/equipment_tpm_response.py
+++ b/intersight/model/equipment_tpm_response.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/equipment_transceiver.py b/intersight/model/equipment_transceiver.py
index d3753d4000..fea4622359 100644
--- a/intersight/model/equipment_transceiver.py
+++ b/intersight/model/equipment_transceiver.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/equipment_transceiver_all_of.py b/intersight/model/equipment_transceiver_all_of.py
index 999c3dd203..6f6103d33b 100644
--- a/intersight/model/equipment_transceiver_all_of.py
+++ b/intersight/model/equipment_transceiver_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/equipment_transceiver_list.py b/intersight/model/equipment_transceiver_list.py
index 829a3716f6..8aee77d44e 100644
--- a/intersight/model/equipment_transceiver_list.py
+++ b/intersight/model/equipment_transceiver_list.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/equipment_transceiver_list_all_of.py b/intersight/model/equipment_transceiver_list_all_of.py
index 456200edcc..8ac4648021 100644
--- a/intersight/model/equipment_transceiver_list_all_of.py
+++ b/intersight/model/equipment_transceiver_list_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/equipment_transceiver_response.py b/intersight/model/equipment_transceiver_response.py
index ba1129f997..5a3284c9fd 100644
--- a/intersight/model/equipment_transceiver_response.py
+++ b/intersight/model/equipment_transceiver_response.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/error.py b/intersight/model/error.py
index ee74143dd7..bbe645a142 100644
--- a/intersight/model/error.py
+++ b/intersight/model/error.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/ether_host_port.py b/intersight/model/ether_host_port.py
index 9000b28e58..bd80baee2b 100644
--- a/intersight/model/ether_host_port.py
+++ b/intersight/model/ether_host_port.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/ether_host_port_all_of.py b/intersight/model/ether_host_port_all_of.py
index c498790047..08acfb9ae7 100644
--- a/intersight/model/ether_host_port_all_of.py
+++ b/intersight/model/ether_host_port_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/ether_host_port_list.py b/intersight/model/ether_host_port_list.py
index bcd7d57a50..4c9b433560 100644
--- a/intersight/model/ether_host_port_list.py
+++ b/intersight/model/ether_host_port_list.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/ether_host_port_list_all_of.py b/intersight/model/ether_host_port_list_all_of.py
index e71ba57372..04e2f74897 100644
--- a/intersight/model/ether_host_port_list_all_of.py
+++ b/intersight/model/ether_host_port_list_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/ether_host_port_relationship.py b/intersight/model/ether_host_port_relationship.py
index 8d35176d0b..f7821ce2b2 100644
--- a/intersight/model/ether_host_port_relationship.py
+++ b/intersight/model/ether_host_port_relationship.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
@@ -78,6 +78,8 @@ class EtherHostPortRelationship(ModelComposed):
},
('object_type',): {
'AAA.AUDITRECORD': "aaa.AuditRecord",
+ 'AAA.RETENTIONCONFIG': "aaa.RetentionConfig",
+ 'AAA.RETENTIONPOLICY': "aaa.RetentionPolicy",
'ACCESS.POLICY': "access.Policy",
'ADAPTER.CONFIGPOLICY': "adapter.ConfigPolicy",
'ADAPTER.EXTETHINTERFACE': "adapter.ExtEthInterface",
@@ -94,6 +96,7 @@ class EtherHostPortRelationship(ModelComposed):
'APPLIANCE.DATAEXPORTPOLICY': "appliance.DataExportPolicy",
'APPLIANCE.DEVICECERTIFICATE': "appliance.DeviceCertificate",
'APPLIANCE.DEVICECLAIM': "appliance.DeviceClaim",
+ 'APPLIANCE.DEVICEUPGRADEPOLICY': "appliance.DeviceUpgradePolicy",
'APPLIANCE.DIAGSETTING': "appliance.DiagSetting",
'APPLIANCE.EXTERNALSYSLOGSETTING': "appliance.ExternalSyslogSetting",
'APPLIANCE.FILESYSTEMSTATUS': "appliance.FileSystemStatus",
@@ -142,9 +145,12 @@ class EtherHostPortRelationship(ModelComposed):
'BOOT.UEFISHELLDEVICE': "boot.UefiShellDevice",
'BOOT.USBDEVICE': "boot.UsbDevice",
'BOOT.VMEDIADEVICE': "boot.VmediaDevice",
+ 'BULK.EXPORT': "bulk.Export",
+ 'BULK.EXPORTEDITEM': "bulk.ExportedItem",
'BULK.MOCLONER': "bulk.MoCloner",
'BULK.MOMERGER': "bulk.MoMerger",
'BULK.REQUEST': "bulk.Request",
+ 'BULK.SUBREQUESTOBJ': "bulk.SubRequestObj",
'CAPABILITY.ADAPTERUNITDESCRIPTOR': "capability.AdapterUnitDescriptor",
'CAPABILITY.CATALOG': "capability.Catalog",
'CAPABILITY.CHASSISDESCRIPTOR': "capability.ChassisDescriptor",
@@ -208,10 +214,6 @@ class EtherHostPortRelationship(ModelComposed):
'COND.HCLSTATUS': "cond.HclStatus",
'COND.HCLSTATUSDETAIL': "cond.HclStatusDetail",
'COND.HCLSTATUSJOB': "cond.HclStatusJob",
- 'CONFIG.EXPORTEDITEM': "config.ExportedItem",
- 'CONFIG.EXPORTER': "config.Exporter",
- 'CONFIG.IMPORTEDITEM': "config.ImportedItem",
- 'CONFIG.IMPORTER': "config.Importer",
'CONNECTORPACK.CONNECTORPACKUPGRADE': "connectorpack.ConnectorPackUpgrade",
'CONNECTORPACK.UPGRADEIMPACT': "connectorpack.UpgradeImpact",
'CRD.CUSTOMRESOURCE': "crd.CustomResource",
@@ -220,6 +222,7 @@ class EtherHostPortRelationship(ModelComposed):
'EQUIPMENT.CHASSISIDENTITY': "equipment.ChassisIdentity",
'EQUIPMENT.CHASSISOPERATION': "equipment.ChassisOperation",
'EQUIPMENT.DEVICESUMMARY': "equipment.DeviceSummary",
+ 'EQUIPMENT.EXPANDERMODULE': "equipment.ExpanderModule",
'EQUIPMENT.FAN': "equipment.Fan",
'EQUIPMENT.FANCONTROL': "equipment.FanControl",
'EQUIPMENT.FANMODULE': "equipment.FanModule",
@@ -468,6 +471,7 @@ class EtherHostPortRelationship(ModelComposed):
'KUBERNETES.ADDONDEFINITION': "kubernetes.AddonDefinition",
'KUBERNETES.ADDONPOLICY': "kubernetes.AddonPolicy",
'KUBERNETES.ADDONREPOSITORY': "kubernetes.AddonRepository",
+ 'KUBERNETES.BAREMETALNODEPROFILE': "kubernetes.BaremetalNodeProfile",
'KUBERNETES.CATALOG': "kubernetes.Catalog",
'KUBERNETES.CLUSTER': "kubernetes.Cluster",
'KUBERNETES.CLUSTERADDONPROFILE': "kubernetes.ClusterAddonProfile",
@@ -637,6 +641,11 @@ class EtherHostPortRelationship(ModelComposed):
'RESOURCE.LICENSERESOURCECOUNT': "resource.LicenseResourceCount",
'RESOURCE.MEMBERSHIP': "resource.Membership",
'RESOURCE.MEMBERSHIPHOLDER': "resource.MembershipHolder",
+ 'RESOURCEPOOL.LEASE': "resourcepool.Lease",
+ 'RESOURCEPOOL.LEASERESOURCE': "resourcepool.LeaseResource",
+ 'RESOURCEPOOL.POOL': "resourcepool.Pool",
+ 'RESOURCEPOOL.POOLMEMBER': "resourcepool.PoolMember",
+ 'RESOURCEPOOL.UNIVERSE': "resourcepool.Universe",
'RPROXY.REVERSEPROXY': "rproxy.ReverseProxy",
'SDCARD.POLICY': "sdcard.Policy",
'SDWAN.PROFILE': "sdwan.Profile",
@@ -752,6 +761,7 @@ class EtherHostPortRelationship(ModelComposed):
'TASK.NETAPPSCOPEDINVENTORY': "task.NetAppScopedInventory",
'TASK.PUBLICCLOUDSCOPEDINVENTORY': "task.PublicCloudScopedInventory",
'TASK.PURESCOPEDINVENTORY': "task.PureScopedInventory",
+ 'TASK.SERVERSCOPEDINVENTORY': "task.ServerScopedInventory",
'TECHSUPPORTMANAGEMENT.COLLECTIONCONTROLPOLICY': "techsupportmanagement.CollectionControlPolicy",
'TECHSUPPORTMANAGEMENT.DOWNLOAD': "techsupportmanagement.Download",
'TECHSUPPORTMANAGEMENT.TECHSUPPORTBUNDLE': "techsupportmanagement.TechSupportBundle",
@@ -783,6 +793,7 @@ class EtherHostPortRelationship(ModelComposed):
'VIRTUALIZATION.VMWAREVCENTER': "virtualization.VmwareVcenter",
'VIRTUALIZATION.VMWAREVIRTUALDISK': "virtualization.VmwareVirtualDisk",
'VIRTUALIZATION.VMWAREVIRTUALMACHINE': "virtualization.VmwareVirtualMachine",
+ 'VIRTUALIZATION.VMWAREVIRTUALMACHINESNAPSHOT': "virtualization.VmwareVirtualMachineSnapshot",
'VIRTUALIZATION.VMWAREVIRTUALNETWORKINTERFACE': "virtualization.VmwareVirtualNetworkInterface",
'VIRTUALIZATION.VMWAREVIRTUALSWITCH': "virtualization.VmwareVirtualSwitch",
'VMEDIA.POLICY': "vmedia.Policy",
@@ -815,12 +826,14 @@ class EtherHostPortRelationship(ModelComposed):
'WORKFLOW.TASKDEFINITION': "workflow.TaskDefinition",
'WORKFLOW.TASKINFO': "workflow.TaskInfo",
'WORKFLOW.TASKMETADATA': "workflow.TaskMetadata",
+ 'WORKFLOW.TASKNOTIFICATION': "workflow.TaskNotification",
'WORKFLOW.TEMPLATEEVALUATION': "workflow.TemplateEvaluation",
'WORKFLOW.TEMPLATEFUNCTIONMETA': "workflow.TemplateFunctionMeta",
'WORKFLOW.WORKFLOWDEFINITION': "workflow.WorkflowDefinition",
'WORKFLOW.WORKFLOWINFO': "workflow.WorkflowInfo",
'WORKFLOW.WORKFLOWMETA': "workflow.WorkflowMeta",
'WORKFLOW.WORKFLOWMETADATA': "workflow.WorkflowMetadata",
+ 'WORKFLOW.WORKFLOWNOTIFICATION': "workflow.WorkflowNotification",
},
}
diff --git a/intersight/model/ether_host_port_response.py b/intersight/model/ether_host_port_response.py
index 8e7dce83e2..657ab4a677 100644
--- a/intersight/model/ether_host_port_response.py
+++ b/intersight/model/ether_host_port_response.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/ether_network_port.py b/intersight/model/ether_network_port.py
index 55b7a257bf..7c7218d5ab 100644
--- a/intersight/model/ether_network_port.py
+++ b/intersight/model/ether_network_port.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/ether_network_port_all_of.py b/intersight/model/ether_network_port_all_of.py
index d6c3b16755..5feaeab37d 100644
--- a/intersight/model/ether_network_port_all_of.py
+++ b/intersight/model/ether_network_port_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/ether_network_port_list.py b/intersight/model/ether_network_port_list.py
index fa2eccd385..f22bccef84 100644
--- a/intersight/model/ether_network_port_list.py
+++ b/intersight/model/ether_network_port_list.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/ether_network_port_list_all_of.py b/intersight/model/ether_network_port_list_all_of.py
index 80c240f749..d6eb47c485 100644
--- a/intersight/model/ether_network_port_list_all_of.py
+++ b/intersight/model/ether_network_port_list_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/ether_network_port_relationship.py b/intersight/model/ether_network_port_relationship.py
index c786ff2c7c..0922f20a5f 100644
--- a/intersight/model/ether_network_port_relationship.py
+++ b/intersight/model/ether_network_port_relationship.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
@@ -78,6 +78,8 @@ class EtherNetworkPortRelationship(ModelComposed):
},
('object_type',): {
'AAA.AUDITRECORD': "aaa.AuditRecord",
+ 'AAA.RETENTIONCONFIG': "aaa.RetentionConfig",
+ 'AAA.RETENTIONPOLICY': "aaa.RetentionPolicy",
'ACCESS.POLICY': "access.Policy",
'ADAPTER.CONFIGPOLICY': "adapter.ConfigPolicy",
'ADAPTER.EXTETHINTERFACE': "adapter.ExtEthInterface",
@@ -94,6 +96,7 @@ class EtherNetworkPortRelationship(ModelComposed):
'APPLIANCE.DATAEXPORTPOLICY': "appliance.DataExportPolicy",
'APPLIANCE.DEVICECERTIFICATE': "appliance.DeviceCertificate",
'APPLIANCE.DEVICECLAIM': "appliance.DeviceClaim",
+ 'APPLIANCE.DEVICEUPGRADEPOLICY': "appliance.DeviceUpgradePolicy",
'APPLIANCE.DIAGSETTING': "appliance.DiagSetting",
'APPLIANCE.EXTERNALSYSLOGSETTING': "appliance.ExternalSyslogSetting",
'APPLIANCE.FILESYSTEMSTATUS': "appliance.FileSystemStatus",
@@ -142,9 +145,12 @@ class EtherNetworkPortRelationship(ModelComposed):
'BOOT.UEFISHELLDEVICE': "boot.UefiShellDevice",
'BOOT.USBDEVICE': "boot.UsbDevice",
'BOOT.VMEDIADEVICE': "boot.VmediaDevice",
+ 'BULK.EXPORT': "bulk.Export",
+ 'BULK.EXPORTEDITEM': "bulk.ExportedItem",
'BULK.MOCLONER': "bulk.MoCloner",
'BULK.MOMERGER': "bulk.MoMerger",
'BULK.REQUEST': "bulk.Request",
+ 'BULK.SUBREQUESTOBJ': "bulk.SubRequestObj",
'CAPABILITY.ADAPTERUNITDESCRIPTOR': "capability.AdapterUnitDescriptor",
'CAPABILITY.CATALOG': "capability.Catalog",
'CAPABILITY.CHASSISDESCRIPTOR': "capability.ChassisDescriptor",
@@ -208,10 +214,6 @@ class EtherNetworkPortRelationship(ModelComposed):
'COND.HCLSTATUS': "cond.HclStatus",
'COND.HCLSTATUSDETAIL': "cond.HclStatusDetail",
'COND.HCLSTATUSJOB': "cond.HclStatusJob",
- 'CONFIG.EXPORTEDITEM': "config.ExportedItem",
- 'CONFIG.EXPORTER': "config.Exporter",
- 'CONFIG.IMPORTEDITEM': "config.ImportedItem",
- 'CONFIG.IMPORTER': "config.Importer",
'CONNECTORPACK.CONNECTORPACKUPGRADE': "connectorpack.ConnectorPackUpgrade",
'CONNECTORPACK.UPGRADEIMPACT': "connectorpack.UpgradeImpact",
'CRD.CUSTOMRESOURCE': "crd.CustomResource",
@@ -220,6 +222,7 @@ class EtherNetworkPortRelationship(ModelComposed):
'EQUIPMENT.CHASSISIDENTITY': "equipment.ChassisIdentity",
'EQUIPMENT.CHASSISOPERATION': "equipment.ChassisOperation",
'EQUIPMENT.DEVICESUMMARY': "equipment.DeviceSummary",
+ 'EQUIPMENT.EXPANDERMODULE': "equipment.ExpanderModule",
'EQUIPMENT.FAN': "equipment.Fan",
'EQUIPMENT.FANCONTROL': "equipment.FanControl",
'EQUIPMENT.FANMODULE': "equipment.FanModule",
@@ -468,6 +471,7 @@ class EtherNetworkPortRelationship(ModelComposed):
'KUBERNETES.ADDONDEFINITION': "kubernetes.AddonDefinition",
'KUBERNETES.ADDONPOLICY': "kubernetes.AddonPolicy",
'KUBERNETES.ADDONREPOSITORY': "kubernetes.AddonRepository",
+ 'KUBERNETES.BAREMETALNODEPROFILE': "kubernetes.BaremetalNodeProfile",
'KUBERNETES.CATALOG': "kubernetes.Catalog",
'KUBERNETES.CLUSTER': "kubernetes.Cluster",
'KUBERNETES.CLUSTERADDONPROFILE': "kubernetes.ClusterAddonProfile",
@@ -637,6 +641,11 @@ class EtherNetworkPortRelationship(ModelComposed):
'RESOURCE.LICENSERESOURCECOUNT': "resource.LicenseResourceCount",
'RESOURCE.MEMBERSHIP': "resource.Membership",
'RESOURCE.MEMBERSHIPHOLDER': "resource.MembershipHolder",
+ 'RESOURCEPOOL.LEASE': "resourcepool.Lease",
+ 'RESOURCEPOOL.LEASERESOURCE': "resourcepool.LeaseResource",
+ 'RESOURCEPOOL.POOL': "resourcepool.Pool",
+ 'RESOURCEPOOL.POOLMEMBER': "resourcepool.PoolMember",
+ 'RESOURCEPOOL.UNIVERSE': "resourcepool.Universe",
'RPROXY.REVERSEPROXY': "rproxy.ReverseProxy",
'SDCARD.POLICY': "sdcard.Policy",
'SDWAN.PROFILE': "sdwan.Profile",
@@ -752,6 +761,7 @@ class EtherNetworkPortRelationship(ModelComposed):
'TASK.NETAPPSCOPEDINVENTORY': "task.NetAppScopedInventory",
'TASK.PUBLICCLOUDSCOPEDINVENTORY': "task.PublicCloudScopedInventory",
'TASK.PURESCOPEDINVENTORY': "task.PureScopedInventory",
+ 'TASK.SERVERSCOPEDINVENTORY': "task.ServerScopedInventory",
'TECHSUPPORTMANAGEMENT.COLLECTIONCONTROLPOLICY': "techsupportmanagement.CollectionControlPolicy",
'TECHSUPPORTMANAGEMENT.DOWNLOAD': "techsupportmanagement.Download",
'TECHSUPPORTMANAGEMENT.TECHSUPPORTBUNDLE': "techsupportmanagement.TechSupportBundle",
@@ -783,6 +793,7 @@ class EtherNetworkPortRelationship(ModelComposed):
'VIRTUALIZATION.VMWAREVCENTER': "virtualization.VmwareVcenter",
'VIRTUALIZATION.VMWAREVIRTUALDISK': "virtualization.VmwareVirtualDisk",
'VIRTUALIZATION.VMWAREVIRTUALMACHINE': "virtualization.VmwareVirtualMachine",
+ 'VIRTUALIZATION.VMWAREVIRTUALMACHINESNAPSHOT': "virtualization.VmwareVirtualMachineSnapshot",
'VIRTUALIZATION.VMWAREVIRTUALNETWORKINTERFACE': "virtualization.VmwareVirtualNetworkInterface",
'VIRTUALIZATION.VMWAREVIRTUALSWITCH': "virtualization.VmwareVirtualSwitch",
'VMEDIA.POLICY': "vmedia.Policy",
@@ -815,12 +826,14 @@ class EtherNetworkPortRelationship(ModelComposed):
'WORKFLOW.TASKDEFINITION': "workflow.TaskDefinition",
'WORKFLOW.TASKINFO': "workflow.TaskInfo",
'WORKFLOW.TASKMETADATA': "workflow.TaskMetadata",
+ 'WORKFLOW.TASKNOTIFICATION': "workflow.TaskNotification",
'WORKFLOW.TEMPLATEEVALUATION': "workflow.TemplateEvaluation",
'WORKFLOW.TEMPLATEFUNCTIONMETA': "workflow.TemplateFunctionMeta",
'WORKFLOW.WORKFLOWDEFINITION': "workflow.WorkflowDefinition",
'WORKFLOW.WORKFLOWINFO': "workflow.WorkflowInfo",
'WORKFLOW.WORKFLOWMETA': "workflow.WorkflowMeta",
'WORKFLOW.WORKFLOWMETADATA': "workflow.WorkflowMetadata",
+ 'WORKFLOW.WORKFLOWNOTIFICATION': "workflow.WorkflowNotification",
},
}
diff --git a/intersight/model/ether_network_port_response.py b/intersight/model/ether_network_port_response.py
index 5a1c838a84..1127fc46d2 100644
--- a/intersight/model/ether_network_port_response.py
+++ b/intersight/model/ether_network_port_response.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/ether_physical_port.py b/intersight/model/ether_physical_port.py
index 13359a0656..6c34614190 100644
--- a/intersight/model/ether_physical_port.py
+++ b/intersight/model/ether_physical_port.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/ether_physical_port_all_of.py b/intersight/model/ether_physical_port_all_of.py
index 55290e1d0d..8653b75d38 100644
--- a/intersight/model/ether_physical_port_all_of.py
+++ b/intersight/model/ether_physical_port_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/ether_physical_port_base.py b/intersight/model/ether_physical_port_base.py
index 19bb4965c7..0c096dfb57 100644
--- a/intersight/model/ether_physical_port_base.py
+++ b/intersight/model/ether_physical_port_base.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/ether_physical_port_base_all_of.py b/intersight/model/ether_physical_port_base_all_of.py
index f984f52285..b5d034d327 100644
--- a/intersight/model/ether_physical_port_base_all_of.py
+++ b/intersight/model/ether_physical_port_base_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/ether_physical_port_base_relationship.py b/intersight/model/ether_physical_port_base_relationship.py
index 9606625676..57ce33727c 100644
--- a/intersight/model/ether_physical_port_base_relationship.py
+++ b/intersight/model/ether_physical_port_base_relationship.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
@@ -74,6 +74,8 @@ class EtherPhysicalPortBaseRelationship(ModelComposed):
},
('object_type',): {
'AAA.AUDITRECORD': "aaa.AuditRecord",
+ 'AAA.RETENTIONCONFIG': "aaa.RetentionConfig",
+ 'AAA.RETENTIONPOLICY': "aaa.RetentionPolicy",
'ACCESS.POLICY': "access.Policy",
'ADAPTER.CONFIGPOLICY': "adapter.ConfigPolicy",
'ADAPTER.EXTETHINTERFACE': "adapter.ExtEthInterface",
@@ -90,6 +92,7 @@ class EtherPhysicalPortBaseRelationship(ModelComposed):
'APPLIANCE.DATAEXPORTPOLICY': "appliance.DataExportPolicy",
'APPLIANCE.DEVICECERTIFICATE': "appliance.DeviceCertificate",
'APPLIANCE.DEVICECLAIM': "appliance.DeviceClaim",
+ 'APPLIANCE.DEVICEUPGRADEPOLICY': "appliance.DeviceUpgradePolicy",
'APPLIANCE.DIAGSETTING': "appliance.DiagSetting",
'APPLIANCE.EXTERNALSYSLOGSETTING': "appliance.ExternalSyslogSetting",
'APPLIANCE.FILESYSTEMSTATUS': "appliance.FileSystemStatus",
@@ -138,9 +141,12 @@ class EtherPhysicalPortBaseRelationship(ModelComposed):
'BOOT.UEFISHELLDEVICE': "boot.UefiShellDevice",
'BOOT.USBDEVICE': "boot.UsbDevice",
'BOOT.VMEDIADEVICE': "boot.VmediaDevice",
+ 'BULK.EXPORT': "bulk.Export",
+ 'BULK.EXPORTEDITEM': "bulk.ExportedItem",
'BULK.MOCLONER': "bulk.MoCloner",
'BULK.MOMERGER': "bulk.MoMerger",
'BULK.REQUEST': "bulk.Request",
+ 'BULK.SUBREQUESTOBJ': "bulk.SubRequestObj",
'CAPABILITY.ADAPTERUNITDESCRIPTOR': "capability.AdapterUnitDescriptor",
'CAPABILITY.CATALOG': "capability.Catalog",
'CAPABILITY.CHASSISDESCRIPTOR': "capability.ChassisDescriptor",
@@ -204,10 +210,6 @@ class EtherPhysicalPortBaseRelationship(ModelComposed):
'COND.HCLSTATUS': "cond.HclStatus",
'COND.HCLSTATUSDETAIL': "cond.HclStatusDetail",
'COND.HCLSTATUSJOB': "cond.HclStatusJob",
- 'CONFIG.EXPORTEDITEM': "config.ExportedItem",
- 'CONFIG.EXPORTER': "config.Exporter",
- 'CONFIG.IMPORTEDITEM': "config.ImportedItem",
- 'CONFIG.IMPORTER': "config.Importer",
'CONNECTORPACK.CONNECTORPACKUPGRADE': "connectorpack.ConnectorPackUpgrade",
'CONNECTORPACK.UPGRADEIMPACT': "connectorpack.UpgradeImpact",
'CRD.CUSTOMRESOURCE': "crd.CustomResource",
@@ -216,6 +218,7 @@ class EtherPhysicalPortBaseRelationship(ModelComposed):
'EQUIPMENT.CHASSISIDENTITY': "equipment.ChassisIdentity",
'EQUIPMENT.CHASSISOPERATION': "equipment.ChassisOperation",
'EQUIPMENT.DEVICESUMMARY': "equipment.DeviceSummary",
+ 'EQUIPMENT.EXPANDERMODULE': "equipment.ExpanderModule",
'EQUIPMENT.FAN': "equipment.Fan",
'EQUIPMENT.FANCONTROL': "equipment.FanControl",
'EQUIPMENT.FANMODULE': "equipment.FanModule",
@@ -464,6 +467,7 @@ class EtherPhysicalPortBaseRelationship(ModelComposed):
'KUBERNETES.ADDONDEFINITION': "kubernetes.AddonDefinition",
'KUBERNETES.ADDONPOLICY': "kubernetes.AddonPolicy",
'KUBERNETES.ADDONREPOSITORY': "kubernetes.AddonRepository",
+ 'KUBERNETES.BAREMETALNODEPROFILE': "kubernetes.BaremetalNodeProfile",
'KUBERNETES.CATALOG': "kubernetes.Catalog",
'KUBERNETES.CLUSTER': "kubernetes.Cluster",
'KUBERNETES.CLUSTERADDONPROFILE': "kubernetes.ClusterAddonProfile",
@@ -633,6 +637,11 @@ class EtherPhysicalPortBaseRelationship(ModelComposed):
'RESOURCE.LICENSERESOURCECOUNT': "resource.LicenseResourceCount",
'RESOURCE.MEMBERSHIP': "resource.Membership",
'RESOURCE.MEMBERSHIPHOLDER': "resource.MembershipHolder",
+ 'RESOURCEPOOL.LEASE': "resourcepool.Lease",
+ 'RESOURCEPOOL.LEASERESOURCE': "resourcepool.LeaseResource",
+ 'RESOURCEPOOL.POOL': "resourcepool.Pool",
+ 'RESOURCEPOOL.POOLMEMBER': "resourcepool.PoolMember",
+ 'RESOURCEPOOL.UNIVERSE': "resourcepool.Universe",
'RPROXY.REVERSEPROXY': "rproxy.ReverseProxy",
'SDCARD.POLICY': "sdcard.Policy",
'SDWAN.PROFILE': "sdwan.Profile",
@@ -748,6 +757,7 @@ class EtherPhysicalPortBaseRelationship(ModelComposed):
'TASK.NETAPPSCOPEDINVENTORY': "task.NetAppScopedInventory",
'TASK.PUBLICCLOUDSCOPEDINVENTORY': "task.PublicCloudScopedInventory",
'TASK.PURESCOPEDINVENTORY': "task.PureScopedInventory",
+ 'TASK.SERVERSCOPEDINVENTORY': "task.ServerScopedInventory",
'TECHSUPPORTMANAGEMENT.COLLECTIONCONTROLPOLICY': "techsupportmanagement.CollectionControlPolicy",
'TECHSUPPORTMANAGEMENT.DOWNLOAD': "techsupportmanagement.Download",
'TECHSUPPORTMANAGEMENT.TECHSUPPORTBUNDLE': "techsupportmanagement.TechSupportBundle",
@@ -779,6 +789,7 @@ class EtherPhysicalPortBaseRelationship(ModelComposed):
'VIRTUALIZATION.VMWAREVCENTER': "virtualization.VmwareVcenter",
'VIRTUALIZATION.VMWAREVIRTUALDISK': "virtualization.VmwareVirtualDisk",
'VIRTUALIZATION.VMWAREVIRTUALMACHINE': "virtualization.VmwareVirtualMachine",
+ 'VIRTUALIZATION.VMWAREVIRTUALMACHINESNAPSHOT': "virtualization.VmwareVirtualMachineSnapshot",
'VIRTUALIZATION.VMWAREVIRTUALNETWORKINTERFACE': "virtualization.VmwareVirtualNetworkInterface",
'VIRTUALIZATION.VMWAREVIRTUALSWITCH': "virtualization.VmwareVirtualSwitch",
'VMEDIA.POLICY': "vmedia.Policy",
@@ -811,12 +822,14 @@ class EtherPhysicalPortBaseRelationship(ModelComposed):
'WORKFLOW.TASKDEFINITION': "workflow.TaskDefinition",
'WORKFLOW.TASKINFO': "workflow.TaskInfo",
'WORKFLOW.TASKMETADATA': "workflow.TaskMetadata",
+ 'WORKFLOW.TASKNOTIFICATION': "workflow.TaskNotification",
'WORKFLOW.TEMPLATEEVALUATION': "workflow.TemplateEvaluation",
'WORKFLOW.TEMPLATEFUNCTIONMETA': "workflow.TemplateFunctionMeta",
'WORKFLOW.WORKFLOWDEFINITION': "workflow.WorkflowDefinition",
'WORKFLOW.WORKFLOWINFO': "workflow.WorkflowInfo",
'WORKFLOW.WORKFLOWMETA': "workflow.WorkflowMeta",
'WORKFLOW.WORKFLOWMETADATA': "workflow.WorkflowMetadata",
+ 'WORKFLOW.WORKFLOWNOTIFICATION': "workflow.WorkflowNotification",
},
}
diff --git a/intersight/model/ether_physical_port_list.py b/intersight/model/ether_physical_port_list.py
index 2a183ce6f1..a4d9b96d96 100644
--- a/intersight/model/ether_physical_port_list.py
+++ b/intersight/model/ether_physical_port_list.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/ether_physical_port_list_all_of.py b/intersight/model/ether_physical_port_list_all_of.py
index ec91fa2266..fca8267971 100644
--- a/intersight/model/ether_physical_port_list_all_of.py
+++ b/intersight/model/ether_physical_port_list_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/ether_physical_port_relationship.py b/intersight/model/ether_physical_port_relationship.py
index 883659d278..4e63dfb0e3 100644
--- a/intersight/model/ether_physical_port_relationship.py
+++ b/intersight/model/ether_physical_port_relationship.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
@@ -82,6 +82,8 @@ class EtherPhysicalPortRelationship(ModelComposed):
},
('object_type',): {
'AAA.AUDITRECORD': "aaa.AuditRecord",
+ 'AAA.RETENTIONCONFIG': "aaa.RetentionConfig",
+ 'AAA.RETENTIONPOLICY': "aaa.RetentionPolicy",
'ACCESS.POLICY': "access.Policy",
'ADAPTER.CONFIGPOLICY': "adapter.ConfigPolicy",
'ADAPTER.EXTETHINTERFACE': "adapter.ExtEthInterface",
@@ -98,6 +100,7 @@ class EtherPhysicalPortRelationship(ModelComposed):
'APPLIANCE.DATAEXPORTPOLICY': "appliance.DataExportPolicy",
'APPLIANCE.DEVICECERTIFICATE': "appliance.DeviceCertificate",
'APPLIANCE.DEVICECLAIM': "appliance.DeviceClaim",
+ 'APPLIANCE.DEVICEUPGRADEPOLICY': "appliance.DeviceUpgradePolicy",
'APPLIANCE.DIAGSETTING': "appliance.DiagSetting",
'APPLIANCE.EXTERNALSYSLOGSETTING': "appliance.ExternalSyslogSetting",
'APPLIANCE.FILESYSTEMSTATUS': "appliance.FileSystemStatus",
@@ -146,9 +149,12 @@ class EtherPhysicalPortRelationship(ModelComposed):
'BOOT.UEFISHELLDEVICE': "boot.UefiShellDevice",
'BOOT.USBDEVICE': "boot.UsbDevice",
'BOOT.VMEDIADEVICE': "boot.VmediaDevice",
+ 'BULK.EXPORT': "bulk.Export",
+ 'BULK.EXPORTEDITEM': "bulk.ExportedItem",
'BULK.MOCLONER': "bulk.MoCloner",
'BULK.MOMERGER': "bulk.MoMerger",
'BULK.REQUEST': "bulk.Request",
+ 'BULK.SUBREQUESTOBJ': "bulk.SubRequestObj",
'CAPABILITY.ADAPTERUNITDESCRIPTOR': "capability.AdapterUnitDescriptor",
'CAPABILITY.CATALOG': "capability.Catalog",
'CAPABILITY.CHASSISDESCRIPTOR': "capability.ChassisDescriptor",
@@ -212,10 +218,6 @@ class EtherPhysicalPortRelationship(ModelComposed):
'COND.HCLSTATUS': "cond.HclStatus",
'COND.HCLSTATUSDETAIL': "cond.HclStatusDetail",
'COND.HCLSTATUSJOB': "cond.HclStatusJob",
- 'CONFIG.EXPORTEDITEM': "config.ExportedItem",
- 'CONFIG.EXPORTER': "config.Exporter",
- 'CONFIG.IMPORTEDITEM': "config.ImportedItem",
- 'CONFIG.IMPORTER': "config.Importer",
'CONNECTORPACK.CONNECTORPACKUPGRADE': "connectorpack.ConnectorPackUpgrade",
'CONNECTORPACK.UPGRADEIMPACT': "connectorpack.UpgradeImpact",
'CRD.CUSTOMRESOURCE': "crd.CustomResource",
@@ -224,6 +226,7 @@ class EtherPhysicalPortRelationship(ModelComposed):
'EQUIPMENT.CHASSISIDENTITY': "equipment.ChassisIdentity",
'EQUIPMENT.CHASSISOPERATION': "equipment.ChassisOperation",
'EQUIPMENT.DEVICESUMMARY': "equipment.DeviceSummary",
+ 'EQUIPMENT.EXPANDERMODULE': "equipment.ExpanderModule",
'EQUIPMENT.FAN': "equipment.Fan",
'EQUIPMENT.FANCONTROL': "equipment.FanControl",
'EQUIPMENT.FANMODULE': "equipment.FanModule",
@@ -472,6 +475,7 @@ class EtherPhysicalPortRelationship(ModelComposed):
'KUBERNETES.ADDONDEFINITION': "kubernetes.AddonDefinition",
'KUBERNETES.ADDONPOLICY': "kubernetes.AddonPolicy",
'KUBERNETES.ADDONREPOSITORY': "kubernetes.AddonRepository",
+ 'KUBERNETES.BAREMETALNODEPROFILE': "kubernetes.BaremetalNodeProfile",
'KUBERNETES.CATALOG': "kubernetes.Catalog",
'KUBERNETES.CLUSTER': "kubernetes.Cluster",
'KUBERNETES.CLUSTERADDONPROFILE': "kubernetes.ClusterAddonProfile",
@@ -641,6 +645,11 @@ class EtherPhysicalPortRelationship(ModelComposed):
'RESOURCE.LICENSERESOURCECOUNT': "resource.LicenseResourceCount",
'RESOURCE.MEMBERSHIP': "resource.Membership",
'RESOURCE.MEMBERSHIPHOLDER': "resource.MembershipHolder",
+ 'RESOURCEPOOL.LEASE': "resourcepool.Lease",
+ 'RESOURCEPOOL.LEASERESOURCE': "resourcepool.LeaseResource",
+ 'RESOURCEPOOL.POOL': "resourcepool.Pool",
+ 'RESOURCEPOOL.POOLMEMBER': "resourcepool.PoolMember",
+ 'RESOURCEPOOL.UNIVERSE': "resourcepool.Universe",
'RPROXY.REVERSEPROXY': "rproxy.ReverseProxy",
'SDCARD.POLICY': "sdcard.Policy",
'SDWAN.PROFILE': "sdwan.Profile",
@@ -756,6 +765,7 @@ class EtherPhysicalPortRelationship(ModelComposed):
'TASK.NETAPPSCOPEDINVENTORY': "task.NetAppScopedInventory",
'TASK.PUBLICCLOUDSCOPEDINVENTORY': "task.PublicCloudScopedInventory",
'TASK.PURESCOPEDINVENTORY': "task.PureScopedInventory",
+ 'TASK.SERVERSCOPEDINVENTORY': "task.ServerScopedInventory",
'TECHSUPPORTMANAGEMENT.COLLECTIONCONTROLPOLICY': "techsupportmanagement.CollectionControlPolicy",
'TECHSUPPORTMANAGEMENT.DOWNLOAD': "techsupportmanagement.Download",
'TECHSUPPORTMANAGEMENT.TECHSUPPORTBUNDLE': "techsupportmanagement.TechSupportBundle",
@@ -787,6 +797,7 @@ class EtherPhysicalPortRelationship(ModelComposed):
'VIRTUALIZATION.VMWAREVCENTER': "virtualization.VmwareVcenter",
'VIRTUALIZATION.VMWAREVIRTUALDISK': "virtualization.VmwareVirtualDisk",
'VIRTUALIZATION.VMWAREVIRTUALMACHINE': "virtualization.VmwareVirtualMachine",
+ 'VIRTUALIZATION.VMWAREVIRTUALMACHINESNAPSHOT': "virtualization.VmwareVirtualMachineSnapshot",
'VIRTUALIZATION.VMWAREVIRTUALNETWORKINTERFACE': "virtualization.VmwareVirtualNetworkInterface",
'VIRTUALIZATION.VMWAREVIRTUALSWITCH': "virtualization.VmwareVirtualSwitch",
'VMEDIA.POLICY': "vmedia.Policy",
@@ -819,12 +830,14 @@ class EtherPhysicalPortRelationship(ModelComposed):
'WORKFLOW.TASKDEFINITION': "workflow.TaskDefinition",
'WORKFLOW.TASKINFO': "workflow.TaskInfo",
'WORKFLOW.TASKMETADATA': "workflow.TaskMetadata",
+ 'WORKFLOW.TASKNOTIFICATION': "workflow.TaskNotification",
'WORKFLOW.TEMPLATEEVALUATION': "workflow.TemplateEvaluation",
'WORKFLOW.TEMPLATEFUNCTIONMETA': "workflow.TemplateFunctionMeta",
'WORKFLOW.WORKFLOWDEFINITION': "workflow.WorkflowDefinition",
'WORKFLOW.WORKFLOWINFO': "workflow.WorkflowInfo",
'WORKFLOW.WORKFLOWMETA': "workflow.WorkflowMeta",
'WORKFLOW.WORKFLOWMETADATA': "workflow.WorkflowMetadata",
+ 'WORKFLOW.WORKFLOWNOTIFICATION': "workflow.WorkflowNotification",
},
}
diff --git a/intersight/model/ether_physical_port_response.py b/intersight/model/ether_physical_port_response.py
index 08adca4460..f7ff00afa2 100644
--- a/intersight/model/ether_physical_port_response.py
+++ b/intersight/model/ether_physical_port_response.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/ether_port_channel.py b/intersight/model/ether_port_channel.py
index 72f14af3eb..378c9034e1 100644
--- a/intersight/model/ether_port_channel.py
+++ b/intersight/model/ether_port_channel.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/ether_port_channel_all_of.py b/intersight/model/ether_port_channel_all_of.py
index bdebce5455..d1d396395c 100644
--- a/intersight/model/ether_port_channel_all_of.py
+++ b/intersight/model/ether_port_channel_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/ether_port_channel_list.py b/intersight/model/ether_port_channel_list.py
index e5988ab266..e0211dd6c7 100644
--- a/intersight/model/ether_port_channel_list.py
+++ b/intersight/model/ether_port_channel_list.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/ether_port_channel_list_all_of.py b/intersight/model/ether_port_channel_list_all_of.py
index 3096394756..da51fd591c 100644
--- a/intersight/model/ether_port_channel_list_all_of.py
+++ b/intersight/model/ether_port_channel_list_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/ether_port_channel_relationship.py b/intersight/model/ether_port_channel_relationship.py
index 74b37a6f79..ad229b309e 100644
--- a/intersight/model/ether_port_channel_relationship.py
+++ b/intersight/model/ether_port_channel_relationship.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
@@ -76,6 +76,8 @@ class EtherPortChannelRelationship(ModelComposed):
},
('object_type',): {
'AAA.AUDITRECORD': "aaa.AuditRecord",
+ 'AAA.RETENTIONCONFIG': "aaa.RetentionConfig",
+ 'AAA.RETENTIONPOLICY': "aaa.RetentionPolicy",
'ACCESS.POLICY': "access.Policy",
'ADAPTER.CONFIGPOLICY': "adapter.ConfigPolicy",
'ADAPTER.EXTETHINTERFACE': "adapter.ExtEthInterface",
@@ -92,6 +94,7 @@ class EtherPortChannelRelationship(ModelComposed):
'APPLIANCE.DATAEXPORTPOLICY': "appliance.DataExportPolicy",
'APPLIANCE.DEVICECERTIFICATE': "appliance.DeviceCertificate",
'APPLIANCE.DEVICECLAIM': "appliance.DeviceClaim",
+ 'APPLIANCE.DEVICEUPGRADEPOLICY': "appliance.DeviceUpgradePolicy",
'APPLIANCE.DIAGSETTING': "appliance.DiagSetting",
'APPLIANCE.EXTERNALSYSLOGSETTING': "appliance.ExternalSyslogSetting",
'APPLIANCE.FILESYSTEMSTATUS': "appliance.FileSystemStatus",
@@ -140,9 +143,12 @@ class EtherPortChannelRelationship(ModelComposed):
'BOOT.UEFISHELLDEVICE': "boot.UefiShellDevice",
'BOOT.USBDEVICE': "boot.UsbDevice",
'BOOT.VMEDIADEVICE': "boot.VmediaDevice",
+ 'BULK.EXPORT': "bulk.Export",
+ 'BULK.EXPORTEDITEM': "bulk.ExportedItem",
'BULK.MOCLONER': "bulk.MoCloner",
'BULK.MOMERGER': "bulk.MoMerger",
'BULK.REQUEST': "bulk.Request",
+ 'BULK.SUBREQUESTOBJ': "bulk.SubRequestObj",
'CAPABILITY.ADAPTERUNITDESCRIPTOR': "capability.AdapterUnitDescriptor",
'CAPABILITY.CATALOG': "capability.Catalog",
'CAPABILITY.CHASSISDESCRIPTOR': "capability.ChassisDescriptor",
@@ -206,10 +212,6 @@ class EtherPortChannelRelationship(ModelComposed):
'COND.HCLSTATUS': "cond.HclStatus",
'COND.HCLSTATUSDETAIL': "cond.HclStatusDetail",
'COND.HCLSTATUSJOB': "cond.HclStatusJob",
- 'CONFIG.EXPORTEDITEM': "config.ExportedItem",
- 'CONFIG.EXPORTER': "config.Exporter",
- 'CONFIG.IMPORTEDITEM': "config.ImportedItem",
- 'CONFIG.IMPORTER': "config.Importer",
'CONNECTORPACK.CONNECTORPACKUPGRADE': "connectorpack.ConnectorPackUpgrade",
'CONNECTORPACK.UPGRADEIMPACT': "connectorpack.UpgradeImpact",
'CRD.CUSTOMRESOURCE': "crd.CustomResource",
@@ -218,6 +220,7 @@ class EtherPortChannelRelationship(ModelComposed):
'EQUIPMENT.CHASSISIDENTITY': "equipment.ChassisIdentity",
'EQUIPMENT.CHASSISOPERATION': "equipment.ChassisOperation",
'EQUIPMENT.DEVICESUMMARY': "equipment.DeviceSummary",
+ 'EQUIPMENT.EXPANDERMODULE': "equipment.ExpanderModule",
'EQUIPMENT.FAN': "equipment.Fan",
'EQUIPMENT.FANCONTROL': "equipment.FanControl",
'EQUIPMENT.FANMODULE': "equipment.FanModule",
@@ -466,6 +469,7 @@ class EtherPortChannelRelationship(ModelComposed):
'KUBERNETES.ADDONDEFINITION': "kubernetes.AddonDefinition",
'KUBERNETES.ADDONPOLICY': "kubernetes.AddonPolicy",
'KUBERNETES.ADDONREPOSITORY': "kubernetes.AddonRepository",
+ 'KUBERNETES.BAREMETALNODEPROFILE': "kubernetes.BaremetalNodeProfile",
'KUBERNETES.CATALOG': "kubernetes.Catalog",
'KUBERNETES.CLUSTER': "kubernetes.Cluster",
'KUBERNETES.CLUSTERADDONPROFILE': "kubernetes.ClusterAddonProfile",
@@ -635,6 +639,11 @@ class EtherPortChannelRelationship(ModelComposed):
'RESOURCE.LICENSERESOURCECOUNT': "resource.LicenseResourceCount",
'RESOURCE.MEMBERSHIP': "resource.Membership",
'RESOURCE.MEMBERSHIPHOLDER': "resource.MembershipHolder",
+ 'RESOURCEPOOL.LEASE': "resourcepool.Lease",
+ 'RESOURCEPOOL.LEASERESOURCE': "resourcepool.LeaseResource",
+ 'RESOURCEPOOL.POOL': "resourcepool.Pool",
+ 'RESOURCEPOOL.POOLMEMBER': "resourcepool.PoolMember",
+ 'RESOURCEPOOL.UNIVERSE': "resourcepool.Universe",
'RPROXY.REVERSEPROXY': "rproxy.ReverseProxy",
'SDCARD.POLICY': "sdcard.Policy",
'SDWAN.PROFILE': "sdwan.Profile",
@@ -750,6 +759,7 @@ class EtherPortChannelRelationship(ModelComposed):
'TASK.NETAPPSCOPEDINVENTORY': "task.NetAppScopedInventory",
'TASK.PUBLICCLOUDSCOPEDINVENTORY': "task.PublicCloudScopedInventory",
'TASK.PURESCOPEDINVENTORY': "task.PureScopedInventory",
+ 'TASK.SERVERSCOPEDINVENTORY': "task.ServerScopedInventory",
'TECHSUPPORTMANAGEMENT.COLLECTIONCONTROLPOLICY': "techsupportmanagement.CollectionControlPolicy",
'TECHSUPPORTMANAGEMENT.DOWNLOAD': "techsupportmanagement.Download",
'TECHSUPPORTMANAGEMENT.TECHSUPPORTBUNDLE': "techsupportmanagement.TechSupportBundle",
@@ -781,6 +791,7 @@ class EtherPortChannelRelationship(ModelComposed):
'VIRTUALIZATION.VMWAREVCENTER': "virtualization.VmwareVcenter",
'VIRTUALIZATION.VMWAREVIRTUALDISK': "virtualization.VmwareVirtualDisk",
'VIRTUALIZATION.VMWAREVIRTUALMACHINE': "virtualization.VmwareVirtualMachine",
+ 'VIRTUALIZATION.VMWAREVIRTUALMACHINESNAPSHOT': "virtualization.VmwareVirtualMachineSnapshot",
'VIRTUALIZATION.VMWAREVIRTUALNETWORKINTERFACE': "virtualization.VmwareVirtualNetworkInterface",
'VIRTUALIZATION.VMWAREVIRTUALSWITCH': "virtualization.VmwareVirtualSwitch",
'VMEDIA.POLICY': "vmedia.Policy",
@@ -813,12 +824,14 @@ class EtherPortChannelRelationship(ModelComposed):
'WORKFLOW.TASKDEFINITION': "workflow.TaskDefinition",
'WORKFLOW.TASKINFO': "workflow.TaskInfo",
'WORKFLOW.TASKMETADATA': "workflow.TaskMetadata",
+ 'WORKFLOW.TASKNOTIFICATION': "workflow.TaskNotification",
'WORKFLOW.TEMPLATEEVALUATION': "workflow.TemplateEvaluation",
'WORKFLOW.TEMPLATEFUNCTIONMETA': "workflow.TemplateFunctionMeta",
'WORKFLOW.WORKFLOWDEFINITION': "workflow.WorkflowDefinition",
'WORKFLOW.WORKFLOWINFO': "workflow.WorkflowInfo",
'WORKFLOW.WORKFLOWMETA': "workflow.WorkflowMeta",
'WORKFLOW.WORKFLOWMETADATA': "workflow.WorkflowMetadata",
+ 'WORKFLOW.WORKFLOWNOTIFICATION': "workflow.WorkflowNotification",
},
}
diff --git a/intersight/model/ether_port_channel_response.py b/intersight/model/ether_port_channel_response.py
index 6805d6858f..7033e3d81c 100644
--- a/intersight/model/ether_port_channel_response.py
+++ b/intersight/model/ether_port_channel_response.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/externalsite_authorization.py b/intersight/model/externalsite_authorization.py
index 5108610e55..6e852bd183 100644
--- a/intersight/model/externalsite_authorization.py
+++ b/intersight/model/externalsite_authorization.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/externalsite_authorization_all_of.py b/intersight/model/externalsite_authorization_all_of.py
index 742954ecd4..072040bbfc 100644
--- a/intersight/model/externalsite_authorization_all_of.py
+++ b/intersight/model/externalsite_authorization_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/externalsite_authorization_list.py b/intersight/model/externalsite_authorization_list.py
index f38ef3d213..6c1b960c58 100644
--- a/intersight/model/externalsite_authorization_list.py
+++ b/intersight/model/externalsite_authorization_list.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/externalsite_authorization_list_all_of.py b/intersight/model/externalsite_authorization_list_all_of.py
index 151a0b8ad3..fec2904a72 100644
--- a/intersight/model/externalsite_authorization_list_all_of.py
+++ b/intersight/model/externalsite_authorization_list_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/externalsite_authorization_response.py b/intersight/model/externalsite_authorization_response.py
index 9b61986d04..116bd455be 100644
--- a/intersight/model/externalsite_authorization_response.py
+++ b/intersight/model/externalsite_authorization_response.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/fabric_appliance_pc_role.py b/intersight/model/fabric_appliance_pc_role.py
index 53a21715c2..ddb2b7cb4c 100644
--- a/intersight/model/fabric_appliance_pc_role.py
+++ b/intersight/model/fabric_appliance_pc_role.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/fabric_appliance_pc_role_all_of.py b/intersight/model/fabric_appliance_pc_role_all_of.py
index 1675322a19..c01fdab7cd 100644
--- a/intersight/model/fabric_appliance_pc_role_all_of.py
+++ b/intersight/model/fabric_appliance_pc_role_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/fabric_appliance_pc_role_list.py b/intersight/model/fabric_appliance_pc_role_list.py
index cf41fd598b..84177d565e 100644
--- a/intersight/model/fabric_appliance_pc_role_list.py
+++ b/intersight/model/fabric_appliance_pc_role_list.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/fabric_appliance_pc_role_list_all_of.py b/intersight/model/fabric_appliance_pc_role_list_all_of.py
index 1fdba16bb9..110a199615 100644
--- a/intersight/model/fabric_appliance_pc_role_list_all_of.py
+++ b/intersight/model/fabric_appliance_pc_role_list_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/fabric_appliance_pc_role_response.py b/intersight/model/fabric_appliance_pc_role_response.py
index f37bf7652f..c77acfd786 100644
--- a/intersight/model/fabric_appliance_pc_role_response.py
+++ b/intersight/model/fabric_appliance_pc_role_response.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/fabric_appliance_role.py b/intersight/model/fabric_appliance_role.py
index 9361e5a715..0ecf01cb23 100644
--- a/intersight/model/fabric_appliance_role.py
+++ b/intersight/model/fabric_appliance_role.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/fabric_appliance_role_all_of.py b/intersight/model/fabric_appliance_role_all_of.py
index f2a931dbb7..1955984a1d 100644
--- a/intersight/model/fabric_appliance_role_all_of.py
+++ b/intersight/model/fabric_appliance_role_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/fabric_appliance_role_list.py b/intersight/model/fabric_appliance_role_list.py
index 1c3a862ffc..e129d3dbfd 100644
--- a/intersight/model/fabric_appliance_role_list.py
+++ b/intersight/model/fabric_appliance_role_list.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/fabric_appliance_role_list_all_of.py b/intersight/model/fabric_appliance_role_list_all_of.py
index ad281e70f6..0768f82da1 100644
--- a/intersight/model/fabric_appliance_role_list_all_of.py
+++ b/intersight/model/fabric_appliance_role_list_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/fabric_appliance_role_response.py b/intersight/model/fabric_appliance_role_response.py
index 7e190be021..192805f8d7 100644
--- a/intersight/model/fabric_appliance_role_response.py
+++ b/intersight/model/fabric_appliance_role_response.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/fabric_config_change_detail.py b/intersight/model/fabric_config_change_detail.py
index a119fa34bd..affd27cc2e 100644
--- a/intersight/model/fabric_config_change_detail.py
+++ b/intersight/model/fabric_config_change_detail.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/fabric_config_change_detail_all_of.py b/intersight/model/fabric_config_change_detail_all_of.py
index 0fd8fdd5c3..7287eb7694 100644
--- a/intersight/model/fabric_config_change_detail_all_of.py
+++ b/intersight/model/fabric_config_change_detail_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/fabric_config_change_detail_list.py b/intersight/model/fabric_config_change_detail_list.py
index cb8765dd3b..1795aa5fc2 100644
--- a/intersight/model/fabric_config_change_detail_list.py
+++ b/intersight/model/fabric_config_change_detail_list.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/fabric_config_change_detail_list_all_of.py b/intersight/model/fabric_config_change_detail_list_all_of.py
index 28c47ebc03..e4d184ad91 100644
--- a/intersight/model/fabric_config_change_detail_list_all_of.py
+++ b/intersight/model/fabric_config_change_detail_list_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/fabric_config_change_detail_relationship.py b/intersight/model/fabric_config_change_detail_relationship.py
index cb0d4a58b2..d4217d6a77 100644
--- a/intersight/model/fabric_config_change_detail_relationship.py
+++ b/intersight/model/fabric_config_change_detail_relationship.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
@@ -86,6 +86,8 @@ class FabricConfigChangeDetailRelationship(ModelComposed):
},
('object_type',): {
'AAA.AUDITRECORD': "aaa.AuditRecord",
+ 'AAA.RETENTIONCONFIG': "aaa.RetentionConfig",
+ 'AAA.RETENTIONPOLICY': "aaa.RetentionPolicy",
'ACCESS.POLICY': "access.Policy",
'ADAPTER.CONFIGPOLICY': "adapter.ConfigPolicy",
'ADAPTER.EXTETHINTERFACE': "adapter.ExtEthInterface",
@@ -102,6 +104,7 @@ class FabricConfigChangeDetailRelationship(ModelComposed):
'APPLIANCE.DATAEXPORTPOLICY': "appliance.DataExportPolicy",
'APPLIANCE.DEVICECERTIFICATE': "appliance.DeviceCertificate",
'APPLIANCE.DEVICECLAIM': "appliance.DeviceClaim",
+ 'APPLIANCE.DEVICEUPGRADEPOLICY': "appliance.DeviceUpgradePolicy",
'APPLIANCE.DIAGSETTING': "appliance.DiagSetting",
'APPLIANCE.EXTERNALSYSLOGSETTING': "appliance.ExternalSyslogSetting",
'APPLIANCE.FILESYSTEMSTATUS': "appliance.FileSystemStatus",
@@ -150,9 +153,12 @@ class FabricConfigChangeDetailRelationship(ModelComposed):
'BOOT.UEFISHELLDEVICE': "boot.UefiShellDevice",
'BOOT.USBDEVICE': "boot.UsbDevice",
'BOOT.VMEDIADEVICE': "boot.VmediaDevice",
+ 'BULK.EXPORT': "bulk.Export",
+ 'BULK.EXPORTEDITEM': "bulk.ExportedItem",
'BULK.MOCLONER': "bulk.MoCloner",
'BULK.MOMERGER': "bulk.MoMerger",
'BULK.REQUEST': "bulk.Request",
+ 'BULK.SUBREQUESTOBJ': "bulk.SubRequestObj",
'CAPABILITY.ADAPTERUNITDESCRIPTOR': "capability.AdapterUnitDescriptor",
'CAPABILITY.CATALOG': "capability.Catalog",
'CAPABILITY.CHASSISDESCRIPTOR': "capability.ChassisDescriptor",
@@ -216,10 +222,6 @@ class FabricConfigChangeDetailRelationship(ModelComposed):
'COND.HCLSTATUS': "cond.HclStatus",
'COND.HCLSTATUSDETAIL': "cond.HclStatusDetail",
'COND.HCLSTATUSJOB': "cond.HclStatusJob",
- 'CONFIG.EXPORTEDITEM': "config.ExportedItem",
- 'CONFIG.EXPORTER': "config.Exporter",
- 'CONFIG.IMPORTEDITEM': "config.ImportedItem",
- 'CONFIG.IMPORTER': "config.Importer",
'CONNECTORPACK.CONNECTORPACKUPGRADE': "connectorpack.ConnectorPackUpgrade",
'CONNECTORPACK.UPGRADEIMPACT': "connectorpack.UpgradeImpact",
'CRD.CUSTOMRESOURCE': "crd.CustomResource",
@@ -228,6 +230,7 @@ class FabricConfigChangeDetailRelationship(ModelComposed):
'EQUIPMENT.CHASSISIDENTITY': "equipment.ChassisIdentity",
'EQUIPMENT.CHASSISOPERATION': "equipment.ChassisOperation",
'EQUIPMENT.DEVICESUMMARY': "equipment.DeviceSummary",
+ 'EQUIPMENT.EXPANDERMODULE': "equipment.ExpanderModule",
'EQUIPMENT.FAN': "equipment.Fan",
'EQUIPMENT.FANCONTROL': "equipment.FanControl",
'EQUIPMENT.FANMODULE': "equipment.FanModule",
@@ -476,6 +479,7 @@ class FabricConfigChangeDetailRelationship(ModelComposed):
'KUBERNETES.ADDONDEFINITION': "kubernetes.AddonDefinition",
'KUBERNETES.ADDONPOLICY': "kubernetes.AddonPolicy",
'KUBERNETES.ADDONREPOSITORY': "kubernetes.AddonRepository",
+ 'KUBERNETES.BAREMETALNODEPROFILE': "kubernetes.BaremetalNodeProfile",
'KUBERNETES.CATALOG': "kubernetes.Catalog",
'KUBERNETES.CLUSTER': "kubernetes.Cluster",
'KUBERNETES.CLUSTERADDONPROFILE': "kubernetes.ClusterAddonProfile",
@@ -645,6 +649,11 @@ class FabricConfigChangeDetailRelationship(ModelComposed):
'RESOURCE.LICENSERESOURCECOUNT': "resource.LicenseResourceCount",
'RESOURCE.MEMBERSHIP': "resource.Membership",
'RESOURCE.MEMBERSHIPHOLDER': "resource.MembershipHolder",
+ 'RESOURCEPOOL.LEASE': "resourcepool.Lease",
+ 'RESOURCEPOOL.LEASERESOURCE': "resourcepool.LeaseResource",
+ 'RESOURCEPOOL.POOL': "resourcepool.Pool",
+ 'RESOURCEPOOL.POOLMEMBER': "resourcepool.PoolMember",
+ 'RESOURCEPOOL.UNIVERSE': "resourcepool.Universe",
'RPROXY.REVERSEPROXY': "rproxy.ReverseProxy",
'SDCARD.POLICY': "sdcard.Policy",
'SDWAN.PROFILE': "sdwan.Profile",
@@ -760,6 +769,7 @@ class FabricConfigChangeDetailRelationship(ModelComposed):
'TASK.NETAPPSCOPEDINVENTORY': "task.NetAppScopedInventory",
'TASK.PUBLICCLOUDSCOPEDINVENTORY': "task.PublicCloudScopedInventory",
'TASK.PURESCOPEDINVENTORY': "task.PureScopedInventory",
+ 'TASK.SERVERSCOPEDINVENTORY': "task.ServerScopedInventory",
'TECHSUPPORTMANAGEMENT.COLLECTIONCONTROLPOLICY': "techsupportmanagement.CollectionControlPolicy",
'TECHSUPPORTMANAGEMENT.DOWNLOAD': "techsupportmanagement.Download",
'TECHSUPPORTMANAGEMENT.TECHSUPPORTBUNDLE': "techsupportmanagement.TechSupportBundle",
@@ -791,6 +801,7 @@ class FabricConfigChangeDetailRelationship(ModelComposed):
'VIRTUALIZATION.VMWAREVCENTER': "virtualization.VmwareVcenter",
'VIRTUALIZATION.VMWAREVIRTUALDISK': "virtualization.VmwareVirtualDisk",
'VIRTUALIZATION.VMWAREVIRTUALMACHINE': "virtualization.VmwareVirtualMachine",
+ 'VIRTUALIZATION.VMWAREVIRTUALMACHINESNAPSHOT': "virtualization.VmwareVirtualMachineSnapshot",
'VIRTUALIZATION.VMWAREVIRTUALNETWORKINTERFACE': "virtualization.VmwareVirtualNetworkInterface",
'VIRTUALIZATION.VMWAREVIRTUALSWITCH': "virtualization.VmwareVirtualSwitch",
'VMEDIA.POLICY': "vmedia.Policy",
@@ -823,12 +834,14 @@ class FabricConfigChangeDetailRelationship(ModelComposed):
'WORKFLOW.TASKDEFINITION': "workflow.TaskDefinition",
'WORKFLOW.TASKINFO': "workflow.TaskInfo",
'WORKFLOW.TASKMETADATA': "workflow.TaskMetadata",
+ 'WORKFLOW.TASKNOTIFICATION': "workflow.TaskNotification",
'WORKFLOW.TEMPLATEEVALUATION': "workflow.TemplateEvaluation",
'WORKFLOW.TEMPLATEFUNCTIONMETA': "workflow.TemplateFunctionMeta",
'WORKFLOW.WORKFLOWDEFINITION': "workflow.WorkflowDefinition",
'WORKFLOW.WORKFLOWINFO': "workflow.WorkflowInfo",
'WORKFLOW.WORKFLOWMETA': "workflow.WorkflowMeta",
'WORKFLOW.WORKFLOWMETADATA': "workflow.WorkflowMetadata",
+ 'WORKFLOW.WORKFLOWNOTIFICATION': "workflow.WorkflowNotification",
},
}
diff --git a/intersight/model/fabric_config_change_detail_response.py b/intersight/model/fabric_config_change_detail_response.py
index cc3c2a626b..ec05510cb6 100644
--- a/intersight/model/fabric_config_change_detail_response.py
+++ b/intersight/model/fabric_config_change_detail_response.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/fabric_config_result.py b/intersight/model/fabric_config_result.py
index 29772b167a..7c6cd9ac08 100644
--- a/intersight/model/fabric_config_result.py
+++ b/intersight/model/fabric_config_result.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/fabric_config_result_all_of.py b/intersight/model/fabric_config_result_all_of.py
index bba7b8af65..3621462b01 100644
--- a/intersight/model/fabric_config_result_all_of.py
+++ b/intersight/model/fabric_config_result_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/fabric_config_result_entry.py b/intersight/model/fabric_config_result_entry.py
index 8103d238bd..1e71a9cdaa 100644
--- a/intersight/model/fabric_config_result_entry.py
+++ b/intersight/model/fabric_config_result_entry.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/fabric_config_result_entry_all_of.py b/intersight/model/fabric_config_result_entry_all_of.py
index 876c904146..904cd35d0e 100644
--- a/intersight/model/fabric_config_result_entry_all_of.py
+++ b/intersight/model/fabric_config_result_entry_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/fabric_config_result_entry_list.py b/intersight/model/fabric_config_result_entry_list.py
index c78dbae196..49d98ea041 100644
--- a/intersight/model/fabric_config_result_entry_list.py
+++ b/intersight/model/fabric_config_result_entry_list.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/fabric_config_result_entry_list_all_of.py b/intersight/model/fabric_config_result_entry_list_all_of.py
index 6acbf515c7..36ccaf7ddf 100644
--- a/intersight/model/fabric_config_result_entry_list_all_of.py
+++ b/intersight/model/fabric_config_result_entry_list_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/fabric_config_result_entry_relationship.py b/intersight/model/fabric_config_result_entry_relationship.py
index b49bf285ed..c9dbe9123b 100644
--- a/intersight/model/fabric_config_result_entry_relationship.py
+++ b/intersight/model/fabric_config_result_entry_relationship.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
@@ -76,6 +76,8 @@ class FabricConfigResultEntryRelationship(ModelComposed):
},
('object_type',): {
'AAA.AUDITRECORD': "aaa.AuditRecord",
+ 'AAA.RETENTIONCONFIG': "aaa.RetentionConfig",
+ 'AAA.RETENTIONPOLICY': "aaa.RetentionPolicy",
'ACCESS.POLICY': "access.Policy",
'ADAPTER.CONFIGPOLICY': "adapter.ConfigPolicy",
'ADAPTER.EXTETHINTERFACE': "adapter.ExtEthInterface",
@@ -92,6 +94,7 @@ class FabricConfigResultEntryRelationship(ModelComposed):
'APPLIANCE.DATAEXPORTPOLICY': "appliance.DataExportPolicy",
'APPLIANCE.DEVICECERTIFICATE': "appliance.DeviceCertificate",
'APPLIANCE.DEVICECLAIM': "appliance.DeviceClaim",
+ 'APPLIANCE.DEVICEUPGRADEPOLICY': "appliance.DeviceUpgradePolicy",
'APPLIANCE.DIAGSETTING': "appliance.DiagSetting",
'APPLIANCE.EXTERNALSYSLOGSETTING': "appliance.ExternalSyslogSetting",
'APPLIANCE.FILESYSTEMSTATUS': "appliance.FileSystemStatus",
@@ -140,9 +143,12 @@ class FabricConfigResultEntryRelationship(ModelComposed):
'BOOT.UEFISHELLDEVICE': "boot.UefiShellDevice",
'BOOT.USBDEVICE': "boot.UsbDevice",
'BOOT.VMEDIADEVICE': "boot.VmediaDevice",
+ 'BULK.EXPORT': "bulk.Export",
+ 'BULK.EXPORTEDITEM': "bulk.ExportedItem",
'BULK.MOCLONER': "bulk.MoCloner",
'BULK.MOMERGER': "bulk.MoMerger",
'BULK.REQUEST': "bulk.Request",
+ 'BULK.SUBREQUESTOBJ': "bulk.SubRequestObj",
'CAPABILITY.ADAPTERUNITDESCRIPTOR': "capability.AdapterUnitDescriptor",
'CAPABILITY.CATALOG': "capability.Catalog",
'CAPABILITY.CHASSISDESCRIPTOR': "capability.ChassisDescriptor",
@@ -206,10 +212,6 @@ class FabricConfigResultEntryRelationship(ModelComposed):
'COND.HCLSTATUS': "cond.HclStatus",
'COND.HCLSTATUSDETAIL': "cond.HclStatusDetail",
'COND.HCLSTATUSJOB': "cond.HclStatusJob",
- 'CONFIG.EXPORTEDITEM': "config.ExportedItem",
- 'CONFIG.EXPORTER': "config.Exporter",
- 'CONFIG.IMPORTEDITEM': "config.ImportedItem",
- 'CONFIG.IMPORTER': "config.Importer",
'CONNECTORPACK.CONNECTORPACKUPGRADE': "connectorpack.ConnectorPackUpgrade",
'CONNECTORPACK.UPGRADEIMPACT': "connectorpack.UpgradeImpact",
'CRD.CUSTOMRESOURCE': "crd.CustomResource",
@@ -218,6 +220,7 @@ class FabricConfigResultEntryRelationship(ModelComposed):
'EQUIPMENT.CHASSISIDENTITY': "equipment.ChassisIdentity",
'EQUIPMENT.CHASSISOPERATION': "equipment.ChassisOperation",
'EQUIPMENT.DEVICESUMMARY': "equipment.DeviceSummary",
+ 'EQUIPMENT.EXPANDERMODULE': "equipment.ExpanderModule",
'EQUIPMENT.FAN': "equipment.Fan",
'EQUIPMENT.FANCONTROL': "equipment.FanControl",
'EQUIPMENT.FANMODULE': "equipment.FanModule",
@@ -466,6 +469,7 @@ class FabricConfigResultEntryRelationship(ModelComposed):
'KUBERNETES.ADDONDEFINITION': "kubernetes.AddonDefinition",
'KUBERNETES.ADDONPOLICY': "kubernetes.AddonPolicy",
'KUBERNETES.ADDONREPOSITORY': "kubernetes.AddonRepository",
+ 'KUBERNETES.BAREMETALNODEPROFILE': "kubernetes.BaremetalNodeProfile",
'KUBERNETES.CATALOG': "kubernetes.Catalog",
'KUBERNETES.CLUSTER': "kubernetes.Cluster",
'KUBERNETES.CLUSTERADDONPROFILE': "kubernetes.ClusterAddonProfile",
@@ -635,6 +639,11 @@ class FabricConfigResultEntryRelationship(ModelComposed):
'RESOURCE.LICENSERESOURCECOUNT': "resource.LicenseResourceCount",
'RESOURCE.MEMBERSHIP': "resource.Membership",
'RESOURCE.MEMBERSHIPHOLDER': "resource.MembershipHolder",
+ 'RESOURCEPOOL.LEASE': "resourcepool.Lease",
+ 'RESOURCEPOOL.LEASERESOURCE': "resourcepool.LeaseResource",
+ 'RESOURCEPOOL.POOL': "resourcepool.Pool",
+ 'RESOURCEPOOL.POOLMEMBER': "resourcepool.PoolMember",
+ 'RESOURCEPOOL.UNIVERSE': "resourcepool.Universe",
'RPROXY.REVERSEPROXY': "rproxy.ReverseProxy",
'SDCARD.POLICY': "sdcard.Policy",
'SDWAN.PROFILE': "sdwan.Profile",
@@ -750,6 +759,7 @@ class FabricConfigResultEntryRelationship(ModelComposed):
'TASK.NETAPPSCOPEDINVENTORY': "task.NetAppScopedInventory",
'TASK.PUBLICCLOUDSCOPEDINVENTORY': "task.PublicCloudScopedInventory",
'TASK.PURESCOPEDINVENTORY': "task.PureScopedInventory",
+ 'TASK.SERVERSCOPEDINVENTORY': "task.ServerScopedInventory",
'TECHSUPPORTMANAGEMENT.COLLECTIONCONTROLPOLICY': "techsupportmanagement.CollectionControlPolicy",
'TECHSUPPORTMANAGEMENT.DOWNLOAD': "techsupportmanagement.Download",
'TECHSUPPORTMANAGEMENT.TECHSUPPORTBUNDLE': "techsupportmanagement.TechSupportBundle",
@@ -781,6 +791,7 @@ class FabricConfigResultEntryRelationship(ModelComposed):
'VIRTUALIZATION.VMWAREVCENTER': "virtualization.VmwareVcenter",
'VIRTUALIZATION.VMWAREVIRTUALDISK': "virtualization.VmwareVirtualDisk",
'VIRTUALIZATION.VMWAREVIRTUALMACHINE': "virtualization.VmwareVirtualMachine",
+ 'VIRTUALIZATION.VMWAREVIRTUALMACHINESNAPSHOT': "virtualization.VmwareVirtualMachineSnapshot",
'VIRTUALIZATION.VMWAREVIRTUALNETWORKINTERFACE': "virtualization.VmwareVirtualNetworkInterface",
'VIRTUALIZATION.VMWAREVIRTUALSWITCH': "virtualization.VmwareVirtualSwitch",
'VMEDIA.POLICY': "vmedia.Policy",
@@ -813,12 +824,14 @@ class FabricConfigResultEntryRelationship(ModelComposed):
'WORKFLOW.TASKDEFINITION': "workflow.TaskDefinition",
'WORKFLOW.TASKINFO': "workflow.TaskInfo",
'WORKFLOW.TASKMETADATA': "workflow.TaskMetadata",
+ 'WORKFLOW.TASKNOTIFICATION': "workflow.TaskNotification",
'WORKFLOW.TEMPLATEEVALUATION': "workflow.TemplateEvaluation",
'WORKFLOW.TEMPLATEFUNCTIONMETA': "workflow.TemplateFunctionMeta",
'WORKFLOW.WORKFLOWDEFINITION': "workflow.WorkflowDefinition",
'WORKFLOW.WORKFLOWINFO': "workflow.WorkflowInfo",
'WORKFLOW.WORKFLOWMETA': "workflow.WorkflowMeta",
'WORKFLOW.WORKFLOWMETADATA': "workflow.WorkflowMetadata",
+ 'WORKFLOW.WORKFLOWNOTIFICATION': "workflow.WorkflowNotification",
},
}
diff --git a/intersight/model/fabric_config_result_entry_response.py b/intersight/model/fabric_config_result_entry_response.py
index 1c483bde1a..9d48669d90 100644
--- a/intersight/model/fabric_config_result_entry_response.py
+++ b/intersight/model/fabric_config_result_entry_response.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/fabric_config_result_list.py b/intersight/model/fabric_config_result_list.py
index 0ca233de29..54fb6a1c63 100644
--- a/intersight/model/fabric_config_result_list.py
+++ b/intersight/model/fabric_config_result_list.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/fabric_config_result_list_all_of.py b/intersight/model/fabric_config_result_list_all_of.py
index 32649bc0ae..32f1ef2314 100644
--- a/intersight/model/fabric_config_result_list_all_of.py
+++ b/intersight/model/fabric_config_result_list_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/fabric_config_result_relationship.py b/intersight/model/fabric_config_result_relationship.py
index 956e291445..a1c0ab720f 100644
--- a/intersight/model/fabric_config_result_relationship.py
+++ b/intersight/model/fabric_config_result_relationship.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
@@ -76,6 +76,8 @@ class FabricConfigResultRelationship(ModelComposed):
},
('object_type',): {
'AAA.AUDITRECORD': "aaa.AuditRecord",
+ 'AAA.RETENTIONCONFIG': "aaa.RetentionConfig",
+ 'AAA.RETENTIONPOLICY': "aaa.RetentionPolicy",
'ACCESS.POLICY': "access.Policy",
'ADAPTER.CONFIGPOLICY': "adapter.ConfigPolicy",
'ADAPTER.EXTETHINTERFACE': "adapter.ExtEthInterface",
@@ -92,6 +94,7 @@ class FabricConfigResultRelationship(ModelComposed):
'APPLIANCE.DATAEXPORTPOLICY': "appliance.DataExportPolicy",
'APPLIANCE.DEVICECERTIFICATE': "appliance.DeviceCertificate",
'APPLIANCE.DEVICECLAIM': "appliance.DeviceClaim",
+ 'APPLIANCE.DEVICEUPGRADEPOLICY': "appliance.DeviceUpgradePolicy",
'APPLIANCE.DIAGSETTING': "appliance.DiagSetting",
'APPLIANCE.EXTERNALSYSLOGSETTING': "appliance.ExternalSyslogSetting",
'APPLIANCE.FILESYSTEMSTATUS': "appliance.FileSystemStatus",
@@ -140,9 +143,12 @@ class FabricConfigResultRelationship(ModelComposed):
'BOOT.UEFISHELLDEVICE': "boot.UefiShellDevice",
'BOOT.USBDEVICE': "boot.UsbDevice",
'BOOT.VMEDIADEVICE': "boot.VmediaDevice",
+ 'BULK.EXPORT': "bulk.Export",
+ 'BULK.EXPORTEDITEM': "bulk.ExportedItem",
'BULK.MOCLONER': "bulk.MoCloner",
'BULK.MOMERGER': "bulk.MoMerger",
'BULK.REQUEST': "bulk.Request",
+ 'BULK.SUBREQUESTOBJ': "bulk.SubRequestObj",
'CAPABILITY.ADAPTERUNITDESCRIPTOR': "capability.AdapterUnitDescriptor",
'CAPABILITY.CATALOG': "capability.Catalog",
'CAPABILITY.CHASSISDESCRIPTOR': "capability.ChassisDescriptor",
@@ -206,10 +212,6 @@ class FabricConfigResultRelationship(ModelComposed):
'COND.HCLSTATUS': "cond.HclStatus",
'COND.HCLSTATUSDETAIL': "cond.HclStatusDetail",
'COND.HCLSTATUSJOB': "cond.HclStatusJob",
- 'CONFIG.EXPORTEDITEM': "config.ExportedItem",
- 'CONFIG.EXPORTER': "config.Exporter",
- 'CONFIG.IMPORTEDITEM': "config.ImportedItem",
- 'CONFIG.IMPORTER': "config.Importer",
'CONNECTORPACK.CONNECTORPACKUPGRADE': "connectorpack.ConnectorPackUpgrade",
'CONNECTORPACK.UPGRADEIMPACT': "connectorpack.UpgradeImpact",
'CRD.CUSTOMRESOURCE': "crd.CustomResource",
@@ -218,6 +220,7 @@ class FabricConfigResultRelationship(ModelComposed):
'EQUIPMENT.CHASSISIDENTITY': "equipment.ChassisIdentity",
'EQUIPMENT.CHASSISOPERATION': "equipment.ChassisOperation",
'EQUIPMENT.DEVICESUMMARY': "equipment.DeviceSummary",
+ 'EQUIPMENT.EXPANDERMODULE': "equipment.ExpanderModule",
'EQUIPMENT.FAN': "equipment.Fan",
'EQUIPMENT.FANCONTROL': "equipment.FanControl",
'EQUIPMENT.FANMODULE': "equipment.FanModule",
@@ -466,6 +469,7 @@ class FabricConfigResultRelationship(ModelComposed):
'KUBERNETES.ADDONDEFINITION': "kubernetes.AddonDefinition",
'KUBERNETES.ADDONPOLICY': "kubernetes.AddonPolicy",
'KUBERNETES.ADDONREPOSITORY': "kubernetes.AddonRepository",
+ 'KUBERNETES.BAREMETALNODEPROFILE': "kubernetes.BaremetalNodeProfile",
'KUBERNETES.CATALOG': "kubernetes.Catalog",
'KUBERNETES.CLUSTER': "kubernetes.Cluster",
'KUBERNETES.CLUSTERADDONPROFILE': "kubernetes.ClusterAddonProfile",
@@ -635,6 +639,11 @@ class FabricConfigResultRelationship(ModelComposed):
'RESOURCE.LICENSERESOURCECOUNT': "resource.LicenseResourceCount",
'RESOURCE.MEMBERSHIP': "resource.Membership",
'RESOURCE.MEMBERSHIPHOLDER': "resource.MembershipHolder",
+ 'RESOURCEPOOL.LEASE': "resourcepool.Lease",
+ 'RESOURCEPOOL.LEASERESOURCE': "resourcepool.LeaseResource",
+ 'RESOURCEPOOL.POOL': "resourcepool.Pool",
+ 'RESOURCEPOOL.POOLMEMBER': "resourcepool.PoolMember",
+ 'RESOURCEPOOL.UNIVERSE': "resourcepool.Universe",
'RPROXY.REVERSEPROXY': "rproxy.ReverseProxy",
'SDCARD.POLICY': "sdcard.Policy",
'SDWAN.PROFILE': "sdwan.Profile",
@@ -750,6 +759,7 @@ class FabricConfigResultRelationship(ModelComposed):
'TASK.NETAPPSCOPEDINVENTORY': "task.NetAppScopedInventory",
'TASK.PUBLICCLOUDSCOPEDINVENTORY': "task.PublicCloudScopedInventory",
'TASK.PURESCOPEDINVENTORY': "task.PureScopedInventory",
+ 'TASK.SERVERSCOPEDINVENTORY': "task.ServerScopedInventory",
'TECHSUPPORTMANAGEMENT.COLLECTIONCONTROLPOLICY': "techsupportmanagement.CollectionControlPolicy",
'TECHSUPPORTMANAGEMENT.DOWNLOAD': "techsupportmanagement.Download",
'TECHSUPPORTMANAGEMENT.TECHSUPPORTBUNDLE': "techsupportmanagement.TechSupportBundle",
@@ -781,6 +791,7 @@ class FabricConfigResultRelationship(ModelComposed):
'VIRTUALIZATION.VMWAREVCENTER': "virtualization.VmwareVcenter",
'VIRTUALIZATION.VMWAREVIRTUALDISK': "virtualization.VmwareVirtualDisk",
'VIRTUALIZATION.VMWAREVIRTUALMACHINE': "virtualization.VmwareVirtualMachine",
+ 'VIRTUALIZATION.VMWAREVIRTUALMACHINESNAPSHOT': "virtualization.VmwareVirtualMachineSnapshot",
'VIRTUALIZATION.VMWAREVIRTUALNETWORKINTERFACE': "virtualization.VmwareVirtualNetworkInterface",
'VIRTUALIZATION.VMWAREVIRTUALSWITCH': "virtualization.VmwareVirtualSwitch",
'VMEDIA.POLICY': "vmedia.Policy",
@@ -813,12 +824,14 @@ class FabricConfigResultRelationship(ModelComposed):
'WORKFLOW.TASKDEFINITION': "workflow.TaskDefinition",
'WORKFLOW.TASKINFO': "workflow.TaskInfo",
'WORKFLOW.TASKMETADATA': "workflow.TaskMetadata",
+ 'WORKFLOW.TASKNOTIFICATION': "workflow.TaskNotification",
'WORKFLOW.TEMPLATEEVALUATION': "workflow.TemplateEvaluation",
'WORKFLOW.TEMPLATEFUNCTIONMETA': "workflow.TemplateFunctionMeta",
'WORKFLOW.WORKFLOWDEFINITION': "workflow.WorkflowDefinition",
'WORKFLOW.WORKFLOWINFO': "workflow.WorkflowInfo",
'WORKFLOW.WORKFLOWMETA': "workflow.WorkflowMeta",
'WORKFLOW.WORKFLOWMETADATA': "workflow.WorkflowMetadata",
+ 'WORKFLOW.WORKFLOWNOTIFICATION': "workflow.WorkflowNotification",
},
}
diff --git a/intersight/model/fabric_config_result_response.py b/intersight/model/fabric_config_result_response.py
index 799208bfe9..8209a769d0 100644
--- a/intersight/model/fabric_config_result_response.py
+++ b/intersight/model/fabric_config_result_response.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/fabric_element_identity.py b/intersight/model/fabric_element_identity.py
index 7f7f4dba60..32dd8273e5 100644
--- a/intersight/model/fabric_element_identity.py
+++ b/intersight/model/fabric_element_identity.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/fabric_element_identity_all_of.py b/intersight/model/fabric_element_identity_all_of.py
index f2f8fd6eb6..c0e15c48cf 100644
--- a/intersight/model/fabric_element_identity_all_of.py
+++ b/intersight/model/fabric_element_identity_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/fabric_element_identity_list.py b/intersight/model/fabric_element_identity_list.py
index 6dd2deb708..b78af27273 100644
--- a/intersight/model/fabric_element_identity_list.py
+++ b/intersight/model/fabric_element_identity_list.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/fabric_element_identity_list_all_of.py b/intersight/model/fabric_element_identity_list_all_of.py
index 766f6e5615..5728d42305 100644
--- a/intersight/model/fabric_element_identity_list_all_of.py
+++ b/intersight/model/fabric_element_identity_list_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/fabric_element_identity_response.py b/intersight/model/fabric_element_identity_response.py
index f0f0441799..d119e284cd 100644
--- a/intersight/model/fabric_element_identity_response.py
+++ b/intersight/model/fabric_element_identity_response.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/fabric_estimate_impact.py b/intersight/model/fabric_estimate_impact.py
index a73ae1f4b3..289efb29b6 100644
--- a/intersight/model/fabric_estimate_impact.py
+++ b/intersight/model/fabric_estimate_impact.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/fabric_estimate_impact_all_of.py b/intersight/model/fabric_estimate_impact_all_of.py
index 2a54082b48..48c9bc231a 100644
--- a/intersight/model/fabric_estimate_impact_all_of.py
+++ b/intersight/model/fabric_estimate_impact_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/fabric_eth_network_control_policy.py b/intersight/model/fabric_eth_network_control_policy.py
index d17ef3d65f..3d80771172 100644
--- a/intersight/model/fabric_eth_network_control_policy.py
+++ b/intersight/model/fabric_eth_network_control_policy.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/fabric_eth_network_control_policy_all_of.py b/intersight/model/fabric_eth_network_control_policy_all_of.py
index db143a9480..020d53acb0 100644
--- a/intersight/model/fabric_eth_network_control_policy_all_of.py
+++ b/intersight/model/fabric_eth_network_control_policy_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/fabric_eth_network_control_policy_list.py b/intersight/model/fabric_eth_network_control_policy_list.py
index 348aa0c047..057c0e9859 100644
--- a/intersight/model/fabric_eth_network_control_policy_list.py
+++ b/intersight/model/fabric_eth_network_control_policy_list.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/fabric_eth_network_control_policy_list_all_of.py b/intersight/model/fabric_eth_network_control_policy_list_all_of.py
index 9681bda559..d701fe13ed 100644
--- a/intersight/model/fabric_eth_network_control_policy_list_all_of.py
+++ b/intersight/model/fabric_eth_network_control_policy_list_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/fabric_eth_network_control_policy_relationship.py b/intersight/model/fabric_eth_network_control_policy_relationship.py
index ce9afa326f..a5e1fb0c16 100644
--- a/intersight/model/fabric_eth_network_control_policy_relationship.py
+++ b/intersight/model/fabric_eth_network_control_policy_relationship.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
@@ -90,6 +90,8 @@ class FabricEthNetworkControlPolicyRelationship(ModelComposed):
},
('object_type',): {
'AAA.AUDITRECORD': "aaa.AuditRecord",
+ 'AAA.RETENTIONCONFIG': "aaa.RetentionConfig",
+ 'AAA.RETENTIONPOLICY': "aaa.RetentionPolicy",
'ACCESS.POLICY': "access.Policy",
'ADAPTER.CONFIGPOLICY': "adapter.ConfigPolicy",
'ADAPTER.EXTETHINTERFACE': "adapter.ExtEthInterface",
@@ -106,6 +108,7 @@ class FabricEthNetworkControlPolicyRelationship(ModelComposed):
'APPLIANCE.DATAEXPORTPOLICY': "appliance.DataExportPolicy",
'APPLIANCE.DEVICECERTIFICATE': "appliance.DeviceCertificate",
'APPLIANCE.DEVICECLAIM': "appliance.DeviceClaim",
+ 'APPLIANCE.DEVICEUPGRADEPOLICY': "appliance.DeviceUpgradePolicy",
'APPLIANCE.DIAGSETTING': "appliance.DiagSetting",
'APPLIANCE.EXTERNALSYSLOGSETTING': "appliance.ExternalSyslogSetting",
'APPLIANCE.FILESYSTEMSTATUS': "appliance.FileSystemStatus",
@@ -154,9 +157,12 @@ class FabricEthNetworkControlPolicyRelationship(ModelComposed):
'BOOT.UEFISHELLDEVICE': "boot.UefiShellDevice",
'BOOT.USBDEVICE': "boot.UsbDevice",
'BOOT.VMEDIADEVICE': "boot.VmediaDevice",
+ 'BULK.EXPORT': "bulk.Export",
+ 'BULK.EXPORTEDITEM': "bulk.ExportedItem",
'BULK.MOCLONER': "bulk.MoCloner",
'BULK.MOMERGER': "bulk.MoMerger",
'BULK.REQUEST': "bulk.Request",
+ 'BULK.SUBREQUESTOBJ': "bulk.SubRequestObj",
'CAPABILITY.ADAPTERUNITDESCRIPTOR': "capability.AdapterUnitDescriptor",
'CAPABILITY.CATALOG': "capability.Catalog",
'CAPABILITY.CHASSISDESCRIPTOR': "capability.ChassisDescriptor",
@@ -220,10 +226,6 @@ class FabricEthNetworkControlPolicyRelationship(ModelComposed):
'COND.HCLSTATUS': "cond.HclStatus",
'COND.HCLSTATUSDETAIL': "cond.HclStatusDetail",
'COND.HCLSTATUSJOB': "cond.HclStatusJob",
- 'CONFIG.EXPORTEDITEM': "config.ExportedItem",
- 'CONFIG.EXPORTER': "config.Exporter",
- 'CONFIG.IMPORTEDITEM': "config.ImportedItem",
- 'CONFIG.IMPORTER': "config.Importer",
'CONNECTORPACK.CONNECTORPACKUPGRADE': "connectorpack.ConnectorPackUpgrade",
'CONNECTORPACK.UPGRADEIMPACT': "connectorpack.UpgradeImpact",
'CRD.CUSTOMRESOURCE': "crd.CustomResource",
@@ -232,6 +234,7 @@ class FabricEthNetworkControlPolicyRelationship(ModelComposed):
'EQUIPMENT.CHASSISIDENTITY': "equipment.ChassisIdentity",
'EQUIPMENT.CHASSISOPERATION': "equipment.ChassisOperation",
'EQUIPMENT.DEVICESUMMARY': "equipment.DeviceSummary",
+ 'EQUIPMENT.EXPANDERMODULE': "equipment.ExpanderModule",
'EQUIPMENT.FAN': "equipment.Fan",
'EQUIPMENT.FANCONTROL': "equipment.FanControl",
'EQUIPMENT.FANMODULE': "equipment.FanModule",
@@ -480,6 +483,7 @@ class FabricEthNetworkControlPolicyRelationship(ModelComposed):
'KUBERNETES.ADDONDEFINITION': "kubernetes.AddonDefinition",
'KUBERNETES.ADDONPOLICY': "kubernetes.AddonPolicy",
'KUBERNETES.ADDONREPOSITORY': "kubernetes.AddonRepository",
+ 'KUBERNETES.BAREMETALNODEPROFILE': "kubernetes.BaremetalNodeProfile",
'KUBERNETES.CATALOG': "kubernetes.Catalog",
'KUBERNETES.CLUSTER': "kubernetes.Cluster",
'KUBERNETES.CLUSTERADDONPROFILE': "kubernetes.ClusterAddonProfile",
@@ -649,6 +653,11 @@ class FabricEthNetworkControlPolicyRelationship(ModelComposed):
'RESOURCE.LICENSERESOURCECOUNT': "resource.LicenseResourceCount",
'RESOURCE.MEMBERSHIP': "resource.Membership",
'RESOURCE.MEMBERSHIPHOLDER': "resource.MembershipHolder",
+ 'RESOURCEPOOL.LEASE': "resourcepool.Lease",
+ 'RESOURCEPOOL.LEASERESOURCE': "resourcepool.LeaseResource",
+ 'RESOURCEPOOL.POOL': "resourcepool.Pool",
+ 'RESOURCEPOOL.POOLMEMBER': "resourcepool.PoolMember",
+ 'RESOURCEPOOL.UNIVERSE': "resourcepool.Universe",
'RPROXY.REVERSEPROXY': "rproxy.ReverseProxy",
'SDCARD.POLICY': "sdcard.Policy",
'SDWAN.PROFILE': "sdwan.Profile",
@@ -764,6 +773,7 @@ class FabricEthNetworkControlPolicyRelationship(ModelComposed):
'TASK.NETAPPSCOPEDINVENTORY': "task.NetAppScopedInventory",
'TASK.PUBLICCLOUDSCOPEDINVENTORY': "task.PublicCloudScopedInventory",
'TASK.PURESCOPEDINVENTORY': "task.PureScopedInventory",
+ 'TASK.SERVERSCOPEDINVENTORY': "task.ServerScopedInventory",
'TECHSUPPORTMANAGEMENT.COLLECTIONCONTROLPOLICY': "techsupportmanagement.CollectionControlPolicy",
'TECHSUPPORTMANAGEMENT.DOWNLOAD': "techsupportmanagement.Download",
'TECHSUPPORTMANAGEMENT.TECHSUPPORTBUNDLE': "techsupportmanagement.TechSupportBundle",
@@ -795,6 +805,7 @@ class FabricEthNetworkControlPolicyRelationship(ModelComposed):
'VIRTUALIZATION.VMWAREVCENTER': "virtualization.VmwareVcenter",
'VIRTUALIZATION.VMWAREVIRTUALDISK': "virtualization.VmwareVirtualDisk",
'VIRTUALIZATION.VMWAREVIRTUALMACHINE': "virtualization.VmwareVirtualMachine",
+ 'VIRTUALIZATION.VMWAREVIRTUALMACHINESNAPSHOT': "virtualization.VmwareVirtualMachineSnapshot",
'VIRTUALIZATION.VMWAREVIRTUALNETWORKINTERFACE': "virtualization.VmwareVirtualNetworkInterface",
'VIRTUALIZATION.VMWAREVIRTUALSWITCH': "virtualization.VmwareVirtualSwitch",
'VMEDIA.POLICY': "vmedia.Policy",
@@ -827,12 +838,14 @@ class FabricEthNetworkControlPolicyRelationship(ModelComposed):
'WORKFLOW.TASKDEFINITION': "workflow.TaskDefinition",
'WORKFLOW.TASKINFO': "workflow.TaskInfo",
'WORKFLOW.TASKMETADATA': "workflow.TaskMetadata",
+ 'WORKFLOW.TASKNOTIFICATION': "workflow.TaskNotification",
'WORKFLOW.TEMPLATEEVALUATION': "workflow.TemplateEvaluation",
'WORKFLOW.TEMPLATEFUNCTIONMETA': "workflow.TemplateFunctionMeta",
'WORKFLOW.WORKFLOWDEFINITION': "workflow.WorkflowDefinition",
'WORKFLOW.WORKFLOWINFO': "workflow.WorkflowInfo",
'WORKFLOW.WORKFLOWMETA': "workflow.WorkflowMeta",
'WORKFLOW.WORKFLOWMETADATA': "workflow.WorkflowMetadata",
+ 'WORKFLOW.WORKFLOWNOTIFICATION': "workflow.WorkflowNotification",
},
}
diff --git a/intersight/model/fabric_eth_network_control_policy_response.py b/intersight/model/fabric_eth_network_control_policy_response.py
index 77b0128a6a..8989205079 100644
--- a/intersight/model/fabric_eth_network_control_policy_response.py
+++ b/intersight/model/fabric_eth_network_control_policy_response.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/fabric_eth_network_group_policy.py b/intersight/model/fabric_eth_network_group_policy.py
index 9e49f46d4e..8ed957040f 100644
--- a/intersight/model/fabric_eth_network_group_policy.py
+++ b/intersight/model/fabric_eth_network_group_policy.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/fabric_eth_network_group_policy_all_of.py b/intersight/model/fabric_eth_network_group_policy_all_of.py
index 8a7f257850..75904a829d 100644
--- a/intersight/model/fabric_eth_network_group_policy_all_of.py
+++ b/intersight/model/fabric_eth_network_group_policy_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/fabric_eth_network_group_policy_list.py b/intersight/model/fabric_eth_network_group_policy_list.py
index 4f1be58b28..8f0ad6ecb1 100644
--- a/intersight/model/fabric_eth_network_group_policy_list.py
+++ b/intersight/model/fabric_eth_network_group_policy_list.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/fabric_eth_network_group_policy_list_all_of.py b/intersight/model/fabric_eth_network_group_policy_list_all_of.py
index 7aea1d2ecc..8c9d2101d3 100644
--- a/intersight/model/fabric_eth_network_group_policy_list_all_of.py
+++ b/intersight/model/fabric_eth_network_group_policy_list_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/fabric_eth_network_group_policy_relationship.py b/intersight/model/fabric_eth_network_group_policy_relationship.py
index 3cc73d205c..c636259390 100644
--- a/intersight/model/fabric_eth_network_group_policy_relationship.py
+++ b/intersight/model/fabric_eth_network_group_policy_relationship.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
@@ -76,6 +76,8 @@ class FabricEthNetworkGroupPolicyRelationship(ModelComposed):
},
('object_type',): {
'AAA.AUDITRECORD': "aaa.AuditRecord",
+ 'AAA.RETENTIONCONFIG': "aaa.RetentionConfig",
+ 'AAA.RETENTIONPOLICY': "aaa.RetentionPolicy",
'ACCESS.POLICY': "access.Policy",
'ADAPTER.CONFIGPOLICY': "adapter.ConfigPolicy",
'ADAPTER.EXTETHINTERFACE': "adapter.ExtEthInterface",
@@ -92,6 +94,7 @@ class FabricEthNetworkGroupPolicyRelationship(ModelComposed):
'APPLIANCE.DATAEXPORTPOLICY': "appliance.DataExportPolicy",
'APPLIANCE.DEVICECERTIFICATE': "appliance.DeviceCertificate",
'APPLIANCE.DEVICECLAIM': "appliance.DeviceClaim",
+ 'APPLIANCE.DEVICEUPGRADEPOLICY': "appliance.DeviceUpgradePolicy",
'APPLIANCE.DIAGSETTING': "appliance.DiagSetting",
'APPLIANCE.EXTERNALSYSLOGSETTING': "appliance.ExternalSyslogSetting",
'APPLIANCE.FILESYSTEMSTATUS': "appliance.FileSystemStatus",
@@ -140,9 +143,12 @@ class FabricEthNetworkGroupPolicyRelationship(ModelComposed):
'BOOT.UEFISHELLDEVICE': "boot.UefiShellDevice",
'BOOT.USBDEVICE': "boot.UsbDevice",
'BOOT.VMEDIADEVICE': "boot.VmediaDevice",
+ 'BULK.EXPORT': "bulk.Export",
+ 'BULK.EXPORTEDITEM': "bulk.ExportedItem",
'BULK.MOCLONER': "bulk.MoCloner",
'BULK.MOMERGER': "bulk.MoMerger",
'BULK.REQUEST': "bulk.Request",
+ 'BULK.SUBREQUESTOBJ': "bulk.SubRequestObj",
'CAPABILITY.ADAPTERUNITDESCRIPTOR': "capability.AdapterUnitDescriptor",
'CAPABILITY.CATALOG': "capability.Catalog",
'CAPABILITY.CHASSISDESCRIPTOR': "capability.ChassisDescriptor",
@@ -206,10 +212,6 @@ class FabricEthNetworkGroupPolicyRelationship(ModelComposed):
'COND.HCLSTATUS': "cond.HclStatus",
'COND.HCLSTATUSDETAIL': "cond.HclStatusDetail",
'COND.HCLSTATUSJOB': "cond.HclStatusJob",
- 'CONFIG.EXPORTEDITEM': "config.ExportedItem",
- 'CONFIG.EXPORTER': "config.Exporter",
- 'CONFIG.IMPORTEDITEM': "config.ImportedItem",
- 'CONFIG.IMPORTER': "config.Importer",
'CONNECTORPACK.CONNECTORPACKUPGRADE': "connectorpack.ConnectorPackUpgrade",
'CONNECTORPACK.UPGRADEIMPACT': "connectorpack.UpgradeImpact",
'CRD.CUSTOMRESOURCE': "crd.CustomResource",
@@ -218,6 +220,7 @@ class FabricEthNetworkGroupPolicyRelationship(ModelComposed):
'EQUIPMENT.CHASSISIDENTITY': "equipment.ChassisIdentity",
'EQUIPMENT.CHASSISOPERATION': "equipment.ChassisOperation",
'EQUIPMENT.DEVICESUMMARY': "equipment.DeviceSummary",
+ 'EQUIPMENT.EXPANDERMODULE': "equipment.ExpanderModule",
'EQUIPMENT.FAN': "equipment.Fan",
'EQUIPMENT.FANCONTROL': "equipment.FanControl",
'EQUIPMENT.FANMODULE': "equipment.FanModule",
@@ -466,6 +469,7 @@ class FabricEthNetworkGroupPolicyRelationship(ModelComposed):
'KUBERNETES.ADDONDEFINITION': "kubernetes.AddonDefinition",
'KUBERNETES.ADDONPOLICY': "kubernetes.AddonPolicy",
'KUBERNETES.ADDONREPOSITORY': "kubernetes.AddonRepository",
+ 'KUBERNETES.BAREMETALNODEPROFILE': "kubernetes.BaremetalNodeProfile",
'KUBERNETES.CATALOG': "kubernetes.Catalog",
'KUBERNETES.CLUSTER': "kubernetes.Cluster",
'KUBERNETES.CLUSTERADDONPROFILE': "kubernetes.ClusterAddonProfile",
@@ -635,6 +639,11 @@ class FabricEthNetworkGroupPolicyRelationship(ModelComposed):
'RESOURCE.LICENSERESOURCECOUNT': "resource.LicenseResourceCount",
'RESOURCE.MEMBERSHIP': "resource.Membership",
'RESOURCE.MEMBERSHIPHOLDER': "resource.MembershipHolder",
+ 'RESOURCEPOOL.LEASE': "resourcepool.Lease",
+ 'RESOURCEPOOL.LEASERESOURCE': "resourcepool.LeaseResource",
+ 'RESOURCEPOOL.POOL': "resourcepool.Pool",
+ 'RESOURCEPOOL.POOLMEMBER': "resourcepool.PoolMember",
+ 'RESOURCEPOOL.UNIVERSE': "resourcepool.Universe",
'RPROXY.REVERSEPROXY': "rproxy.ReverseProxy",
'SDCARD.POLICY': "sdcard.Policy",
'SDWAN.PROFILE': "sdwan.Profile",
@@ -750,6 +759,7 @@ class FabricEthNetworkGroupPolicyRelationship(ModelComposed):
'TASK.NETAPPSCOPEDINVENTORY': "task.NetAppScopedInventory",
'TASK.PUBLICCLOUDSCOPEDINVENTORY': "task.PublicCloudScopedInventory",
'TASK.PURESCOPEDINVENTORY': "task.PureScopedInventory",
+ 'TASK.SERVERSCOPEDINVENTORY': "task.ServerScopedInventory",
'TECHSUPPORTMANAGEMENT.COLLECTIONCONTROLPOLICY': "techsupportmanagement.CollectionControlPolicy",
'TECHSUPPORTMANAGEMENT.DOWNLOAD': "techsupportmanagement.Download",
'TECHSUPPORTMANAGEMENT.TECHSUPPORTBUNDLE': "techsupportmanagement.TechSupportBundle",
@@ -781,6 +791,7 @@ class FabricEthNetworkGroupPolicyRelationship(ModelComposed):
'VIRTUALIZATION.VMWAREVCENTER': "virtualization.VmwareVcenter",
'VIRTUALIZATION.VMWAREVIRTUALDISK': "virtualization.VmwareVirtualDisk",
'VIRTUALIZATION.VMWAREVIRTUALMACHINE': "virtualization.VmwareVirtualMachine",
+ 'VIRTUALIZATION.VMWAREVIRTUALMACHINESNAPSHOT': "virtualization.VmwareVirtualMachineSnapshot",
'VIRTUALIZATION.VMWAREVIRTUALNETWORKINTERFACE': "virtualization.VmwareVirtualNetworkInterface",
'VIRTUALIZATION.VMWAREVIRTUALSWITCH': "virtualization.VmwareVirtualSwitch",
'VMEDIA.POLICY': "vmedia.Policy",
@@ -813,12 +824,14 @@ class FabricEthNetworkGroupPolicyRelationship(ModelComposed):
'WORKFLOW.TASKDEFINITION': "workflow.TaskDefinition",
'WORKFLOW.TASKINFO': "workflow.TaskInfo",
'WORKFLOW.TASKMETADATA': "workflow.TaskMetadata",
+ 'WORKFLOW.TASKNOTIFICATION': "workflow.TaskNotification",
'WORKFLOW.TEMPLATEEVALUATION': "workflow.TemplateEvaluation",
'WORKFLOW.TEMPLATEFUNCTIONMETA': "workflow.TemplateFunctionMeta",
'WORKFLOW.WORKFLOWDEFINITION': "workflow.WorkflowDefinition",
'WORKFLOW.WORKFLOWINFO': "workflow.WorkflowInfo",
'WORKFLOW.WORKFLOWMETA': "workflow.WorkflowMeta",
'WORKFLOW.WORKFLOWMETADATA': "workflow.WorkflowMetadata",
+ 'WORKFLOW.WORKFLOWNOTIFICATION': "workflow.WorkflowNotification",
},
}
diff --git a/intersight/model/fabric_eth_network_group_policy_response.py b/intersight/model/fabric_eth_network_group_policy_response.py
index 8219fd4c5f..753464f9a2 100644
--- a/intersight/model/fabric_eth_network_group_policy_response.py
+++ b/intersight/model/fabric_eth_network_group_policy_response.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/fabric_eth_network_policy.py b/intersight/model/fabric_eth_network_policy.py
index 6e62d26363..a84520197b 100644
--- a/intersight/model/fabric_eth_network_policy.py
+++ b/intersight/model/fabric_eth_network_policy.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/fabric_eth_network_policy_all_of.py b/intersight/model/fabric_eth_network_policy_all_of.py
index 7cfab275a5..2188755c06 100644
--- a/intersight/model/fabric_eth_network_policy_all_of.py
+++ b/intersight/model/fabric_eth_network_policy_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/fabric_eth_network_policy_list.py b/intersight/model/fabric_eth_network_policy_list.py
index 86c097138f..77616bd9bd 100644
--- a/intersight/model/fabric_eth_network_policy_list.py
+++ b/intersight/model/fabric_eth_network_policy_list.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/fabric_eth_network_policy_list_all_of.py b/intersight/model/fabric_eth_network_policy_list_all_of.py
index bbc902358f..2c143b6eae 100644
--- a/intersight/model/fabric_eth_network_policy_list_all_of.py
+++ b/intersight/model/fabric_eth_network_policy_list_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/fabric_eth_network_policy_relationship.py b/intersight/model/fabric_eth_network_policy_relationship.py
index b8e15e5e62..dbf904d351 100644
--- a/intersight/model/fabric_eth_network_policy_relationship.py
+++ b/intersight/model/fabric_eth_network_policy_relationship.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
@@ -76,6 +76,8 @@ class FabricEthNetworkPolicyRelationship(ModelComposed):
},
('object_type',): {
'AAA.AUDITRECORD': "aaa.AuditRecord",
+ 'AAA.RETENTIONCONFIG': "aaa.RetentionConfig",
+ 'AAA.RETENTIONPOLICY': "aaa.RetentionPolicy",
'ACCESS.POLICY': "access.Policy",
'ADAPTER.CONFIGPOLICY': "adapter.ConfigPolicy",
'ADAPTER.EXTETHINTERFACE': "adapter.ExtEthInterface",
@@ -92,6 +94,7 @@ class FabricEthNetworkPolicyRelationship(ModelComposed):
'APPLIANCE.DATAEXPORTPOLICY': "appliance.DataExportPolicy",
'APPLIANCE.DEVICECERTIFICATE': "appliance.DeviceCertificate",
'APPLIANCE.DEVICECLAIM': "appliance.DeviceClaim",
+ 'APPLIANCE.DEVICEUPGRADEPOLICY': "appliance.DeviceUpgradePolicy",
'APPLIANCE.DIAGSETTING': "appliance.DiagSetting",
'APPLIANCE.EXTERNALSYSLOGSETTING': "appliance.ExternalSyslogSetting",
'APPLIANCE.FILESYSTEMSTATUS': "appliance.FileSystemStatus",
@@ -140,9 +143,12 @@ class FabricEthNetworkPolicyRelationship(ModelComposed):
'BOOT.UEFISHELLDEVICE': "boot.UefiShellDevice",
'BOOT.USBDEVICE': "boot.UsbDevice",
'BOOT.VMEDIADEVICE': "boot.VmediaDevice",
+ 'BULK.EXPORT': "bulk.Export",
+ 'BULK.EXPORTEDITEM': "bulk.ExportedItem",
'BULK.MOCLONER': "bulk.MoCloner",
'BULK.MOMERGER': "bulk.MoMerger",
'BULK.REQUEST': "bulk.Request",
+ 'BULK.SUBREQUESTOBJ': "bulk.SubRequestObj",
'CAPABILITY.ADAPTERUNITDESCRIPTOR': "capability.AdapterUnitDescriptor",
'CAPABILITY.CATALOG': "capability.Catalog",
'CAPABILITY.CHASSISDESCRIPTOR': "capability.ChassisDescriptor",
@@ -206,10 +212,6 @@ class FabricEthNetworkPolicyRelationship(ModelComposed):
'COND.HCLSTATUS': "cond.HclStatus",
'COND.HCLSTATUSDETAIL': "cond.HclStatusDetail",
'COND.HCLSTATUSJOB': "cond.HclStatusJob",
- 'CONFIG.EXPORTEDITEM': "config.ExportedItem",
- 'CONFIG.EXPORTER': "config.Exporter",
- 'CONFIG.IMPORTEDITEM': "config.ImportedItem",
- 'CONFIG.IMPORTER': "config.Importer",
'CONNECTORPACK.CONNECTORPACKUPGRADE': "connectorpack.ConnectorPackUpgrade",
'CONNECTORPACK.UPGRADEIMPACT': "connectorpack.UpgradeImpact",
'CRD.CUSTOMRESOURCE': "crd.CustomResource",
@@ -218,6 +220,7 @@ class FabricEthNetworkPolicyRelationship(ModelComposed):
'EQUIPMENT.CHASSISIDENTITY': "equipment.ChassisIdentity",
'EQUIPMENT.CHASSISOPERATION': "equipment.ChassisOperation",
'EQUIPMENT.DEVICESUMMARY': "equipment.DeviceSummary",
+ 'EQUIPMENT.EXPANDERMODULE': "equipment.ExpanderModule",
'EQUIPMENT.FAN': "equipment.Fan",
'EQUIPMENT.FANCONTROL': "equipment.FanControl",
'EQUIPMENT.FANMODULE': "equipment.FanModule",
@@ -466,6 +469,7 @@ class FabricEthNetworkPolicyRelationship(ModelComposed):
'KUBERNETES.ADDONDEFINITION': "kubernetes.AddonDefinition",
'KUBERNETES.ADDONPOLICY': "kubernetes.AddonPolicy",
'KUBERNETES.ADDONREPOSITORY': "kubernetes.AddonRepository",
+ 'KUBERNETES.BAREMETALNODEPROFILE': "kubernetes.BaremetalNodeProfile",
'KUBERNETES.CATALOG': "kubernetes.Catalog",
'KUBERNETES.CLUSTER': "kubernetes.Cluster",
'KUBERNETES.CLUSTERADDONPROFILE': "kubernetes.ClusterAddonProfile",
@@ -635,6 +639,11 @@ class FabricEthNetworkPolicyRelationship(ModelComposed):
'RESOURCE.LICENSERESOURCECOUNT': "resource.LicenseResourceCount",
'RESOURCE.MEMBERSHIP': "resource.Membership",
'RESOURCE.MEMBERSHIPHOLDER': "resource.MembershipHolder",
+ 'RESOURCEPOOL.LEASE': "resourcepool.Lease",
+ 'RESOURCEPOOL.LEASERESOURCE': "resourcepool.LeaseResource",
+ 'RESOURCEPOOL.POOL': "resourcepool.Pool",
+ 'RESOURCEPOOL.POOLMEMBER': "resourcepool.PoolMember",
+ 'RESOURCEPOOL.UNIVERSE': "resourcepool.Universe",
'RPROXY.REVERSEPROXY': "rproxy.ReverseProxy",
'SDCARD.POLICY': "sdcard.Policy",
'SDWAN.PROFILE': "sdwan.Profile",
@@ -750,6 +759,7 @@ class FabricEthNetworkPolicyRelationship(ModelComposed):
'TASK.NETAPPSCOPEDINVENTORY': "task.NetAppScopedInventory",
'TASK.PUBLICCLOUDSCOPEDINVENTORY': "task.PublicCloudScopedInventory",
'TASK.PURESCOPEDINVENTORY': "task.PureScopedInventory",
+ 'TASK.SERVERSCOPEDINVENTORY': "task.ServerScopedInventory",
'TECHSUPPORTMANAGEMENT.COLLECTIONCONTROLPOLICY': "techsupportmanagement.CollectionControlPolicy",
'TECHSUPPORTMANAGEMENT.DOWNLOAD': "techsupportmanagement.Download",
'TECHSUPPORTMANAGEMENT.TECHSUPPORTBUNDLE': "techsupportmanagement.TechSupportBundle",
@@ -781,6 +791,7 @@ class FabricEthNetworkPolicyRelationship(ModelComposed):
'VIRTUALIZATION.VMWAREVCENTER': "virtualization.VmwareVcenter",
'VIRTUALIZATION.VMWAREVIRTUALDISK': "virtualization.VmwareVirtualDisk",
'VIRTUALIZATION.VMWAREVIRTUALMACHINE': "virtualization.VmwareVirtualMachine",
+ 'VIRTUALIZATION.VMWAREVIRTUALMACHINESNAPSHOT': "virtualization.VmwareVirtualMachineSnapshot",
'VIRTUALIZATION.VMWAREVIRTUALNETWORKINTERFACE': "virtualization.VmwareVirtualNetworkInterface",
'VIRTUALIZATION.VMWAREVIRTUALSWITCH': "virtualization.VmwareVirtualSwitch",
'VMEDIA.POLICY': "vmedia.Policy",
@@ -813,12 +824,14 @@ class FabricEthNetworkPolicyRelationship(ModelComposed):
'WORKFLOW.TASKDEFINITION': "workflow.TaskDefinition",
'WORKFLOW.TASKINFO': "workflow.TaskInfo",
'WORKFLOW.TASKMETADATA': "workflow.TaskMetadata",
+ 'WORKFLOW.TASKNOTIFICATION': "workflow.TaskNotification",
'WORKFLOW.TEMPLATEEVALUATION': "workflow.TemplateEvaluation",
'WORKFLOW.TEMPLATEFUNCTIONMETA': "workflow.TemplateFunctionMeta",
'WORKFLOW.WORKFLOWDEFINITION': "workflow.WorkflowDefinition",
'WORKFLOW.WORKFLOWINFO': "workflow.WorkflowInfo",
'WORKFLOW.WORKFLOWMETA': "workflow.WorkflowMeta",
'WORKFLOW.WORKFLOWMETADATA': "workflow.WorkflowMetadata",
+ 'WORKFLOW.WORKFLOWNOTIFICATION': "workflow.WorkflowNotification",
},
}
diff --git a/intersight/model/fabric_eth_network_policy_response.py b/intersight/model/fabric_eth_network_policy_response.py
index bd4f210d74..bf9eff6534 100644
--- a/intersight/model/fabric_eth_network_policy_response.py
+++ b/intersight/model/fabric_eth_network_policy_response.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/fabric_fc_network_policy.py b/intersight/model/fabric_fc_network_policy.py
index 9e49a99140..011f2a05ad 100644
--- a/intersight/model/fabric_fc_network_policy.py
+++ b/intersight/model/fabric_fc_network_policy.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/fabric_fc_network_policy_all_of.py b/intersight/model/fabric_fc_network_policy_all_of.py
index 50a3e3fc95..aee073b208 100644
--- a/intersight/model/fabric_fc_network_policy_all_of.py
+++ b/intersight/model/fabric_fc_network_policy_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/fabric_fc_network_policy_list.py b/intersight/model/fabric_fc_network_policy_list.py
index b674a4346a..07998e45c2 100644
--- a/intersight/model/fabric_fc_network_policy_list.py
+++ b/intersight/model/fabric_fc_network_policy_list.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/fabric_fc_network_policy_list_all_of.py b/intersight/model/fabric_fc_network_policy_list_all_of.py
index 7687746f61..3f26145b48 100644
--- a/intersight/model/fabric_fc_network_policy_list_all_of.py
+++ b/intersight/model/fabric_fc_network_policy_list_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/fabric_fc_network_policy_relationship.py b/intersight/model/fabric_fc_network_policy_relationship.py
index 0bc056e0af..42a0f0f1d9 100644
--- a/intersight/model/fabric_fc_network_policy_relationship.py
+++ b/intersight/model/fabric_fc_network_policy_relationship.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
@@ -76,6 +76,8 @@ class FabricFcNetworkPolicyRelationship(ModelComposed):
},
('object_type',): {
'AAA.AUDITRECORD': "aaa.AuditRecord",
+ 'AAA.RETENTIONCONFIG': "aaa.RetentionConfig",
+ 'AAA.RETENTIONPOLICY': "aaa.RetentionPolicy",
'ACCESS.POLICY': "access.Policy",
'ADAPTER.CONFIGPOLICY': "adapter.ConfigPolicy",
'ADAPTER.EXTETHINTERFACE': "adapter.ExtEthInterface",
@@ -92,6 +94,7 @@ class FabricFcNetworkPolicyRelationship(ModelComposed):
'APPLIANCE.DATAEXPORTPOLICY': "appliance.DataExportPolicy",
'APPLIANCE.DEVICECERTIFICATE': "appliance.DeviceCertificate",
'APPLIANCE.DEVICECLAIM': "appliance.DeviceClaim",
+ 'APPLIANCE.DEVICEUPGRADEPOLICY': "appliance.DeviceUpgradePolicy",
'APPLIANCE.DIAGSETTING': "appliance.DiagSetting",
'APPLIANCE.EXTERNALSYSLOGSETTING': "appliance.ExternalSyslogSetting",
'APPLIANCE.FILESYSTEMSTATUS': "appliance.FileSystemStatus",
@@ -140,9 +143,12 @@ class FabricFcNetworkPolicyRelationship(ModelComposed):
'BOOT.UEFISHELLDEVICE': "boot.UefiShellDevice",
'BOOT.USBDEVICE': "boot.UsbDevice",
'BOOT.VMEDIADEVICE': "boot.VmediaDevice",
+ 'BULK.EXPORT': "bulk.Export",
+ 'BULK.EXPORTEDITEM': "bulk.ExportedItem",
'BULK.MOCLONER': "bulk.MoCloner",
'BULK.MOMERGER': "bulk.MoMerger",
'BULK.REQUEST': "bulk.Request",
+ 'BULK.SUBREQUESTOBJ': "bulk.SubRequestObj",
'CAPABILITY.ADAPTERUNITDESCRIPTOR': "capability.AdapterUnitDescriptor",
'CAPABILITY.CATALOG': "capability.Catalog",
'CAPABILITY.CHASSISDESCRIPTOR': "capability.ChassisDescriptor",
@@ -206,10 +212,6 @@ class FabricFcNetworkPolicyRelationship(ModelComposed):
'COND.HCLSTATUS': "cond.HclStatus",
'COND.HCLSTATUSDETAIL': "cond.HclStatusDetail",
'COND.HCLSTATUSJOB': "cond.HclStatusJob",
- 'CONFIG.EXPORTEDITEM': "config.ExportedItem",
- 'CONFIG.EXPORTER': "config.Exporter",
- 'CONFIG.IMPORTEDITEM': "config.ImportedItem",
- 'CONFIG.IMPORTER': "config.Importer",
'CONNECTORPACK.CONNECTORPACKUPGRADE': "connectorpack.ConnectorPackUpgrade",
'CONNECTORPACK.UPGRADEIMPACT': "connectorpack.UpgradeImpact",
'CRD.CUSTOMRESOURCE': "crd.CustomResource",
@@ -218,6 +220,7 @@ class FabricFcNetworkPolicyRelationship(ModelComposed):
'EQUIPMENT.CHASSISIDENTITY': "equipment.ChassisIdentity",
'EQUIPMENT.CHASSISOPERATION': "equipment.ChassisOperation",
'EQUIPMENT.DEVICESUMMARY': "equipment.DeviceSummary",
+ 'EQUIPMENT.EXPANDERMODULE': "equipment.ExpanderModule",
'EQUIPMENT.FAN': "equipment.Fan",
'EQUIPMENT.FANCONTROL': "equipment.FanControl",
'EQUIPMENT.FANMODULE': "equipment.FanModule",
@@ -466,6 +469,7 @@ class FabricFcNetworkPolicyRelationship(ModelComposed):
'KUBERNETES.ADDONDEFINITION': "kubernetes.AddonDefinition",
'KUBERNETES.ADDONPOLICY': "kubernetes.AddonPolicy",
'KUBERNETES.ADDONREPOSITORY': "kubernetes.AddonRepository",
+ 'KUBERNETES.BAREMETALNODEPROFILE': "kubernetes.BaremetalNodeProfile",
'KUBERNETES.CATALOG': "kubernetes.Catalog",
'KUBERNETES.CLUSTER': "kubernetes.Cluster",
'KUBERNETES.CLUSTERADDONPROFILE': "kubernetes.ClusterAddonProfile",
@@ -635,6 +639,11 @@ class FabricFcNetworkPolicyRelationship(ModelComposed):
'RESOURCE.LICENSERESOURCECOUNT': "resource.LicenseResourceCount",
'RESOURCE.MEMBERSHIP': "resource.Membership",
'RESOURCE.MEMBERSHIPHOLDER': "resource.MembershipHolder",
+ 'RESOURCEPOOL.LEASE': "resourcepool.Lease",
+ 'RESOURCEPOOL.LEASERESOURCE': "resourcepool.LeaseResource",
+ 'RESOURCEPOOL.POOL': "resourcepool.Pool",
+ 'RESOURCEPOOL.POOLMEMBER': "resourcepool.PoolMember",
+ 'RESOURCEPOOL.UNIVERSE': "resourcepool.Universe",
'RPROXY.REVERSEPROXY': "rproxy.ReverseProxy",
'SDCARD.POLICY': "sdcard.Policy",
'SDWAN.PROFILE': "sdwan.Profile",
@@ -750,6 +759,7 @@ class FabricFcNetworkPolicyRelationship(ModelComposed):
'TASK.NETAPPSCOPEDINVENTORY': "task.NetAppScopedInventory",
'TASK.PUBLICCLOUDSCOPEDINVENTORY': "task.PublicCloudScopedInventory",
'TASK.PURESCOPEDINVENTORY': "task.PureScopedInventory",
+ 'TASK.SERVERSCOPEDINVENTORY': "task.ServerScopedInventory",
'TECHSUPPORTMANAGEMENT.COLLECTIONCONTROLPOLICY': "techsupportmanagement.CollectionControlPolicy",
'TECHSUPPORTMANAGEMENT.DOWNLOAD': "techsupportmanagement.Download",
'TECHSUPPORTMANAGEMENT.TECHSUPPORTBUNDLE': "techsupportmanagement.TechSupportBundle",
@@ -781,6 +791,7 @@ class FabricFcNetworkPolicyRelationship(ModelComposed):
'VIRTUALIZATION.VMWAREVCENTER': "virtualization.VmwareVcenter",
'VIRTUALIZATION.VMWAREVIRTUALDISK': "virtualization.VmwareVirtualDisk",
'VIRTUALIZATION.VMWAREVIRTUALMACHINE': "virtualization.VmwareVirtualMachine",
+ 'VIRTUALIZATION.VMWAREVIRTUALMACHINESNAPSHOT': "virtualization.VmwareVirtualMachineSnapshot",
'VIRTUALIZATION.VMWAREVIRTUALNETWORKINTERFACE': "virtualization.VmwareVirtualNetworkInterface",
'VIRTUALIZATION.VMWAREVIRTUALSWITCH': "virtualization.VmwareVirtualSwitch",
'VMEDIA.POLICY': "vmedia.Policy",
@@ -813,12 +824,14 @@ class FabricFcNetworkPolicyRelationship(ModelComposed):
'WORKFLOW.TASKDEFINITION': "workflow.TaskDefinition",
'WORKFLOW.TASKINFO': "workflow.TaskInfo",
'WORKFLOW.TASKMETADATA': "workflow.TaskMetadata",
+ 'WORKFLOW.TASKNOTIFICATION': "workflow.TaskNotification",
'WORKFLOW.TEMPLATEEVALUATION': "workflow.TemplateEvaluation",
'WORKFLOW.TEMPLATEFUNCTIONMETA': "workflow.TemplateFunctionMeta",
'WORKFLOW.WORKFLOWDEFINITION': "workflow.WorkflowDefinition",
'WORKFLOW.WORKFLOWINFO': "workflow.WorkflowInfo",
'WORKFLOW.WORKFLOWMETA': "workflow.WorkflowMeta",
'WORKFLOW.WORKFLOWMETADATA': "workflow.WorkflowMetadata",
+ 'WORKFLOW.WORKFLOWNOTIFICATION': "workflow.WorkflowNotification",
},
}
diff --git a/intersight/model/fabric_fc_network_policy_response.py b/intersight/model/fabric_fc_network_policy_response.py
index 8c4b482fa4..d93cd930ee 100644
--- a/intersight/model/fabric_fc_network_policy_response.py
+++ b/intersight/model/fabric_fc_network_policy_response.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/fabric_fc_uplink_pc_role.py b/intersight/model/fabric_fc_uplink_pc_role.py
index 7a0b8594b7..8c5648a51b 100644
--- a/intersight/model/fabric_fc_uplink_pc_role.py
+++ b/intersight/model/fabric_fc_uplink_pc_role.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/fabric_fc_uplink_pc_role_all_of.py b/intersight/model/fabric_fc_uplink_pc_role_all_of.py
index 4a63192a7b..749d3fc9f3 100644
--- a/intersight/model/fabric_fc_uplink_pc_role_all_of.py
+++ b/intersight/model/fabric_fc_uplink_pc_role_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/fabric_fc_uplink_pc_role_list.py b/intersight/model/fabric_fc_uplink_pc_role_list.py
index eb354cb827..d752ed5786 100644
--- a/intersight/model/fabric_fc_uplink_pc_role_list.py
+++ b/intersight/model/fabric_fc_uplink_pc_role_list.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/fabric_fc_uplink_pc_role_list_all_of.py b/intersight/model/fabric_fc_uplink_pc_role_list_all_of.py
index 0799b43d99..507f864846 100644
--- a/intersight/model/fabric_fc_uplink_pc_role_list_all_of.py
+++ b/intersight/model/fabric_fc_uplink_pc_role_list_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/fabric_fc_uplink_pc_role_response.py b/intersight/model/fabric_fc_uplink_pc_role_response.py
index 2cd926c709..d31ddfed91 100644
--- a/intersight/model/fabric_fc_uplink_pc_role_response.py
+++ b/intersight/model/fabric_fc_uplink_pc_role_response.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/fabric_fc_uplink_role.py b/intersight/model/fabric_fc_uplink_role.py
index 9c6c28acb4..e6baa7e288 100644
--- a/intersight/model/fabric_fc_uplink_role.py
+++ b/intersight/model/fabric_fc_uplink_role.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/fabric_fc_uplink_role_all_of.py b/intersight/model/fabric_fc_uplink_role_all_of.py
index 79e4e183bc..dfbc532e1c 100644
--- a/intersight/model/fabric_fc_uplink_role_all_of.py
+++ b/intersight/model/fabric_fc_uplink_role_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/fabric_fc_uplink_role_list.py b/intersight/model/fabric_fc_uplink_role_list.py
index 49547bda2d..82009e1ea8 100644
--- a/intersight/model/fabric_fc_uplink_role_list.py
+++ b/intersight/model/fabric_fc_uplink_role_list.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/fabric_fc_uplink_role_list_all_of.py b/intersight/model/fabric_fc_uplink_role_list_all_of.py
index 7f8cc8bdec..a63d8971fb 100644
--- a/intersight/model/fabric_fc_uplink_role_list_all_of.py
+++ b/intersight/model/fabric_fc_uplink_role_list_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/fabric_fc_uplink_role_response.py b/intersight/model/fabric_fc_uplink_role_response.py
index 5acf93e278..2ab20b27e6 100644
--- a/intersight/model/fabric_fc_uplink_role_response.py
+++ b/intersight/model/fabric_fc_uplink_role_response.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/fabric_fcoe_uplink_pc_role.py b/intersight/model/fabric_fcoe_uplink_pc_role.py
index b6daddc78d..82a18e2b84 100644
--- a/intersight/model/fabric_fcoe_uplink_pc_role.py
+++ b/intersight/model/fabric_fcoe_uplink_pc_role.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/fabric_fcoe_uplink_pc_role_all_of.py b/intersight/model/fabric_fcoe_uplink_pc_role_all_of.py
index 448d6866e7..6a22315dd7 100644
--- a/intersight/model/fabric_fcoe_uplink_pc_role_all_of.py
+++ b/intersight/model/fabric_fcoe_uplink_pc_role_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/fabric_fcoe_uplink_pc_role_list.py b/intersight/model/fabric_fcoe_uplink_pc_role_list.py
index a329714e22..63c4df1d3e 100644
--- a/intersight/model/fabric_fcoe_uplink_pc_role_list.py
+++ b/intersight/model/fabric_fcoe_uplink_pc_role_list.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/fabric_fcoe_uplink_pc_role_list_all_of.py b/intersight/model/fabric_fcoe_uplink_pc_role_list_all_of.py
index c41eb4aaba..d50738f901 100644
--- a/intersight/model/fabric_fcoe_uplink_pc_role_list_all_of.py
+++ b/intersight/model/fabric_fcoe_uplink_pc_role_list_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/fabric_fcoe_uplink_pc_role_response.py b/intersight/model/fabric_fcoe_uplink_pc_role_response.py
index 289ca98ec9..b6dbc87726 100644
--- a/intersight/model/fabric_fcoe_uplink_pc_role_response.py
+++ b/intersight/model/fabric_fcoe_uplink_pc_role_response.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/fabric_fcoe_uplink_role.py b/intersight/model/fabric_fcoe_uplink_role.py
index 37f0f4c0b8..d57be90ebe 100644
--- a/intersight/model/fabric_fcoe_uplink_role.py
+++ b/intersight/model/fabric_fcoe_uplink_role.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/fabric_fcoe_uplink_role_all_of.py b/intersight/model/fabric_fcoe_uplink_role_all_of.py
index 0dccb715e2..403e13df04 100644
--- a/intersight/model/fabric_fcoe_uplink_role_all_of.py
+++ b/intersight/model/fabric_fcoe_uplink_role_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/fabric_fcoe_uplink_role_list.py b/intersight/model/fabric_fcoe_uplink_role_list.py
index 48b6caf3b2..31307de7da 100644
--- a/intersight/model/fabric_fcoe_uplink_role_list.py
+++ b/intersight/model/fabric_fcoe_uplink_role_list.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/fabric_fcoe_uplink_role_list_all_of.py b/intersight/model/fabric_fcoe_uplink_role_list_all_of.py
index 681e6c160a..9c123c46c5 100644
--- a/intersight/model/fabric_fcoe_uplink_role_list_all_of.py
+++ b/intersight/model/fabric_fcoe_uplink_role_list_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/fabric_fcoe_uplink_role_response.py b/intersight/model/fabric_fcoe_uplink_role_response.py
index de3b7d1127..b3bebc462a 100644
--- a/intersight/model/fabric_fcoe_uplink_role_response.py
+++ b/intersight/model/fabric_fcoe_uplink_role_response.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/fabric_flow_control_policy.py b/intersight/model/fabric_flow_control_policy.py
index 380a37613d..ea20a23bb6 100644
--- a/intersight/model/fabric_flow_control_policy.py
+++ b/intersight/model/fabric_flow_control_policy.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/fabric_flow_control_policy_all_of.py b/intersight/model/fabric_flow_control_policy_all_of.py
index cf71ea56ed..6333d66f86 100644
--- a/intersight/model/fabric_flow_control_policy_all_of.py
+++ b/intersight/model/fabric_flow_control_policy_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/fabric_flow_control_policy_list.py b/intersight/model/fabric_flow_control_policy_list.py
index 7f5fb5fc31..e8b246b2c9 100644
--- a/intersight/model/fabric_flow_control_policy_list.py
+++ b/intersight/model/fabric_flow_control_policy_list.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/fabric_flow_control_policy_list_all_of.py b/intersight/model/fabric_flow_control_policy_list_all_of.py
index 100fa671ad..9f6119f7cb 100644
--- a/intersight/model/fabric_flow_control_policy_list_all_of.py
+++ b/intersight/model/fabric_flow_control_policy_list_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/fabric_flow_control_policy_relationship.py b/intersight/model/fabric_flow_control_policy_relationship.py
index ad735139cb..bf768b92c4 100644
--- a/intersight/model/fabric_flow_control_policy_relationship.py
+++ b/intersight/model/fabric_flow_control_policy_relationship.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
@@ -86,6 +86,8 @@ class FabricFlowControlPolicyRelationship(ModelComposed):
},
('object_type',): {
'AAA.AUDITRECORD': "aaa.AuditRecord",
+ 'AAA.RETENTIONCONFIG': "aaa.RetentionConfig",
+ 'AAA.RETENTIONPOLICY': "aaa.RetentionPolicy",
'ACCESS.POLICY': "access.Policy",
'ADAPTER.CONFIGPOLICY': "adapter.ConfigPolicy",
'ADAPTER.EXTETHINTERFACE': "adapter.ExtEthInterface",
@@ -102,6 +104,7 @@ class FabricFlowControlPolicyRelationship(ModelComposed):
'APPLIANCE.DATAEXPORTPOLICY': "appliance.DataExportPolicy",
'APPLIANCE.DEVICECERTIFICATE': "appliance.DeviceCertificate",
'APPLIANCE.DEVICECLAIM': "appliance.DeviceClaim",
+ 'APPLIANCE.DEVICEUPGRADEPOLICY': "appliance.DeviceUpgradePolicy",
'APPLIANCE.DIAGSETTING': "appliance.DiagSetting",
'APPLIANCE.EXTERNALSYSLOGSETTING': "appliance.ExternalSyslogSetting",
'APPLIANCE.FILESYSTEMSTATUS': "appliance.FileSystemStatus",
@@ -150,9 +153,12 @@ class FabricFlowControlPolicyRelationship(ModelComposed):
'BOOT.UEFISHELLDEVICE': "boot.UefiShellDevice",
'BOOT.USBDEVICE': "boot.UsbDevice",
'BOOT.VMEDIADEVICE': "boot.VmediaDevice",
+ 'BULK.EXPORT': "bulk.Export",
+ 'BULK.EXPORTEDITEM': "bulk.ExportedItem",
'BULK.MOCLONER': "bulk.MoCloner",
'BULK.MOMERGER': "bulk.MoMerger",
'BULK.REQUEST': "bulk.Request",
+ 'BULK.SUBREQUESTOBJ': "bulk.SubRequestObj",
'CAPABILITY.ADAPTERUNITDESCRIPTOR': "capability.AdapterUnitDescriptor",
'CAPABILITY.CATALOG': "capability.Catalog",
'CAPABILITY.CHASSISDESCRIPTOR': "capability.ChassisDescriptor",
@@ -216,10 +222,6 @@ class FabricFlowControlPolicyRelationship(ModelComposed):
'COND.HCLSTATUS': "cond.HclStatus",
'COND.HCLSTATUSDETAIL': "cond.HclStatusDetail",
'COND.HCLSTATUSJOB': "cond.HclStatusJob",
- 'CONFIG.EXPORTEDITEM': "config.ExportedItem",
- 'CONFIG.EXPORTER': "config.Exporter",
- 'CONFIG.IMPORTEDITEM': "config.ImportedItem",
- 'CONFIG.IMPORTER': "config.Importer",
'CONNECTORPACK.CONNECTORPACKUPGRADE': "connectorpack.ConnectorPackUpgrade",
'CONNECTORPACK.UPGRADEIMPACT': "connectorpack.UpgradeImpact",
'CRD.CUSTOMRESOURCE': "crd.CustomResource",
@@ -228,6 +230,7 @@ class FabricFlowControlPolicyRelationship(ModelComposed):
'EQUIPMENT.CHASSISIDENTITY': "equipment.ChassisIdentity",
'EQUIPMENT.CHASSISOPERATION': "equipment.ChassisOperation",
'EQUIPMENT.DEVICESUMMARY': "equipment.DeviceSummary",
+ 'EQUIPMENT.EXPANDERMODULE': "equipment.ExpanderModule",
'EQUIPMENT.FAN': "equipment.Fan",
'EQUIPMENT.FANCONTROL': "equipment.FanControl",
'EQUIPMENT.FANMODULE': "equipment.FanModule",
@@ -476,6 +479,7 @@ class FabricFlowControlPolicyRelationship(ModelComposed):
'KUBERNETES.ADDONDEFINITION': "kubernetes.AddonDefinition",
'KUBERNETES.ADDONPOLICY': "kubernetes.AddonPolicy",
'KUBERNETES.ADDONREPOSITORY': "kubernetes.AddonRepository",
+ 'KUBERNETES.BAREMETALNODEPROFILE': "kubernetes.BaremetalNodeProfile",
'KUBERNETES.CATALOG': "kubernetes.Catalog",
'KUBERNETES.CLUSTER': "kubernetes.Cluster",
'KUBERNETES.CLUSTERADDONPROFILE': "kubernetes.ClusterAddonProfile",
@@ -645,6 +649,11 @@ class FabricFlowControlPolicyRelationship(ModelComposed):
'RESOURCE.LICENSERESOURCECOUNT': "resource.LicenseResourceCount",
'RESOURCE.MEMBERSHIP': "resource.Membership",
'RESOURCE.MEMBERSHIPHOLDER': "resource.MembershipHolder",
+ 'RESOURCEPOOL.LEASE': "resourcepool.Lease",
+ 'RESOURCEPOOL.LEASERESOURCE': "resourcepool.LeaseResource",
+ 'RESOURCEPOOL.POOL': "resourcepool.Pool",
+ 'RESOURCEPOOL.POOLMEMBER': "resourcepool.PoolMember",
+ 'RESOURCEPOOL.UNIVERSE': "resourcepool.Universe",
'RPROXY.REVERSEPROXY': "rproxy.ReverseProxy",
'SDCARD.POLICY': "sdcard.Policy",
'SDWAN.PROFILE': "sdwan.Profile",
@@ -760,6 +769,7 @@ class FabricFlowControlPolicyRelationship(ModelComposed):
'TASK.NETAPPSCOPEDINVENTORY': "task.NetAppScopedInventory",
'TASK.PUBLICCLOUDSCOPEDINVENTORY': "task.PublicCloudScopedInventory",
'TASK.PURESCOPEDINVENTORY': "task.PureScopedInventory",
+ 'TASK.SERVERSCOPEDINVENTORY': "task.ServerScopedInventory",
'TECHSUPPORTMANAGEMENT.COLLECTIONCONTROLPOLICY': "techsupportmanagement.CollectionControlPolicy",
'TECHSUPPORTMANAGEMENT.DOWNLOAD': "techsupportmanagement.Download",
'TECHSUPPORTMANAGEMENT.TECHSUPPORTBUNDLE': "techsupportmanagement.TechSupportBundle",
@@ -791,6 +801,7 @@ class FabricFlowControlPolicyRelationship(ModelComposed):
'VIRTUALIZATION.VMWAREVCENTER': "virtualization.VmwareVcenter",
'VIRTUALIZATION.VMWAREVIRTUALDISK': "virtualization.VmwareVirtualDisk",
'VIRTUALIZATION.VMWAREVIRTUALMACHINE': "virtualization.VmwareVirtualMachine",
+ 'VIRTUALIZATION.VMWAREVIRTUALMACHINESNAPSHOT': "virtualization.VmwareVirtualMachineSnapshot",
'VIRTUALIZATION.VMWAREVIRTUALNETWORKINTERFACE': "virtualization.VmwareVirtualNetworkInterface",
'VIRTUALIZATION.VMWAREVIRTUALSWITCH': "virtualization.VmwareVirtualSwitch",
'VMEDIA.POLICY': "vmedia.Policy",
@@ -823,12 +834,14 @@ class FabricFlowControlPolicyRelationship(ModelComposed):
'WORKFLOW.TASKDEFINITION': "workflow.TaskDefinition",
'WORKFLOW.TASKINFO': "workflow.TaskInfo",
'WORKFLOW.TASKMETADATA': "workflow.TaskMetadata",
+ 'WORKFLOW.TASKNOTIFICATION': "workflow.TaskNotification",
'WORKFLOW.TEMPLATEEVALUATION': "workflow.TemplateEvaluation",
'WORKFLOW.TEMPLATEFUNCTIONMETA': "workflow.TemplateFunctionMeta",
'WORKFLOW.WORKFLOWDEFINITION': "workflow.WorkflowDefinition",
'WORKFLOW.WORKFLOWINFO': "workflow.WorkflowInfo",
'WORKFLOW.WORKFLOWMETA': "workflow.WorkflowMeta",
'WORKFLOW.WORKFLOWMETADATA': "workflow.WorkflowMetadata",
+ 'WORKFLOW.WORKFLOWNOTIFICATION': "workflow.WorkflowNotification",
},
}
diff --git a/intersight/model/fabric_flow_control_policy_response.py b/intersight/model/fabric_flow_control_policy_response.py
index d4b02ec6fa..ab80397bef 100644
--- a/intersight/model/fabric_flow_control_policy_response.py
+++ b/intersight/model/fabric_flow_control_policy_response.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/fabric_link_aggregation_policy.py b/intersight/model/fabric_link_aggregation_policy.py
index 18b4ef6a31..34b3a1e725 100644
--- a/intersight/model/fabric_link_aggregation_policy.py
+++ b/intersight/model/fabric_link_aggregation_policy.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/fabric_link_aggregation_policy_all_of.py b/intersight/model/fabric_link_aggregation_policy_all_of.py
index 1c985904db..7a6492d6bd 100644
--- a/intersight/model/fabric_link_aggregation_policy_all_of.py
+++ b/intersight/model/fabric_link_aggregation_policy_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/fabric_link_aggregation_policy_list.py b/intersight/model/fabric_link_aggregation_policy_list.py
index 3db27c4ea4..ed7f6e144a 100644
--- a/intersight/model/fabric_link_aggregation_policy_list.py
+++ b/intersight/model/fabric_link_aggregation_policy_list.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/fabric_link_aggregation_policy_list_all_of.py b/intersight/model/fabric_link_aggregation_policy_list_all_of.py
index 14a4a05dd4..940f7819ab 100644
--- a/intersight/model/fabric_link_aggregation_policy_list_all_of.py
+++ b/intersight/model/fabric_link_aggregation_policy_list_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/fabric_link_aggregation_policy_relationship.py b/intersight/model/fabric_link_aggregation_policy_relationship.py
index cdcb9eda56..c99c279ce3 100644
--- a/intersight/model/fabric_link_aggregation_policy_relationship.py
+++ b/intersight/model/fabric_link_aggregation_policy_relationship.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
@@ -78,6 +78,8 @@ class FabricLinkAggregationPolicyRelationship(ModelComposed):
},
('object_type',): {
'AAA.AUDITRECORD': "aaa.AuditRecord",
+ 'AAA.RETENTIONCONFIG': "aaa.RetentionConfig",
+ 'AAA.RETENTIONPOLICY': "aaa.RetentionPolicy",
'ACCESS.POLICY': "access.Policy",
'ADAPTER.CONFIGPOLICY': "adapter.ConfigPolicy",
'ADAPTER.EXTETHINTERFACE': "adapter.ExtEthInterface",
@@ -94,6 +96,7 @@ class FabricLinkAggregationPolicyRelationship(ModelComposed):
'APPLIANCE.DATAEXPORTPOLICY': "appliance.DataExportPolicy",
'APPLIANCE.DEVICECERTIFICATE': "appliance.DeviceCertificate",
'APPLIANCE.DEVICECLAIM': "appliance.DeviceClaim",
+ 'APPLIANCE.DEVICEUPGRADEPOLICY': "appliance.DeviceUpgradePolicy",
'APPLIANCE.DIAGSETTING': "appliance.DiagSetting",
'APPLIANCE.EXTERNALSYSLOGSETTING': "appliance.ExternalSyslogSetting",
'APPLIANCE.FILESYSTEMSTATUS': "appliance.FileSystemStatus",
@@ -142,9 +145,12 @@ class FabricLinkAggregationPolicyRelationship(ModelComposed):
'BOOT.UEFISHELLDEVICE': "boot.UefiShellDevice",
'BOOT.USBDEVICE': "boot.UsbDevice",
'BOOT.VMEDIADEVICE': "boot.VmediaDevice",
+ 'BULK.EXPORT': "bulk.Export",
+ 'BULK.EXPORTEDITEM': "bulk.ExportedItem",
'BULK.MOCLONER': "bulk.MoCloner",
'BULK.MOMERGER': "bulk.MoMerger",
'BULK.REQUEST': "bulk.Request",
+ 'BULK.SUBREQUESTOBJ': "bulk.SubRequestObj",
'CAPABILITY.ADAPTERUNITDESCRIPTOR': "capability.AdapterUnitDescriptor",
'CAPABILITY.CATALOG': "capability.Catalog",
'CAPABILITY.CHASSISDESCRIPTOR': "capability.ChassisDescriptor",
@@ -208,10 +214,6 @@ class FabricLinkAggregationPolicyRelationship(ModelComposed):
'COND.HCLSTATUS': "cond.HclStatus",
'COND.HCLSTATUSDETAIL': "cond.HclStatusDetail",
'COND.HCLSTATUSJOB': "cond.HclStatusJob",
- 'CONFIG.EXPORTEDITEM': "config.ExportedItem",
- 'CONFIG.EXPORTER': "config.Exporter",
- 'CONFIG.IMPORTEDITEM': "config.ImportedItem",
- 'CONFIG.IMPORTER': "config.Importer",
'CONNECTORPACK.CONNECTORPACKUPGRADE': "connectorpack.ConnectorPackUpgrade",
'CONNECTORPACK.UPGRADEIMPACT': "connectorpack.UpgradeImpact",
'CRD.CUSTOMRESOURCE': "crd.CustomResource",
@@ -220,6 +222,7 @@ class FabricLinkAggregationPolicyRelationship(ModelComposed):
'EQUIPMENT.CHASSISIDENTITY': "equipment.ChassisIdentity",
'EQUIPMENT.CHASSISOPERATION': "equipment.ChassisOperation",
'EQUIPMENT.DEVICESUMMARY': "equipment.DeviceSummary",
+ 'EQUIPMENT.EXPANDERMODULE': "equipment.ExpanderModule",
'EQUIPMENT.FAN': "equipment.Fan",
'EQUIPMENT.FANCONTROL': "equipment.FanControl",
'EQUIPMENT.FANMODULE': "equipment.FanModule",
@@ -468,6 +471,7 @@ class FabricLinkAggregationPolicyRelationship(ModelComposed):
'KUBERNETES.ADDONDEFINITION': "kubernetes.AddonDefinition",
'KUBERNETES.ADDONPOLICY': "kubernetes.AddonPolicy",
'KUBERNETES.ADDONREPOSITORY': "kubernetes.AddonRepository",
+ 'KUBERNETES.BAREMETALNODEPROFILE': "kubernetes.BaremetalNodeProfile",
'KUBERNETES.CATALOG': "kubernetes.Catalog",
'KUBERNETES.CLUSTER': "kubernetes.Cluster",
'KUBERNETES.CLUSTERADDONPROFILE': "kubernetes.ClusterAddonProfile",
@@ -637,6 +641,11 @@ class FabricLinkAggregationPolicyRelationship(ModelComposed):
'RESOURCE.LICENSERESOURCECOUNT': "resource.LicenseResourceCount",
'RESOURCE.MEMBERSHIP': "resource.Membership",
'RESOURCE.MEMBERSHIPHOLDER': "resource.MembershipHolder",
+ 'RESOURCEPOOL.LEASE': "resourcepool.Lease",
+ 'RESOURCEPOOL.LEASERESOURCE': "resourcepool.LeaseResource",
+ 'RESOURCEPOOL.POOL': "resourcepool.Pool",
+ 'RESOURCEPOOL.POOLMEMBER': "resourcepool.PoolMember",
+ 'RESOURCEPOOL.UNIVERSE': "resourcepool.Universe",
'RPROXY.REVERSEPROXY': "rproxy.ReverseProxy",
'SDCARD.POLICY': "sdcard.Policy",
'SDWAN.PROFILE': "sdwan.Profile",
@@ -752,6 +761,7 @@ class FabricLinkAggregationPolicyRelationship(ModelComposed):
'TASK.NETAPPSCOPEDINVENTORY': "task.NetAppScopedInventory",
'TASK.PUBLICCLOUDSCOPEDINVENTORY': "task.PublicCloudScopedInventory",
'TASK.PURESCOPEDINVENTORY': "task.PureScopedInventory",
+ 'TASK.SERVERSCOPEDINVENTORY': "task.ServerScopedInventory",
'TECHSUPPORTMANAGEMENT.COLLECTIONCONTROLPOLICY': "techsupportmanagement.CollectionControlPolicy",
'TECHSUPPORTMANAGEMENT.DOWNLOAD': "techsupportmanagement.Download",
'TECHSUPPORTMANAGEMENT.TECHSUPPORTBUNDLE': "techsupportmanagement.TechSupportBundle",
@@ -783,6 +793,7 @@ class FabricLinkAggregationPolicyRelationship(ModelComposed):
'VIRTUALIZATION.VMWAREVCENTER': "virtualization.VmwareVcenter",
'VIRTUALIZATION.VMWAREVIRTUALDISK': "virtualization.VmwareVirtualDisk",
'VIRTUALIZATION.VMWAREVIRTUALMACHINE': "virtualization.VmwareVirtualMachine",
+ 'VIRTUALIZATION.VMWAREVIRTUALMACHINESNAPSHOT': "virtualization.VmwareVirtualMachineSnapshot",
'VIRTUALIZATION.VMWAREVIRTUALNETWORKINTERFACE': "virtualization.VmwareVirtualNetworkInterface",
'VIRTUALIZATION.VMWAREVIRTUALSWITCH': "virtualization.VmwareVirtualSwitch",
'VMEDIA.POLICY': "vmedia.Policy",
@@ -815,12 +826,14 @@ class FabricLinkAggregationPolicyRelationship(ModelComposed):
'WORKFLOW.TASKDEFINITION': "workflow.TaskDefinition",
'WORKFLOW.TASKINFO': "workflow.TaskInfo",
'WORKFLOW.TASKMETADATA': "workflow.TaskMetadata",
+ 'WORKFLOW.TASKNOTIFICATION': "workflow.TaskNotification",
'WORKFLOW.TEMPLATEEVALUATION': "workflow.TemplateEvaluation",
'WORKFLOW.TEMPLATEFUNCTIONMETA': "workflow.TemplateFunctionMeta",
'WORKFLOW.WORKFLOWDEFINITION': "workflow.WorkflowDefinition",
'WORKFLOW.WORKFLOWINFO': "workflow.WorkflowInfo",
'WORKFLOW.WORKFLOWMETA': "workflow.WorkflowMeta",
'WORKFLOW.WORKFLOWMETADATA': "workflow.WorkflowMetadata",
+ 'WORKFLOW.WORKFLOWNOTIFICATION': "workflow.WorkflowNotification",
},
}
diff --git a/intersight/model/fabric_link_aggregation_policy_response.py b/intersight/model/fabric_link_aggregation_policy_response.py
index 9ec83f80ba..e973245b39 100644
--- a/intersight/model/fabric_link_aggregation_policy_response.py
+++ b/intersight/model/fabric_link_aggregation_policy_response.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/fabric_link_control_policy.py b/intersight/model/fabric_link_control_policy.py
index 602c873d4a..7b9cae2adf 100644
--- a/intersight/model/fabric_link_control_policy.py
+++ b/intersight/model/fabric_link_control_policy.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/fabric_link_control_policy_all_of.py b/intersight/model/fabric_link_control_policy_all_of.py
index 179f64a8a1..6f6c5c1f66 100644
--- a/intersight/model/fabric_link_control_policy_all_of.py
+++ b/intersight/model/fabric_link_control_policy_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/fabric_link_control_policy_list.py b/intersight/model/fabric_link_control_policy_list.py
index 1e4c01535b..3619c71104 100644
--- a/intersight/model/fabric_link_control_policy_list.py
+++ b/intersight/model/fabric_link_control_policy_list.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/fabric_link_control_policy_list_all_of.py b/intersight/model/fabric_link_control_policy_list_all_of.py
index f42f7a2b10..bc7a002ee9 100644
--- a/intersight/model/fabric_link_control_policy_list_all_of.py
+++ b/intersight/model/fabric_link_control_policy_list_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/fabric_link_control_policy_relationship.py b/intersight/model/fabric_link_control_policy_relationship.py
index 5c98451c4d..47321007ad 100644
--- a/intersight/model/fabric_link_control_policy_relationship.py
+++ b/intersight/model/fabric_link_control_policy_relationship.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
@@ -76,6 +76,8 @@ class FabricLinkControlPolicyRelationship(ModelComposed):
},
('object_type',): {
'AAA.AUDITRECORD': "aaa.AuditRecord",
+ 'AAA.RETENTIONCONFIG': "aaa.RetentionConfig",
+ 'AAA.RETENTIONPOLICY': "aaa.RetentionPolicy",
'ACCESS.POLICY': "access.Policy",
'ADAPTER.CONFIGPOLICY': "adapter.ConfigPolicy",
'ADAPTER.EXTETHINTERFACE': "adapter.ExtEthInterface",
@@ -92,6 +94,7 @@ class FabricLinkControlPolicyRelationship(ModelComposed):
'APPLIANCE.DATAEXPORTPOLICY': "appliance.DataExportPolicy",
'APPLIANCE.DEVICECERTIFICATE': "appliance.DeviceCertificate",
'APPLIANCE.DEVICECLAIM': "appliance.DeviceClaim",
+ 'APPLIANCE.DEVICEUPGRADEPOLICY': "appliance.DeviceUpgradePolicy",
'APPLIANCE.DIAGSETTING': "appliance.DiagSetting",
'APPLIANCE.EXTERNALSYSLOGSETTING': "appliance.ExternalSyslogSetting",
'APPLIANCE.FILESYSTEMSTATUS': "appliance.FileSystemStatus",
@@ -140,9 +143,12 @@ class FabricLinkControlPolicyRelationship(ModelComposed):
'BOOT.UEFISHELLDEVICE': "boot.UefiShellDevice",
'BOOT.USBDEVICE': "boot.UsbDevice",
'BOOT.VMEDIADEVICE': "boot.VmediaDevice",
+ 'BULK.EXPORT': "bulk.Export",
+ 'BULK.EXPORTEDITEM': "bulk.ExportedItem",
'BULK.MOCLONER': "bulk.MoCloner",
'BULK.MOMERGER': "bulk.MoMerger",
'BULK.REQUEST': "bulk.Request",
+ 'BULK.SUBREQUESTOBJ': "bulk.SubRequestObj",
'CAPABILITY.ADAPTERUNITDESCRIPTOR': "capability.AdapterUnitDescriptor",
'CAPABILITY.CATALOG': "capability.Catalog",
'CAPABILITY.CHASSISDESCRIPTOR': "capability.ChassisDescriptor",
@@ -206,10 +212,6 @@ class FabricLinkControlPolicyRelationship(ModelComposed):
'COND.HCLSTATUS': "cond.HclStatus",
'COND.HCLSTATUSDETAIL': "cond.HclStatusDetail",
'COND.HCLSTATUSJOB': "cond.HclStatusJob",
- 'CONFIG.EXPORTEDITEM': "config.ExportedItem",
- 'CONFIG.EXPORTER': "config.Exporter",
- 'CONFIG.IMPORTEDITEM': "config.ImportedItem",
- 'CONFIG.IMPORTER': "config.Importer",
'CONNECTORPACK.CONNECTORPACKUPGRADE': "connectorpack.ConnectorPackUpgrade",
'CONNECTORPACK.UPGRADEIMPACT': "connectorpack.UpgradeImpact",
'CRD.CUSTOMRESOURCE': "crd.CustomResource",
@@ -218,6 +220,7 @@ class FabricLinkControlPolicyRelationship(ModelComposed):
'EQUIPMENT.CHASSISIDENTITY': "equipment.ChassisIdentity",
'EQUIPMENT.CHASSISOPERATION': "equipment.ChassisOperation",
'EQUIPMENT.DEVICESUMMARY': "equipment.DeviceSummary",
+ 'EQUIPMENT.EXPANDERMODULE': "equipment.ExpanderModule",
'EQUIPMENT.FAN': "equipment.Fan",
'EQUIPMENT.FANCONTROL': "equipment.FanControl",
'EQUIPMENT.FANMODULE': "equipment.FanModule",
@@ -466,6 +469,7 @@ class FabricLinkControlPolicyRelationship(ModelComposed):
'KUBERNETES.ADDONDEFINITION': "kubernetes.AddonDefinition",
'KUBERNETES.ADDONPOLICY': "kubernetes.AddonPolicy",
'KUBERNETES.ADDONREPOSITORY': "kubernetes.AddonRepository",
+ 'KUBERNETES.BAREMETALNODEPROFILE': "kubernetes.BaremetalNodeProfile",
'KUBERNETES.CATALOG': "kubernetes.Catalog",
'KUBERNETES.CLUSTER': "kubernetes.Cluster",
'KUBERNETES.CLUSTERADDONPROFILE': "kubernetes.ClusterAddonProfile",
@@ -635,6 +639,11 @@ class FabricLinkControlPolicyRelationship(ModelComposed):
'RESOURCE.LICENSERESOURCECOUNT': "resource.LicenseResourceCount",
'RESOURCE.MEMBERSHIP': "resource.Membership",
'RESOURCE.MEMBERSHIPHOLDER': "resource.MembershipHolder",
+ 'RESOURCEPOOL.LEASE': "resourcepool.Lease",
+ 'RESOURCEPOOL.LEASERESOURCE': "resourcepool.LeaseResource",
+ 'RESOURCEPOOL.POOL': "resourcepool.Pool",
+ 'RESOURCEPOOL.POOLMEMBER': "resourcepool.PoolMember",
+ 'RESOURCEPOOL.UNIVERSE': "resourcepool.Universe",
'RPROXY.REVERSEPROXY': "rproxy.ReverseProxy",
'SDCARD.POLICY': "sdcard.Policy",
'SDWAN.PROFILE': "sdwan.Profile",
@@ -750,6 +759,7 @@ class FabricLinkControlPolicyRelationship(ModelComposed):
'TASK.NETAPPSCOPEDINVENTORY': "task.NetAppScopedInventory",
'TASK.PUBLICCLOUDSCOPEDINVENTORY': "task.PublicCloudScopedInventory",
'TASK.PURESCOPEDINVENTORY': "task.PureScopedInventory",
+ 'TASK.SERVERSCOPEDINVENTORY': "task.ServerScopedInventory",
'TECHSUPPORTMANAGEMENT.COLLECTIONCONTROLPOLICY': "techsupportmanagement.CollectionControlPolicy",
'TECHSUPPORTMANAGEMENT.DOWNLOAD': "techsupportmanagement.Download",
'TECHSUPPORTMANAGEMENT.TECHSUPPORTBUNDLE': "techsupportmanagement.TechSupportBundle",
@@ -781,6 +791,7 @@ class FabricLinkControlPolicyRelationship(ModelComposed):
'VIRTUALIZATION.VMWAREVCENTER': "virtualization.VmwareVcenter",
'VIRTUALIZATION.VMWAREVIRTUALDISK': "virtualization.VmwareVirtualDisk",
'VIRTUALIZATION.VMWAREVIRTUALMACHINE': "virtualization.VmwareVirtualMachine",
+ 'VIRTUALIZATION.VMWAREVIRTUALMACHINESNAPSHOT': "virtualization.VmwareVirtualMachineSnapshot",
'VIRTUALIZATION.VMWAREVIRTUALNETWORKINTERFACE': "virtualization.VmwareVirtualNetworkInterface",
'VIRTUALIZATION.VMWAREVIRTUALSWITCH': "virtualization.VmwareVirtualSwitch",
'VMEDIA.POLICY': "vmedia.Policy",
@@ -813,12 +824,14 @@ class FabricLinkControlPolicyRelationship(ModelComposed):
'WORKFLOW.TASKDEFINITION': "workflow.TaskDefinition",
'WORKFLOW.TASKINFO': "workflow.TaskInfo",
'WORKFLOW.TASKMETADATA': "workflow.TaskMetadata",
+ 'WORKFLOW.TASKNOTIFICATION': "workflow.TaskNotification",
'WORKFLOW.TEMPLATEEVALUATION': "workflow.TemplateEvaluation",
'WORKFLOW.TEMPLATEFUNCTIONMETA': "workflow.TemplateFunctionMeta",
'WORKFLOW.WORKFLOWDEFINITION': "workflow.WorkflowDefinition",
'WORKFLOW.WORKFLOWINFO': "workflow.WorkflowInfo",
'WORKFLOW.WORKFLOWMETA': "workflow.WorkflowMeta",
'WORKFLOW.WORKFLOWMETADATA': "workflow.WorkflowMetadata",
+ 'WORKFLOW.WORKFLOWNOTIFICATION': "workflow.WorkflowNotification",
},
}
diff --git a/intersight/model/fabric_link_control_policy_response.py b/intersight/model/fabric_link_control_policy_response.py
index 6fd6831a9c..b86b2aff35 100644
--- a/intersight/model/fabric_link_control_policy_response.py
+++ b/intersight/model/fabric_link_control_policy_response.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/fabric_lldp_settings.py b/intersight/model/fabric_lldp_settings.py
index a65b82025e..c73a99574f 100644
--- a/intersight/model/fabric_lldp_settings.py
+++ b/intersight/model/fabric_lldp_settings.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/fabric_lldp_settings_all_of.py b/intersight/model/fabric_lldp_settings_all_of.py
index 91a87ab4e6..5c559100a4 100644
--- a/intersight/model/fabric_lldp_settings_all_of.py
+++ b/intersight/model/fabric_lldp_settings_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/fabric_mac_aging_settings.py b/intersight/model/fabric_mac_aging_settings.py
index abe34417c2..181fba6fe6 100644
--- a/intersight/model/fabric_mac_aging_settings.py
+++ b/intersight/model/fabric_mac_aging_settings.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/fabric_mac_aging_settings_all_of.py b/intersight/model/fabric_mac_aging_settings_all_of.py
index 632501e67c..b0358fe5c0 100644
--- a/intersight/model/fabric_mac_aging_settings_all_of.py
+++ b/intersight/model/fabric_mac_aging_settings_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/fabric_multicast_policy.py b/intersight/model/fabric_multicast_policy.py
index f3242d4148..eab6906332 100644
--- a/intersight/model/fabric_multicast_policy.py
+++ b/intersight/model/fabric_multicast_policy.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/fabric_multicast_policy_all_of.py b/intersight/model/fabric_multicast_policy_all_of.py
index 569fd7f189..4d19ff413f 100644
--- a/intersight/model/fabric_multicast_policy_all_of.py
+++ b/intersight/model/fabric_multicast_policy_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/fabric_multicast_policy_list.py b/intersight/model/fabric_multicast_policy_list.py
index 6dbe397dd6..503fd47665 100644
--- a/intersight/model/fabric_multicast_policy_list.py
+++ b/intersight/model/fabric_multicast_policy_list.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/fabric_multicast_policy_list_all_of.py b/intersight/model/fabric_multicast_policy_list_all_of.py
index a758778923..fea1ef9ca8 100644
--- a/intersight/model/fabric_multicast_policy_list_all_of.py
+++ b/intersight/model/fabric_multicast_policy_list_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/fabric_multicast_policy_relationship.py b/intersight/model/fabric_multicast_policy_relationship.py
index c81d5bf09d..f915e62521 100644
--- a/intersight/model/fabric_multicast_policy_relationship.py
+++ b/intersight/model/fabric_multicast_policy_relationship.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
@@ -82,6 +82,8 @@ class FabricMulticastPolicyRelationship(ModelComposed):
},
('object_type',): {
'AAA.AUDITRECORD': "aaa.AuditRecord",
+ 'AAA.RETENTIONCONFIG': "aaa.RetentionConfig",
+ 'AAA.RETENTIONPOLICY': "aaa.RetentionPolicy",
'ACCESS.POLICY': "access.Policy",
'ADAPTER.CONFIGPOLICY': "adapter.ConfigPolicy",
'ADAPTER.EXTETHINTERFACE': "adapter.ExtEthInterface",
@@ -98,6 +100,7 @@ class FabricMulticastPolicyRelationship(ModelComposed):
'APPLIANCE.DATAEXPORTPOLICY': "appliance.DataExportPolicy",
'APPLIANCE.DEVICECERTIFICATE': "appliance.DeviceCertificate",
'APPLIANCE.DEVICECLAIM': "appliance.DeviceClaim",
+ 'APPLIANCE.DEVICEUPGRADEPOLICY': "appliance.DeviceUpgradePolicy",
'APPLIANCE.DIAGSETTING': "appliance.DiagSetting",
'APPLIANCE.EXTERNALSYSLOGSETTING': "appliance.ExternalSyslogSetting",
'APPLIANCE.FILESYSTEMSTATUS': "appliance.FileSystemStatus",
@@ -146,9 +149,12 @@ class FabricMulticastPolicyRelationship(ModelComposed):
'BOOT.UEFISHELLDEVICE': "boot.UefiShellDevice",
'BOOT.USBDEVICE': "boot.UsbDevice",
'BOOT.VMEDIADEVICE': "boot.VmediaDevice",
+ 'BULK.EXPORT': "bulk.Export",
+ 'BULK.EXPORTEDITEM': "bulk.ExportedItem",
'BULK.MOCLONER': "bulk.MoCloner",
'BULK.MOMERGER': "bulk.MoMerger",
'BULK.REQUEST': "bulk.Request",
+ 'BULK.SUBREQUESTOBJ': "bulk.SubRequestObj",
'CAPABILITY.ADAPTERUNITDESCRIPTOR': "capability.AdapterUnitDescriptor",
'CAPABILITY.CATALOG': "capability.Catalog",
'CAPABILITY.CHASSISDESCRIPTOR': "capability.ChassisDescriptor",
@@ -212,10 +218,6 @@ class FabricMulticastPolicyRelationship(ModelComposed):
'COND.HCLSTATUS': "cond.HclStatus",
'COND.HCLSTATUSDETAIL': "cond.HclStatusDetail",
'COND.HCLSTATUSJOB': "cond.HclStatusJob",
- 'CONFIG.EXPORTEDITEM': "config.ExportedItem",
- 'CONFIG.EXPORTER': "config.Exporter",
- 'CONFIG.IMPORTEDITEM': "config.ImportedItem",
- 'CONFIG.IMPORTER': "config.Importer",
'CONNECTORPACK.CONNECTORPACKUPGRADE': "connectorpack.ConnectorPackUpgrade",
'CONNECTORPACK.UPGRADEIMPACT': "connectorpack.UpgradeImpact",
'CRD.CUSTOMRESOURCE': "crd.CustomResource",
@@ -224,6 +226,7 @@ class FabricMulticastPolicyRelationship(ModelComposed):
'EQUIPMENT.CHASSISIDENTITY': "equipment.ChassisIdentity",
'EQUIPMENT.CHASSISOPERATION': "equipment.ChassisOperation",
'EQUIPMENT.DEVICESUMMARY': "equipment.DeviceSummary",
+ 'EQUIPMENT.EXPANDERMODULE': "equipment.ExpanderModule",
'EQUIPMENT.FAN': "equipment.Fan",
'EQUIPMENT.FANCONTROL': "equipment.FanControl",
'EQUIPMENT.FANMODULE': "equipment.FanModule",
@@ -472,6 +475,7 @@ class FabricMulticastPolicyRelationship(ModelComposed):
'KUBERNETES.ADDONDEFINITION': "kubernetes.AddonDefinition",
'KUBERNETES.ADDONPOLICY': "kubernetes.AddonPolicy",
'KUBERNETES.ADDONREPOSITORY': "kubernetes.AddonRepository",
+ 'KUBERNETES.BAREMETALNODEPROFILE': "kubernetes.BaremetalNodeProfile",
'KUBERNETES.CATALOG': "kubernetes.Catalog",
'KUBERNETES.CLUSTER': "kubernetes.Cluster",
'KUBERNETES.CLUSTERADDONPROFILE': "kubernetes.ClusterAddonProfile",
@@ -641,6 +645,11 @@ class FabricMulticastPolicyRelationship(ModelComposed):
'RESOURCE.LICENSERESOURCECOUNT': "resource.LicenseResourceCount",
'RESOURCE.MEMBERSHIP': "resource.Membership",
'RESOURCE.MEMBERSHIPHOLDER': "resource.MembershipHolder",
+ 'RESOURCEPOOL.LEASE': "resourcepool.Lease",
+ 'RESOURCEPOOL.LEASERESOURCE': "resourcepool.LeaseResource",
+ 'RESOURCEPOOL.POOL': "resourcepool.Pool",
+ 'RESOURCEPOOL.POOLMEMBER': "resourcepool.PoolMember",
+ 'RESOURCEPOOL.UNIVERSE': "resourcepool.Universe",
'RPROXY.REVERSEPROXY': "rproxy.ReverseProxy",
'SDCARD.POLICY': "sdcard.Policy",
'SDWAN.PROFILE': "sdwan.Profile",
@@ -756,6 +765,7 @@ class FabricMulticastPolicyRelationship(ModelComposed):
'TASK.NETAPPSCOPEDINVENTORY': "task.NetAppScopedInventory",
'TASK.PUBLICCLOUDSCOPEDINVENTORY': "task.PublicCloudScopedInventory",
'TASK.PURESCOPEDINVENTORY': "task.PureScopedInventory",
+ 'TASK.SERVERSCOPEDINVENTORY': "task.ServerScopedInventory",
'TECHSUPPORTMANAGEMENT.COLLECTIONCONTROLPOLICY': "techsupportmanagement.CollectionControlPolicy",
'TECHSUPPORTMANAGEMENT.DOWNLOAD': "techsupportmanagement.Download",
'TECHSUPPORTMANAGEMENT.TECHSUPPORTBUNDLE': "techsupportmanagement.TechSupportBundle",
@@ -787,6 +797,7 @@ class FabricMulticastPolicyRelationship(ModelComposed):
'VIRTUALIZATION.VMWAREVCENTER': "virtualization.VmwareVcenter",
'VIRTUALIZATION.VMWAREVIRTUALDISK': "virtualization.VmwareVirtualDisk",
'VIRTUALIZATION.VMWAREVIRTUALMACHINE': "virtualization.VmwareVirtualMachine",
+ 'VIRTUALIZATION.VMWAREVIRTUALMACHINESNAPSHOT': "virtualization.VmwareVirtualMachineSnapshot",
'VIRTUALIZATION.VMWAREVIRTUALNETWORKINTERFACE': "virtualization.VmwareVirtualNetworkInterface",
'VIRTUALIZATION.VMWAREVIRTUALSWITCH': "virtualization.VmwareVirtualSwitch",
'VMEDIA.POLICY': "vmedia.Policy",
@@ -819,12 +830,14 @@ class FabricMulticastPolicyRelationship(ModelComposed):
'WORKFLOW.TASKDEFINITION': "workflow.TaskDefinition",
'WORKFLOW.TASKINFO': "workflow.TaskInfo",
'WORKFLOW.TASKMETADATA': "workflow.TaskMetadata",
+ 'WORKFLOW.TASKNOTIFICATION': "workflow.TaskNotification",
'WORKFLOW.TEMPLATEEVALUATION': "workflow.TemplateEvaluation",
'WORKFLOW.TEMPLATEFUNCTIONMETA': "workflow.TemplateFunctionMeta",
'WORKFLOW.WORKFLOWDEFINITION': "workflow.WorkflowDefinition",
'WORKFLOW.WORKFLOWINFO': "workflow.WorkflowInfo",
'WORKFLOW.WORKFLOWMETA': "workflow.WorkflowMeta",
'WORKFLOW.WORKFLOWMETADATA': "workflow.WorkflowMetadata",
+ 'WORKFLOW.WORKFLOWNOTIFICATION': "workflow.WorkflowNotification",
},
}
diff --git a/intersight/model/fabric_multicast_policy_response.py b/intersight/model/fabric_multicast_policy_response.py
index c1df0332c3..e4866a0170 100644
--- a/intersight/model/fabric_multicast_policy_response.py
+++ b/intersight/model/fabric_multicast_policy_response.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/fabric_pc_member.py b/intersight/model/fabric_pc_member.py
index 0f4c3205cd..35454303ac 100644
--- a/intersight/model/fabric_pc_member.py
+++ b/intersight/model/fabric_pc_member.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/fabric_pc_member_all_of.py b/intersight/model/fabric_pc_member_all_of.py
index 94d5c92d71..c80501081e 100644
--- a/intersight/model/fabric_pc_member_all_of.py
+++ b/intersight/model/fabric_pc_member_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/fabric_pc_member_list.py b/intersight/model/fabric_pc_member_list.py
index 4a168f6031..2a5faa8076 100644
--- a/intersight/model/fabric_pc_member_list.py
+++ b/intersight/model/fabric_pc_member_list.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/fabric_pc_member_list_all_of.py b/intersight/model/fabric_pc_member_list_all_of.py
index d453a3f4a1..a2c57a8856 100644
--- a/intersight/model/fabric_pc_member_list_all_of.py
+++ b/intersight/model/fabric_pc_member_list_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/fabric_pc_member_response.py b/intersight/model/fabric_pc_member_response.py
index 50a75e03bf..4ff9b9d024 100644
--- a/intersight/model/fabric_pc_member_response.py
+++ b/intersight/model/fabric_pc_member_response.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/fabric_pc_operation.py b/intersight/model/fabric_pc_operation.py
index 04933112df..0c75ffadf0 100644
--- a/intersight/model/fabric_pc_operation.py
+++ b/intersight/model/fabric_pc_operation.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/fabric_pc_operation_all_of.py b/intersight/model/fabric_pc_operation_all_of.py
index 9a1cb25d91..4bc2922ed4 100644
--- a/intersight/model/fabric_pc_operation_all_of.py
+++ b/intersight/model/fabric_pc_operation_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/fabric_pc_operation_list.py b/intersight/model/fabric_pc_operation_list.py
index 79f2329770..13f4c73e44 100644
--- a/intersight/model/fabric_pc_operation_list.py
+++ b/intersight/model/fabric_pc_operation_list.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/fabric_pc_operation_list_all_of.py b/intersight/model/fabric_pc_operation_list_all_of.py
index e74a6c1d07..ac266796e7 100644
--- a/intersight/model/fabric_pc_operation_list_all_of.py
+++ b/intersight/model/fabric_pc_operation_list_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/fabric_pc_operation_response.py b/intersight/model/fabric_pc_operation_response.py
index c44cdc63d7..53a712f79e 100644
--- a/intersight/model/fabric_pc_operation_response.py
+++ b/intersight/model/fabric_pc_operation_response.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/fabric_port_base.py b/intersight/model/fabric_port_base.py
index 7a7333fedc..42ef5941c7 100644
--- a/intersight/model/fabric_port_base.py
+++ b/intersight/model/fabric_port_base.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/fabric_port_base_all_of.py b/intersight/model/fabric_port_base_all_of.py
index dd8656b958..bbae2df337 100644
--- a/intersight/model/fabric_port_base_all_of.py
+++ b/intersight/model/fabric_port_base_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/fabric_port_channel_role.py b/intersight/model/fabric_port_channel_role.py
index b01d95813f..c1d0b4e0f3 100644
--- a/intersight/model/fabric_port_channel_role.py
+++ b/intersight/model/fabric_port_channel_role.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/fabric_port_channel_role_all_of.py b/intersight/model/fabric_port_channel_role_all_of.py
index 5c77bbe24c..a78635d349 100644
--- a/intersight/model/fabric_port_channel_role_all_of.py
+++ b/intersight/model/fabric_port_channel_role_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/fabric_port_identifier.py b/intersight/model/fabric_port_identifier.py
index a8b84429e0..f1ca882359 100644
--- a/intersight/model/fabric_port_identifier.py
+++ b/intersight/model/fabric_port_identifier.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/fabric_port_identifier_all_of.py b/intersight/model/fabric_port_identifier_all_of.py
index acf4df3f6c..6703fc4c74 100644
--- a/intersight/model/fabric_port_identifier_all_of.py
+++ b/intersight/model/fabric_port_identifier_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/fabric_port_mode.py b/intersight/model/fabric_port_mode.py
index 8798ab5525..aeb6952604 100644
--- a/intersight/model/fabric_port_mode.py
+++ b/intersight/model/fabric_port_mode.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/fabric_port_mode_all_of.py b/intersight/model/fabric_port_mode_all_of.py
index 8bf9e58b72..99cd7311e1 100644
--- a/intersight/model/fabric_port_mode_all_of.py
+++ b/intersight/model/fabric_port_mode_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/fabric_port_mode_list.py b/intersight/model/fabric_port_mode_list.py
index 957016f877..e3b86d1d98 100644
--- a/intersight/model/fabric_port_mode_list.py
+++ b/intersight/model/fabric_port_mode_list.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/fabric_port_mode_list_all_of.py b/intersight/model/fabric_port_mode_list_all_of.py
index 876c82cb49..446674cfe5 100644
--- a/intersight/model/fabric_port_mode_list_all_of.py
+++ b/intersight/model/fabric_port_mode_list_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/fabric_port_mode_response.py b/intersight/model/fabric_port_mode_response.py
index b0f2c8c7db..2de9b58e59 100644
--- a/intersight/model/fabric_port_mode_response.py
+++ b/intersight/model/fabric_port_mode_response.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/fabric_port_operation.py b/intersight/model/fabric_port_operation.py
index 3bf028d230..de81b21841 100644
--- a/intersight/model/fabric_port_operation.py
+++ b/intersight/model/fabric_port_operation.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/fabric_port_operation_all_of.py b/intersight/model/fabric_port_operation_all_of.py
index c6270828a0..8527d07a2a 100644
--- a/intersight/model/fabric_port_operation_all_of.py
+++ b/intersight/model/fabric_port_operation_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/fabric_port_operation_list.py b/intersight/model/fabric_port_operation_list.py
index d879297cbb..55269cfc93 100644
--- a/intersight/model/fabric_port_operation_list.py
+++ b/intersight/model/fabric_port_operation_list.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/fabric_port_operation_list_all_of.py b/intersight/model/fabric_port_operation_list_all_of.py
index f4271fc7b2..ba0b144edb 100644
--- a/intersight/model/fabric_port_operation_list_all_of.py
+++ b/intersight/model/fabric_port_operation_list_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/fabric_port_operation_response.py b/intersight/model/fabric_port_operation_response.py
index 1195f8f485..873d05bc33 100644
--- a/intersight/model/fabric_port_operation_response.py
+++ b/intersight/model/fabric_port_operation_response.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/fabric_port_policy.py b/intersight/model/fabric_port_policy.py
index ae606e04d9..e2bc78dab4 100644
--- a/intersight/model/fabric_port_policy.py
+++ b/intersight/model/fabric_port_policy.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/fabric_port_policy_all_of.py b/intersight/model/fabric_port_policy_all_of.py
index 6806f8e7f6..b99408888a 100644
--- a/intersight/model/fabric_port_policy_all_of.py
+++ b/intersight/model/fabric_port_policy_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/fabric_port_policy_list.py b/intersight/model/fabric_port_policy_list.py
index b8e70a8e92..14fdf3aa08 100644
--- a/intersight/model/fabric_port_policy_list.py
+++ b/intersight/model/fabric_port_policy_list.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/fabric_port_policy_list_all_of.py b/intersight/model/fabric_port_policy_list_all_of.py
index 8092302d3c..9d1ae7ef5b 100644
--- a/intersight/model/fabric_port_policy_list_all_of.py
+++ b/intersight/model/fabric_port_policy_list_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/fabric_port_policy_relationship.py b/intersight/model/fabric_port_policy_relationship.py
index 9d5dc0ba28..ebcd1214bc 100644
--- a/intersight/model/fabric_port_policy_relationship.py
+++ b/intersight/model/fabric_port_policy_relationship.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
@@ -81,6 +81,8 @@ class FabricPortPolicyRelationship(ModelComposed):
},
('object_type',): {
'AAA.AUDITRECORD': "aaa.AuditRecord",
+ 'AAA.RETENTIONCONFIG': "aaa.RetentionConfig",
+ 'AAA.RETENTIONPOLICY': "aaa.RetentionPolicy",
'ACCESS.POLICY': "access.Policy",
'ADAPTER.CONFIGPOLICY': "adapter.ConfigPolicy",
'ADAPTER.EXTETHINTERFACE': "adapter.ExtEthInterface",
@@ -97,6 +99,7 @@ class FabricPortPolicyRelationship(ModelComposed):
'APPLIANCE.DATAEXPORTPOLICY': "appliance.DataExportPolicy",
'APPLIANCE.DEVICECERTIFICATE': "appliance.DeviceCertificate",
'APPLIANCE.DEVICECLAIM': "appliance.DeviceClaim",
+ 'APPLIANCE.DEVICEUPGRADEPOLICY': "appliance.DeviceUpgradePolicy",
'APPLIANCE.DIAGSETTING': "appliance.DiagSetting",
'APPLIANCE.EXTERNALSYSLOGSETTING': "appliance.ExternalSyslogSetting",
'APPLIANCE.FILESYSTEMSTATUS': "appliance.FileSystemStatus",
@@ -145,9 +148,12 @@ class FabricPortPolicyRelationship(ModelComposed):
'BOOT.UEFISHELLDEVICE': "boot.UefiShellDevice",
'BOOT.USBDEVICE': "boot.UsbDevice",
'BOOT.VMEDIADEVICE': "boot.VmediaDevice",
+ 'BULK.EXPORT': "bulk.Export",
+ 'BULK.EXPORTEDITEM': "bulk.ExportedItem",
'BULK.MOCLONER': "bulk.MoCloner",
'BULK.MOMERGER': "bulk.MoMerger",
'BULK.REQUEST': "bulk.Request",
+ 'BULK.SUBREQUESTOBJ': "bulk.SubRequestObj",
'CAPABILITY.ADAPTERUNITDESCRIPTOR': "capability.AdapterUnitDescriptor",
'CAPABILITY.CATALOG': "capability.Catalog",
'CAPABILITY.CHASSISDESCRIPTOR': "capability.ChassisDescriptor",
@@ -211,10 +217,6 @@ class FabricPortPolicyRelationship(ModelComposed):
'COND.HCLSTATUS': "cond.HclStatus",
'COND.HCLSTATUSDETAIL': "cond.HclStatusDetail",
'COND.HCLSTATUSJOB': "cond.HclStatusJob",
- 'CONFIG.EXPORTEDITEM': "config.ExportedItem",
- 'CONFIG.EXPORTER': "config.Exporter",
- 'CONFIG.IMPORTEDITEM': "config.ImportedItem",
- 'CONFIG.IMPORTER': "config.Importer",
'CONNECTORPACK.CONNECTORPACKUPGRADE': "connectorpack.ConnectorPackUpgrade",
'CONNECTORPACK.UPGRADEIMPACT': "connectorpack.UpgradeImpact",
'CRD.CUSTOMRESOURCE': "crd.CustomResource",
@@ -223,6 +225,7 @@ class FabricPortPolicyRelationship(ModelComposed):
'EQUIPMENT.CHASSISIDENTITY': "equipment.ChassisIdentity",
'EQUIPMENT.CHASSISOPERATION': "equipment.ChassisOperation",
'EQUIPMENT.DEVICESUMMARY': "equipment.DeviceSummary",
+ 'EQUIPMENT.EXPANDERMODULE': "equipment.ExpanderModule",
'EQUIPMENT.FAN': "equipment.Fan",
'EQUIPMENT.FANCONTROL': "equipment.FanControl",
'EQUIPMENT.FANMODULE': "equipment.FanModule",
@@ -471,6 +474,7 @@ class FabricPortPolicyRelationship(ModelComposed):
'KUBERNETES.ADDONDEFINITION': "kubernetes.AddonDefinition",
'KUBERNETES.ADDONPOLICY': "kubernetes.AddonPolicy",
'KUBERNETES.ADDONREPOSITORY': "kubernetes.AddonRepository",
+ 'KUBERNETES.BAREMETALNODEPROFILE': "kubernetes.BaremetalNodeProfile",
'KUBERNETES.CATALOG': "kubernetes.Catalog",
'KUBERNETES.CLUSTER': "kubernetes.Cluster",
'KUBERNETES.CLUSTERADDONPROFILE': "kubernetes.ClusterAddonProfile",
@@ -640,6 +644,11 @@ class FabricPortPolicyRelationship(ModelComposed):
'RESOURCE.LICENSERESOURCECOUNT': "resource.LicenseResourceCount",
'RESOURCE.MEMBERSHIP': "resource.Membership",
'RESOURCE.MEMBERSHIPHOLDER': "resource.MembershipHolder",
+ 'RESOURCEPOOL.LEASE': "resourcepool.Lease",
+ 'RESOURCEPOOL.LEASERESOURCE': "resourcepool.LeaseResource",
+ 'RESOURCEPOOL.POOL': "resourcepool.Pool",
+ 'RESOURCEPOOL.POOLMEMBER': "resourcepool.PoolMember",
+ 'RESOURCEPOOL.UNIVERSE': "resourcepool.Universe",
'RPROXY.REVERSEPROXY': "rproxy.ReverseProxy",
'SDCARD.POLICY': "sdcard.Policy",
'SDWAN.PROFILE': "sdwan.Profile",
@@ -755,6 +764,7 @@ class FabricPortPolicyRelationship(ModelComposed):
'TASK.NETAPPSCOPEDINVENTORY': "task.NetAppScopedInventory",
'TASK.PUBLICCLOUDSCOPEDINVENTORY': "task.PublicCloudScopedInventory",
'TASK.PURESCOPEDINVENTORY': "task.PureScopedInventory",
+ 'TASK.SERVERSCOPEDINVENTORY': "task.ServerScopedInventory",
'TECHSUPPORTMANAGEMENT.COLLECTIONCONTROLPOLICY': "techsupportmanagement.CollectionControlPolicy",
'TECHSUPPORTMANAGEMENT.DOWNLOAD': "techsupportmanagement.Download",
'TECHSUPPORTMANAGEMENT.TECHSUPPORTBUNDLE': "techsupportmanagement.TechSupportBundle",
@@ -786,6 +796,7 @@ class FabricPortPolicyRelationship(ModelComposed):
'VIRTUALIZATION.VMWAREVCENTER': "virtualization.VmwareVcenter",
'VIRTUALIZATION.VMWAREVIRTUALDISK': "virtualization.VmwareVirtualDisk",
'VIRTUALIZATION.VMWAREVIRTUALMACHINE': "virtualization.VmwareVirtualMachine",
+ 'VIRTUALIZATION.VMWAREVIRTUALMACHINESNAPSHOT': "virtualization.VmwareVirtualMachineSnapshot",
'VIRTUALIZATION.VMWAREVIRTUALNETWORKINTERFACE': "virtualization.VmwareVirtualNetworkInterface",
'VIRTUALIZATION.VMWAREVIRTUALSWITCH': "virtualization.VmwareVirtualSwitch",
'VMEDIA.POLICY': "vmedia.Policy",
@@ -818,12 +829,14 @@ class FabricPortPolicyRelationship(ModelComposed):
'WORKFLOW.TASKDEFINITION': "workflow.TaskDefinition",
'WORKFLOW.TASKINFO': "workflow.TaskInfo",
'WORKFLOW.TASKMETADATA': "workflow.TaskMetadata",
+ 'WORKFLOW.TASKNOTIFICATION': "workflow.TaskNotification",
'WORKFLOW.TEMPLATEEVALUATION': "workflow.TemplateEvaluation",
'WORKFLOW.TEMPLATEFUNCTIONMETA': "workflow.TemplateFunctionMeta",
'WORKFLOW.WORKFLOWDEFINITION': "workflow.WorkflowDefinition",
'WORKFLOW.WORKFLOWINFO': "workflow.WorkflowInfo",
'WORKFLOW.WORKFLOWMETA': "workflow.WorkflowMeta",
'WORKFLOW.WORKFLOWMETADATA': "workflow.WorkflowMetadata",
+ 'WORKFLOW.WORKFLOWNOTIFICATION': "workflow.WorkflowNotification",
},
}
diff --git a/intersight/model/fabric_port_policy_response.py b/intersight/model/fabric_port_policy_response.py
index 632f0fda50..3b78ab0135 100644
--- a/intersight/model/fabric_port_policy_response.py
+++ b/intersight/model/fabric_port_policy_response.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/fabric_port_role.py b/intersight/model/fabric_port_role.py
index 544ea3571e..f44bab6adc 100644
--- a/intersight/model/fabric_port_role.py
+++ b/intersight/model/fabric_port_role.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/fabric_port_role_all_of.py b/intersight/model/fabric_port_role_all_of.py
index e23d780d21..3560358391 100644
--- a/intersight/model/fabric_port_role_all_of.py
+++ b/intersight/model/fabric_port_role_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/fabric_qos_class.py b/intersight/model/fabric_qos_class.py
index 54bf51b1fa..218c2293e4 100644
--- a/intersight/model/fabric_qos_class.py
+++ b/intersight/model/fabric_qos_class.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/fabric_qos_class_all_of.py b/intersight/model/fabric_qos_class_all_of.py
index d846463b82..ae08a51502 100644
--- a/intersight/model/fabric_qos_class_all_of.py
+++ b/intersight/model/fabric_qos_class_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/fabric_server_role.py b/intersight/model/fabric_server_role.py
index f218c4bb76..7246e37266 100644
--- a/intersight/model/fabric_server_role.py
+++ b/intersight/model/fabric_server_role.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/fabric_server_role_list.py b/intersight/model/fabric_server_role_list.py
index fb8921eba0..1db0c079b8 100644
--- a/intersight/model/fabric_server_role_list.py
+++ b/intersight/model/fabric_server_role_list.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/fabric_server_role_list_all_of.py b/intersight/model/fabric_server_role_list_all_of.py
index 82e36ebc55..d6c457c936 100644
--- a/intersight/model/fabric_server_role_list_all_of.py
+++ b/intersight/model/fabric_server_role_list_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/fabric_server_role_response.py b/intersight/model/fabric_server_role_response.py
index 7152a85280..bdd6c38ded 100644
--- a/intersight/model/fabric_server_role_response.py
+++ b/intersight/model/fabric_server_role_response.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/fabric_switch_cluster_profile.py b/intersight/model/fabric_switch_cluster_profile.py
index a58b76a7e9..90f3de5879 100644
--- a/intersight/model/fabric_switch_cluster_profile.py
+++ b/intersight/model/fabric_switch_cluster_profile.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/fabric_switch_cluster_profile_all_of.py b/intersight/model/fabric_switch_cluster_profile_all_of.py
index 1bc20c0aab..0e794c7443 100644
--- a/intersight/model/fabric_switch_cluster_profile_all_of.py
+++ b/intersight/model/fabric_switch_cluster_profile_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/fabric_switch_cluster_profile_list.py b/intersight/model/fabric_switch_cluster_profile_list.py
index 0d06af4377..59703e34c8 100644
--- a/intersight/model/fabric_switch_cluster_profile_list.py
+++ b/intersight/model/fabric_switch_cluster_profile_list.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/fabric_switch_cluster_profile_list_all_of.py b/intersight/model/fabric_switch_cluster_profile_list_all_of.py
index 0315b82a00..ed94cbdefd 100644
--- a/intersight/model/fabric_switch_cluster_profile_list_all_of.py
+++ b/intersight/model/fabric_switch_cluster_profile_list_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/fabric_switch_cluster_profile_relationship.py b/intersight/model/fabric_switch_cluster_profile_relationship.py
index bbe90f4be0..dad7bdc861 100644
--- a/intersight/model/fabric_switch_cluster_profile_relationship.py
+++ b/intersight/model/fabric_switch_cluster_profile_relationship.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
@@ -83,6 +83,8 @@ class FabricSwitchClusterProfileRelationship(ModelComposed):
},
('object_type',): {
'AAA.AUDITRECORD': "aaa.AuditRecord",
+ 'AAA.RETENTIONCONFIG': "aaa.RetentionConfig",
+ 'AAA.RETENTIONPOLICY': "aaa.RetentionPolicy",
'ACCESS.POLICY': "access.Policy",
'ADAPTER.CONFIGPOLICY': "adapter.ConfigPolicy",
'ADAPTER.EXTETHINTERFACE': "adapter.ExtEthInterface",
@@ -99,6 +101,7 @@ class FabricSwitchClusterProfileRelationship(ModelComposed):
'APPLIANCE.DATAEXPORTPOLICY': "appliance.DataExportPolicy",
'APPLIANCE.DEVICECERTIFICATE': "appliance.DeviceCertificate",
'APPLIANCE.DEVICECLAIM': "appliance.DeviceClaim",
+ 'APPLIANCE.DEVICEUPGRADEPOLICY': "appliance.DeviceUpgradePolicy",
'APPLIANCE.DIAGSETTING': "appliance.DiagSetting",
'APPLIANCE.EXTERNALSYSLOGSETTING': "appliance.ExternalSyslogSetting",
'APPLIANCE.FILESYSTEMSTATUS': "appliance.FileSystemStatus",
@@ -147,9 +150,12 @@ class FabricSwitchClusterProfileRelationship(ModelComposed):
'BOOT.UEFISHELLDEVICE': "boot.UefiShellDevice",
'BOOT.USBDEVICE': "boot.UsbDevice",
'BOOT.VMEDIADEVICE': "boot.VmediaDevice",
+ 'BULK.EXPORT': "bulk.Export",
+ 'BULK.EXPORTEDITEM': "bulk.ExportedItem",
'BULK.MOCLONER': "bulk.MoCloner",
'BULK.MOMERGER': "bulk.MoMerger",
'BULK.REQUEST': "bulk.Request",
+ 'BULK.SUBREQUESTOBJ': "bulk.SubRequestObj",
'CAPABILITY.ADAPTERUNITDESCRIPTOR': "capability.AdapterUnitDescriptor",
'CAPABILITY.CATALOG': "capability.Catalog",
'CAPABILITY.CHASSISDESCRIPTOR': "capability.ChassisDescriptor",
@@ -213,10 +219,6 @@ class FabricSwitchClusterProfileRelationship(ModelComposed):
'COND.HCLSTATUS': "cond.HclStatus",
'COND.HCLSTATUSDETAIL': "cond.HclStatusDetail",
'COND.HCLSTATUSJOB': "cond.HclStatusJob",
- 'CONFIG.EXPORTEDITEM': "config.ExportedItem",
- 'CONFIG.EXPORTER': "config.Exporter",
- 'CONFIG.IMPORTEDITEM': "config.ImportedItem",
- 'CONFIG.IMPORTER': "config.Importer",
'CONNECTORPACK.CONNECTORPACKUPGRADE': "connectorpack.ConnectorPackUpgrade",
'CONNECTORPACK.UPGRADEIMPACT': "connectorpack.UpgradeImpact",
'CRD.CUSTOMRESOURCE': "crd.CustomResource",
@@ -225,6 +227,7 @@ class FabricSwitchClusterProfileRelationship(ModelComposed):
'EQUIPMENT.CHASSISIDENTITY': "equipment.ChassisIdentity",
'EQUIPMENT.CHASSISOPERATION': "equipment.ChassisOperation",
'EQUIPMENT.DEVICESUMMARY': "equipment.DeviceSummary",
+ 'EQUIPMENT.EXPANDERMODULE': "equipment.ExpanderModule",
'EQUIPMENT.FAN': "equipment.Fan",
'EQUIPMENT.FANCONTROL': "equipment.FanControl",
'EQUIPMENT.FANMODULE': "equipment.FanModule",
@@ -473,6 +476,7 @@ class FabricSwitchClusterProfileRelationship(ModelComposed):
'KUBERNETES.ADDONDEFINITION': "kubernetes.AddonDefinition",
'KUBERNETES.ADDONPOLICY': "kubernetes.AddonPolicy",
'KUBERNETES.ADDONREPOSITORY': "kubernetes.AddonRepository",
+ 'KUBERNETES.BAREMETALNODEPROFILE': "kubernetes.BaremetalNodeProfile",
'KUBERNETES.CATALOG': "kubernetes.Catalog",
'KUBERNETES.CLUSTER': "kubernetes.Cluster",
'KUBERNETES.CLUSTERADDONPROFILE': "kubernetes.ClusterAddonProfile",
@@ -642,6 +646,11 @@ class FabricSwitchClusterProfileRelationship(ModelComposed):
'RESOURCE.LICENSERESOURCECOUNT': "resource.LicenseResourceCount",
'RESOURCE.MEMBERSHIP': "resource.Membership",
'RESOURCE.MEMBERSHIPHOLDER': "resource.MembershipHolder",
+ 'RESOURCEPOOL.LEASE': "resourcepool.Lease",
+ 'RESOURCEPOOL.LEASERESOURCE': "resourcepool.LeaseResource",
+ 'RESOURCEPOOL.POOL': "resourcepool.Pool",
+ 'RESOURCEPOOL.POOLMEMBER': "resourcepool.PoolMember",
+ 'RESOURCEPOOL.UNIVERSE': "resourcepool.Universe",
'RPROXY.REVERSEPROXY': "rproxy.ReverseProxy",
'SDCARD.POLICY': "sdcard.Policy",
'SDWAN.PROFILE': "sdwan.Profile",
@@ -757,6 +766,7 @@ class FabricSwitchClusterProfileRelationship(ModelComposed):
'TASK.NETAPPSCOPEDINVENTORY': "task.NetAppScopedInventory",
'TASK.PUBLICCLOUDSCOPEDINVENTORY': "task.PublicCloudScopedInventory",
'TASK.PURESCOPEDINVENTORY': "task.PureScopedInventory",
+ 'TASK.SERVERSCOPEDINVENTORY': "task.ServerScopedInventory",
'TECHSUPPORTMANAGEMENT.COLLECTIONCONTROLPOLICY': "techsupportmanagement.CollectionControlPolicy",
'TECHSUPPORTMANAGEMENT.DOWNLOAD': "techsupportmanagement.Download",
'TECHSUPPORTMANAGEMENT.TECHSUPPORTBUNDLE': "techsupportmanagement.TechSupportBundle",
@@ -788,6 +798,7 @@ class FabricSwitchClusterProfileRelationship(ModelComposed):
'VIRTUALIZATION.VMWAREVCENTER': "virtualization.VmwareVcenter",
'VIRTUALIZATION.VMWAREVIRTUALDISK': "virtualization.VmwareVirtualDisk",
'VIRTUALIZATION.VMWAREVIRTUALMACHINE': "virtualization.VmwareVirtualMachine",
+ 'VIRTUALIZATION.VMWAREVIRTUALMACHINESNAPSHOT': "virtualization.VmwareVirtualMachineSnapshot",
'VIRTUALIZATION.VMWAREVIRTUALNETWORKINTERFACE': "virtualization.VmwareVirtualNetworkInterface",
'VIRTUALIZATION.VMWAREVIRTUALSWITCH': "virtualization.VmwareVirtualSwitch",
'VMEDIA.POLICY': "vmedia.Policy",
@@ -820,12 +831,14 @@ class FabricSwitchClusterProfileRelationship(ModelComposed):
'WORKFLOW.TASKDEFINITION': "workflow.TaskDefinition",
'WORKFLOW.TASKINFO': "workflow.TaskInfo",
'WORKFLOW.TASKMETADATA': "workflow.TaskMetadata",
+ 'WORKFLOW.TASKNOTIFICATION': "workflow.TaskNotification",
'WORKFLOW.TEMPLATEEVALUATION': "workflow.TemplateEvaluation",
'WORKFLOW.TEMPLATEFUNCTIONMETA': "workflow.TemplateFunctionMeta",
'WORKFLOW.WORKFLOWDEFINITION': "workflow.WorkflowDefinition",
'WORKFLOW.WORKFLOWINFO': "workflow.WorkflowInfo",
'WORKFLOW.WORKFLOWMETA': "workflow.WorkflowMeta",
'WORKFLOW.WORKFLOWMETADATA': "workflow.WorkflowMetadata",
+ 'WORKFLOW.WORKFLOWNOTIFICATION': "workflow.WorkflowNotification",
},
}
diff --git a/intersight/model/fabric_switch_cluster_profile_response.py b/intersight/model/fabric_switch_cluster_profile_response.py
index 5ddc87ef7e..ea2700c30f 100644
--- a/intersight/model/fabric_switch_cluster_profile_response.py
+++ b/intersight/model/fabric_switch_cluster_profile_response.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/fabric_switch_control_policy.py b/intersight/model/fabric_switch_control_policy.py
index 7dff4774f9..7825358d0a 100644
--- a/intersight/model/fabric_switch_control_policy.py
+++ b/intersight/model/fabric_switch_control_policy.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/fabric_switch_control_policy_all_of.py b/intersight/model/fabric_switch_control_policy_all_of.py
index fb3f221dab..ee77d8ee79 100644
--- a/intersight/model/fabric_switch_control_policy_all_of.py
+++ b/intersight/model/fabric_switch_control_policy_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/fabric_switch_control_policy_list.py b/intersight/model/fabric_switch_control_policy_list.py
index 42d310fc32..dd10d992f6 100644
--- a/intersight/model/fabric_switch_control_policy_list.py
+++ b/intersight/model/fabric_switch_control_policy_list.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/fabric_switch_control_policy_list_all_of.py b/intersight/model/fabric_switch_control_policy_list_all_of.py
index 0eb76136d4..5d3dfd790d 100644
--- a/intersight/model/fabric_switch_control_policy_list_all_of.py
+++ b/intersight/model/fabric_switch_control_policy_list_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/fabric_switch_control_policy_response.py b/intersight/model/fabric_switch_control_policy_response.py
index 53294e3534..faacd0c959 100644
--- a/intersight/model/fabric_switch_control_policy_response.py
+++ b/intersight/model/fabric_switch_control_policy_response.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/fabric_switch_profile.py b/intersight/model/fabric_switch_profile.py
index da251c2fef..2a1ed8e4da 100644
--- a/intersight/model/fabric_switch_profile.py
+++ b/intersight/model/fabric_switch_profile.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/fabric_switch_profile_all_of.py b/intersight/model/fabric_switch_profile_all_of.py
index 1e1bb477da..bf48be14de 100644
--- a/intersight/model/fabric_switch_profile_all_of.py
+++ b/intersight/model/fabric_switch_profile_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/fabric_switch_profile_list.py b/intersight/model/fabric_switch_profile_list.py
index 2ca3e7cb71..cb6acdb007 100644
--- a/intersight/model/fabric_switch_profile_list.py
+++ b/intersight/model/fabric_switch_profile_list.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/fabric_switch_profile_list_all_of.py b/intersight/model/fabric_switch_profile_list_all_of.py
index abe3ce9b6c..a778558438 100644
--- a/intersight/model/fabric_switch_profile_list_all_of.py
+++ b/intersight/model/fabric_switch_profile_list_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/fabric_switch_profile_relationship.py b/intersight/model/fabric_switch_profile_relationship.py
index 0f976f3088..799a52a0b2 100644
--- a/intersight/model/fabric_switch_profile_relationship.py
+++ b/intersight/model/fabric_switch_profile_relationship.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
@@ -93,6 +93,8 @@ class FabricSwitchProfileRelationship(ModelComposed):
},
('object_type',): {
'AAA.AUDITRECORD': "aaa.AuditRecord",
+ 'AAA.RETENTIONCONFIG': "aaa.RetentionConfig",
+ 'AAA.RETENTIONPOLICY': "aaa.RetentionPolicy",
'ACCESS.POLICY': "access.Policy",
'ADAPTER.CONFIGPOLICY': "adapter.ConfigPolicy",
'ADAPTER.EXTETHINTERFACE': "adapter.ExtEthInterface",
@@ -109,6 +111,7 @@ class FabricSwitchProfileRelationship(ModelComposed):
'APPLIANCE.DATAEXPORTPOLICY': "appliance.DataExportPolicy",
'APPLIANCE.DEVICECERTIFICATE': "appliance.DeviceCertificate",
'APPLIANCE.DEVICECLAIM': "appliance.DeviceClaim",
+ 'APPLIANCE.DEVICEUPGRADEPOLICY': "appliance.DeviceUpgradePolicy",
'APPLIANCE.DIAGSETTING': "appliance.DiagSetting",
'APPLIANCE.EXTERNALSYSLOGSETTING': "appliance.ExternalSyslogSetting",
'APPLIANCE.FILESYSTEMSTATUS': "appliance.FileSystemStatus",
@@ -157,9 +160,12 @@ class FabricSwitchProfileRelationship(ModelComposed):
'BOOT.UEFISHELLDEVICE': "boot.UefiShellDevice",
'BOOT.USBDEVICE': "boot.UsbDevice",
'BOOT.VMEDIADEVICE': "boot.VmediaDevice",
+ 'BULK.EXPORT': "bulk.Export",
+ 'BULK.EXPORTEDITEM': "bulk.ExportedItem",
'BULK.MOCLONER': "bulk.MoCloner",
'BULK.MOMERGER': "bulk.MoMerger",
'BULK.REQUEST': "bulk.Request",
+ 'BULK.SUBREQUESTOBJ': "bulk.SubRequestObj",
'CAPABILITY.ADAPTERUNITDESCRIPTOR': "capability.AdapterUnitDescriptor",
'CAPABILITY.CATALOG': "capability.Catalog",
'CAPABILITY.CHASSISDESCRIPTOR': "capability.ChassisDescriptor",
@@ -223,10 +229,6 @@ class FabricSwitchProfileRelationship(ModelComposed):
'COND.HCLSTATUS': "cond.HclStatus",
'COND.HCLSTATUSDETAIL': "cond.HclStatusDetail",
'COND.HCLSTATUSJOB': "cond.HclStatusJob",
- 'CONFIG.EXPORTEDITEM': "config.ExportedItem",
- 'CONFIG.EXPORTER': "config.Exporter",
- 'CONFIG.IMPORTEDITEM': "config.ImportedItem",
- 'CONFIG.IMPORTER': "config.Importer",
'CONNECTORPACK.CONNECTORPACKUPGRADE': "connectorpack.ConnectorPackUpgrade",
'CONNECTORPACK.UPGRADEIMPACT': "connectorpack.UpgradeImpact",
'CRD.CUSTOMRESOURCE': "crd.CustomResource",
@@ -235,6 +237,7 @@ class FabricSwitchProfileRelationship(ModelComposed):
'EQUIPMENT.CHASSISIDENTITY': "equipment.ChassisIdentity",
'EQUIPMENT.CHASSISOPERATION': "equipment.ChassisOperation",
'EQUIPMENT.DEVICESUMMARY': "equipment.DeviceSummary",
+ 'EQUIPMENT.EXPANDERMODULE': "equipment.ExpanderModule",
'EQUIPMENT.FAN': "equipment.Fan",
'EQUIPMENT.FANCONTROL': "equipment.FanControl",
'EQUIPMENT.FANMODULE': "equipment.FanModule",
@@ -483,6 +486,7 @@ class FabricSwitchProfileRelationship(ModelComposed):
'KUBERNETES.ADDONDEFINITION': "kubernetes.AddonDefinition",
'KUBERNETES.ADDONPOLICY': "kubernetes.AddonPolicy",
'KUBERNETES.ADDONREPOSITORY': "kubernetes.AddonRepository",
+ 'KUBERNETES.BAREMETALNODEPROFILE': "kubernetes.BaremetalNodeProfile",
'KUBERNETES.CATALOG': "kubernetes.Catalog",
'KUBERNETES.CLUSTER': "kubernetes.Cluster",
'KUBERNETES.CLUSTERADDONPROFILE': "kubernetes.ClusterAddonProfile",
@@ -652,6 +656,11 @@ class FabricSwitchProfileRelationship(ModelComposed):
'RESOURCE.LICENSERESOURCECOUNT': "resource.LicenseResourceCount",
'RESOURCE.MEMBERSHIP': "resource.Membership",
'RESOURCE.MEMBERSHIPHOLDER': "resource.MembershipHolder",
+ 'RESOURCEPOOL.LEASE': "resourcepool.Lease",
+ 'RESOURCEPOOL.LEASERESOURCE': "resourcepool.LeaseResource",
+ 'RESOURCEPOOL.POOL': "resourcepool.Pool",
+ 'RESOURCEPOOL.POOLMEMBER': "resourcepool.PoolMember",
+ 'RESOURCEPOOL.UNIVERSE': "resourcepool.Universe",
'RPROXY.REVERSEPROXY': "rproxy.ReverseProxy",
'SDCARD.POLICY': "sdcard.Policy",
'SDWAN.PROFILE': "sdwan.Profile",
@@ -767,6 +776,7 @@ class FabricSwitchProfileRelationship(ModelComposed):
'TASK.NETAPPSCOPEDINVENTORY': "task.NetAppScopedInventory",
'TASK.PUBLICCLOUDSCOPEDINVENTORY': "task.PublicCloudScopedInventory",
'TASK.PURESCOPEDINVENTORY': "task.PureScopedInventory",
+ 'TASK.SERVERSCOPEDINVENTORY': "task.ServerScopedInventory",
'TECHSUPPORTMANAGEMENT.COLLECTIONCONTROLPOLICY': "techsupportmanagement.CollectionControlPolicy",
'TECHSUPPORTMANAGEMENT.DOWNLOAD': "techsupportmanagement.Download",
'TECHSUPPORTMANAGEMENT.TECHSUPPORTBUNDLE': "techsupportmanagement.TechSupportBundle",
@@ -798,6 +808,7 @@ class FabricSwitchProfileRelationship(ModelComposed):
'VIRTUALIZATION.VMWAREVCENTER': "virtualization.VmwareVcenter",
'VIRTUALIZATION.VMWAREVIRTUALDISK': "virtualization.VmwareVirtualDisk",
'VIRTUALIZATION.VMWAREVIRTUALMACHINE': "virtualization.VmwareVirtualMachine",
+ 'VIRTUALIZATION.VMWAREVIRTUALMACHINESNAPSHOT': "virtualization.VmwareVirtualMachineSnapshot",
'VIRTUALIZATION.VMWAREVIRTUALNETWORKINTERFACE': "virtualization.VmwareVirtualNetworkInterface",
'VIRTUALIZATION.VMWAREVIRTUALSWITCH': "virtualization.VmwareVirtualSwitch",
'VMEDIA.POLICY': "vmedia.Policy",
@@ -830,12 +841,14 @@ class FabricSwitchProfileRelationship(ModelComposed):
'WORKFLOW.TASKDEFINITION': "workflow.TaskDefinition",
'WORKFLOW.TASKINFO': "workflow.TaskInfo",
'WORKFLOW.TASKMETADATA': "workflow.TaskMetadata",
+ 'WORKFLOW.TASKNOTIFICATION': "workflow.TaskNotification",
'WORKFLOW.TEMPLATEEVALUATION': "workflow.TemplateEvaluation",
'WORKFLOW.TEMPLATEFUNCTIONMETA': "workflow.TemplateFunctionMeta",
'WORKFLOW.WORKFLOWDEFINITION': "workflow.WorkflowDefinition",
'WORKFLOW.WORKFLOWINFO': "workflow.WorkflowInfo",
'WORKFLOW.WORKFLOWMETA': "workflow.WorkflowMeta",
'WORKFLOW.WORKFLOWMETADATA': "workflow.WorkflowMetadata",
+ 'WORKFLOW.WORKFLOWNOTIFICATION': "workflow.WorkflowNotification",
},
}
diff --git a/intersight/model/fabric_switch_profile_response.py b/intersight/model/fabric_switch_profile_response.py
index a618911db0..07bc8186a9 100644
--- a/intersight/model/fabric_switch_profile_response.py
+++ b/intersight/model/fabric_switch_profile_response.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/fabric_system_qos_policy.py b/intersight/model/fabric_system_qos_policy.py
index 09679821e3..7cb8c93ca8 100644
--- a/intersight/model/fabric_system_qos_policy.py
+++ b/intersight/model/fabric_system_qos_policy.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/fabric_system_qos_policy_all_of.py b/intersight/model/fabric_system_qos_policy_all_of.py
index 4d46db476c..54d623c323 100644
--- a/intersight/model/fabric_system_qos_policy_all_of.py
+++ b/intersight/model/fabric_system_qos_policy_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/fabric_system_qos_policy_list.py b/intersight/model/fabric_system_qos_policy_list.py
index ef3a64c4da..7a74a4399f 100644
--- a/intersight/model/fabric_system_qos_policy_list.py
+++ b/intersight/model/fabric_system_qos_policy_list.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/fabric_system_qos_policy_list_all_of.py b/intersight/model/fabric_system_qos_policy_list_all_of.py
index 0801c00aba..288e65c789 100644
--- a/intersight/model/fabric_system_qos_policy_list_all_of.py
+++ b/intersight/model/fabric_system_qos_policy_list_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/fabric_system_qos_policy_response.py b/intersight/model/fabric_system_qos_policy_response.py
index 8784b3f13e..fcf9b3f003 100644
--- a/intersight/model/fabric_system_qos_policy_response.py
+++ b/intersight/model/fabric_system_qos_policy_response.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/fabric_transceiver_role.py b/intersight/model/fabric_transceiver_role.py
index 2b63136c61..2f42472ed3 100644
--- a/intersight/model/fabric_transceiver_role.py
+++ b/intersight/model/fabric_transceiver_role.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/fabric_transceiver_role_all_of.py b/intersight/model/fabric_transceiver_role_all_of.py
index 0b6da39aef..637f1b2569 100644
--- a/intersight/model/fabric_transceiver_role_all_of.py
+++ b/intersight/model/fabric_transceiver_role_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/fabric_udld_global_settings.py b/intersight/model/fabric_udld_global_settings.py
index 217f5e0603..d37055f154 100644
--- a/intersight/model/fabric_udld_global_settings.py
+++ b/intersight/model/fabric_udld_global_settings.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/fabric_udld_global_settings_all_of.py b/intersight/model/fabric_udld_global_settings_all_of.py
index e04f84d44a..45c8aa69a0 100644
--- a/intersight/model/fabric_udld_global_settings_all_of.py
+++ b/intersight/model/fabric_udld_global_settings_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/fabric_udld_settings.py b/intersight/model/fabric_udld_settings.py
index 1b4cc312f8..67bb83b857 100644
--- a/intersight/model/fabric_udld_settings.py
+++ b/intersight/model/fabric_udld_settings.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/fabric_udld_settings_all_of.py b/intersight/model/fabric_udld_settings_all_of.py
index 9796e89816..bade7f1166 100644
--- a/intersight/model/fabric_udld_settings_all_of.py
+++ b/intersight/model/fabric_udld_settings_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/fabric_uplink_pc_role.py b/intersight/model/fabric_uplink_pc_role.py
index 8b355c62fa..aee8ae04b7 100644
--- a/intersight/model/fabric_uplink_pc_role.py
+++ b/intersight/model/fabric_uplink_pc_role.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/fabric_uplink_pc_role_all_of.py b/intersight/model/fabric_uplink_pc_role_all_of.py
index f268f6a50f..3a29984ec6 100644
--- a/intersight/model/fabric_uplink_pc_role_all_of.py
+++ b/intersight/model/fabric_uplink_pc_role_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/fabric_uplink_pc_role_list.py b/intersight/model/fabric_uplink_pc_role_list.py
index ebf49538fc..f0e43c32f2 100644
--- a/intersight/model/fabric_uplink_pc_role_list.py
+++ b/intersight/model/fabric_uplink_pc_role_list.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/fabric_uplink_pc_role_list_all_of.py b/intersight/model/fabric_uplink_pc_role_list_all_of.py
index 1f1a5b259a..8144f9666d 100644
--- a/intersight/model/fabric_uplink_pc_role_list_all_of.py
+++ b/intersight/model/fabric_uplink_pc_role_list_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/fabric_uplink_pc_role_response.py b/intersight/model/fabric_uplink_pc_role_response.py
index 241b0cd8bb..522a2300fe 100644
--- a/intersight/model/fabric_uplink_pc_role_response.py
+++ b/intersight/model/fabric_uplink_pc_role_response.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/fabric_uplink_role.py b/intersight/model/fabric_uplink_role.py
index e953414e70..6667825cc1 100644
--- a/intersight/model/fabric_uplink_role.py
+++ b/intersight/model/fabric_uplink_role.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/fabric_uplink_role_all_of.py b/intersight/model/fabric_uplink_role_all_of.py
index b41ffe37cf..a435e69602 100644
--- a/intersight/model/fabric_uplink_role_all_of.py
+++ b/intersight/model/fabric_uplink_role_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/fabric_uplink_role_list.py b/intersight/model/fabric_uplink_role_list.py
index 121547fe5a..473b580980 100644
--- a/intersight/model/fabric_uplink_role_list.py
+++ b/intersight/model/fabric_uplink_role_list.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/fabric_uplink_role_list_all_of.py b/intersight/model/fabric_uplink_role_list_all_of.py
index ebbf904f4a..36015f4af2 100644
--- a/intersight/model/fabric_uplink_role_list_all_of.py
+++ b/intersight/model/fabric_uplink_role_list_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/fabric_uplink_role_response.py b/intersight/model/fabric_uplink_role_response.py
index 1e0c39f91d..91b6b4cdbd 100644
--- a/intersight/model/fabric_uplink_role_response.py
+++ b/intersight/model/fabric_uplink_role_response.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/fabric_vlan.py b/intersight/model/fabric_vlan.py
index 5182170a89..ef21f993c2 100644
--- a/intersight/model/fabric_vlan.py
+++ b/intersight/model/fabric_vlan.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/fabric_vlan_all_of.py b/intersight/model/fabric_vlan_all_of.py
index a70ce6ba5c..9ec12fd3ee 100644
--- a/intersight/model/fabric_vlan_all_of.py
+++ b/intersight/model/fabric_vlan_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/fabric_vlan_list.py b/intersight/model/fabric_vlan_list.py
index 8f27dc732a..92f0886a21 100644
--- a/intersight/model/fabric_vlan_list.py
+++ b/intersight/model/fabric_vlan_list.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/fabric_vlan_list_all_of.py b/intersight/model/fabric_vlan_list_all_of.py
index c7f2917088..9d84356637 100644
--- a/intersight/model/fabric_vlan_list_all_of.py
+++ b/intersight/model/fabric_vlan_list_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/fabric_vlan_response.py b/intersight/model/fabric_vlan_response.py
index 47a49ee4fe..eb3fb1ee82 100644
--- a/intersight/model/fabric_vlan_response.py
+++ b/intersight/model/fabric_vlan_response.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/fabric_vlan_settings.py b/intersight/model/fabric_vlan_settings.py
index 82adb7acd5..90418c9221 100644
--- a/intersight/model/fabric_vlan_settings.py
+++ b/intersight/model/fabric_vlan_settings.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/fabric_vlan_settings_all_of.py b/intersight/model/fabric_vlan_settings_all_of.py
index b3bcaef700..5d0524e1ff 100644
--- a/intersight/model/fabric_vlan_settings_all_of.py
+++ b/intersight/model/fabric_vlan_settings_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/fabric_vsan.py b/intersight/model/fabric_vsan.py
index 9729a49c4f..b6c041701a 100644
--- a/intersight/model/fabric_vsan.py
+++ b/intersight/model/fabric_vsan.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/fabric_vsan_all_of.py b/intersight/model/fabric_vsan_all_of.py
index 3f02f2442e..80e0f30184 100644
--- a/intersight/model/fabric_vsan_all_of.py
+++ b/intersight/model/fabric_vsan_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/fabric_vsan_list.py b/intersight/model/fabric_vsan_list.py
index b292182ae2..651e554a90 100644
--- a/intersight/model/fabric_vsan_list.py
+++ b/intersight/model/fabric_vsan_list.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/fabric_vsan_list_all_of.py b/intersight/model/fabric_vsan_list_all_of.py
index 301df270ae..8442fe3bfc 100644
--- a/intersight/model/fabric_vsan_list_all_of.py
+++ b/intersight/model/fabric_vsan_list_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/fabric_vsan_response.py b/intersight/model/fabric_vsan_response.py
index 1eade6dc66..7c2a4bc5b7 100644
--- a/intersight/model/fabric_vsan_response.py
+++ b/intersight/model/fabric_vsan_response.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/fault_instance.py b/intersight/model/fault_instance.py
index da901c4544..6433047da7 100644
--- a/intersight/model/fault_instance.py
+++ b/intersight/model/fault_instance.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/fault_instance_all_of.py b/intersight/model/fault_instance_all_of.py
index 25a423320b..55ab5fa326 100644
--- a/intersight/model/fault_instance_all_of.py
+++ b/intersight/model/fault_instance_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/fault_instance_list.py b/intersight/model/fault_instance_list.py
index 7b81be6c45..4a52b67930 100644
--- a/intersight/model/fault_instance_list.py
+++ b/intersight/model/fault_instance_list.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/fault_instance_list_all_of.py b/intersight/model/fault_instance_list_all_of.py
index 76ad052050..49a5c1a958 100644
--- a/intersight/model/fault_instance_list_all_of.py
+++ b/intersight/model/fault_instance_list_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/fault_instance_response.py b/intersight/model/fault_instance_response.py
index 6f456e93ca..761a892a0f 100644
--- a/intersight/model/fault_instance_response.py
+++ b/intersight/model/fault_instance_response.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/fc_physical_port.py b/intersight/model/fc_physical_port.py
index 5b224a4ea8..0e0172a954 100644
--- a/intersight/model/fc_physical_port.py
+++ b/intersight/model/fc_physical_port.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/fc_physical_port_all_of.py b/intersight/model/fc_physical_port_all_of.py
index 69d52c84d2..86d7a6cb9b 100644
--- a/intersight/model/fc_physical_port_all_of.py
+++ b/intersight/model/fc_physical_port_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/fc_physical_port_list.py b/intersight/model/fc_physical_port_list.py
index f663cc166b..06eb0183e5 100644
--- a/intersight/model/fc_physical_port_list.py
+++ b/intersight/model/fc_physical_port_list.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/fc_physical_port_list_all_of.py b/intersight/model/fc_physical_port_list_all_of.py
index 392a9019c6..972c4ce525 100644
--- a/intersight/model/fc_physical_port_list_all_of.py
+++ b/intersight/model/fc_physical_port_list_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/fc_physical_port_relationship.py b/intersight/model/fc_physical_port_relationship.py
index c1b3664183..33302f4bd1 100644
--- a/intersight/model/fc_physical_port_relationship.py
+++ b/intersight/model/fc_physical_port_relationship.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
@@ -80,6 +80,8 @@ class FcPhysicalPortRelationship(ModelComposed):
},
('object_type',): {
'AAA.AUDITRECORD': "aaa.AuditRecord",
+ 'AAA.RETENTIONCONFIG': "aaa.RetentionConfig",
+ 'AAA.RETENTIONPOLICY': "aaa.RetentionPolicy",
'ACCESS.POLICY': "access.Policy",
'ADAPTER.CONFIGPOLICY': "adapter.ConfigPolicy",
'ADAPTER.EXTETHINTERFACE': "adapter.ExtEthInterface",
@@ -96,6 +98,7 @@ class FcPhysicalPortRelationship(ModelComposed):
'APPLIANCE.DATAEXPORTPOLICY': "appliance.DataExportPolicy",
'APPLIANCE.DEVICECERTIFICATE': "appliance.DeviceCertificate",
'APPLIANCE.DEVICECLAIM': "appliance.DeviceClaim",
+ 'APPLIANCE.DEVICEUPGRADEPOLICY': "appliance.DeviceUpgradePolicy",
'APPLIANCE.DIAGSETTING': "appliance.DiagSetting",
'APPLIANCE.EXTERNALSYSLOGSETTING': "appliance.ExternalSyslogSetting",
'APPLIANCE.FILESYSTEMSTATUS': "appliance.FileSystemStatus",
@@ -144,9 +147,12 @@ class FcPhysicalPortRelationship(ModelComposed):
'BOOT.UEFISHELLDEVICE': "boot.UefiShellDevice",
'BOOT.USBDEVICE': "boot.UsbDevice",
'BOOT.VMEDIADEVICE': "boot.VmediaDevice",
+ 'BULK.EXPORT': "bulk.Export",
+ 'BULK.EXPORTEDITEM': "bulk.ExportedItem",
'BULK.MOCLONER': "bulk.MoCloner",
'BULK.MOMERGER': "bulk.MoMerger",
'BULK.REQUEST': "bulk.Request",
+ 'BULK.SUBREQUESTOBJ': "bulk.SubRequestObj",
'CAPABILITY.ADAPTERUNITDESCRIPTOR': "capability.AdapterUnitDescriptor",
'CAPABILITY.CATALOG': "capability.Catalog",
'CAPABILITY.CHASSISDESCRIPTOR': "capability.ChassisDescriptor",
@@ -210,10 +216,6 @@ class FcPhysicalPortRelationship(ModelComposed):
'COND.HCLSTATUS': "cond.HclStatus",
'COND.HCLSTATUSDETAIL': "cond.HclStatusDetail",
'COND.HCLSTATUSJOB': "cond.HclStatusJob",
- 'CONFIG.EXPORTEDITEM': "config.ExportedItem",
- 'CONFIG.EXPORTER': "config.Exporter",
- 'CONFIG.IMPORTEDITEM': "config.ImportedItem",
- 'CONFIG.IMPORTER': "config.Importer",
'CONNECTORPACK.CONNECTORPACKUPGRADE': "connectorpack.ConnectorPackUpgrade",
'CONNECTORPACK.UPGRADEIMPACT': "connectorpack.UpgradeImpact",
'CRD.CUSTOMRESOURCE': "crd.CustomResource",
@@ -222,6 +224,7 @@ class FcPhysicalPortRelationship(ModelComposed):
'EQUIPMENT.CHASSISIDENTITY': "equipment.ChassisIdentity",
'EQUIPMENT.CHASSISOPERATION': "equipment.ChassisOperation",
'EQUIPMENT.DEVICESUMMARY': "equipment.DeviceSummary",
+ 'EQUIPMENT.EXPANDERMODULE': "equipment.ExpanderModule",
'EQUIPMENT.FAN': "equipment.Fan",
'EQUIPMENT.FANCONTROL': "equipment.FanControl",
'EQUIPMENT.FANMODULE': "equipment.FanModule",
@@ -470,6 +473,7 @@ class FcPhysicalPortRelationship(ModelComposed):
'KUBERNETES.ADDONDEFINITION': "kubernetes.AddonDefinition",
'KUBERNETES.ADDONPOLICY': "kubernetes.AddonPolicy",
'KUBERNETES.ADDONREPOSITORY': "kubernetes.AddonRepository",
+ 'KUBERNETES.BAREMETALNODEPROFILE': "kubernetes.BaremetalNodeProfile",
'KUBERNETES.CATALOG': "kubernetes.Catalog",
'KUBERNETES.CLUSTER': "kubernetes.Cluster",
'KUBERNETES.CLUSTERADDONPROFILE': "kubernetes.ClusterAddonProfile",
@@ -639,6 +643,11 @@ class FcPhysicalPortRelationship(ModelComposed):
'RESOURCE.LICENSERESOURCECOUNT': "resource.LicenseResourceCount",
'RESOURCE.MEMBERSHIP': "resource.Membership",
'RESOURCE.MEMBERSHIPHOLDER': "resource.MembershipHolder",
+ 'RESOURCEPOOL.LEASE': "resourcepool.Lease",
+ 'RESOURCEPOOL.LEASERESOURCE': "resourcepool.LeaseResource",
+ 'RESOURCEPOOL.POOL': "resourcepool.Pool",
+ 'RESOURCEPOOL.POOLMEMBER': "resourcepool.PoolMember",
+ 'RESOURCEPOOL.UNIVERSE': "resourcepool.Universe",
'RPROXY.REVERSEPROXY': "rproxy.ReverseProxy",
'SDCARD.POLICY': "sdcard.Policy",
'SDWAN.PROFILE': "sdwan.Profile",
@@ -754,6 +763,7 @@ class FcPhysicalPortRelationship(ModelComposed):
'TASK.NETAPPSCOPEDINVENTORY': "task.NetAppScopedInventory",
'TASK.PUBLICCLOUDSCOPEDINVENTORY': "task.PublicCloudScopedInventory",
'TASK.PURESCOPEDINVENTORY': "task.PureScopedInventory",
+ 'TASK.SERVERSCOPEDINVENTORY': "task.ServerScopedInventory",
'TECHSUPPORTMANAGEMENT.COLLECTIONCONTROLPOLICY': "techsupportmanagement.CollectionControlPolicy",
'TECHSUPPORTMANAGEMENT.DOWNLOAD': "techsupportmanagement.Download",
'TECHSUPPORTMANAGEMENT.TECHSUPPORTBUNDLE': "techsupportmanagement.TechSupportBundle",
@@ -785,6 +795,7 @@ class FcPhysicalPortRelationship(ModelComposed):
'VIRTUALIZATION.VMWAREVCENTER': "virtualization.VmwareVcenter",
'VIRTUALIZATION.VMWAREVIRTUALDISK': "virtualization.VmwareVirtualDisk",
'VIRTUALIZATION.VMWAREVIRTUALMACHINE': "virtualization.VmwareVirtualMachine",
+ 'VIRTUALIZATION.VMWAREVIRTUALMACHINESNAPSHOT': "virtualization.VmwareVirtualMachineSnapshot",
'VIRTUALIZATION.VMWAREVIRTUALNETWORKINTERFACE': "virtualization.VmwareVirtualNetworkInterface",
'VIRTUALIZATION.VMWAREVIRTUALSWITCH': "virtualization.VmwareVirtualSwitch",
'VMEDIA.POLICY': "vmedia.Policy",
@@ -817,12 +828,14 @@ class FcPhysicalPortRelationship(ModelComposed):
'WORKFLOW.TASKDEFINITION': "workflow.TaskDefinition",
'WORKFLOW.TASKINFO': "workflow.TaskInfo",
'WORKFLOW.TASKMETADATA': "workflow.TaskMetadata",
+ 'WORKFLOW.TASKNOTIFICATION': "workflow.TaskNotification",
'WORKFLOW.TEMPLATEEVALUATION': "workflow.TemplateEvaluation",
'WORKFLOW.TEMPLATEFUNCTIONMETA': "workflow.TemplateFunctionMeta",
'WORKFLOW.WORKFLOWDEFINITION': "workflow.WorkflowDefinition",
'WORKFLOW.WORKFLOWINFO': "workflow.WorkflowInfo",
'WORKFLOW.WORKFLOWMETA': "workflow.WorkflowMeta",
'WORKFLOW.WORKFLOWMETADATA': "workflow.WorkflowMetadata",
+ 'WORKFLOW.WORKFLOWNOTIFICATION': "workflow.WorkflowNotification",
},
}
diff --git a/intersight/model/fc_physical_port_response.py b/intersight/model/fc_physical_port_response.py
index 07bf422c2c..732974c20a 100644
--- a/intersight/model/fc_physical_port_response.py
+++ b/intersight/model/fc_physical_port_response.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/fc_port_channel.py b/intersight/model/fc_port_channel.py
index e5d61fdd97..fcf569c3fc 100644
--- a/intersight/model/fc_port_channel.py
+++ b/intersight/model/fc_port_channel.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/fc_port_channel_all_of.py b/intersight/model/fc_port_channel_all_of.py
index daa22eea9a..9624b1dd85 100644
--- a/intersight/model/fc_port_channel_all_of.py
+++ b/intersight/model/fc_port_channel_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/fc_port_channel_list.py b/intersight/model/fc_port_channel_list.py
index 28b3579a41..bc824db7e6 100644
--- a/intersight/model/fc_port_channel_list.py
+++ b/intersight/model/fc_port_channel_list.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/fc_port_channel_list_all_of.py b/intersight/model/fc_port_channel_list_all_of.py
index 4330f21c1f..8b001da3da 100644
--- a/intersight/model/fc_port_channel_list_all_of.py
+++ b/intersight/model/fc_port_channel_list_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/fc_port_channel_relationship.py b/intersight/model/fc_port_channel_relationship.py
index d91d24e195..2bb119a29d 100644
--- a/intersight/model/fc_port_channel_relationship.py
+++ b/intersight/model/fc_port_channel_relationship.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
@@ -76,6 +76,8 @@ class FcPortChannelRelationship(ModelComposed):
},
('object_type',): {
'AAA.AUDITRECORD': "aaa.AuditRecord",
+ 'AAA.RETENTIONCONFIG': "aaa.RetentionConfig",
+ 'AAA.RETENTIONPOLICY': "aaa.RetentionPolicy",
'ACCESS.POLICY': "access.Policy",
'ADAPTER.CONFIGPOLICY': "adapter.ConfigPolicy",
'ADAPTER.EXTETHINTERFACE': "adapter.ExtEthInterface",
@@ -92,6 +94,7 @@ class FcPortChannelRelationship(ModelComposed):
'APPLIANCE.DATAEXPORTPOLICY': "appliance.DataExportPolicy",
'APPLIANCE.DEVICECERTIFICATE': "appliance.DeviceCertificate",
'APPLIANCE.DEVICECLAIM': "appliance.DeviceClaim",
+ 'APPLIANCE.DEVICEUPGRADEPOLICY': "appliance.DeviceUpgradePolicy",
'APPLIANCE.DIAGSETTING': "appliance.DiagSetting",
'APPLIANCE.EXTERNALSYSLOGSETTING': "appliance.ExternalSyslogSetting",
'APPLIANCE.FILESYSTEMSTATUS': "appliance.FileSystemStatus",
@@ -140,9 +143,12 @@ class FcPortChannelRelationship(ModelComposed):
'BOOT.UEFISHELLDEVICE': "boot.UefiShellDevice",
'BOOT.USBDEVICE': "boot.UsbDevice",
'BOOT.VMEDIADEVICE': "boot.VmediaDevice",
+ 'BULK.EXPORT': "bulk.Export",
+ 'BULK.EXPORTEDITEM': "bulk.ExportedItem",
'BULK.MOCLONER': "bulk.MoCloner",
'BULK.MOMERGER': "bulk.MoMerger",
'BULK.REQUEST': "bulk.Request",
+ 'BULK.SUBREQUESTOBJ': "bulk.SubRequestObj",
'CAPABILITY.ADAPTERUNITDESCRIPTOR': "capability.AdapterUnitDescriptor",
'CAPABILITY.CATALOG': "capability.Catalog",
'CAPABILITY.CHASSISDESCRIPTOR': "capability.ChassisDescriptor",
@@ -206,10 +212,6 @@ class FcPortChannelRelationship(ModelComposed):
'COND.HCLSTATUS': "cond.HclStatus",
'COND.HCLSTATUSDETAIL': "cond.HclStatusDetail",
'COND.HCLSTATUSJOB': "cond.HclStatusJob",
- 'CONFIG.EXPORTEDITEM': "config.ExportedItem",
- 'CONFIG.EXPORTER': "config.Exporter",
- 'CONFIG.IMPORTEDITEM': "config.ImportedItem",
- 'CONFIG.IMPORTER': "config.Importer",
'CONNECTORPACK.CONNECTORPACKUPGRADE': "connectorpack.ConnectorPackUpgrade",
'CONNECTORPACK.UPGRADEIMPACT': "connectorpack.UpgradeImpact",
'CRD.CUSTOMRESOURCE': "crd.CustomResource",
@@ -218,6 +220,7 @@ class FcPortChannelRelationship(ModelComposed):
'EQUIPMENT.CHASSISIDENTITY': "equipment.ChassisIdentity",
'EQUIPMENT.CHASSISOPERATION': "equipment.ChassisOperation",
'EQUIPMENT.DEVICESUMMARY': "equipment.DeviceSummary",
+ 'EQUIPMENT.EXPANDERMODULE': "equipment.ExpanderModule",
'EQUIPMENT.FAN': "equipment.Fan",
'EQUIPMENT.FANCONTROL': "equipment.FanControl",
'EQUIPMENT.FANMODULE': "equipment.FanModule",
@@ -466,6 +469,7 @@ class FcPortChannelRelationship(ModelComposed):
'KUBERNETES.ADDONDEFINITION': "kubernetes.AddonDefinition",
'KUBERNETES.ADDONPOLICY': "kubernetes.AddonPolicy",
'KUBERNETES.ADDONREPOSITORY': "kubernetes.AddonRepository",
+ 'KUBERNETES.BAREMETALNODEPROFILE': "kubernetes.BaremetalNodeProfile",
'KUBERNETES.CATALOG': "kubernetes.Catalog",
'KUBERNETES.CLUSTER': "kubernetes.Cluster",
'KUBERNETES.CLUSTERADDONPROFILE': "kubernetes.ClusterAddonProfile",
@@ -635,6 +639,11 @@ class FcPortChannelRelationship(ModelComposed):
'RESOURCE.LICENSERESOURCECOUNT': "resource.LicenseResourceCount",
'RESOURCE.MEMBERSHIP': "resource.Membership",
'RESOURCE.MEMBERSHIPHOLDER': "resource.MembershipHolder",
+ 'RESOURCEPOOL.LEASE': "resourcepool.Lease",
+ 'RESOURCEPOOL.LEASERESOURCE': "resourcepool.LeaseResource",
+ 'RESOURCEPOOL.POOL': "resourcepool.Pool",
+ 'RESOURCEPOOL.POOLMEMBER': "resourcepool.PoolMember",
+ 'RESOURCEPOOL.UNIVERSE': "resourcepool.Universe",
'RPROXY.REVERSEPROXY': "rproxy.ReverseProxy",
'SDCARD.POLICY': "sdcard.Policy",
'SDWAN.PROFILE': "sdwan.Profile",
@@ -750,6 +759,7 @@ class FcPortChannelRelationship(ModelComposed):
'TASK.NETAPPSCOPEDINVENTORY': "task.NetAppScopedInventory",
'TASK.PUBLICCLOUDSCOPEDINVENTORY': "task.PublicCloudScopedInventory",
'TASK.PURESCOPEDINVENTORY': "task.PureScopedInventory",
+ 'TASK.SERVERSCOPEDINVENTORY': "task.ServerScopedInventory",
'TECHSUPPORTMANAGEMENT.COLLECTIONCONTROLPOLICY': "techsupportmanagement.CollectionControlPolicy",
'TECHSUPPORTMANAGEMENT.DOWNLOAD': "techsupportmanagement.Download",
'TECHSUPPORTMANAGEMENT.TECHSUPPORTBUNDLE': "techsupportmanagement.TechSupportBundle",
@@ -781,6 +791,7 @@ class FcPortChannelRelationship(ModelComposed):
'VIRTUALIZATION.VMWAREVCENTER': "virtualization.VmwareVcenter",
'VIRTUALIZATION.VMWAREVIRTUALDISK': "virtualization.VmwareVirtualDisk",
'VIRTUALIZATION.VMWAREVIRTUALMACHINE': "virtualization.VmwareVirtualMachine",
+ 'VIRTUALIZATION.VMWAREVIRTUALMACHINESNAPSHOT': "virtualization.VmwareVirtualMachineSnapshot",
'VIRTUALIZATION.VMWAREVIRTUALNETWORKINTERFACE': "virtualization.VmwareVirtualNetworkInterface",
'VIRTUALIZATION.VMWAREVIRTUALSWITCH': "virtualization.VmwareVirtualSwitch",
'VMEDIA.POLICY': "vmedia.Policy",
@@ -813,12 +824,14 @@ class FcPortChannelRelationship(ModelComposed):
'WORKFLOW.TASKDEFINITION': "workflow.TaskDefinition",
'WORKFLOW.TASKINFO': "workflow.TaskInfo",
'WORKFLOW.TASKMETADATA': "workflow.TaskMetadata",
+ 'WORKFLOW.TASKNOTIFICATION': "workflow.TaskNotification",
'WORKFLOW.TEMPLATEEVALUATION': "workflow.TemplateEvaluation",
'WORKFLOW.TEMPLATEFUNCTIONMETA': "workflow.TemplateFunctionMeta",
'WORKFLOW.WORKFLOWDEFINITION': "workflow.WorkflowDefinition",
'WORKFLOW.WORKFLOWINFO': "workflow.WorkflowInfo",
'WORKFLOW.WORKFLOWMETA': "workflow.WorkflowMeta",
'WORKFLOW.WORKFLOWMETADATA': "workflow.WorkflowMetadata",
+ 'WORKFLOW.WORKFLOWNOTIFICATION': "workflow.WorkflowNotification",
},
}
diff --git a/intersight/model/fc_port_channel_response.py b/intersight/model/fc_port_channel_response.py
index 28d4407fd5..9126e56364 100644
--- a/intersight/model/fc_port_channel_response.py
+++ b/intersight/model/fc_port_channel_response.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/fcpool_block.py b/intersight/model/fcpool_block.py
index 43c6048187..284a7f25b8 100644
--- a/intersight/model/fcpool_block.py
+++ b/intersight/model/fcpool_block.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/fcpool_block_all_of.py b/intersight/model/fcpool_block_all_of.py
index 516990df73..458a68fdb3 100644
--- a/intersight/model/fcpool_block_all_of.py
+++ b/intersight/model/fcpool_block_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/fcpool_fc_block.py b/intersight/model/fcpool_fc_block.py
index bc161b2ce2..533bbe2d7e 100644
--- a/intersight/model/fcpool_fc_block.py
+++ b/intersight/model/fcpool_fc_block.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/fcpool_fc_block_all_of.py b/intersight/model/fcpool_fc_block_all_of.py
index 1e9c61612d..ed3b28768c 100644
--- a/intersight/model/fcpool_fc_block_all_of.py
+++ b/intersight/model/fcpool_fc_block_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/fcpool_fc_block_list.py b/intersight/model/fcpool_fc_block_list.py
index dad118cc10..ea9e3b2cbf 100644
--- a/intersight/model/fcpool_fc_block_list.py
+++ b/intersight/model/fcpool_fc_block_list.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/fcpool_fc_block_list_all_of.py b/intersight/model/fcpool_fc_block_list_all_of.py
index 41eb56202f..395e9908d5 100644
--- a/intersight/model/fcpool_fc_block_list_all_of.py
+++ b/intersight/model/fcpool_fc_block_list_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/fcpool_fc_block_relationship.py b/intersight/model/fcpool_fc_block_relationship.py
index 964b8803fc..be4602f7be 100644
--- a/intersight/model/fcpool_fc_block_relationship.py
+++ b/intersight/model/fcpool_fc_block_relationship.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
@@ -76,6 +76,8 @@ class FcpoolFcBlockRelationship(ModelComposed):
},
('object_type',): {
'AAA.AUDITRECORD': "aaa.AuditRecord",
+ 'AAA.RETENTIONCONFIG': "aaa.RetentionConfig",
+ 'AAA.RETENTIONPOLICY': "aaa.RetentionPolicy",
'ACCESS.POLICY': "access.Policy",
'ADAPTER.CONFIGPOLICY': "adapter.ConfigPolicy",
'ADAPTER.EXTETHINTERFACE': "adapter.ExtEthInterface",
@@ -92,6 +94,7 @@ class FcpoolFcBlockRelationship(ModelComposed):
'APPLIANCE.DATAEXPORTPOLICY': "appliance.DataExportPolicy",
'APPLIANCE.DEVICECERTIFICATE': "appliance.DeviceCertificate",
'APPLIANCE.DEVICECLAIM': "appliance.DeviceClaim",
+ 'APPLIANCE.DEVICEUPGRADEPOLICY': "appliance.DeviceUpgradePolicy",
'APPLIANCE.DIAGSETTING': "appliance.DiagSetting",
'APPLIANCE.EXTERNALSYSLOGSETTING': "appliance.ExternalSyslogSetting",
'APPLIANCE.FILESYSTEMSTATUS': "appliance.FileSystemStatus",
@@ -140,9 +143,12 @@ class FcpoolFcBlockRelationship(ModelComposed):
'BOOT.UEFISHELLDEVICE': "boot.UefiShellDevice",
'BOOT.USBDEVICE': "boot.UsbDevice",
'BOOT.VMEDIADEVICE': "boot.VmediaDevice",
+ 'BULK.EXPORT': "bulk.Export",
+ 'BULK.EXPORTEDITEM': "bulk.ExportedItem",
'BULK.MOCLONER': "bulk.MoCloner",
'BULK.MOMERGER': "bulk.MoMerger",
'BULK.REQUEST': "bulk.Request",
+ 'BULK.SUBREQUESTOBJ': "bulk.SubRequestObj",
'CAPABILITY.ADAPTERUNITDESCRIPTOR': "capability.AdapterUnitDescriptor",
'CAPABILITY.CATALOG': "capability.Catalog",
'CAPABILITY.CHASSISDESCRIPTOR': "capability.ChassisDescriptor",
@@ -206,10 +212,6 @@ class FcpoolFcBlockRelationship(ModelComposed):
'COND.HCLSTATUS': "cond.HclStatus",
'COND.HCLSTATUSDETAIL': "cond.HclStatusDetail",
'COND.HCLSTATUSJOB': "cond.HclStatusJob",
- 'CONFIG.EXPORTEDITEM': "config.ExportedItem",
- 'CONFIG.EXPORTER': "config.Exporter",
- 'CONFIG.IMPORTEDITEM': "config.ImportedItem",
- 'CONFIG.IMPORTER': "config.Importer",
'CONNECTORPACK.CONNECTORPACKUPGRADE': "connectorpack.ConnectorPackUpgrade",
'CONNECTORPACK.UPGRADEIMPACT': "connectorpack.UpgradeImpact",
'CRD.CUSTOMRESOURCE': "crd.CustomResource",
@@ -218,6 +220,7 @@ class FcpoolFcBlockRelationship(ModelComposed):
'EQUIPMENT.CHASSISIDENTITY': "equipment.ChassisIdentity",
'EQUIPMENT.CHASSISOPERATION': "equipment.ChassisOperation",
'EQUIPMENT.DEVICESUMMARY': "equipment.DeviceSummary",
+ 'EQUIPMENT.EXPANDERMODULE': "equipment.ExpanderModule",
'EQUIPMENT.FAN': "equipment.Fan",
'EQUIPMENT.FANCONTROL': "equipment.FanControl",
'EQUIPMENT.FANMODULE': "equipment.FanModule",
@@ -466,6 +469,7 @@ class FcpoolFcBlockRelationship(ModelComposed):
'KUBERNETES.ADDONDEFINITION': "kubernetes.AddonDefinition",
'KUBERNETES.ADDONPOLICY': "kubernetes.AddonPolicy",
'KUBERNETES.ADDONREPOSITORY': "kubernetes.AddonRepository",
+ 'KUBERNETES.BAREMETALNODEPROFILE': "kubernetes.BaremetalNodeProfile",
'KUBERNETES.CATALOG': "kubernetes.Catalog",
'KUBERNETES.CLUSTER': "kubernetes.Cluster",
'KUBERNETES.CLUSTERADDONPROFILE': "kubernetes.ClusterAddonProfile",
@@ -635,6 +639,11 @@ class FcpoolFcBlockRelationship(ModelComposed):
'RESOURCE.LICENSERESOURCECOUNT': "resource.LicenseResourceCount",
'RESOURCE.MEMBERSHIP': "resource.Membership",
'RESOURCE.MEMBERSHIPHOLDER': "resource.MembershipHolder",
+ 'RESOURCEPOOL.LEASE': "resourcepool.Lease",
+ 'RESOURCEPOOL.LEASERESOURCE': "resourcepool.LeaseResource",
+ 'RESOURCEPOOL.POOL': "resourcepool.Pool",
+ 'RESOURCEPOOL.POOLMEMBER': "resourcepool.PoolMember",
+ 'RESOURCEPOOL.UNIVERSE': "resourcepool.Universe",
'RPROXY.REVERSEPROXY': "rproxy.ReverseProxy",
'SDCARD.POLICY': "sdcard.Policy",
'SDWAN.PROFILE': "sdwan.Profile",
@@ -750,6 +759,7 @@ class FcpoolFcBlockRelationship(ModelComposed):
'TASK.NETAPPSCOPEDINVENTORY': "task.NetAppScopedInventory",
'TASK.PUBLICCLOUDSCOPEDINVENTORY': "task.PublicCloudScopedInventory",
'TASK.PURESCOPEDINVENTORY': "task.PureScopedInventory",
+ 'TASK.SERVERSCOPEDINVENTORY': "task.ServerScopedInventory",
'TECHSUPPORTMANAGEMENT.COLLECTIONCONTROLPOLICY': "techsupportmanagement.CollectionControlPolicy",
'TECHSUPPORTMANAGEMENT.DOWNLOAD': "techsupportmanagement.Download",
'TECHSUPPORTMANAGEMENT.TECHSUPPORTBUNDLE': "techsupportmanagement.TechSupportBundle",
@@ -781,6 +791,7 @@ class FcpoolFcBlockRelationship(ModelComposed):
'VIRTUALIZATION.VMWAREVCENTER': "virtualization.VmwareVcenter",
'VIRTUALIZATION.VMWAREVIRTUALDISK': "virtualization.VmwareVirtualDisk",
'VIRTUALIZATION.VMWAREVIRTUALMACHINE': "virtualization.VmwareVirtualMachine",
+ 'VIRTUALIZATION.VMWAREVIRTUALMACHINESNAPSHOT': "virtualization.VmwareVirtualMachineSnapshot",
'VIRTUALIZATION.VMWAREVIRTUALNETWORKINTERFACE': "virtualization.VmwareVirtualNetworkInterface",
'VIRTUALIZATION.VMWAREVIRTUALSWITCH': "virtualization.VmwareVirtualSwitch",
'VMEDIA.POLICY': "vmedia.Policy",
@@ -813,12 +824,14 @@ class FcpoolFcBlockRelationship(ModelComposed):
'WORKFLOW.TASKDEFINITION': "workflow.TaskDefinition",
'WORKFLOW.TASKINFO': "workflow.TaskInfo",
'WORKFLOW.TASKMETADATA': "workflow.TaskMetadata",
+ 'WORKFLOW.TASKNOTIFICATION': "workflow.TaskNotification",
'WORKFLOW.TEMPLATEEVALUATION': "workflow.TemplateEvaluation",
'WORKFLOW.TEMPLATEFUNCTIONMETA': "workflow.TemplateFunctionMeta",
'WORKFLOW.WORKFLOWDEFINITION': "workflow.WorkflowDefinition",
'WORKFLOW.WORKFLOWINFO': "workflow.WorkflowInfo",
'WORKFLOW.WORKFLOWMETA': "workflow.WorkflowMeta",
'WORKFLOW.WORKFLOWMETADATA': "workflow.WorkflowMetadata",
+ 'WORKFLOW.WORKFLOWNOTIFICATION': "workflow.WorkflowNotification",
},
}
diff --git a/intersight/model/fcpool_fc_block_response.py b/intersight/model/fcpool_fc_block_response.py
index 9c45f3af5c..43cfcb0026 100644
--- a/intersight/model/fcpool_fc_block_response.py
+++ b/intersight/model/fcpool_fc_block_response.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/fcpool_lease.py b/intersight/model/fcpool_lease.py
index f46ca895d1..cb73beb6e3 100644
--- a/intersight/model/fcpool_lease.py
+++ b/intersight/model/fcpool_lease.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/fcpool_lease_all_of.py b/intersight/model/fcpool_lease_all_of.py
index 238f1ccea5..6ff5aec432 100644
--- a/intersight/model/fcpool_lease_all_of.py
+++ b/intersight/model/fcpool_lease_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/fcpool_lease_list.py b/intersight/model/fcpool_lease_list.py
index 3938bfde90..89916ae9cc 100644
--- a/intersight/model/fcpool_lease_list.py
+++ b/intersight/model/fcpool_lease_list.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/fcpool_lease_list_all_of.py b/intersight/model/fcpool_lease_list_all_of.py
index bc4c31bdad..0624216c0b 100644
--- a/intersight/model/fcpool_lease_list_all_of.py
+++ b/intersight/model/fcpool_lease_list_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/fcpool_lease_relationship.py b/intersight/model/fcpool_lease_relationship.py
index 8cba302beb..3549c562c2 100644
--- a/intersight/model/fcpool_lease_relationship.py
+++ b/intersight/model/fcpool_lease_relationship.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
@@ -82,6 +82,8 @@ class FcpoolLeaseRelationship(ModelComposed):
},
('object_type',): {
'AAA.AUDITRECORD': "aaa.AuditRecord",
+ 'AAA.RETENTIONCONFIG': "aaa.RetentionConfig",
+ 'AAA.RETENTIONPOLICY': "aaa.RetentionPolicy",
'ACCESS.POLICY': "access.Policy",
'ADAPTER.CONFIGPOLICY': "adapter.ConfigPolicy",
'ADAPTER.EXTETHINTERFACE': "adapter.ExtEthInterface",
@@ -98,6 +100,7 @@ class FcpoolLeaseRelationship(ModelComposed):
'APPLIANCE.DATAEXPORTPOLICY': "appliance.DataExportPolicy",
'APPLIANCE.DEVICECERTIFICATE': "appliance.DeviceCertificate",
'APPLIANCE.DEVICECLAIM': "appliance.DeviceClaim",
+ 'APPLIANCE.DEVICEUPGRADEPOLICY': "appliance.DeviceUpgradePolicy",
'APPLIANCE.DIAGSETTING': "appliance.DiagSetting",
'APPLIANCE.EXTERNALSYSLOGSETTING': "appliance.ExternalSyslogSetting",
'APPLIANCE.FILESYSTEMSTATUS': "appliance.FileSystemStatus",
@@ -146,9 +149,12 @@ class FcpoolLeaseRelationship(ModelComposed):
'BOOT.UEFISHELLDEVICE': "boot.UefiShellDevice",
'BOOT.USBDEVICE': "boot.UsbDevice",
'BOOT.VMEDIADEVICE': "boot.VmediaDevice",
+ 'BULK.EXPORT': "bulk.Export",
+ 'BULK.EXPORTEDITEM': "bulk.ExportedItem",
'BULK.MOCLONER': "bulk.MoCloner",
'BULK.MOMERGER': "bulk.MoMerger",
'BULK.REQUEST': "bulk.Request",
+ 'BULK.SUBREQUESTOBJ': "bulk.SubRequestObj",
'CAPABILITY.ADAPTERUNITDESCRIPTOR': "capability.AdapterUnitDescriptor",
'CAPABILITY.CATALOG': "capability.Catalog",
'CAPABILITY.CHASSISDESCRIPTOR': "capability.ChassisDescriptor",
@@ -212,10 +218,6 @@ class FcpoolLeaseRelationship(ModelComposed):
'COND.HCLSTATUS': "cond.HclStatus",
'COND.HCLSTATUSDETAIL': "cond.HclStatusDetail",
'COND.HCLSTATUSJOB': "cond.HclStatusJob",
- 'CONFIG.EXPORTEDITEM': "config.ExportedItem",
- 'CONFIG.EXPORTER': "config.Exporter",
- 'CONFIG.IMPORTEDITEM': "config.ImportedItem",
- 'CONFIG.IMPORTER': "config.Importer",
'CONNECTORPACK.CONNECTORPACKUPGRADE': "connectorpack.ConnectorPackUpgrade",
'CONNECTORPACK.UPGRADEIMPACT': "connectorpack.UpgradeImpact",
'CRD.CUSTOMRESOURCE': "crd.CustomResource",
@@ -224,6 +226,7 @@ class FcpoolLeaseRelationship(ModelComposed):
'EQUIPMENT.CHASSISIDENTITY': "equipment.ChassisIdentity",
'EQUIPMENT.CHASSISOPERATION': "equipment.ChassisOperation",
'EQUIPMENT.DEVICESUMMARY': "equipment.DeviceSummary",
+ 'EQUIPMENT.EXPANDERMODULE': "equipment.ExpanderModule",
'EQUIPMENT.FAN': "equipment.Fan",
'EQUIPMENT.FANCONTROL': "equipment.FanControl",
'EQUIPMENT.FANMODULE': "equipment.FanModule",
@@ -472,6 +475,7 @@ class FcpoolLeaseRelationship(ModelComposed):
'KUBERNETES.ADDONDEFINITION': "kubernetes.AddonDefinition",
'KUBERNETES.ADDONPOLICY': "kubernetes.AddonPolicy",
'KUBERNETES.ADDONREPOSITORY': "kubernetes.AddonRepository",
+ 'KUBERNETES.BAREMETALNODEPROFILE': "kubernetes.BaremetalNodeProfile",
'KUBERNETES.CATALOG': "kubernetes.Catalog",
'KUBERNETES.CLUSTER': "kubernetes.Cluster",
'KUBERNETES.CLUSTERADDONPROFILE': "kubernetes.ClusterAddonProfile",
@@ -641,6 +645,11 @@ class FcpoolLeaseRelationship(ModelComposed):
'RESOURCE.LICENSERESOURCECOUNT': "resource.LicenseResourceCount",
'RESOURCE.MEMBERSHIP': "resource.Membership",
'RESOURCE.MEMBERSHIPHOLDER': "resource.MembershipHolder",
+ 'RESOURCEPOOL.LEASE': "resourcepool.Lease",
+ 'RESOURCEPOOL.LEASERESOURCE': "resourcepool.LeaseResource",
+ 'RESOURCEPOOL.POOL': "resourcepool.Pool",
+ 'RESOURCEPOOL.POOLMEMBER': "resourcepool.PoolMember",
+ 'RESOURCEPOOL.UNIVERSE': "resourcepool.Universe",
'RPROXY.REVERSEPROXY': "rproxy.ReverseProxy",
'SDCARD.POLICY': "sdcard.Policy",
'SDWAN.PROFILE': "sdwan.Profile",
@@ -756,6 +765,7 @@ class FcpoolLeaseRelationship(ModelComposed):
'TASK.NETAPPSCOPEDINVENTORY': "task.NetAppScopedInventory",
'TASK.PUBLICCLOUDSCOPEDINVENTORY': "task.PublicCloudScopedInventory",
'TASK.PURESCOPEDINVENTORY': "task.PureScopedInventory",
+ 'TASK.SERVERSCOPEDINVENTORY': "task.ServerScopedInventory",
'TECHSUPPORTMANAGEMENT.COLLECTIONCONTROLPOLICY': "techsupportmanagement.CollectionControlPolicy",
'TECHSUPPORTMANAGEMENT.DOWNLOAD': "techsupportmanagement.Download",
'TECHSUPPORTMANAGEMENT.TECHSUPPORTBUNDLE': "techsupportmanagement.TechSupportBundle",
@@ -787,6 +797,7 @@ class FcpoolLeaseRelationship(ModelComposed):
'VIRTUALIZATION.VMWAREVCENTER': "virtualization.VmwareVcenter",
'VIRTUALIZATION.VMWAREVIRTUALDISK': "virtualization.VmwareVirtualDisk",
'VIRTUALIZATION.VMWAREVIRTUALMACHINE': "virtualization.VmwareVirtualMachine",
+ 'VIRTUALIZATION.VMWAREVIRTUALMACHINESNAPSHOT': "virtualization.VmwareVirtualMachineSnapshot",
'VIRTUALIZATION.VMWAREVIRTUALNETWORKINTERFACE': "virtualization.VmwareVirtualNetworkInterface",
'VIRTUALIZATION.VMWAREVIRTUALSWITCH': "virtualization.VmwareVirtualSwitch",
'VMEDIA.POLICY': "vmedia.Policy",
@@ -819,12 +830,14 @@ class FcpoolLeaseRelationship(ModelComposed):
'WORKFLOW.TASKDEFINITION': "workflow.TaskDefinition",
'WORKFLOW.TASKINFO': "workflow.TaskInfo",
'WORKFLOW.TASKMETADATA': "workflow.TaskMetadata",
+ 'WORKFLOW.TASKNOTIFICATION': "workflow.TaskNotification",
'WORKFLOW.TEMPLATEEVALUATION': "workflow.TemplateEvaluation",
'WORKFLOW.TEMPLATEFUNCTIONMETA': "workflow.TemplateFunctionMeta",
'WORKFLOW.WORKFLOWDEFINITION': "workflow.WorkflowDefinition",
'WORKFLOW.WORKFLOWINFO': "workflow.WorkflowInfo",
'WORKFLOW.WORKFLOWMETA': "workflow.WorkflowMeta",
'WORKFLOW.WORKFLOWMETADATA': "workflow.WorkflowMetadata",
+ 'WORKFLOW.WORKFLOWNOTIFICATION': "workflow.WorkflowNotification",
},
}
diff --git a/intersight/model/fcpool_lease_response.py b/intersight/model/fcpool_lease_response.py
index c435f732c6..b0d428ec3f 100644
--- a/intersight/model/fcpool_lease_response.py
+++ b/intersight/model/fcpool_lease_response.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/fcpool_pool.py b/intersight/model/fcpool_pool.py
index d3d0d074d4..ec3fbffe5d 100644
--- a/intersight/model/fcpool_pool.py
+++ b/intersight/model/fcpool_pool.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/fcpool_pool_all_of.py b/intersight/model/fcpool_pool_all_of.py
index a7195e160f..b929033e0a 100644
--- a/intersight/model/fcpool_pool_all_of.py
+++ b/intersight/model/fcpool_pool_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/fcpool_pool_list.py b/intersight/model/fcpool_pool_list.py
index 8b2973a9cc..6d31720d0d 100644
--- a/intersight/model/fcpool_pool_list.py
+++ b/intersight/model/fcpool_pool_list.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/fcpool_pool_list_all_of.py b/intersight/model/fcpool_pool_list_all_of.py
index 1b2c73a829..74073e6053 100644
--- a/intersight/model/fcpool_pool_list_all_of.py
+++ b/intersight/model/fcpool_pool_list_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/fcpool_pool_member.py b/intersight/model/fcpool_pool_member.py
index 887d53f56f..6b959da317 100644
--- a/intersight/model/fcpool_pool_member.py
+++ b/intersight/model/fcpool_pool_member.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/fcpool_pool_member_all_of.py b/intersight/model/fcpool_pool_member_all_of.py
index 34aad62cb0..7fcc53e1ea 100644
--- a/intersight/model/fcpool_pool_member_all_of.py
+++ b/intersight/model/fcpool_pool_member_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/fcpool_pool_member_list.py b/intersight/model/fcpool_pool_member_list.py
index 6767e11ef0..688df1f173 100644
--- a/intersight/model/fcpool_pool_member_list.py
+++ b/intersight/model/fcpool_pool_member_list.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/fcpool_pool_member_list_all_of.py b/intersight/model/fcpool_pool_member_list_all_of.py
index b7c803fb9c..c89409ef2a 100644
--- a/intersight/model/fcpool_pool_member_list_all_of.py
+++ b/intersight/model/fcpool_pool_member_list_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/fcpool_pool_member_relationship.py b/intersight/model/fcpool_pool_member_relationship.py
index 8a204dcb5f..c87bf831d4 100644
--- a/intersight/model/fcpool_pool_member_relationship.py
+++ b/intersight/model/fcpool_pool_member_relationship.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
@@ -78,6 +78,8 @@ class FcpoolPoolMemberRelationship(ModelComposed):
},
('object_type',): {
'AAA.AUDITRECORD': "aaa.AuditRecord",
+ 'AAA.RETENTIONCONFIG': "aaa.RetentionConfig",
+ 'AAA.RETENTIONPOLICY': "aaa.RetentionPolicy",
'ACCESS.POLICY': "access.Policy",
'ADAPTER.CONFIGPOLICY': "adapter.ConfigPolicy",
'ADAPTER.EXTETHINTERFACE': "adapter.ExtEthInterface",
@@ -94,6 +96,7 @@ class FcpoolPoolMemberRelationship(ModelComposed):
'APPLIANCE.DATAEXPORTPOLICY': "appliance.DataExportPolicy",
'APPLIANCE.DEVICECERTIFICATE': "appliance.DeviceCertificate",
'APPLIANCE.DEVICECLAIM': "appliance.DeviceClaim",
+ 'APPLIANCE.DEVICEUPGRADEPOLICY': "appliance.DeviceUpgradePolicy",
'APPLIANCE.DIAGSETTING': "appliance.DiagSetting",
'APPLIANCE.EXTERNALSYSLOGSETTING': "appliance.ExternalSyslogSetting",
'APPLIANCE.FILESYSTEMSTATUS': "appliance.FileSystemStatus",
@@ -142,9 +145,12 @@ class FcpoolPoolMemberRelationship(ModelComposed):
'BOOT.UEFISHELLDEVICE': "boot.UefiShellDevice",
'BOOT.USBDEVICE': "boot.UsbDevice",
'BOOT.VMEDIADEVICE': "boot.VmediaDevice",
+ 'BULK.EXPORT': "bulk.Export",
+ 'BULK.EXPORTEDITEM': "bulk.ExportedItem",
'BULK.MOCLONER': "bulk.MoCloner",
'BULK.MOMERGER': "bulk.MoMerger",
'BULK.REQUEST': "bulk.Request",
+ 'BULK.SUBREQUESTOBJ': "bulk.SubRequestObj",
'CAPABILITY.ADAPTERUNITDESCRIPTOR': "capability.AdapterUnitDescriptor",
'CAPABILITY.CATALOG': "capability.Catalog",
'CAPABILITY.CHASSISDESCRIPTOR': "capability.ChassisDescriptor",
@@ -208,10 +214,6 @@ class FcpoolPoolMemberRelationship(ModelComposed):
'COND.HCLSTATUS': "cond.HclStatus",
'COND.HCLSTATUSDETAIL': "cond.HclStatusDetail",
'COND.HCLSTATUSJOB': "cond.HclStatusJob",
- 'CONFIG.EXPORTEDITEM': "config.ExportedItem",
- 'CONFIG.EXPORTER': "config.Exporter",
- 'CONFIG.IMPORTEDITEM': "config.ImportedItem",
- 'CONFIG.IMPORTER': "config.Importer",
'CONNECTORPACK.CONNECTORPACKUPGRADE': "connectorpack.ConnectorPackUpgrade",
'CONNECTORPACK.UPGRADEIMPACT': "connectorpack.UpgradeImpact",
'CRD.CUSTOMRESOURCE': "crd.CustomResource",
@@ -220,6 +222,7 @@ class FcpoolPoolMemberRelationship(ModelComposed):
'EQUIPMENT.CHASSISIDENTITY': "equipment.ChassisIdentity",
'EQUIPMENT.CHASSISOPERATION': "equipment.ChassisOperation",
'EQUIPMENT.DEVICESUMMARY': "equipment.DeviceSummary",
+ 'EQUIPMENT.EXPANDERMODULE': "equipment.ExpanderModule",
'EQUIPMENT.FAN': "equipment.Fan",
'EQUIPMENT.FANCONTROL': "equipment.FanControl",
'EQUIPMENT.FANMODULE': "equipment.FanModule",
@@ -468,6 +471,7 @@ class FcpoolPoolMemberRelationship(ModelComposed):
'KUBERNETES.ADDONDEFINITION': "kubernetes.AddonDefinition",
'KUBERNETES.ADDONPOLICY': "kubernetes.AddonPolicy",
'KUBERNETES.ADDONREPOSITORY': "kubernetes.AddonRepository",
+ 'KUBERNETES.BAREMETALNODEPROFILE': "kubernetes.BaremetalNodeProfile",
'KUBERNETES.CATALOG': "kubernetes.Catalog",
'KUBERNETES.CLUSTER': "kubernetes.Cluster",
'KUBERNETES.CLUSTERADDONPROFILE': "kubernetes.ClusterAddonProfile",
@@ -637,6 +641,11 @@ class FcpoolPoolMemberRelationship(ModelComposed):
'RESOURCE.LICENSERESOURCECOUNT': "resource.LicenseResourceCount",
'RESOURCE.MEMBERSHIP': "resource.Membership",
'RESOURCE.MEMBERSHIPHOLDER': "resource.MembershipHolder",
+ 'RESOURCEPOOL.LEASE': "resourcepool.Lease",
+ 'RESOURCEPOOL.LEASERESOURCE': "resourcepool.LeaseResource",
+ 'RESOURCEPOOL.POOL': "resourcepool.Pool",
+ 'RESOURCEPOOL.POOLMEMBER': "resourcepool.PoolMember",
+ 'RESOURCEPOOL.UNIVERSE': "resourcepool.Universe",
'RPROXY.REVERSEPROXY': "rproxy.ReverseProxy",
'SDCARD.POLICY': "sdcard.Policy",
'SDWAN.PROFILE': "sdwan.Profile",
@@ -752,6 +761,7 @@ class FcpoolPoolMemberRelationship(ModelComposed):
'TASK.NETAPPSCOPEDINVENTORY': "task.NetAppScopedInventory",
'TASK.PUBLICCLOUDSCOPEDINVENTORY': "task.PublicCloudScopedInventory",
'TASK.PURESCOPEDINVENTORY': "task.PureScopedInventory",
+ 'TASK.SERVERSCOPEDINVENTORY': "task.ServerScopedInventory",
'TECHSUPPORTMANAGEMENT.COLLECTIONCONTROLPOLICY': "techsupportmanagement.CollectionControlPolicy",
'TECHSUPPORTMANAGEMENT.DOWNLOAD': "techsupportmanagement.Download",
'TECHSUPPORTMANAGEMENT.TECHSUPPORTBUNDLE': "techsupportmanagement.TechSupportBundle",
@@ -783,6 +793,7 @@ class FcpoolPoolMemberRelationship(ModelComposed):
'VIRTUALIZATION.VMWAREVCENTER': "virtualization.VmwareVcenter",
'VIRTUALIZATION.VMWAREVIRTUALDISK': "virtualization.VmwareVirtualDisk",
'VIRTUALIZATION.VMWAREVIRTUALMACHINE': "virtualization.VmwareVirtualMachine",
+ 'VIRTUALIZATION.VMWAREVIRTUALMACHINESNAPSHOT': "virtualization.VmwareVirtualMachineSnapshot",
'VIRTUALIZATION.VMWAREVIRTUALNETWORKINTERFACE': "virtualization.VmwareVirtualNetworkInterface",
'VIRTUALIZATION.VMWAREVIRTUALSWITCH': "virtualization.VmwareVirtualSwitch",
'VMEDIA.POLICY': "vmedia.Policy",
@@ -815,12 +826,14 @@ class FcpoolPoolMemberRelationship(ModelComposed):
'WORKFLOW.TASKDEFINITION': "workflow.TaskDefinition",
'WORKFLOW.TASKINFO': "workflow.TaskInfo",
'WORKFLOW.TASKMETADATA': "workflow.TaskMetadata",
+ 'WORKFLOW.TASKNOTIFICATION': "workflow.TaskNotification",
'WORKFLOW.TEMPLATEEVALUATION': "workflow.TemplateEvaluation",
'WORKFLOW.TEMPLATEFUNCTIONMETA': "workflow.TemplateFunctionMeta",
'WORKFLOW.WORKFLOWDEFINITION': "workflow.WorkflowDefinition",
'WORKFLOW.WORKFLOWINFO': "workflow.WorkflowInfo",
'WORKFLOW.WORKFLOWMETA': "workflow.WorkflowMeta",
'WORKFLOW.WORKFLOWMETADATA': "workflow.WorkflowMetadata",
+ 'WORKFLOW.WORKFLOWNOTIFICATION': "workflow.WorkflowNotification",
},
}
diff --git a/intersight/model/fcpool_pool_member_response.py b/intersight/model/fcpool_pool_member_response.py
index f57d7253e8..0e1dab9eb1 100644
--- a/intersight/model/fcpool_pool_member_response.py
+++ b/intersight/model/fcpool_pool_member_response.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/fcpool_pool_relationship.py b/intersight/model/fcpool_pool_relationship.py
index 8d2fe8f493..f4845c3861 100644
--- a/intersight/model/fcpool_pool_relationship.py
+++ b/intersight/model/fcpool_pool_relationship.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
@@ -82,6 +82,8 @@ class FcpoolPoolRelationship(ModelComposed):
},
('object_type',): {
'AAA.AUDITRECORD': "aaa.AuditRecord",
+ 'AAA.RETENTIONCONFIG': "aaa.RetentionConfig",
+ 'AAA.RETENTIONPOLICY': "aaa.RetentionPolicy",
'ACCESS.POLICY': "access.Policy",
'ADAPTER.CONFIGPOLICY': "adapter.ConfigPolicy",
'ADAPTER.EXTETHINTERFACE': "adapter.ExtEthInterface",
@@ -98,6 +100,7 @@ class FcpoolPoolRelationship(ModelComposed):
'APPLIANCE.DATAEXPORTPOLICY': "appliance.DataExportPolicy",
'APPLIANCE.DEVICECERTIFICATE': "appliance.DeviceCertificate",
'APPLIANCE.DEVICECLAIM': "appliance.DeviceClaim",
+ 'APPLIANCE.DEVICEUPGRADEPOLICY': "appliance.DeviceUpgradePolicy",
'APPLIANCE.DIAGSETTING': "appliance.DiagSetting",
'APPLIANCE.EXTERNALSYSLOGSETTING': "appliance.ExternalSyslogSetting",
'APPLIANCE.FILESYSTEMSTATUS': "appliance.FileSystemStatus",
@@ -146,9 +149,12 @@ class FcpoolPoolRelationship(ModelComposed):
'BOOT.UEFISHELLDEVICE': "boot.UefiShellDevice",
'BOOT.USBDEVICE': "boot.UsbDevice",
'BOOT.VMEDIADEVICE': "boot.VmediaDevice",
+ 'BULK.EXPORT': "bulk.Export",
+ 'BULK.EXPORTEDITEM': "bulk.ExportedItem",
'BULK.MOCLONER': "bulk.MoCloner",
'BULK.MOMERGER': "bulk.MoMerger",
'BULK.REQUEST': "bulk.Request",
+ 'BULK.SUBREQUESTOBJ': "bulk.SubRequestObj",
'CAPABILITY.ADAPTERUNITDESCRIPTOR': "capability.AdapterUnitDescriptor",
'CAPABILITY.CATALOG': "capability.Catalog",
'CAPABILITY.CHASSISDESCRIPTOR': "capability.ChassisDescriptor",
@@ -212,10 +218,6 @@ class FcpoolPoolRelationship(ModelComposed):
'COND.HCLSTATUS': "cond.HclStatus",
'COND.HCLSTATUSDETAIL': "cond.HclStatusDetail",
'COND.HCLSTATUSJOB': "cond.HclStatusJob",
- 'CONFIG.EXPORTEDITEM': "config.ExportedItem",
- 'CONFIG.EXPORTER': "config.Exporter",
- 'CONFIG.IMPORTEDITEM': "config.ImportedItem",
- 'CONFIG.IMPORTER': "config.Importer",
'CONNECTORPACK.CONNECTORPACKUPGRADE': "connectorpack.ConnectorPackUpgrade",
'CONNECTORPACK.UPGRADEIMPACT': "connectorpack.UpgradeImpact",
'CRD.CUSTOMRESOURCE': "crd.CustomResource",
@@ -224,6 +226,7 @@ class FcpoolPoolRelationship(ModelComposed):
'EQUIPMENT.CHASSISIDENTITY': "equipment.ChassisIdentity",
'EQUIPMENT.CHASSISOPERATION': "equipment.ChassisOperation",
'EQUIPMENT.DEVICESUMMARY': "equipment.DeviceSummary",
+ 'EQUIPMENT.EXPANDERMODULE': "equipment.ExpanderModule",
'EQUIPMENT.FAN': "equipment.Fan",
'EQUIPMENT.FANCONTROL': "equipment.FanControl",
'EQUIPMENT.FANMODULE': "equipment.FanModule",
@@ -472,6 +475,7 @@ class FcpoolPoolRelationship(ModelComposed):
'KUBERNETES.ADDONDEFINITION': "kubernetes.AddonDefinition",
'KUBERNETES.ADDONPOLICY': "kubernetes.AddonPolicy",
'KUBERNETES.ADDONREPOSITORY': "kubernetes.AddonRepository",
+ 'KUBERNETES.BAREMETALNODEPROFILE': "kubernetes.BaremetalNodeProfile",
'KUBERNETES.CATALOG': "kubernetes.Catalog",
'KUBERNETES.CLUSTER': "kubernetes.Cluster",
'KUBERNETES.CLUSTERADDONPROFILE': "kubernetes.ClusterAddonProfile",
@@ -641,6 +645,11 @@ class FcpoolPoolRelationship(ModelComposed):
'RESOURCE.LICENSERESOURCECOUNT': "resource.LicenseResourceCount",
'RESOURCE.MEMBERSHIP': "resource.Membership",
'RESOURCE.MEMBERSHIPHOLDER': "resource.MembershipHolder",
+ 'RESOURCEPOOL.LEASE': "resourcepool.Lease",
+ 'RESOURCEPOOL.LEASERESOURCE': "resourcepool.LeaseResource",
+ 'RESOURCEPOOL.POOL': "resourcepool.Pool",
+ 'RESOURCEPOOL.POOLMEMBER': "resourcepool.PoolMember",
+ 'RESOURCEPOOL.UNIVERSE': "resourcepool.Universe",
'RPROXY.REVERSEPROXY': "rproxy.ReverseProxy",
'SDCARD.POLICY': "sdcard.Policy",
'SDWAN.PROFILE': "sdwan.Profile",
@@ -756,6 +765,7 @@ class FcpoolPoolRelationship(ModelComposed):
'TASK.NETAPPSCOPEDINVENTORY': "task.NetAppScopedInventory",
'TASK.PUBLICCLOUDSCOPEDINVENTORY': "task.PublicCloudScopedInventory",
'TASK.PURESCOPEDINVENTORY': "task.PureScopedInventory",
+ 'TASK.SERVERSCOPEDINVENTORY': "task.ServerScopedInventory",
'TECHSUPPORTMANAGEMENT.COLLECTIONCONTROLPOLICY': "techsupportmanagement.CollectionControlPolicy",
'TECHSUPPORTMANAGEMENT.DOWNLOAD': "techsupportmanagement.Download",
'TECHSUPPORTMANAGEMENT.TECHSUPPORTBUNDLE': "techsupportmanagement.TechSupportBundle",
@@ -787,6 +797,7 @@ class FcpoolPoolRelationship(ModelComposed):
'VIRTUALIZATION.VMWAREVCENTER': "virtualization.VmwareVcenter",
'VIRTUALIZATION.VMWAREVIRTUALDISK': "virtualization.VmwareVirtualDisk",
'VIRTUALIZATION.VMWAREVIRTUALMACHINE': "virtualization.VmwareVirtualMachine",
+ 'VIRTUALIZATION.VMWAREVIRTUALMACHINESNAPSHOT': "virtualization.VmwareVirtualMachineSnapshot",
'VIRTUALIZATION.VMWAREVIRTUALNETWORKINTERFACE': "virtualization.VmwareVirtualNetworkInterface",
'VIRTUALIZATION.VMWAREVIRTUALSWITCH': "virtualization.VmwareVirtualSwitch",
'VMEDIA.POLICY': "vmedia.Policy",
@@ -819,12 +830,14 @@ class FcpoolPoolRelationship(ModelComposed):
'WORKFLOW.TASKDEFINITION': "workflow.TaskDefinition",
'WORKFLOW.TASKINFO': "workflow.TaskInfo",
'WORKFLOW.TASKMETADATA': "workflow.TaskMetadata",
+ 'WORKFLOW.TASKNOTIFICATION': "workflow.TaskNotification",
'WORKFLOW.TEMPLATEEVALUATION': "workflow.TemplateEvaluation",
'WORKFLOW.TEMPLATEFUNCTIONMETA': "workflow.TemplateFunctionMeta",
'WORKFLOW.WORKFLOWDEFINITION': "workflow.WorkflowDefinition",
'WORKFLOW.WORKFLOWINFO': "workflow.WorkflowInfo",
'WORKFLOW.WORKFLOWMETA': "workflow.WorkflowMeta",
'WORKFLOW.WORKFLOWMETADATA': "workflow.WorkflowMetadata",
+ 'WORKFLOW.WORKFLOWNOTIFICATION': "workflow.WorkflowNotification",
},
}
diff --git a/intersight/model/fcpool_pool_response.py b/intersight/model/fcpool_pool_response.py
index 313c477986..a2297070a1 100644
--- a/intersight/model/fcpool_pool_response.py
+++ b/intersight/model/fcpool_pool_response.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/fcpool_universe.py b/intersight/model/fcpool_universe.py
index 9d80669e2a..93d9f07720 100644
--- a/intersight/model/fcpool_universe.py
+++ b/intersight/model/fcpool_universe.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/fcpool_universe_all_of.py b/intersight/model/fcpool_universe_all_of.py
index 93f1ef2586..bf5849e731 100644
--- a/intersight/model/fcpool_universe_all_of.py
+++ b/intersight/model/fcpool_universe_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/fcpool_universe_list.py b/intersight/model/fcpool_universe_list.py
index 7be05b9aec..f9ffe2babe 100644
--- a/intersight/model/fcpool_universe_list.py
+++ b/intersight/model/fcpool_universe_list.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/fcpool_universe_list_all_of.py b/intersight/model/fcpool_universe_list_all_of.py
index deb382a211..42fcf8dccd 100644
--- a/intersight/model/fcpool_universe_list_all_of.py
+++ b/intersight/model/fcpool_universe_list_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/fcpool_universe_relationship.py b/intersight/model/fcpool_universe_relationship.py
index b50f92b9ae..5eaba1fd21 100644
--- a/intersight/model/fcpool_universe_relationship.py
+++ b/intersight/model/fcpool_universe_relationship.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
@@ -74,6 +74,8 @@ class FcpoolUniverseRelationship(ModelComposed):
},
('object_type',): {
'AAA.AUDITRECORD': "aaa.AuditRecord",
+ 'AAA.RETENTIONCONFIG': "aaa.RetentionConfig",
+ 'AAA.RETENTIONPOLICY': "aaa.RetentionPolicy",
'ACCESS.POLICY': "access.Policy",
'ADAPTER.CONFIGPOLICY': "adapter.ConfigPolicy",
'ADAPTER.EXTETHINTERFACE': "adapter.ExtEthInterface",
@@ -90,6 +92,7 @@ class FcpoolUniverseRelationship(ModelComposed):
'APPLIANCE.DATAEXPORTPOLICY': "appliance.DataExportPolicy",
'APPLIANCE.DEVICECERTIFICATE': "appliance.DeviceCertificate",
'APPLIANCE.DEVICECLAIM': "appliance.DeviceClaim",
+ 'APPLIANCE.DEVICEUPGRADEPOLICY': "appliance.DeviceUpgradePolicy",
'APPLIANCE.DIAGSETTING': "appliance.DiagSetting",
'APPLIANCE.EXTERNALSYSLOGSETTING': "appliance.ExternalSyslogSetting",
'APPLIANCE.FILESYSTEMSTATUS': "appliance.FileSystemStatus",
@@ -138,9 +141,12 @@ class FcpoolUniverseRelationship(ModelComposed):
'BOOT.UEFISHELLDEVICE': "boot.UefiShellDevice",
'BOOT.USBDEVICE': "boot.UsbDevice",
'BOOT.VMEDIADEVICE': "boot.VmediaDevice",
+ 'BULK.EXPORT': "bulk.Export",
+ 'BULK.EXPORTEDITEM': "bulk.ExportedItem",
'BULK.MOCLONER': "bulk.MoCloner",
'BULK.MOMERGER': "bulk.MoMerger",
'BULK.REQUEST': "bulk.Request",
+ 'BULK.SUBREQUESTOBJ': "bulk.SubRequestObj",
'CAPABILITY.ADAPTERUNITDESCRIPTOR': "capability.AdapterUnitDescriptor",
'CAPABILITY.CATALOG': "capability.Catalog",
'CAPABILITY.CHASSISDESCRIPTOR': "capability.ChassisDescriptor",
@@ -204,10 +210,6 @@ class FcpoolUniverseRelationship(ModelComposed):
'COND.HCLSTATUS': "cond.HclStatus",
'COND.HCLSTATUSDETAIL': "cond.HclStatusDetail",
'COND.HCLSTATUSJOB': "cond.HclStatusJob",
- 'CONFIG.EXPORTEDITEM': "config.ExportedItem",
- 'CONFIG.EXPORTER': "config.Exporter",
- 'CONFIG.IMPORTEDITEM': "config.ImportedItem",
- 'CONFIG.IMPORTER': "config.Importer",
'CONNECTORPACK.CONNECTORPACKUPGRADE': "connectorpack.ConnectorPackUpgrade",
'CONNECTORPACK.UPGRADEIMPACT': "connectorpack.UpgradeImpact",
'CRD.CUSTOMRESOURCE': "crd.CustomResource",
@@ -216,6 +218,7 @@ class FcpoolUniverseRelationship(ModelComposed):
'EQUIPMENT.CHASSISIDENTITY': "equipment.ChassisIdentity",
'EQUIPMENT.CHASSISOPERATION': "equipment.ChassisOperation",
'EQUIPMENT.DEVICESUMMARY': "equipment.DeviceSummary",
+ 'EQUIPMENT.EXPANDERMODULE': "equipment.ExpanderModule",
'EQUIPMENT.FAN': "equipment.Fan",
'EQUIPMENT.FANCONTROL': "equipment.FanControl",
'EQUIPMENT.FANMODULE': "equipment.FanModule",
@@ -464,6 +467,7 @@ class FcpoolUniverseRelationship(ModelComposed):
'KUBERNETES.ADDONDEFINITION': "kubernetes.AddonDefinition",
'KUBERNETES.ADDONPOLICY': "kubernetes.AddonPolicy",
'KUBERNETES.ADDONREPOSITORY': "kubernetes.AddonRepository",
+ 'KUBERNETES.BAREMETALNODEPROFILE': "kubernetes.BaremetalNodeProfile",
'KUBERNETES.CATALOG': "kubernetes.Catalog",
'KUBERNETES.CLUSTER': "kubernetes.Cluster",
'KUBERNETES.CLUSTERADDONPROFILE': "kubernetes.ClusterAddonProfile",
@@ -633,6 +637,11 @@ class FcpoolUniverseRelationship(ModelComposed):
'RESOURCE.LICENSERESOURCECOUNT': "resource.LicenseResourceCount",
'RESOURCE.MEMBERSHIP': "resource.Membership",
'RESOURCE.MEMBERSHIPHOLDER': "resource.MembershipHolder",
+ 'RESOURCEPOOL.LEASE': "resourcepool.Lease",
+ 'RESOURCEPOOL.LEASERESOURCE': "resourcepool.LeaseResource",
+ 'RESOURCEPOOL.POOL': "resourcepool.Pool",
+ 'RESOURCEPOOL.POOLMEMBER': "resourcepool.PoolMember",
+ 'RESOURCEPOOL.UNIVERSE': "resourcepool.Universe",
'RPROXY.REVERSEPROXY': "rproxy.ReverseProxy",
'SDCARD.POLICY': "sdcard.Policy",
'SDWAN.PROFILE': "sdwan.Profile",
@@ -748,6 +757,7 @@ class FcpoolUniverseRelationship(ModelComposed):
'TASK.NETAPPSCOPEDINVENTORY': "task.NetAppScopedInventory",
'TASK.PUBLICCLOUDSCOPEDINVENTORY': "task.PublicCloudScopedInventory",
'TASK.PURESCOPEDINVENTORY': "task.PureScopedInventory",
+ 'TASK.SERVERSCOPEDINVENTORY': "task.ServerScopedInventory",
'TECHSUPPORTMANAGEMENT.COLLECTIONCONTROLPOLICY': "techsupportmanagement.CollectionControlPolicy",
'TECHSUPPORTMANAGEMENT.DOWNLOAD': "techsupportmanagement.Download",
'TECHSUPPORTMANAGEMENT.TECHSUPPORTBUNDLE': "techsupportmanagement.TechSupportBundle",
@@ -779,6 +789,7 @@ class FcpoolUniverseRelationship(ModelComposed):
'VIRTUALIZATION.VMWAREVCENTER': "virtualization.VmwareVcenter",
'VIRTUALIZATION.VMWAREVIRTUALDISK': "virtualization.VmwareVirtualDisk",
'VIRTUALIZATION.VMWAREVIRTUALMACHINE': "virtualization.VmwareVirtualMachine",
+ 'VIRTUALIZATION.VMWAREVIRTUALMACHINESNAPSHOT': "virtualization.VmwareVirtualMachineSnapshot",
'VIRTUALIZATION.VMWAREVIRTUALNETWORKINTERFACE': "virtualization.VmwareVirtualNetworkInterface",
'VIRTUALIZATION.VMWAREVIRTUALSWITCH': "virtualization.VmwareVirtualSwitch",
'VMEDIA.POLICY': "vmedia.Policy",
@@ -811,12 +822,14 @@ class FcpoolUniverseRelationship(ModelComposed):
'WORKFLOW.TASKDEFINITION': "workflow.TaskDefinition",
'WORKFLOW.TASKINFO': "workflow.TaskInfo",
'WORKFLOW.TASKMETADATA': "workflow.TaskMetadata",
+ 'WORKFLOW.TASKNOTIFICATION': "workflow.TaskNotification",
'WORKFLOW.TEMPLATEEVALUATION': "workflow.TemplateEvaluation",
'WORKFLOW.TEMPLATEFUNCTIONMETA': "workflow.TemplateFunctionMeta",
'WORKFLOW.WORKFLOWDEFINITION': "workflow.WorkflowDefinition",
'WORKFLOW.WORKFLOWINFO': "workflow.WorkflowInfo",
'WORKFLOW.WORKFLOWMETA': "workflow.WorkflowMeta",
'WORKFLOW.WORKFLOWMETADATA': "workflow.WorkflowMetadata",
+ 'WORKFLOW.WORKFLOWNOTIFICATION': "workflow.WorkflowNotification",
},
}
diff --git a/intersight/model/fcpool_universe_response.py b/intersight/model/fcpool_universe_response.py
index 96b218a0eb..4b1e6eb57a 100644
--- a/intersight/model/fcpool_universe_response.py
+++ b/intersight/model/fcpool_universe_response.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/feedback_feedback_data.py b/intersight/model/feedback_feedback_data.py
index 223c574502..8dbcbf772f 100644
--- a/intersight/model/feedback_feedback_data.py
+++ b/intersight/model/feedback_feedback_data.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/feedback_feedback_data_all_of.py b/intersight/model/feedback_feedback_data_all_of.py
index e1db590e2c..67ca916b63 100644
--- a/intersight/model/feedback_feedback_data_all_of.py
+++ b/intersight/model/feedback_feedback_data_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/feedback_feedback_post.py b/intersight/model/feedback_feedback_post.py
index a8f9fa5667..b642cdf2e6 100644
--- a/intersight/model/feedback_feedback_post.py
+++ b/intersight/model/feedback_feedback_post.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/feedback_feedback_post_all_of.py b/intersight/model/feedback_feedback_post_all_of.py
index 55329152e4..e9b2a04bc5 100644
--- a/intersight/model/feedback_feedback_post_all_of.py
+++ b/intersight/model/feedback_feedback_post_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/firmware_base_distributable.py b/intersight/model/firmware_base_distributable.py
index 10d4d67fe4..1b9311de7a 100644
--- a/intersight/model/firmware_base_distributable.py
+++ b/intersight/model/firmware_base_distributable.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/firmware_base_distributable_all_of.py b/intersight/model/firmware_base_distributable_all_of.py
index 9754dcb35f..483dc59515 100644
--- a/intersight/model/firmware_base_distributable_all_of.py
+++ b/intersight/model/firmware_base_distributable_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/firmware_base_distributable_relationship.py b/intersight/model/firmware_base_distributable_relationship.py
index be1a3a1921..e5d72391fd 100644
--- a/intersight/model/firmware_base_distributable_relationship.py
+++ b/intersight/model/firmware_base_distributable_relationship.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
@@ -108,6 +108,8 @@ class FirmwareBaseDistributableRelationship(ModelComposed):
},
('object_type',): {
'AAA.AUDITRECORD': "aaa.AuditRecord",
+ 'AAA.RETENTIONCONFIG': "aaa.RetentionConfig",
+ 'AAA.RETENTIONPOLICY': "aaa.RetentionPolicy",
'ACCESS.POLICY': "access.Policy",
'ADAPTER.CONFIGPOLICY': "adapter.ConfigPolicy",
'ADAPTER.EXTETHINTERFACE': "adapter.ExtEthInterface",
@@ -124,6 +126,7 @@ class FirmwareBaseDistributableRelationship(ModelComposed):
'APPLIANCE.DATAEXPORTPOLICY': "appliance.DataExportPolicy",
'APPLIANCE.DEVICECERTIFICATE': "appliance.DeviceCertificate",
'APPLIANCE.DEVICECLAIM': "appliance.DeviceClaim",
+ 'APPLIANCE.DEVICEUPGRADEPOLICY': "appliance.DeviceUpgradePolicy",
'APPLIANCE.DIAGSETTING': "appliance.DiagSetting",
'APPLIANCE.EXTERNALSYSLOGSETTING': "appliance.ExternalSyslogSetting",
'APPLIANCE.FILESYSTEMSTATUS': "appliance.FileSystemStatus",
@@ -172,9 +175,12 @@ class FirmwareBaseDistributableRelationship(ModelComposed):
'BOOT.UEFISHELLDEVICE': "boot.UefiShellDevice",
'BOOT.USBDEVICE': "boot.UsbDevice",
'BOOT.VMEDIADEVICE': "boot.VmediaDevice",
+ 'BULK.EXPORT': "bulk.Export",
+ 'BULK.EXPORTEDITEM': "bulk.ExportedItem",
'BULK.MOCLONER': "bulk.MoCloner",
'BULK.MOMERGER': "bulk.MoMerger",
'BULK.REQUEST': "bulk.Request",
+ 'BULK.SUBREQUESTOBJ': "bulk.SubRequestObj",
'CAPABILITY.ADAPTERUNITDESCRIPTOR': "capability.AdapterUnitDescriptor",
'CAPABILITY.CATALOG': "capability.Catalog",
'CAPABILITY.CHASSISDESCRIPTOR': "capability.ChassisDescriptor",
@@ -238,10 +244,6 @@ class FirmwareBaseDistributableRelationship(ModelComposed):
'COND.HCLSTATUS': "cond.HclStatus",
'COND.HCLSTATUSDETAIL': "cond.HclStatusDetail",
'COND.HCLSTATUSJOB': "cond.HclStatusJob",
- 'CONFIG.EXPORTEDITEM': "config.ExportedItem",
- 'CONFIG.EXPORTER': "config.Exporter",
- 'CONFIG.IMPORTEDITEM': "config.ImportedItem",
- 'CONFIG.IMPORTER': "config.Importer",
'CONNECTORPACK.CONNECTORPACKUPGRADE': "connectorpack.ConnectorPackUpgrade",
'CONNECTORPACK.UPGRADEIMPACT': "connectorpack.UpgradeImpact",
'CRD.CUSTOMRESOURCE': "crd.CustomResource",
@@ -250,6 +252,7 @@ class FirmwareBaseDistributableRelationship(ModelComposed):
'EQUIPMENT.CHASSISIDENTITY': "equipment.ChassisIdentity",
'EQUIPMENT.CHASSISOPERATION': "equipment.ChassisOperation",
'EQUIPMENT.DEVICESUMMARY': "equipment.DeviceSummary",
+ 'EQUIPMENT.EXPANDERMODULE': "equipment.ExpanderModule",
'EQUIPMENT.FAN': "equipment.Fan",
'EQUIPMENT.FANCONTROL': "equipment.FanControl",
'EQUIPMENT.FANMODULE': "equipment.FanModule",
@@ -498,6 +501,7 @@ class FirmwareBaseDistributableRelationship(ModelComposed):
'KUBERNETES.ADDONDEFINITION': "kubernetes.AddonDefinition",
'KUBERNETES.ADDONPOLICY': "kubernetes.AddonPolicy",
'KUBERNETES.ADDONREPOSITORY': "kubernetes.AddonRepository",
+ 'KUBERNETES.BAREMETALNODEPROFILE': "kubernetes.BaremetalNodeProfile",
'KUBERNETES.CATALOG': "kubernetes.Catalog",
'KUBERNETES.CLUSTER': "kubernetes.Cluster",
'KUBERNETES.CLUSTERADDONPROFILE': "kubernetes.ClusterAddonProfile",
@@ -667,6 +671,11 @@ class FirmwareBaseDistributableRelationship(ModelComposed):
'RESOURCE.LICENSERESOURCECOUNT': "resource.LicenseResourceCount",
'RESOURCE.MEMBERSHIP': "resource.Membership",
'RESOURCE.MEMBERSHIPHOLDER': "resource.MembershipHolder",
+ 'RESOURCEPOOL.LEASE': "resourcepool.Lease",
+ 'RESOURCEPOOL.LEASERESOURCE': "resourcepool.LeaseResource",
+ 'RESOURCEPOOL.POOL': "resourcepool.Pool",
+ 'RESOURCEPOOL.POOLMEMBER': "resourcepool.PoolMember",
+ 'RESOURCEPOOL.UNIVERSE': "resourcepool.Universe",
'RPROXY.REVERSEPROXY': "rproxy.ReverseProxy",
'SDCARD.POLICY': "sdcard.Policy",
'SDWAN.PROFILE': "sdwan.Profile",
@@ -782,6 +791,7 @@ class FirmwareBaseDistributableRelationship(ModelComposed):
'TASK.NETAPPSCOPEDINVENTORY': "task.NetAppScopedInventory",
'TASK.PUBLICCLOUDSCOPEDINVENTORY': "task.PublicCloudScopedInventory",
'TASK.PURESCOPEDINVENTORY': "task.PureScopedInventory",
+ 'TASK.SERVERSCOPEDINVENTORY': "task.ServerScopedInventory",
'TECHSUPPORTMANAGEMENT.COLLECTIONCONTROLPOLICY': "techsupportmanagement.CollectionControlPolicy",
'TECHSUPPORTMANAGEMENT.DOWNLOAD': "techsupportmanagement.Download",
'TECHSUPPORTMANAGEMENT.TECHSUPPORTBUNDLE': "techsupportmanagement.TechSupportBundle",
@@ -813,6 +823,7 @@ class FirmwareBaseDistributableRelationship(ModelComposed):
'VIRTUALIZATION.VMWAREVCENTER': "virtualization.VmwareVcenter",
'VIRTUALIZATION.VMWAREVIRTUALDISK': "virtualization.VmwareVirtualDisk",
'VIRTUALIZATION.VMWAREVIRTUALMACHINE': "virtualization.VmwareVirtualMachine",
+ 'VIRTUALIZATION.VMWAREVIRTUALMACHINESNAPSHOT': "virtualization.VmwareVirtualMachineSnapshot",
'VIRTUALIZATION.VMWAREVIRTUALNETWORKINTERFACE': "virtualization.VmwareVirtualNetworkInterface",
'VIRTUALIZATION.VMWAREVIRTUALSWITCH': "virtualization.VmwareVirtualSwitch",
'VMEDIA.POLICY': "vmedia.Policy",
@@ -845,12 +856,14 @@ class FirmwareBaseDistributableRelationship(ModelComposed):
'WORKFLOW.TASKDEFINITION': "workflow.TaskDefinition",
'WORKFLOW.TASKINFO': "workflow.TaskInfo",
'WORKFLOW.TASKMETADATA': "workflow.TaskMetadata",
+ 'WORKFLOW.TASKNOTIFICATION': "workflow.TaskNotification",
'WORKFLOW.TEMPLATEEVALUATION': "workflow.TemplateEvaluation",
'WORKFLOW.TEMPLATEFUNCTIONMETA': "workflow.TemplateFunctionMeta",
'WORKFLOW.WORKFLOWDEFINITION': "workflow.WorkflowDefinition",
'WORKFLOW.WORKFLOWINFO': "workflow.WorkflowInfo",
'WORKFLOW.WORKFLOWMETA': "workflow.WorkflowMeta",
'WORKFLOW.WORKFLOWMETADATA': "workflow.WorkflowMetadata",
+ 'WORKFLOW.WORKFLOWNOTIFICATION': "workflow.WorkflowNotification",
},
}
diff --git a/intersight/model/firmware_base_impact.py b/intersight/model/firmware_base_impact.py
index 6c7560691c..2ff48d826e 100644
--- a/intersight/model/firmware_base_impact.py
+++ b/intersight/model/firmware_base_impact.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/firmware_base_impact_all_of.py b/intersight/model/firmware_base_impact_all_of.py
index 4e62bcb0d5..4daac31919 100644
--- a/intersight/model/firmware_base_impact_all_of.py
+++ b/intersight/model/firmware_base_impact_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/firmware_bios_descriptor.py b/intersight/model/firmware_bios_descriptor.py
index 4ed1786f37..252128928f 100644
--- a/intersight/model/firmware_bios_descriptor.py
+++ b/intersight/model/firmware_bios_descriptor.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/firmware_bios_descriptor_list.py b/intersight/model/firmware_bios_descriptor_list.py
index 63eb387dfc..699334cb01 100644
--- a/intersight/model/firmware_bios_descriptor_list.py
+++ b/intersight/model/firmware_bios_descriptor_list.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/firmware_bios_descriptor_list_all_of.py b/intersight/model/firmware_bios_descriptor_list_all_of.py
index ec7e27de64..16d1bc6cb8 100644
--- a/intersight/model/firmware_bios_descriptor_list_all_of.py
+++ b/intersight/model/firmware_bios_descriptor_list_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/firmware_bios_descriptor_response.py b/intersight/model/firmware_bios_descriptor_response.py
index d4e640d840..30615123df 100644
--- a/intersight/model/firmware_bios_descriptor_response.py
+++ b/intersight/model/firmware_bios_descriptor_response.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/firmware_board_controller_descriptor.py b/intersight/model/firmware_board_controller_descriptor.py
index 18dbfeb8a2..659ba049a1 100644
--- a/intersight/model/firmware_board_controller_descriptor.py
+++ b/intersight/model/firmware_board_controller_descriptor.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/firmware_board_controller_descriptor_list.py b/intersight/model/firmware_board_controller_descriptor_list.py
index 235bed0532..3b5e904440 100644
--- a/intersight/model/firmware_board_controller_descriptor_list.py
+++ b/intersight/model/firmware_board_controller_descriptor_list.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/firmware_board_controller_descriptor_list_all_of.py b/intersight/model/firmware_board_controller_descriptor_list_all_of.py
index 1eb298cbad..b994b366be 100644
--- a/intersight/model/firmware_board_controller_descriptor_list_all_of.py
+++ b/intersight/model/firmware_board_controller_descriptor_list_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/firmware_board_controller_descriptor_response.py b/intersight/model/firmware_board_controller_descriptor_response.py
index 02305ae671..cc2c583f46 100644
--- a/intersight/model/firmware_board_controller_descriptor_response.py
+++ b/intersight/model/firmware_board_controller_descriptor_response.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/firmware_chassis_upgrade.py b/intersight/model/firmware_chassis_upgrade.py
index 9c91ac23aa..9d4bae0679 100644
--- a/intersight/model/firmware_chassis_upgrade.py
+++ b/intersight/model/firmware_chassis_upgrade.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/firmware_chassis_upgrade_all_of.py b/intersight/model/firmware_chassis_upgrade_all_of.py
index 9a81570cc4..a3a39f9a6d 100644
--- a/intersight/model/firmware_chassis_upgrade_all_of.py
+++ b/intersight/model/firmware_chassis_upgrade_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/firmware_chassis_upgrade_impact.py b/intersight/model/firmware_chassis_upgrade_impact.py
index d7c6a5c528..61f2be97db 100644
--- a/intersight/model/firmware_chassis_upgrade_impact.py
+++ b/intersight/model/firmware_chassis_upgrade_impact.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/firmware_chassis_upgrade_impact_all_of.py b/intersight/model/firmware_chassis_upgrade_impact_all_of.py
index 04c5f01ea6..966668de81 100644
--- a/intersight/model/firmware_chassis_upgrade_impact_all_of.py
+++ b/intersight/model/firmware_chassis_upgrade_impact_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/firmware_chassis_upgrade_list.py b/intersight/model/firmware_chassis_upgrade_list.py
index 450c8b415b..56fde25301 100644
--- a/intersight/model/firmware_chassis_upgrade_list.py
+++ b/intersight/model/firmware_chassis_upgrade_list.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/firmware_chassis_upgrade_list_all_of.py b/intersight/model/firmware_chassis_upgrade_list_all_of.py
index 92c551ba4e..ac1bbbbe99 100644
--- a/intersight/model/firmware_chassis_upgrade_list_all_of.py
+++ b/intersight/model/firmware_chassis_upgrade_list_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/firmware_chassis_upgrade_response.py b/intersight/model/firmware_chassis_upgrade_response.py
index 5be1db972b..e38de2446e 100644
--- a/intersight/model/firmware_chassis_upgrade_response.py
+++ b/intersight/model/firmware_chassis_upgrade_response.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/firmware_cifs_server.py b/intersight/model/firmware_cifs_server.py
index bea3e199f5..39384791af 100644
--- a/intersight/model/firmware_cifs_server.py
+++ b/intersight/model/firmware_cifs_server.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/firmware_cifs_server_all_of.py b/intersight/model/firmware_cifs_server_all_of.py
index 9e4015e35d..96db69616c 100644
--- a/intersight/model/firmware_cifs_server_all_of.py
+++ b/intersight/model/firmware_cifs_server_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/firmware_cimc_descriptor.py b/intersight/model/firmware_cimc_descriptor.py
index 0d727782bf..4109b29bbf 100644
--- a/intersight/model/firmware_cimc_descriptor.py
+++ b/intersight/model/firmware_cimc_descriptor.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/firmware_cimc_descriptor_list.py b/intersight/model/firmware_cimc_descriptor_list.py
index b02ee58cc3..0faabab49b 100644
--- a/intersight/model/firmware_cimc_descriptor_list.py
+++ b/intersight/model/firmware_cimc_descriptor_list.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/firmware_cimc_descriptor_list_all_of.py b/intersight/model/firmware_cimc_descriptor_list_all_of.py
index be5a7eb088..33977aba9a 100644
--- a/intersight/model/firmware_cimc_descriptor_list_all_of.py
+++ b/intersight/model/firmware_cimc_descriptor_list_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/firmware_cimc_descriptor_response.py b/intersight/model/firmware_cimc_descriptor_response.py
index c72a2c164e..f45b59bc69 100644
--- a/intersight/model/firmware_cimc_descriptor_response.py
+++ b/intersight/model/firmware_cimc_descriptor_response.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/firmware_component_descriptor.py b/intersight/model/firmware_component_descriptor.py
index d607deb790..98327a2fd1 100644
--- a/intersight/model/firmware_component_descriptor.py
+++ b/intersight/model/firmware_component_descriptor.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/firmware_component_descriptor_all_of.py b/intersight/model/firmware_component_descriptor_all_of.py
index b2d10ea489..1ead9a798b 100644
--- a/intersight/model/firmware_component_descriptor_all_of.py
+++ b/intersight/model/firmware_component_descriptor_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/firmware_component_impact.py b/intersight/model/firmware_component_impact.py
index a1ff3c45b4..0e24b0f935 100644
--- a/intersight/model/firmware_component_impact.py
+++ b/intersight/model/firmware_component_impact.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/firmware_component_impact_all_of.py b/intersight/model/firmware_component_impact_all_of.py
index 0b552bd3e9..2dbbf2b927 100644
--- a/intersight/model/firmware_component_impact_all_of.py
+++ b/intersight/model/firmware_component_impact_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/firmware_component_meta.py b/intersight/model/firmware_component_meta.py
index afd4e8f7c4..ab1dedf296 100644
--- a/intersight/model/firmware_component_meta.py
+++ b/intersight/model/firmware_component_meta.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/firmware_component_meta_all_of.py b/intersight/model/firmware_component_meta_all_of.py
index 557d3a8cac..f71efafbb4 100644
--- a/intersight/model/firmware_component_meta_all_of.py
+++ b/intersight/model/firmware_component_meta_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/firmware_dimm_descriptor.py b/intersight/model/firmware_dimm_descriptor.py
index 7bca41ba10..5a8abedfc6 100644
--- a/intersight/model/firmware_dimm_descriptor.py
+++ b/intersight/model/firmware_dimm_descriptor.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/firmware_dimm_descriptor_list.py b/intersight/model/firmware_dimm_descriptor_list.py
index 7b0e0b0e16..17541c17e4 100644
--- a/intersight/model/firmware_dimm_descriptor_list.py
+++ b/intersight/model/firmware_dimm_descriptor_list.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/firmware_dimm_descriptor_list_all_of.py b/intersight/model/firmware_dimm_descriptor_list_all_of.py
index 2b22c9843b..2f14358176 100644
--- a/intersight/model/firmware_dimm_descriptor_list_all_of.py
+++ b/intersight/model/firmware_dimm_descriptor_list_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/firmware_dimm_descriptor_response.py b/intersight/model/firmware_dimm_descriptor_response.py
index 60b4cf552b..36a8b31cb8 100644
--- a/intersight/model/firmware_dimm_descriptor_response.py
+++ b/intersight/model/firmware_dimm_descriptor_response.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/firmware_direct_download.py b/intersight/model/firmware_direct_download.py
index 0ddec6d8a4..98fd79d267 100644
--- a/intersight/model/firmware_direct_download.py
+++ b/intersight/model/firmware_direct_download.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/firmware_direct_download_all_of.py b/intersight/model/firmware_direct_download_all_of.py
index 93433d9bce..b6e98f1d0a 100644
--- a/intersight/model/firmware_direct_download_all_of.py
+++ b/intersight/model/firmware_direct_download_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/firmware_distributable.py b/intersight/model/firmware_distributable.py
index 7b8731a138..f514dbd56f 100644
--- a/intersight/model/firmware_distributable.py
+++ b/intersight/model/firmware_distributable.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/firmware_distributable_all_of.py b/intersight/model/firmware_distributable_all_of.py
index 1d52939ec1..3b365b49cd 100644
--- a/intersight/model/firmware_distributable_all_of.py
+++ b/intersight/model/firmware_distributable_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/firmware_distributable_list.py b/intersight/model/firmware_distributable_list.py
index c4070a3486..3790ebd234 100644
--- a/intersight/model/firmware_distributable_list.py
+++ b/intersight/model/firmware_distributable_list.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/firmware_distributable_list_all_of.py b/intersight/model/firmware_distributable_list_all_of.py
index ee1b0351d1..8bd4e8a16d 100644
--- a/intersight/model/firmware_distributable_list_all_of.py
+++ b/intersight/model/firmware_distributable_list_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/firmware_distributable_meta.py b/intersight/model/firmware_distributable_meta.py
index 53eef3ad36..8151000283 100644
--- a/intersight/model/firmware_distributable_meta.py
+++ b/intersight/model/firmware_distributable_meta.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/firmware_distributable_meta_all_of.py b/intersight/model/firmware_distributable_meta_all_of.py
index 9264421230..a897066ad9 100644
--- a/intersight/model/firmware_distributable_meta_all_of.py
+++ b/intersight/model/firmware_distributable_meta_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/firmware_distributable_meta_list.py b/intersight/model/firmware_distributable_meta_list.py
index 7fea64f0e9..e5957bd638 100644
--- a/intersight/model/firmware_distributable_meta_list.py
+++ b/intersight/model/firmware_distributable_meta_list.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/firmware_distributable_meta_list_all_of.py b/intersight/model/firmware_distributable_meta_list_all_of.py
index 56edf7a029..4f7246ebbf 100644
--- a/intersight/model/firmware_distributable_meta_list_all_of.py
+++ b/intersight/model/firmware_distributable_meta_list_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/firmware_distributable_meta_relationship.py b/intersight/model/firmware_distributable_meta_relationship.py
index 985201a7fd..c658ac4345 100644
--- a/intersight/model/firmware_distributable_meta_relationship.py
+++ b/intersight/model/firmware_distributable_meta_relationship.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
@@ -85,6 +85,8 @@ class FirmwareDistributableMetaRelationship(ModelComposed):
},
('object_type',): {
'AAA.AUDITRECORD': "aaa.AuditRecord",
+ 'AAA.RETENTIONCONFIG': "aaa.RetentionConfig",
+ 'AAA.RETENTIONPOLICY': "aaa.RetentionPolicy",
'ACCESS.POLICY': "access.Policy",
'ADAPTER.CONFIGPOLICY': "adapter.ConfigPolicy",
'ADAPTER.EXTETHINTERFACE': "adapter.ExtEthInterface",
@@ -101,6 +103,7 @@ class FirmwareDistributableMetaRelationship(ModelComposed):
'APPLIANCE.DATAEXPORTPOLICY': "appliance.DataExportPolicy",
'APPLIANCE.DEVICECERTIFICATE': "appliance.DeviceCertificate",
'APPLIANCE.DEVICECLAIM': "appliance.DeviceClaim",
+ 'APPLIANCE.DEVICEUPGRADEPOLICY': "appliance.DeviceUpgradePolicy",
'APPLIANCE.DIAGSETTING': "appliance.DiagSetting",
'APPLIANCE.EXTERNALSYSLOGSETTING': "appliance.ExternalSyslogSetting",
'APPLIANCE.FILESYSTEMSTATUS': "appliance.FileSystemStatus",
@@ -149,9 +152,12 @@ class FirmwareDistributableMetaRelationship(ModelComposed):
'BOOT.UEFISHELLDEVICE': "boot.UefiShellDevice",
'BOOT.USBDEVICE': "boot.UsbDevice",
'BOOT.VMEDIADEVICE': "boot.VmediaDevice",
+ 'BULK.EXPORT': "bulk.Export",
+ 'BULK.EXPORTEDITEM': "bulk.ExportedItem",
'BULK.MOCLONER': "bulk.MoCloner",
'BULK.MOMERGER': "bulk.MoMerger",
'BULK.REQUEST': "bulk.Request",
+ 'BULK.SUBREQUESTOBJ': "bulk.SubRequestObj",
'CAPABILITY.ADAPTERUNITDESCRIPTOR': "capability.AdapterUnitDescriptor",
'CAPABILITY.CATALOG': "capability.Catalog",
'CAPABILITY.CHASSISDESCRIPTOR': "capability.ChassisDescriptor",
@@ -215,10 +221,6 @@ class FirmwareDistributableMetaRelationship(ModelComposed):
'COND.HCLSTATUS': "cond.HclStatus",
'COND.HCLSTATUSDETAIL': "cond.HclStatusDetail",
'COND.HCLSTATUSJOB': "cond.HclStatusJob",
- 'CONFIG.EXPORTEDITEM': "config.ExportedItem",
- 'CONFIG.EXPORTER': "config.Exporter",
- 'CONFIG.IMPORTEDITEM': "config.ImportedItem",
- 'CONFIG.IMPORTER': "config.Importer",
'CONNECTORPACK.CONNECTORPACKUPGRADE': "connectorpack.ConnectorPackUpgrade",
'CONNECTORPACK.UPGRADEIMPACT': "connectorpack.UpgradeImpact",
'CRD.CUSTOMRESOURCE': "crd.CustomResource",
@@ -227,6 +229,7 @@ class FirmwareDistributableMetaRelationship(ModelComposed):
'EQUIPMENT.CHASSISIDENTITY': "equipment.ChassisIdentity",
'EQUIPMENT.CHASSISOPERATION': "equipment.ChassisOperation",
'EQUIPMENT.DEVICESUMMARY': "equipment.DeviceSummary",
+ 'EQUIPMENT.EXPANDERMODULE': "equipment.ExpanderModule",
'EQUIPMENT.FAN': "equipment.Fan",
'EQUIPMENT.FANCONTROL': "equipment.FanControl",
'EQUIPMENT.FANMODULE': "equipment.FanModule",
@@ -475,6 +478,7 @@ class FirmwareDistributableMetaRelationship(ModelComposed):
'KUBERNETES.ADDONDEFINITION': "kubernetes.AddonDefinition",
'KUBERNETES.ADDONPOLICY': "kubernetes.AddonPolicy",
'KUBERNETES.ADDONREPOSITORY': "kubernetes.AddonRepository",
+ 'KUBERNETES.BAREMETALNODEPROFILE': "kubernetes.BaremetalNodeProfile",
'KUBERNETES.CATALOG': "kubernetes.Catalog",
'KUBERNETES.CLUSTER': "kubernetes.Cluster",
'KUBERNETES.CLUSTERADDONPROFILE': "kubernetes.ClusterAddonProfile",
@@ -644,6 +648,11 @@ class FirmwareDistributableMetaRelationship(ModelComposed):
'RESOURCE.LICENSERESOURCECOUNT': "resource.LicenseResourceCount",
'RESOURCE.MEMBERSHIP': "resource.Membership",
'RESOURCE.MEMBERSHIPHOLDER': "resource.MembershipHolder",
+ 'RESOURCEPOOL.LEASE': "resourcepool.Lease",
+ 'RESOURCEPOOL.LEASERESOURCE': "resourcepool.LeaseResource",
+ 'RESOURCEPOOL.POOL': "resourcepool.Pool",
+ 'RESOURCEPOOL.POOLMEMBER': "resourcepool.PoolMember",
+ 'RESOURCEPOOL.UNIVERSE': "resourcepool.Universe",
'RPROXY.REVERSEPROXY': "rproxy.ReverseProxy",
'SDCARD.POLICY': "sdcard.Policy",
'SDWAN.PROFILE': "sdwan.Profile",
@@ -759,6 +768,7 @@ class FirmwareDistributableMetaRelationship(ModelComposed):
'TASK.NETAPPSCOPEDINVENTORY': "task.NetAppScopedInventory",
'TASK.PUBLICCLOUDSCOPEDINVENTORY': "task.PublicCloudScopedInventory",
'TASK.PURESCOPEDINVENTORY': "task.PureScopedInventory",
+ 'TASK.SERVERSCOPEDINVENTORY': "task.ServerScopedInventory",
'TECHSUPPORTMANAGEMENT.COLLECTIONCONTROLPOLICY': "techsupportmanagement.CollectionControlPolicy",
'TECHSUPPORTMANAGEMENT.DOWNLOAD': "techsupportmanagement.Download",
'TECHSUPPORTMANAGEMENT.TECHSUPPORTBUNDLE': "techsupportmanagement.TechSupportBundle",
@@ -790,6 +800,7 @@ class FirmwareDistributableMetaRelationship(ModelComposed):
'VIRTUALIZATION.VMWAREVCENTER': "virtualization.VmwareVcenter",
'VIRTUALIZATION.VMWAREVIRTUALDISK': "virtualization.VmwareVirtualDisk",
'VIRTUALIZATION.VMWAREVIRTUALMACHINE': "virtualization.VmwareVirtualMachine",
+ 'VIRTUALIZATION.VMWAREVIRTUALMACHINESNAPSHOT': "virtualization.VmwareVirtualMachineSnapshot",
'VIRTUALIZATION.VMWAREVIRTUALNETWORKINTERFACE': "virtualization.VmwareVirtualNetworkInterface",
'VIRTUALIZATION.VMWAREVIRTUALSWITCH': "virtualization.VmwareVirtualSwitch",
'VMEDIA.POLICY': "vmedia.Policy",
@@ -822,12 +833,14 @@ class FirmwareDistributableMetaRelationship(ModelComposed):
'WORKFLOW.TASKDEFINITION': "workflow.TaskDefinition",
'WORKFLOW.TASKINFO': "workflow.TaskInfo",
'WORKFLOW.TASKMETADATA': "workflow.TaskMetadata",
+ 'WORKFLOW.TASKNOTIFICATION': "workflow.TaskNotification",
'WORKFLOW.TEMPLATEEVALUATION': "workflow.TemplateEvaluation",
'WORKFLOW.TEMPLATEFUNCTIONMETA': "workflow.TemplateFunctionMeta",
'WORKFLOW.WORKFLOWDEFINITION': "workflow.WorkflowDefinition",
'WORKFLOW.WORKFLOWINFO': "workflow.WorkflowInfo",
'WORKFLOW.WORKFLOWMETA': "workflow.WorkflowMeta",
'WORKFLOW.WORKFLOWMETADATA': "workflow.WorkflowMetadata",
+ 'WORKFLOW.WORKFLOWNOTIFICATION': "workflow.WorkflowNotification",
},
}
diff --git a/intersight/model/firmware_distributable_meta_response.py b/intersight/model/firmware_distributable_meta_response.py
index e183a2a1a3..8c528c06fb 100644
--- a/intersight/model/firmware_distributable_meta_response.py
+++ b/intersight/model/firmware_distributable_meta_response.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/firmware_distributable_relationship.py b/intersight/model/firmware_distributable_relationship.py
index 8583ef2600..27df81d548 100644
--- a/intersight/model/firmware_distributable_relationship.py
+++ b/intersight/model/firmware_distributable_relationship.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
@@ -114,6 +114,8 @@ class FirmwareDistributableRelationship(ModelComposed):
},
('object_type',): {
'AAA.AUDITRECORD': "aaa.AuditRecord",
+ 'AAA.RETENTIONCONFIG': "aaa.RetentionConfig",
+ 'AAA.RETENTIONPOLICY': "aaa.RetentionPolicy",
'ACCESS.POLICY': "access.Policy",
'ADAPTER.CONFIGPOLICY': "adapter.ConfigPolicy",
'ADAPTER.EXTETHINTERFACE': "adapter.ExtEthInterface",
@@ -130,6 +132,7 @@ class FirmwareDistributableRelationship(ModelComposed):
'APPLIANCE.DATAEXPORTPOLICY': "appliance.DataExportPolicy",
'APPLIANCE.DEVICECERTIFICATE': "appliance.DeviceCertificate",
'APPLIANCE.DEVICECLAIM': "appliance.DeviceClaim",
+ 'APPLIANCE.DEVICEUPGRADEPOLICY': "appliance.DeviceUpgradePolicy",
'APPLIANCE.DIAGSETTING': "appliance.DiagSetting",
'APPLIANCE.EXTERNALSYSLOGSETTING': "appliance.ExternalSyslogSetting",
'APPLIANCE.FILESYSTEMSTATUS': "appliance.FileSystemStatus",
@@ -178,9 +181,12 @@ class FirmwareDistributableRelationship(ModelComposed):
'BOOT.UEFISHELLDEVICE': "boot.UefiShellDevice",
'BOOT.USBDEVICE': "boot.UsbDevice",
'BOOT.VMEDIADEVICE': "boot.VmediaDevice",
+ 'BULK.EXPORT': "bulk.Export",
+ 'BULK.EXPORTEDITEM': "bulk.ExportedItem",
'BULK.MOCLONER': "bulk.MoCloner",
'BULK.MOMERGER': "bulk.MoMerger",
'BULK.REQUEST': "bulk.Request",
+ 'BULK.SUBREQUESTOBJ': "bulk.SubRequestObj",
'CAPABILITY.ADAPTERUNITDESCRIPTOR': "capability.AdapterUnitDescriptor",
'CAPABILITY.CATALOG': "capability.Catalog",
'CAPABILITY.CHASSISDESCRIPTOR': "capability.ChassisDescriptor",
@@ -244,10 +250,6 @@ class FirmwareDistributableRelationship(ModelComposed):
'COND.HCLSTATUS': "cond.HclStatus",
'COND.HCLSTATUSDETAIL': "cond.HclStatusDetail",
'COND.HCLSTATUSJOB': "cond.HclStatusJob",
- 'CONFIG.EXPORTEDITEM': "config.ExportedItem",
- 'CONFIG.EXPORTER': "config.Exporter",
- 'CONFIG.IMPORTEDITEM': "config.ImportedItem",
- 'CONFIG.IMPORTER': "config.Importer",
'CONNECTORPACK.CONNECTORPACKUPGRADE': "connectorpack.ConnectorPackUpgrade",
'CONNECTORPACK.UPGRADEIMPACT': "connectorpack.UpgradeImpact",
'CRD.CUSTOMRESOURCE': "crd.CustomResource",
@@ -256,6 +258,7 @@ class FirmwareDistributableRelationship(ModelComposed):
'EQUIPMENT.CHASSISIDENTITY': "equipment.ChassisIdentity",
'EQUIPMENT.CHASSISOPERATION': "equipment.ChassisOperation",
'EQUIPMENT.DEVICESUMMARY': "equipment.DeviceSummary",
+ 'EQUIPMENT.EXPANDERMODULE': "equipment.ExpanderModule",
'EQUIPMENT.FAN': "equipment.Fan",
'EQUIPMENT.FANCONTROL': "equipment.FanControl",
'EQUIPMENT.FANMODULE': "equipment.FanModule",
@@ -504,6 +507,7 @@ class FirmwareDistributableRelationship(ModelComposed):
'KUBERNETES.ADDONDEFINITION': "kubernetes.AddonDefinition",
'KUBERNETES.ADDONPOLICY': "kubernetes.AddonPolicy",
'KUBERNETES.ADDONREPOSITORY': "kubernetes.AddonRepository",
+ 'KUBERNETES.BAREMETALNODEPROFILE': "kubernetes.BaremetalNodeProfile",
'KUBERNETES.CATALOG': "kubernetes.Catalog",
'KUBERNETES.CLUSTER': "kubernetes.Cluster",
'KUBERNETES.CLUSTERADDONPROFILE': "kubernetes.ClusterAddonProfile",
@@ -673,6 +677,11 @@ class FirmwareDistributableRelationship(ModelComposed):
'RESOURCE.LICENSERESOURCECOUNT': "resource.LicenseResourceCount",
'RESOURCE.MEMBERSHIP': "resource.Membership",
'RESOURCE.MEMBERSHIPHOLDER': "resource.MembershipHolder",
+ 'RESOURCEPOOL.LEASE': "resourcepool.Lease",
+ 'RESOURCEPOOL.LEASERESOURCE': "resourcepool.LeaseResource",
+ 'RESOURCEPOOL.POOL': "resourcepool.Pool",
+ 'RESOURCEPOOL.POOLMEMBER': "resourcepool.PoolMember",
+ 'RESOURCEPOOL.UNIVERSE': "resourcepool.Universe",
'RPROXY.REVERSEPROXY': "rproxy.ReverseProxy",
'SDCARD.POLICY': "sdcard.Policy",
'SDWAN.PROFILE': "sdwan.Profile",
@@ -788,6 +797,7 @@ class FirmwareDistributableRelationship(ModelComposed):
'TASK.NETAPPSCOPEDINVENTORY': "task.NetAppScopedInventory",
'TASK.PUBLICCLOUDSCOPEDINVENTORY': "task.PublicCloudScopedInventory",
'TASK.PURESCOPEDINVENTORY': "task.PureScopedInventory",
+ 'TASK.SERVERSCOPEDINVENTORY': "task.ServerScopedInventory",
'TECHSUPPORTMANAGEMENT.COLLECTIONCONTROLPOLICY': "techsupportmanagement.CollectionControlPolicy",
'TECHSUPPORTMANAGEMENT.DOWNLOAD': "techsupportmanagement.Download",
'TECHSUPPORTMANAGEMENT.TECHSUPPORTBUNDLE': "techsupportmanagement.TechSupportBundle",
@@ -819,6 +829,7 @@ class FirmwareDistributableRelationship(ModelComposed):
'VIRTUALIZATION.VMWAREVCENTER': "virtualization.VmwareVcenter",
'VIRTUALIZATION.VMWAREVIRTUALDISK': "virtualization.VmwareVirtualDisk",
'VIRTUALIZATION.VMWAREVIRTUALMACHINE': "virtualization.VmwareVirtualMachine",
+ 'VIRTUALIZATION.VMWAREVIRTUALMACHINESNAPSHOT': "virtualization.VmwareVirtualMachineSnapshot",
'VIRTUALIZATION.VMWAREVIRTUALNETWORKINTERFACE': "virtualization.VmwareVirtualNetworkInterface",
'VIRTUALIZATION.VMWAREVIRTUALSWITCH': "virtualization.VmwareVirtualSwitch",
'VMEDIA.POLICY': "vmedia.Policy",
@@ -851,12 +862,14 @@ class FirmwareDistributableRelationship(ModelComposed):
'WORKFLOW.TASKDEFINITION': "workflow.TaskDefinition",
'WORKFLOW.TASKINFO': "workflow.TaskInfo",
'WORKFLOW.TASKMETADATA': "workflow.TaskMetadata",
+ 'WORKFLOW.TASKNOTIFICATION': "workflow.TaskNotification",
'WORKFLOW.TEMPLATEEVALUATION': "workflow.TemplateEvaluation",
'WORKFLOW.TEMPLATEFUNCTIONMETA': "workflow.TemplateFunctionMeta",
'WORKFLOW.WORKFLOWDEFINITION': "workflow.WorkflowDefinition",
'WORKFLOW.WORKFLOWINFO': "workflow.WorkflowInfo",
'WORKFLOW.WORKFLOWMETA': "workflow.WorkflowMeta",
'WORKFLOW.WORKFLOWMETADATA': "workflow.WorkflowMetadata",
+ 'WORKFLOW.WORKFLOWNOTIFICATION': "workflow.WorkflowNotification",
},
}
diff --git a/intersight/model/firmware_distributable_response.py b/intersight/model/firmware_distributable_response.py
index 4d21ec4140..b8fdbd7769 100644
--- a/intersight/model/firmware_distributable_response.py
+++ b/intersight/model/firmware_distributable_response.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/firmware_drive_descriptor.py b/intersight/model/firmware_drive_descriptor.py
index fc25e97036..475cd6f844 100644
--- a/intersight/model/firmware_drive_descriptor.py
+++ b/intersight/model/firmware_drive_descriptor.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/firmware_drive_descriptor_list.py b/intersight/model/firmware_drive_descriptor_list.py
index 34d3992fb7..099a0cd390 100644
--- a/intersight/model/firmware_drive_descriptor_list.py
+++ b/intersight/model/firmware_drive_descriptor_list.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/firmware_drive_descriptor_list_all_of.py b/intersight/model/firmware_drive_descriptor_list_all_of.py
index 8650b709f3..9a7731fcda 100644
--- a/intersight/model/firmware_drive_descriptor_list_all_of.py
+++ b/intersight/model/firmware_drive_descriptor_list_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/firmware_drive_descriptor_response.py b/intersight/model/firmware_drive_descriptor_response.py
index bd96c6f98b..1a4a792bd3 100644
--- a/intersight/model/firmware_drive_descriptor_response.py
+++ b/intersight/model/firmware_drive_descriptor_response.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/firmware_driver_distributable.py b/intersight/model/firmware_driver_distributable.py
index 1c5bad5157..32bb53bf76 100644
--- a/intersight/model/firmware_driver_distributable.py
+++ b/intersight/model/firmware_driver_distributable.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/firmware_driver_distributable_all_of.py b/intersight/model/firmware_driver_distributable_all_of.py
index 10344f944d..d3cc37c0f2 100644
--- a/intersight/model/firmware_driver_distributable_all_of.py
+++ b/intersight/model/firmware_driver_distributable_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/firmware_driver_distributable_list.py b/intersight/model/firmware_driver_distributable_list.py
index 81b7f8c5d7..eb78d718eb 100644
--- a/intersight/model/firmware_driver_distributable_list.py
+++ b/intersight/model/firmware_driver_distributable_list.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/firmware_driver_distributable_list_all_of.py b/intersight/model/firmware_driver_distributable_list_all_of.py
index 124051336e..606e5dc130 100644
--- a/intersight/model/firmware_driver_distributable_list_all_of.py
+++ b/intersight/model/firmware_driver_distributable_list_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/firmware_driver_distributable_response.py b/intersight/model/firmware_driver_distributable_response.py
index 38564b3042..ec2da4c09d 100644
--- a/intersight/model/firmware_driver_distributable_response.py
+++ b/intersight/model/firmware_driver_distributable_response.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/firmware_eula.py b/intersight/model/firmware_eula.py
index 93cbc64fa0..5ccf983c11 100644
--- a/intersight/model/firmware_eula.py
+++ b/intersight/model/firmware_eula.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/firmware_eula_all_of.py b/intersight/model/firmware_eula_all_of.py
index de32f7c622..9080521bd7 100644
--- a/intersight/model/firmware_eula_all_of.py
+++ b/intersight/model/firmware_eula_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/firmware_eula_list.py b/intersight/model/firmware_eula_list.py
index 63aa9fdd77..dd210f2535 100644
--- a/intersight/model/firmware_eula_list.py
+++ b/intersight/model/firmware_eula_list.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/firmware_eula_list_all_of.py b/intersight/model/firmware_eula_list_all_of.py
index 8cd9ae9117..6f8e7ae785 100644
--- a/intersight/model/firmware_eula_list_all_of.py
+++ b/intersight/model/firmware_eula_list_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/firmware_eula_response.py b/intersight/model/firmware_eula_response.py
index e6e51f105a..3594c97731 100644
--- a/intersight/model/firmware_eula_response.py
+++ b/intersight/model/firmware_eula_response.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/firmware_fabric_upgrade_impact.py b/intersight/model/firmware_fabric_upgrade_impact.py
index 95a1378eed..83970fd8c0 100644
--- a/intersight/model/firmware_fabric_upgrade_impact.py
+++ b/intersight/model/firmware_fabric_upgrade_impact.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/firmware_fabric_upgrade_impact_all_of.py b/intersight/model/firmware_fabric_upgrade_impact_all_of.py
index ab0a560caa..eda15b7f81 100644
--- a/intersight/model/firmware_fabric_upgrade_impact_all_of.py
+++ b/intersight/model/firmware_fabric_upgrade_impact_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/firmware_firmware_inventory.py b/intersight/model/firmware_firmware_inventory.py
index 4c636efae4..c55a477c0a 100644
--- a/intersight/model/firmware_firmware_inventory.py
+++ b/intersight/model/firmware_firmware_inventory.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/firmware_firmware_inventory_all_of.py b/intersight/model/firmware_firmware_inventory_all_of.py
index 037548ccc9..566f262855 100644
--- a/intersight/model/firmware_firmware_inventory_all_of.py
+++ b/intersight/model/firmware_firmware_inventory_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/firmware_firmware_summary.py b/intersight/model/firmware_firmware_summary.py
index e4bebde5f3..45c76ff917 100644
--- a/intersight/model/firmware_firmware_summary.py
+++ b/intersight/model/firmware_firmware_summary.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/firmware_firmware_summary_all_of.py b/intersight/model/firmware_firmware_summary_all_of.py
index 0b44acf824..98a59b4094 100644
--- a/intersight/model/firmware_firmware_summary_all_of.py
+++ b/intersight/model/firmware_firmware_summary_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/firmware_firmware_summary_list.py b/intersight/model/firmware_firmware_summary_list.py
index 8ac657a798..431d84dc6d 100644
--- a/intersight/model/firmware_firmware_summary_list.py
+++ b/intersight/model/firmware_firmware_summary_list.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/firmware_firmware_summary_list_all_of.py b/intersight/model/firmware_firmware_summary_list_all_of.py
index ee6b71415d..b0accd0355 100644
--- a/intersight/model/firmware_firmware_summary_list_all_of.py
+++ b/intersight/model/firmware_firmware_summary_list_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/firmware_firmware_summary_response.py b/intersight/model/firmware_firmware_summary_response.py
index c1bf3eee33..c8d01ffa01 100644
--- a/intersight/model/firmware_firmware_summary_response.py
+++ b/intersight/model/firmware_firmware_summary_response.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/firmware_gpu_descriptor.py b/intersight/model/firmware_gpu_descriptor.py
index e1ab7abce4..2219211287 100644
--- a/intersight/model/firmware_gpu_descriptor.py
+++ b/intersight/model/firmware_gpu_descriptor.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/firmware_gpu_descriptor_list.py b/intersight/model/firmware_gpu_descriptor_list.py
index 3f6233975c..8a758fbffc 100644
--- a/intersight/model/firmware_gpu_descriptor_list.py
+++ b/intersight/model/firmware_gpu_descriptor_list.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/firmware_gpu_descriptor_list_all_of.py b/intersight/model/firmware_gpu_descriptor_list_all_of.py
index 4063435064..161a968b46 100644
--- a/intersight/model/firmware_gpu_descriptor_list_all_of.py
+++ b/intersight/model/firmware_gpu_descriptor_list_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/firmware_gpu_descriptor_response.py b/intersight/model/firmware_gpu_descriptor_response.py
index be5f28d249..69451ebe5b 100644
--- a/intersight/model/firmware_gpu_descriptor_response.py
+++ b/intersight/model/firmware_gpu_descriptor_response.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/firmware_hba_descriptor.py b/intersight/model/firmware_hba_descriptor.py
index f55f9f5fc0..fc4994b20c 100644
--- a/intersight/model/firmware_hba_descriptor.py
+++ b/intersight/model/firmware_hba_descriptor.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/firmware_hba_descriptor_list.py b/intersight/model/firmware_hba_descriptor_list.py
index 3242a44fbc..c07e712b3e 100644
--- a/intersight/model/firmware_hba_descriptor_list.py
+++ b/intersight/model/firmware_hba_descriptor_list.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/firmware_hba_descriptor_list_all_of.py b/intersight/model/firmware_hba_descriptor_list_all_of.py
index a3361490e6..449a83de02 100644
--- a/intersight/model/firmware_hba_descriptor_list_all_of.py
+++ b/intersight/model/firmware_hba_descriptor_list_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/firmware_hba_descriptor_response.py b/intersight/model/firmware_hba_descriptor_response.py
index af35553abf..f70f65a32a 100644
--- a/intersight/model/firmware_hba_descriptor_response.py
+++ b/intersight/model/firmware_hba_descriptor_response.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/firmware_http_server.py b/intersight/model/firmware_http_server.py
index 6a5bff22f8..6c0cc44e12 100644
--- a/intersight/model/firmware_http_server.py
+++ b/intersight/model/firmware_http_server.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/firmware_http_server_all_of.py b/intersight/model/firmware_http_server_all_of.py
index 9529a512da..0186acec9c 100644
--- a/intersight/model/firmware_http_server_all_of.py
+++ b/intersight/model/firmware_http_server_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/firmware_iom_descriptor.py b/intersight/model/firmware_iom_descriptor.py
index ebe5ebf329..84fa9be6ab 100644
--- a/intersight/model/firmware_iom_descriptor.py
+++ b/intersight/model/firmware_iom_descriptor.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/firmware_iom_descriptor_list.py b/intersight/model/firmware_iom_descriptor_list.py
index b623a60c1c..93e56ff69f 100644
--- a/intersight/model/firmware_iom_descriptor_list.py
+++ b/intersight/model/firmware_iom_descriptor_list.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/firmware_iom_descriptor_list_all_of.py b/intersight/model/firmware_iom_descriptor_list_all_of.py
index e73df7919a..05e3ae71db 100644
--- a/intersight/model/firmware_iom_descriptor_list_all_of.py
+++ b/intersight/model/firmware_iom_descriptor_list_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/firmware_iom_descriptor_response.py b/intersight/model/firmware_iom_descriptor_response.py
index 9e07766629..6e090f07e5 100644
--- a/intersight/model/firmware_iom_descriptor_response.py
+++ b/intersight/model/firmware_iom_descriptor_response.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/firmware_mswitch_descriptor.py b/intersight/model/firmware_mswitch_descriptor.py
index 3c70711e08..f984cd9bb3 100644
--- a/intersight/model/firmware_mswitch_descriptor.py
+++ b/intersight/model/firmware_mswitch_descriptor.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/firmware_mswitch_descriptor_list.py b/intersight/model/firmware_mswitch_descriptor_list.py
index c917ef3df9..3f2fff2e03 100644
--- a/intersight/model/firmware_mswitch_descriptor_list.py
+++ b/intersight/model/firmware_mswitch_descriptor_list.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/firmware_mswitch_descriptor_list_all_of.py b/intersight/model/firmware_mswitch_descriptor_list_all_of.py
index 53e5e2d0be..dd17fb54ef 100644
--- a/intersight/model/firmware_mswitch_descriptor_list_all_of.py
+++ b/intersight/model/firmware_mswitch_descriptor_list_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/firmware_mswitch_descriptor_response.py b/intersight/model/firmware_mswitch_descriptor_response.py
index 6756cf62a1..2cb7958408 100644
--- a/intersight/model/firmware_mswitch_descriptor_response.py
+++ b/intersight/model/firmware_mswitch_descriptor_response.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/firmware_network_share.py b/intersight/model/firmware_network_share.py
index 8912e5adc7..e6c1795cd9 100644
--- a/intersight/model/firmware_network_share.py
+++ b/intersight/model/firmware_network_share.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/firmware_network_share_all_of.py b/intersight/model/firmware_network_share_all_of.py
index d16b2a7864..71200b8b33 100644
--- a/intersight/model/firmware_network_share_all_of.py
+++ b/intersight/model/firmware_network_share_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/firmware_nfs_server.py b/intersight/model/firmware_nfs_server.py
index fb3a1b25e5..f66ce47a06 100644
--- a/intersight/model/firmware_nfs_server.py
+++ b/intersight/model/firmware_nfs_server.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/firmware_nfs_server_all_of.py b/intersight/model/firmware_nfs_server_all_of.py
index 947072466c..c9947169fb 100644
--- a/intersight/model/firmware_nfs_server_all_of.py
+++ b/intersight/model/firmware_nfs_server_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/firmware_nxos_descriptor.py b/intersight/model/firmware_nxos_descriptor.py
index dc560771ae..3edb5699a8 100644
--- a/intersight/model/firmware_nxos_descriptor.py
+++ b/intersight/model/firmware_nxos_descriptor.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/firmware_nxos_descriptor_list.py b/intersight/model/firmware_nxos_descriptor_list.py
index 92ea7bc21d..04f050ffe8 100644
--- a/intersight/model/firmware_nxos_descriptor_list.py
+++ b/intersight/model/firmware_nxos_descriptor_list.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/firmware_nxos_descriptor_list_all_of.py b/intersight/model/firmware_nxos_descriptor_list_all_of.py
index 0bff73dbf0..e6a65fa6ff 100644
--- a/intersight/model/firmware_nxos_descriptor_list_all_of.py
+++ b/intersight/model/firmware_nxos_descriptor_list_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/firmware_nxos_descriptor_response.py b/intersight/model/firmware_nxos_descriptor_response.py
index 80ef0e7c20..40387ce35e 100644
--- a/intersight/model/firmware_nxos_descriptor_response.py
+++ b/intersight/model/firmware_nxos_descriptor_response.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/firmware_pcie_descriptor.py b/intersight/model/firmware_pcie_descriptor.py
index e03ccf6513..6c8dcc7300 100644
--- a/intersight/model/firmware_pcie_descriptor.py
+++ b/intersight/model/firmware_pcie_descriptor.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/firmware_pcie_descriptor_list.py b/intersight/model/firmware_pcie_descriptor_list.py
index 147d64a26d..fd84a91776 100644
--- a/intersight/model/firmware_pcie_descriptor_list.py
+++ b/intersight/model/firmware_pcie_descriptor_list.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/firmware_pcie_descriptor_list_all_of.py b/intersight/model/firmware_pcie_descriptor_list_all_of.py
index 5a0aa95413..8931034e67 100644
--- a/intersight/model/firmware_pcie_descriptor_list_all_of.py
+++ b/intersight/model/firmware_pcie_descriptor_list_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/firmware_pcie_descriptor_response.py b/intersight/model/firmware_pcie_descriptor_response.py
index 33235e8a01..bbe1068aec 100644
--- a/intersight/model/firmware_pcie_descriptor_response.py
+++ b/intersight/model/firmware_pcie_descriptor_response.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/firmware_psu_descriptor.py b/intersight/model/firmware_psu_descriptor.py
index 2d3e2e7654..6b56e9bdd6 100644
--- a/intersight/model/firmware_psu_descriptor.py
+++ b/intersight/model/firmware_psu_descriptor.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/firmware_psu_descriptor_list.py b/intersight/model/firmware_psu_descriptor_list.py
index 34f09f9ce9..a965d41b9c 100644
--- a/intersight/model/firmware_psu_descriptor_list.py
+++ b/intersight/model/firmware_psu_descriptor_list.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/firmware_psu_descriptor_list_all_of.py b/intersight/model/firmware_psu_descriptor_list_all_of.py
index 8563122f63..86b4ce078e 100644
--- a/intersight/model/firmware_psu_descriptor_list_all_of.py
+++ b/intersight/model/firmware_psu_descriptor_list_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/firmware_psu_descriptor_response.py b/intersight/model/firmware_psu_descriptor_response.py
index 9daad1e82a..f0fc606c14 100644
--- a/intersight/model/firmware_psu_descriptor_response.py
+++ b/intersight/model/firmware_psu_descriptor_response.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/firmware_running_firmware.py b/intersight/model/firmware_running_firmware.py
index c9f576b6c2..163157d463 100644
--- a/intersight/model/firmware_running_firmware.py
+++ b/intersight/model/firmware_running_firmware.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/firmware_running_firmware_all_of.py b/intersight/model/firmware_running_firmware_all_of.py
index 74a3dd3ad7..079620f0df 100644
--- a/intersight/model/firmware_running_firmware_all_of.py
+++ b/intersight/model/firmware_running_firmware_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/firmware_running_firmware_list.py b/intersight/model/firmware_running_firmware_list.py
index 7a2abdab4e..adc3a839da 100644
--- a/intersight/model/firmware_running_firmware_list.py
+++ b/intersight/model/firmware_running_firmware_list.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/firmware_running_firmware_list_all_of.py b/intersight/model/firmware_running_firmware_list_all_of.py
index 69be532604..3301200506 100644
--- a/intersight/model/firmware_running_firmware_list_all_of.py
+++ b/intersight/model/firmware_running_firmware_list_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/firmware_running_firmware_relationship.py b/intersight/model/firmware_running_firmware_relationship.py
index f0d35d7ed4..c3fc710bd0 100644
--- a/intersight/model/firmware_running_firmware_relationship.py
+++ b/intersight/model/firmware_running_firmware_relationship.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
@@ -92,6 +92,8 @@ class FirmwareRunningFirmwareRelationship(ModelComposed):
},
('object_type',): {
'AAA.AUDITRECORD': "aaa.AuditRecord",
+ 'AAA.RETENTIONCONFIG': "aaa.RetentionConfig",
+ 'AAA.RETENTIONPOLICY': "aaa.RetentionPolicy",
'ACCESS.POLICY': "access.Policy",
'ADAPTER.CONFIGPOLICY': "adapter.ConfigPolicy",
'ADAPTER.EXTETHINTERFACE': "adapter.ExtEthInterface",
@@ -108,6 +110,7 @@ class FirmwareRunningFirmwareRelationship(ModelComposed):
'APPLIANCE.DATAEXPORTPOLICY': "appliance.DataExportPolicy",
'APPLIANCE.DEVICECERTIFICATE': "appliance.DeviceCertificate",
'APPLIANCE.DEVICECLAIM': "appliance.DeviceClaim",
+ 'APPLIANCE.DEVICEUPGRADEPOLICY': "appliance.DeviceUpgradePolicy",
'APPLIANCE.DIAGSETTING': "appliance.DiagSetting",
'APPLIANCE.EXTERNALSYSLOGSETTING': "appliance.ExternalSyslogSetting",
'APPLIANCE.FILESYSTEMSTATUS': "appliance.FileSystemStatus",
@@ -156,9 +159,12 @@ class FirmwareRunningFirmwareRelationship(ModelComposed):
'BOOT.UEFISHELLDEVICE': "boot.UefiShellDevice",
'BOOT.USBDEVICE': "boot.UsbDevice",
'BOOT.VMEDIADEVICE': "boot.VmediaDevice",
+ 'BULK.EXPORT': "bulk.Export",
+ 'BULK.EXPORTEDITEM': "bulk.ExportedItem",
'BULK.MOCLONER': "bulk.MoCloner",
'BULK.MOMERGER': "bulk.MoMerger",
'BULK.REQUEST': "bulk.Request",
+ 'BULK.SUBREQUESTOBJ': "bulk.SubRequestObj",
'CAPABILITY.ADAPTERUNITDESCRIPTOR': "capability.AdapterUnitDescriptor",
'CAPABILITY.CATALOG': "capability.Catalog",
'CAPABILITY.CHASSISDESCRIPTOR': "capability.ChassisDescriptor",
@@ -222,10 +228,6 @@ class FirmwareRunningFirmwareRelationship(ModelComposed):
'COND.HCLSTATUS': "cond.HclStatus",
'COND.HCLSTATUSDETAIL': "cond.HclStatusDetail",
'COND.HCLSTATUSJOB': "cond.HclStatusJob",
- 'CONFIG.EXPORTEDITEM': "config.ExportedItem",
- 'CONFIG.EXPORTER': "config.Exporter",
- 'CONFIG.IMPORTEDITEM': "config.ImportedItem",
- 'CONFIG.IMPORTER': "config.Importer",
'CONNECTORPACK.CONNECTORPACKUPGRADE': "connectorpack.ConnectorPackUpgrade",
'CONNECTORPACK.UPGRADEIMPACT': "connectorpack.UpgradeImpact",
'CRD.CUSTOMRESOURCE': "crd.CustomResource",
@@ -234,6 +236,7 @@ class FirmwareRunningFirmwareRelationship(ModelComposed):
'EQUIPMENT.CHASSISIDENTITY': "equipment.ChassisIdentity",
'EQUIPMENT.CHASSISOPERATION': "equipment.ChassisOperation",
'EQUIPMENT.DEVICESUMMARY': "equipment.DeviceSummary",
+ 'EQUIPMENT.EXPANDERMODULE': "equipment.ExpanderModule",
'EQUIPMENT.FAN': "equipment.Fan",
'EQUIPMENT.FANCONTROL': "equipment.FanControl",
'EQUIPMENT.FANMODULE': "equipment.FanModule",
@@ -482,6 +485,7 @@ class FirmwareRunningFirmwareRelationship(ModelComposed):
'KUBERNETES.ADDONDEFINITION': "kubernetes.AddonDefinition",
'KUBERNETES.ADDONPOLICY': "kubernetes.AddonPolicy",
'KUBERNETES.ADDONREPOSITORY': "kubernetes.AddonRepository",
+ 'KUBERNETES.BAREMETALNODEPROFILE': "kubernetes.BaremetalNodeProfile",
'KUBERNETES.CATALOG': "kubernetes.Catalog",
'KUBERNETES.CLUSTER': "kubernetes.Cluster",
'KUBERNETES.CLUSTERADDONPROFILE': "kubernetes.ClusterAddonProfile",
@@ -651,6 +655,11 @@ class FirmwareRunningFirmwareRelationship(ModelComposed):
'RESOURCE.LICENSERESOURCECOUNT': "resource.LicenseResourceCount",
'RESOURCE.MEMBERSHIP': "resource.Membership",
'RESOURCE.MEMBERSHIPHOLDER': "resource.MembershipHolder",
+ 'RESOURCEPOOL.LEASE': "resourcepool.Lease",
+ 'RESOURCEPOOL.LEASERESOURCE': "resourcepool.LeaseResource",
+ 'RESOURCEPOOL.POOL': "resourcepool.Pool",
+ 'RESOURCEPOOL.POOLMEMBER': "resourcepool.PoolMember",
+ 'RESOURCEPOOL.UNIVERSE': "resourcepool.Universe",
'RPROXY.REVERSEPROXY': "rproxy.ReverseProxy",
'SDCARD.POLICY': "sdcard.Policy",
'SDWAN.PROFILE': "sdwan.Profile",
@@ -766,6 +775,7 @@ class FirmwareRunningFirmwareRelationship(ModelComposed):
'TASK.NETAPPSCOPEDINVENTORY': "task.NetAppScopedInventory",
'TASK.PUBLICCLOUDSCOPEDINVENTORY': "task.PublicCloudScopedInventory",
'TASK.PURESCOPEDINVENTORY': "task.PureScopedInventory",
+ 'TASK.SERVERSCOPEDINVENTORY': "task.ServerScopedInventory",
'TECHSUPPORTMANAGEMENT.COLLECTIONCONTROLPOLICY': "techsupportmanagement.CollectionControlPolicy",
'TECHSUPPORTMANAGEMENT.DOWNLOAD': "techsupportmanagement.Download",
'TECHSUPPORTMANAGEMENT.TECHSUPPORTBUNDLE': "techsupportmanagement.TechSupportBundle",
@@ -797,6 +807,7 @@ class FirmwareRunningFirmwareRelationship(ModelComposed):
'VIRTUALIZATION.VMWAREVCENTER': "virtualization.VmwareVcenter",
'VIRTUALIZATION.VMWAREVIRTUALDISK': "virtualization.VmwareVirtualDisk",
'VIRTUALIZATION.VMWAREVIRTUALMACHINE': "virtualization.VmwareVirtualMachine",
+ 'VIRTUALIZATION.VMWAREVIRTUALMACHINESNAPSHOT': "virtualization.VmwareVirtualMachineSnapshot",
'VIRTUALIZATION.VMWAREVIRTUALNETWORKINTERFACE': "virtualization.VmwareVirtualNetworkInterface",
'VIRTUALIZATION.VMWAREVIRTUALSWITCH': "virtualization.VmwareVirtualSwitch",
'VMEDIA.POLICY': "vmedia.Policy",
@@ -829,12 +840,14 @@ class FirmwareRunningFirmwareRelationship(ModelComposed):
'WORKFLOW.TASKDEFINITION': "workflow.TaskDefinition",
'WORKFLOW.TASKINFO': "workflow.TaskInfo",
'WORKFLOW.TASKMETADATA': "workflow.TaskMetadata",
+ 'WORKFLOW.TASKNOTIFICATION': "workflow.TaskNotification",
'WORKFLOW.TEMPLATEEVALUATION': "workflow.TemplateEvaluation",
'WORKFLOW.TEMPLATEFUNCTIONMETA': "workflow.TemplateFunctionMeta",
'WORKFLOW.WORKFLOWDEFINITION': "workflow.WorkflowDefinition",
'WORKFLOW.WORKFLOWINFO': "workflow.WorkflowInfo",
'WORKFLOW.WORKFLOWMETA': "workflow.WorkflowMeta",
'WORKFLOW.WORKFLOWMETADATA': "workflow.WorkflowMetadata",
+ 'WORKFLOW.WORKFLOWNOTIFICATION': "workflow.WorkflowNotification",
},
}
diff --git a/intersight/model/firmware_running_firmware_response.py b/intersight/model/firmware_running_firmware_response.py
index 99a3fe9f14..7727aab99d 100644
--- a/intersight/model/firmware_running_firmware_response.py
+++ b/intersight/model/firmware_running_firmware_response.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/firmware_sas_expander_descriptor.py b/intersight/model/firmware_sas_expander_descriptor.py
index e1d983ee00..a3db4f0e3f 100644
--- a/intersight/model/firmware_sas_expander_descriptor.py
+++ b/intersight/model/firmware_sas_expander_descriptor.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/firmware_sas_expander_descriptor_list.py b/intersight/model/firmware_sas_expander_descriptor_list.py
index d721336cc9..e9774c45c8 100644
--- a/intersight/model/firmware_sas_expander_descriptor_list.py
+++ b/intersight/model/firmware_sas_expander_descriptor_list.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/firmware_sas_expander_descriptor_list_all_of.py b/intersight/model/firmware_sas_expander_descriptor_list_all_of.py
index e03c66e30d..d698c99252 100644
--- a/intersight/model/firmware_sas_expander_descriptor_list_all_of.py
+++ b/intersight/model/firmware_sas_expander_descriptor_list_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/firmware_sas_expander_descriptor_response.py b/intersight/model/firmware_sas_expander_descriptor_response.py
index fc1a8c6a21..1729597b5a 100644
--- a/intersight/model/firmware_sas_expander_descriptor_response.py
+++ b/intersight/model/firmware_sas_expander_descriptor_response.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/firmware_server_configuration_utility_distributable.py b/intersight/model/firmware_server_configuration_utility_distributable.py
index 85fbe98aa3..b21b3ef4b5 100644
--- a/intersight/model/firmware_server_configuration_utility_distributable.py
+++ b/intersight/model/firmware_server_configuration_utility_distributable.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/firmware_server_configuration_utility_distributable_all_of.py b/intersight/model/firmware_server_configuration_utility_distributable_all_of.py
index 8f671fec38..5904824df8 100644
--- a/intersight/model/firmware_server_configuration_utility_distributable_all_of.py
+++ b/intersight/model/firmware_server_configuration_utility_distributable_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/firmware_server_configuration_utility_distributable_list.py b/intersight/model/firmware_server_configuration_utility_distributable_list.py
index 42d2740e58..d7fba6c929 100644
--- a/intersight/model/firmware_server_configuration_utility_distributable_list.py
+++ b/intersight/model/firmware_server_configuration_utility_distributable_list.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/firmware_server_configuration_utility_distributable_list_all_of.py b/intersight/model/firmware_server_configuration_utility_distributable_list_all_of.py
index ba8f7946b7..a36202a366 100644
--- a/intersight/model/firmware_server_configuration_utility_distributable_list_all_of.py
+++ b/intersight/model/firmware_server_configuration_utility_distributable_list_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/firmware_server_configuration_utility_distributable_relationship.py b/intersight/model/firmware_server_configuration_utility_distributable_relationship.py
index 7be6740c17..aafb088510 100644
--- a/intersight/model/firmware_server_configuration_utility_distributable_relationship.py
+++ b/intersight/model/firmware_server_configuration_utility_distributable_relationship.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
@@ -110,6 +110,8 @@ class FirmwareServerConfigurationUtilityDistributableRelationship(ModelComposed)
},
('object_type',): {
'AAA.AUDITRECORD': "aaa.AuditRecord",
+ 'AAA.RETENTIONCONFIG': "aaa.RetentionConfig",
+ 'AAA.RETENTIONPOLICY': "aaa.RetentionPolicy",
'ACCESS.POLICY': "access.Policy",
'ADAPTER.CONFIGPOLICY': "adapter.ConfigPolicy",
'ADAPTER.EXTETHINTERFACE': "adapter.ExtEthInterface",
@@ -126,6 +128,7 @@ class FirmwareServerConfigurationUtilityDistributableRelationship(ModelComposed)
'APPLIANCE.DATAEXPORTPOLICY': "appliance.DataExportPolicy",
'APPLIANCE.DEVICECERTIFICATE': "appliance.DeviceCertificate",
'APPLIANCE.DEVICECLAIM': "appliance.DeviceClaim",
+ 'APPLIANCE.DEVICEUPGRADEPOLICY': "appliance.DeviceUpgradePolicy",
'APPLIANCE.DIAGSETTING': "appliance.DiagSetting",
'APPLIANCE.EXTERNALSYSLOGSETTING': "appliance.ExternalSyslogSetting",
'APPLIANCE.FILESYSTEMSTATUS': "appliance.FileSystemStatus",
@@ -174,9 +177,12 @@ class FirmwareServerConfigurationUtilityDistributableRelationship(ModelComposed)
'BOOT.UEFISHELLDEVICE': "boot.UefiShellDevice",
'BOOT.USBDEVICE': "boot.UsbDevice",
'BOOT.VMEDIADEVICE': "boot.VmediaDevice",
+ 'BULK.EXPORT': "bulk.Export",
+ 'BULK.EXPORTEDITEM': "bulk.ExportedItem",
'BULK.MOCLONER': "bulk.MoCloner",
'BULK.MOMERGER': "bulk.MoMerger",
'BULK.REQUEST': "bulk.Request",
+ 'BULK.SUBREQUESTOBJ': "bulk.SubRequestObj",
'CAPABILITY.ADAPTERUNITDESCRIPTOR': "capability.AdapterUnitDescriptor",
'CAPABILITY.CATALOG': "capability.Catalog",
'CAPABILITY.CHASSISDESCRIPTOR': "capability.ChassisDescriptor",
@@ -240,10 +246,6 @@ class FirmwareServerConfigurationUtilityDistributableRelationship(ModelComposed)
'COND.HCLSTATUS': "cond.HclStatus",
'COND.HCLSTATUSDETAIL': "cond.HclStatusDetail",
'COND.HCLSTATUSJOB': "cond.HclStatusJob",
- 'CONFIG.EXPORTEDITEM': "config.ExportedItem",
- 'CONFIG.EXPORTER': "config.Exporter",
- 'CONFIG.IMPORTEDITEM': "config.ImportedItem",
- 'CONFIG.IMPORTER': "config.Importer",
'CONNECTORPACK.CONNECTORPACKUPGRADE': "connectorpack.ConnectorPackUpgrade",
'CONNECTORPACK.UPGRADEIMPACT': "connectorpack.UpgradeImpact",
'CRD.CUSTOMRESOURCE': "crd.CustomResource",
@@ -252,6 +254,7 @@ class FirmwareServerConfigurationUtilityDistributableRelationship(ModelComposed)
'EQUIPMENT.CHASSISIDENTITY': "equipment.ChassisIdentity",
'EQUIPMENT.CHASSISOPERATION': "equipment.ChassisOperation",
'EQUIPMENT.DEVICESUMMARY': "equipment.DeviceSummary",
+ 'EQUIPMENT.EXPANDERMODULE': "equipment.ExpanderModule",
'EQUIPMENT.FAN': "equipment.Fan",
'EQUIPMENT.FANCONTROL': "equipment.FanControl",
'EQUIPMENT.FANMODULE': "equipment.FanModule",
@@ -500,6 +503,7 @@ class FirmwareServerConfigurationUtilityDistributableRelationship(ModelComposed)
'KUBERNETES.ADDONDEFINITION': "kubernetes.AddonDefinition",
'KUBERNETES.ADDONPOLICY': "kubernetes.AddonPolicy",
'KUBERNETES.ADDONREPOSITORY': "kubernetes.AddonRepository",
+ 'KUBERNETES.BAREMETALNODEPROFILE': "kubernetes.BaremetalNodeProfile",
'KUBERNETES.CATALOG': "kubernetes.Catalog",
'KUBERNETES.CLUSTER': "kubernetes.Cluster",
'KUBERNETES.CLUSTERADDONPROFILE': "kubernetes.ClusterAddonProfile",
@@ -669,6 +673,11 @@ class FirmwareServerConfigurationUtilityDistributableRelationship(ModelComposed)
'RESOURCE.LICENSERESOURCECOUNT': "resource.LicenseResourceCount",
'RESOURCE.MEMBERSHIP': "resource.Membership",
'RESOURCE.MEMBERSHIPHOLDER': "resource.MembershipHolder",
+ 'RESOURCEPOOL.LEASE': "resourcepool.Lease",
+ 'RESOURCEPOOL.LEASERESOURCE': "resourcepool.LeaseResource",
+ 'RESOURCEPOOL.POOL': "resourcepool.Pool",
+ 'RESOURCEPOOL.POOLMEMBER': "resourcepool.PoolMember",
+ 'RESOURCEPOOL.UNIVERSE': "resourcepool.Universe",
'RPROXY.REVERSEPROXY': "rproxy.ReverseProxy",
'SDCARD.POLICY': "sdcard.Policy",
'SDWAN.PROFILE': "sdwan.Profile",
@@ -784,6 +793,7 @@ class FirmwareServerConfigurationUtilityDistributableRelationship(ModelComposed)
'TASK.NETAPPSCOPEDINVENTORY': "task.NetAppScopedInventory",
'TASK.PUBLICCLOUDSCOPEDINVENTORY': "task.PublicCloudScopedInventory",
'TASK.PURESCOPEDINVENTORY': "task.PureScopedInventory",
+ 'TASK.SERVERSCOPEDINVENTORY': "task.ServerScopedInventory",
'TECHSUPPORTMANAGEMENT.COLLECTIONCONTROLPOLICY': "techsupportmanagement.CollectionControlPolicy",
'TECHSUPPORTMANAGEMENT.DOWNLOAD': "techsupportmanagement.Download",
'TECHSUPPORTMANAGEMENT.TECHSUPPORTBUNDLE': "techsupportmanagement.TechSupportBundle",
@@ -815,6 +825,7 @@ class FirmwareServerConfigurationUtilityDistributableRelationship(ModelComposed)
'VIRTUALIZATION.VMWAREVCENTER': "virtualization.VmwareVcenter",
'VIRTUALIZATION.VMWAREVIRTUALDISK': "virtualization.VmwareVirtualDisk",
'VIRTUALIZATION.VMWAREVIRTUALMACHINE': "virtualization.VmwareVirtualMachine",
+ 'VIRTUALIZATION.VMWAREVIRTUALMACHINESNAPSHOT': "virtualization.VmwareVirtualMachineSnapshot",
'VIRTUALIZATION.VMWAREVIRTUALNETWORKINTERFACE': "virtualization.VmwareVirtualNetworkInterface",
'VIRTUALIZATION.VMWAREVIRTUALSWITCH': "virtualization.VmwareVirtualSwitch",
'VMEDIA.POLICY': "vmedia.Policy",
@@ -847,12 +858,14 @@ class FirmwareServerConfigurationUtilityDistributableRelationship(ModelComposed)
'WORKFLOW.TASKDEFINITION': "workflow.TaskDefinition",
'WORKFLOW.TASKINFO': "workflow.TaskInfo",
'WORKFLOW.TASKMETADATA': "workflow.TaskMetadata",
+ 'WORKFLOW.TASKNOTIFICATION': "workflow.TaskNotification",
'WORKFLOW.TEMPLATEEVALUATION': "workflow.TemplateEvaluation",
'WORKFLOW.TEMPLATEFUNCTIONMETA': "workflow.TemplateFunctionMeta",
'WORKFLOW.WORKFLOWDEFINITION': "workflow.WorkflowDefinition",
'WORKFLOW.WORKFLOWINFO': "workflow.WorkflowInfo",
'WORKFLOW.WORKFLOWMETA': "workflow.WorkflowMeta",
'WORKFLOW.WORKFLOWMETADATA': "workflow.WorkflowMetadata",
+ 'WORKFLOW.WORKFLOWNOTIFICATION': "workflow.WorkflowNotification",
},
}
diff --git a/intersight/model/firmware_server_configuration_utility_distributable_response.py b/intersight/model/firmware_server_configuration_utility_distributable_response.py
index 8cbead56c3..f82f259719 100644
--- a/intersight/model/firmware_server_configuration_utility_distributable_response.py
+++ b/intersight/model/firmware_server_configuration_utility_distributable_response.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/firmware_server_upgrade_impact.py b/intersight/model/firmware_server_upgrade_impact.py
index b5ce62f525..7918e3001f 100644
--- a/intersight/model/firmware_server_upgrade_impact.py
+++ b/intersight/model/firmware_server_upgrade_impact.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/firmware_server_upgrade_impact_all_of.py b/intersight/model/firmware_server_upgrade_impact_all_of.py
index 16f1dc61f5..1155ccc07e 100644
--- a/intersight/model/firmware_server_upgrade_impact_all_of.py
+++ b/intersight/model/firmware_server_upgrade_impact_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/firmware_storage_controller_descriptor.py b/intersight/model/firmware_storage_controller_descriptor.py
index 067cb1f75e..a6095dbd47 100644
--- a/intersight/model/firmware_storage_controller_descriptor.py
+++ b/intersight/model/firmware_storage_controller_descriptor.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/firmware_storage_controller_descriptor_list.py b/intersight/model/firmware_storage_controller_descriptor_list.py
index 8fea9af74b..7bd19bed8f 100644
--- a/intersight/model/firmware_storage_controller_descriptor_list.py
+++ b/intersight/model/firmware_storage_controller_descriptor_list.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/firmware_storage_controller_descriptor_list_all_of.py b/intersight/model/firmware_storage_controller_descriptor_list_all_of.py
index 356c75da03..81909129ec 100644
--- a/intersight/model/firmware_storage_controller_descriptor_list_all_of.py
+++ b/intersight/model/firmware_storage_controller_descriptor_list_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/firmware_storage_controller_descriptor_response.py b/intersight/model/firmware_storage_controller_descriptor_response.py
index 60cbcb79b0..cd9ea4d45d 100644
--- a/intersight/model/firmware_storage_controller_descriptor_response.py
+++ b/intersight/model/firmware_storage_controller_descriptor_response.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/firmware_switch_upgrade.py b/intersight/model/firmware_switch_upgrade.py
index 0ba1075f8f..21c5acdee1 100644
--- a/intersight/model/firmware_switch_upgrade.py
+++ b/intersight/model/firmware_switch_upgrade.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/firmware_switch_upgrade_all_of.py b/intersight/model/firmware_switch_upgrade_all_of.py
index e7cb88a30c..b1a8dcb7d0 100644
--- a/intersight/model/firmware_switch_upgrade_all_of.py
+++ b/intersight/model/firmware_switch_upgrade_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/firmware_switch_upgrade_list.py b/intersight/model/firmware_switch_upgrade_list.py
index cf44cf4502..3159815982 100644
--- a/intersight/model/firmware_switch_upgrade_list.py
+++ b/intersight/model/firmware_switch_upgrade_list.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/firmware_switch_upgrade_list_all_of.py b/intersight/model/firmware_switch_upgrade_list_all_of.py
index edf131f4ca..bf0eec3991 100644
--- a/intersight/model/firmware_switch_upgrade_list_all_of.py
+++ b/intersight/model/firmware_switch_upgrade_list_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/firmware_switch_upgrade_response.py b/intersight/model/firmware_switch_upgrade_response.py
index c5bed491cf..5fdba5e6c3 100644
--- a/intersight/model/firmware_switch_upgrade_response.py
+++ b/intersight/model/firmware_switch_upgrade_response.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/firmware_unsupported_version_upgrade.py b/intersight/model/firmware_unsupported_version_upgrade.py
index 335d6cfbb8..5b6b49c9f2 100644
--- a/intersight/model/firmware_unsupported_version_upgrade.py
+++ b/intersight/model/firmware_unsupported_version_upgrade.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/firmware_unsupported_version_upgrade_all_of.py b/intersight/model/firmware_unsupported_version_upgrade_all_of.py
index 95e5c5cc41..6c49f2c5b5 100644
--- a/intersight/model/firmware_unsupported_version_upgrade_all_of.py
+++ b/intersight/model/firmware_unsupported_version_upgrade_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/firmware_unsupported_version_upgrade_list.py b/intersight/model/firmware_unsupported_version_upgrade_list.py
index e022b74057..00d2172338 100644
--- a/intersight/model/firmware_unsupported_version_upgrade_list.py
+++ b/intersight/model/firmware_unsupported_version_upgrade_list.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/firmware_unsupported_version_upgrade_list_all_of.py b/intersight/model/firmware_unsupported_version_upgrade_list_all_of.py
index 27b41a98e8..5f0063a676 100644
--- a/intersight/model/firmware_unsupported_version_upgrade_list_all_of.py
+++ b/intersight/model/firmware_unsupported_version_upgrade_list_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/firmware_unsupported_version_upgrade_response.py b/intersight/model/firmware_unsupported_version_upgrade_response.py
index e60db61548..7fc4a0adbb 100644
--- a/intersight/model/firmware_unsupported_version_upgrade_response.py
+++ b/intersight/model/firmware_unsupported_version_upgrade_response.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/firmware_upgrade.py b/intersight/model/firmware_upgrade.py
index 781a0684ce..c10ef4a28f 100644
--- a/intersight/model/firmware_upgrade.py
+++ b/intersight/model/firmware_upgrade.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/firmware_upgrade_all_of.py b/intersight/model/firmware_upgrade_all_of.py
index bbad7ee6f0..a45fb26ede 100644
--- a/intersight/model/firmware_upgrade_all_of.py
+++ b/intersight/model/firmware_upgrade_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/firmware_upgrade_base.py b/intersight/model/firmware_upgrade_base.py
index 10018ba780..f428f4c6c3 100644
--- a/intersight/model/firmware_upgrade_base.py
+++ b/intersight/model/firmware_upgrade_base.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/firmware_upgrade_base_all_of.py b/intersight/model/firmware_upgrade_base_all_of.py
index ad3023fc0c..450f87fbb3 100644
--- a/intersight/model/firmware_upgrade_base_all_of.py
+++ b/intersight/model/firmware_upgrade_base_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/firmware_upgrade_base_relationship.py b/intersight/model/firmware_upgrade_base_relationship.py
index 9c6564f9f0..cc8e632c2b 100644
--- a/intersight/model/firmware_upgrade_base_relationship.py
+++ b/intersight/model/firmware_upgrade_base_relationship.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
@@ -97,6 +97,8 @@ class FirmwareUpgradeBaseRelationship(ModelComposed):
},
('object_type',): {
'AAA.AUDITRECORD': "aaa.AuditRecord",
+ 'AAA.RETENTIONCONFIG': "aaa.RetentionConfig",
+ 'AAA.RETENTIONPOLICY': "aaa.RetentionPolicy",
'ACCESS.POLICY': "access.Policy",
'ADAPTER.CONFIGPOLICY': "adapter.ConfigPolicy",
'ADAPTER.EXTETHINTERFACE': "adapter.ExtEthInterface",
@@ -113,6 +115,7 @@ class FirmwareUpgradeBaseRelationship(ModelComposed):
'APPLIANCE.DATAEXPORTPOLICY': "appliance.DataExportPolicy",
'APPLIANCE.DEVICECERTIFICATE': "appliance.DeviceCertificate",
'APPLIANCE.DEVICECLAIM': "appliance.DeviceClaim",
+ 'APPLIANCE.DEVICEUPGRADEPOLICY': "appliance.DeviceUpgradePolicy",
'APPLIANCE.DIAGSETTING': "appliance.DiagSetting",
'APPLIANCE.EXTERNALSYSLOGSETTING': "appliance.ExternalSyslogSetting",
'APPLIANCE.FILESYSTEMSTATUS': "appliance.FileSystemStatus",
@@ -161,9 +164,12 @@ class FirmwareUpgradeBaseRelationship(ModelComposed):
'BOOT.UEFISHELLDEVICE': "boot.UefiShellDevice",
'BOOT.USBDEVICE': "boot.UsbDevice",
'BOOT.VMEDIADEVICE': "boot.VmediaDevice",
+ 'BULK.EXPORT': "bulk.Export",
+ 'BULK.EXPORTEDITEM': "bulk.ExportedItem",
'BULK.MOCLONER': "bulk.MoCloner",
'BULK.MOMERGER': "bulk.MoMerger",
'BULK.REQUEST': "bulk.Request",
+ 'BULK.SUBREQUESTOBJ': "bulk.SubRequestObj",
'CAPABILITY.ADAPTERUNITDESCRIPTOR': "capability.AdapterUnitDescriptor",
'CAPABILITY.CATALOG': "capability.Catalog",
'CAPABILITY.CHASSISDESCRIPTOR': "capability.ChassisDescriptor",
@@ -227,10 +233,6 @@ class FirmwareUpgradeBaseRelationship(ModelComposed):
'COND.HCLSTATUS': "cond.HclStatus",
'COND.HCLSTATUSDETAIL': "cond.HclStatusDetail",
'COND.HCLSTATUSJOB': "cond.HclStatusJob",
- 'CONFIG.EXPORTEDITEM': "config.ExportedItem",
- 'CONFIG.EXPORTER': "config.Exporter",
- 'CONFIG.IMPORTEDITEM': "config.ImportedItem",
- 'CONFIG.IMPORTER': "config.Importer",
'CONNECTORPACK.CONNECTORPACKUPGRADE': "connectorpack.ConnectorPackUpgrade",
'CONNECTORPACK.UPGRADEIMPACT': "connectorpack.UpgradeImpact",
'CRD.CUSTOMRESOURCE': "crd.CustomResource",
@@ -239,6 +241,7 @@ class FirmwareUpgradeBaseRelationship(ModelComposed):
'EQUIPMENT.CHASSISIDENTITY': "equipment.ChassisIdentity",
'EQUIPMENT.CHASSISOPERATION': "equipment.ChassisOperation",
'EQUIPMENT.DEVICESUMMARY': "equipment.DeviceSummary",
+ 'EQUIPMENT.EXPANDERMODULE': "equipment.ExpanderModule",
'EQUIPMENT.FAN': "equipment.Fan",
'EQUIPMENT.FANCONTROL': "equipment.FanControl",
'EQUIPMENT.FANMODULE': "equipment.FanModule",
@@ -487,6 +490,7 @@ class FirmwareUpgradeBaseRelationship(ModelComposed):
'KUBERNETES.ADDONDEFINITION': "kubernetes.AddonDefinition",
'KUBERNETES.ADDONPOLICY': "kubernetes.AddonPolicy",
'KUBERNETES.ADDONREPOSITORY': "kubernetes.AddonRepository",
+ 'KUBERNETES.BAREMETALNODEPROFILE': "kubernetes.BaremetalNodeProfile",
'KUBERNETES.CATALOG': "kubernetes.Catalog",
'KUBERNETES.CLUSTER': "kubernetes.Cluster",
'KUBERNETES.CLUSTERADDONPROFILE': "kubernetes.ClusterAddonProfile",
@@ -656,6 +660,11 @@ class FirmwareUpgradeBaseRelationship(ModelComposed):
'RESOURCE.LICENSERESOURCECOUNT': "resource.LicenseResourceCount",
'RESOURCE.MEMBERSHIP': "resource.Membership",
'RESOURCE.MEMBERSHIPHOLDER': "resource.MembershipHolder",
+ 'RESOURCEPOOL.LEASE': "resourcepool.Lease",
+ 'RESOURCEPOOL.LEASERESOURCE': "resourcepool.LeaseResource",
+ 'RESOURCEPOOL.POOL': "resourcepool.Pool",
+ 'RESOURCEPOOL.POOLMEMBER': "resourcepool.PoolMember",
+ 'RESOURCEPOOL.UNIVERSE': "resourcepool.Universe",
'RPROXY.REVERSEPROXY': "rproxy.ReverseProxy",
'SDCARD.POLICY': "sdcard.Policy",
'SDWAN.PROFILE': "sdwan.Profile",
@@ -771,6 +780,7 @@ class FirmwareUpgradeBaseRelationship(ModelComposed):
'TASK.NETAPPSCOPEDINVENTORY': "task.NetAppScopedInventory",
'TASK.PUBLICCLOUDSCOPEDINVENTORY': "task.PublicCloudScopedInventory",
'TASK.PURESCOPEDINVENTORY': "task.PureScopedInventory",
+ 'TASK.SERVERSCOPEDINVENTORY': "task.ServerScopedInventory",
'TECHSUPPORTMANAGEMENT.COLLECTIONCONTROLPOLICY': "techsupportmanagement.CollectionControlPolicy",
'TECHSUPPORTMANAGEMENT.DOWNLOAD': "techsupportmanagement.Download",
'TECHSUPPORTMANAGEMENT.TECHSUPPORTBUNDLE': "techsupportmanagement.TechSupportBundle",
@@ -802,6 +812,7 @@ class FirmwareUpgradeBaseRelationship(ModelComposed):
'VIRTUALIZATION.VMWAREVCENTER': "virtualization.VmwareVcenter",
'VIRTUALIZATION.VMWAREVIRTUALDISK': "virtualization.VmwareVirtualDisk",
'VIRTUALIZATION.VMWAREVIRTUALMACHINE': "virtualization.VmwareVirtualMachine",
+ 'VIRTUALIZATION.VMWAREVIRTUALMACHINESNAPSHOT': "virtualization.VmwareVirtualMachineSnapshot",
'VIRTUALIZATION.VMWAREVIRTUALNETWORKINTERFACE': "virtualization.VmwareVirtualNetworkInterface",
'VIRTUALIZATION.VMWAREVIRTUALSWITCH': "virtualization.VmwareVirtualSwitch",
'VMEDIA.POLICY': "vmedia.Policy",
@@ -834,12 +845,14 @@ class FirmwareUpgradeBaseRelationship(ModelComposed):
'WORKFLOW.TASKDEFINITION': "workflow.TaskDefinition",
'WORKFLOW.TASKINFO': "workflow.TaskInfo",
'WORKFLOW.TASKMETADATA': "workflow.TaskMetadata",
+ 'WORKFLOW.TASKNOTIFICATION': "workflow.TaskNotification",
'WORKFLOW.TEMPLATEEVALUATION': "workflow.TemplateEvaluation",
'WORKFLOW.TEMPLATEFUNCTIONMETA': "workflow.TemplateFunctionMeta",
'WORKFLOW.WORKFLOWDEFINITION': "workflow.WorkflowDefinition",
'WORKFLOW.WORKFLOWINFO': "workflow.WorkflowInfo",
'WORKFLOW.WORKFLOWMETA': "workflow.WorkflowMeta",
'WORKFLOW.WORKFLOWMETADATA': "workflow.WorkflowMetadata",
+ 'WORKFLOW.WORKFLOWNOTIFICATION': "workflow.WorkflowNotification",
},
}
diff --git a/intersight/model/firmware_upgrade_impact.py b/intersight/model/firmware_upgrade_impact.py
index 924fbf5db9..b75cf63261 100644
--- a/intersight/model/firmware_upgrade_impact.py
+++ b/intersight/model/firmware_upgrade_impact.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/firmware_upgrade_impact_all_of.py b/intersight/model/firmware_upgrade_impact_all_of.py
index 093177a272..703377163b 100644
--- a/intersight/model/firmware_upgrade_impact_all_of.py
+++ b/intersight/model/firmware_upgrade_impact_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/firmware_upgrade_impact_base.py b/intersight/model/firmware_upgrade_impact_base.py
index 2adea1a60f..9831038205 100644
--- a/intersight/model/firmware_upgrade_impact_base.py
+++ b/intersight/model/firmware_upgrade_impact_base.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/firmware_upgrade_impact_base_all_of.py b/intersight/model/firmware_upgrade_impact_base_all_of.py
index 55df140753..4a7b935292 100644
--- a/intersight/model/firmware_upgrade_impact_base_all_of.py
+++ b/intersight/model/firmware_upgrade_impact_base_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/firmware_upgrade_impact_status.py b/intersight/model/firmware_upgrade_impact_status.py
index 0f87aa7dda..24ea0e555e 100644
--- a/intersight/model/firmware_upgrade_impact_status.py
+++ b/intersight/model/firmware_upgrade_impact_status.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/firmware_upgrade_impact_status_all_of.py b/intersight/model/firmware_upgrade_impact_status_all_of.py
index c44b58b738..ce534ef674 100644
--- a/intersight/model/firmware_upgrade_impact_status_all_of.py
+++ b/intersight/model/firmware_upgrade_impact_status_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/firmware_upgrade_impact_status_list.py b/intersight/model/firmware_upgrade_impact_status_list.py
index 5a56dca6dc..9f5cffa10c 100644
--- a/intersight/model/firmware_upgrade_impact_status_list.py
+++ b/intersight/model/firmware_upgrade_impact_status_list.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/firmware_upgrade_impact_status_list_all_of.py b/intersight/model/firmware_upgrade_impact_status_list_all_of.py
index a6e1ee4ebb..872a69958e 100644
--- a/intersight/model/firmware_upgrade_impact_status_list_all_of.py
+++ b/intersight/model/firmware_upgrade_impact_status_list_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/firmware_upgrade_impact_status_relationship.py b/intersight/model/firmware_upgrade_impact_status_relationship.py
index 31f8a327f0..74ac5d05bf 100644
--- a/intersight/model/firmware_upgrade_impact_status_relationship.py
+++ b/intersight/model/firmware_upgrade_impact_status_relationship.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
@@ -131,6 +131,8 @@ class FirmwareUpgradeImpactStatusRelationship(ModelComposed):
},
('object_type',): {
'AAA.AUDITRECORD': "aaa.AuditRecord",
+ 'AAA.RETENTIONCONFIG': "aaa.RetentionConfig",
+ 'AAA.RETENTIONPOLICY': "aaa.RetentionPolicy",
'ACCESS.POLICY': "access.Policy",
'ADAPTER.CONFIGPOLICY': "adapter.ConfigPolicy",
'ADAPTER.EXTETHINTERFACE': "adapter.ExtEthInterface",
@@ -147,6 +149,7 @@ class FirmwareUpgradeImpactStatusRelationship(ModelComposed):
'APPLIANCE.DATAEXPORTPOLICY': "appliance.DataExportPolicy",
'APPLIANCE.DEVICECERTIFICATE': "appliance.DeviceCertificate",
'APPLIANCE.DEVICECLAIM': "appliance.DeviceClaim",
+ 'APPLIANCE.DEVICEUPGRADEPOLICY': "appliance.DeviceUpgradePolicy",
'APPLIANCE.DIAGSETTING': "appliance.DiagSetting",
'APPLIANCE.EXTERNALSYSLOGSETTING': "appliance.ExternalSyslogSetting",
'APPLIANCE.FILESYSTEMSTATUS': "appliance.FileSystemStatus",
@@ -195,9 +198,12 @@ class FirmwareUpgradeImpactStatusRelationship(ModelComposed):
'BOOT.UEFISHELLDEVICE': "boot.UefiShellDevice",
'BOOT.USBDEVICE': "boot.UsbDevice",
'BOOT.VMEDIADEVICE': "boot.VmediaDevice",
+ 'BULK.EXPORT': "bulk.Export",
+ 'BULK.EXPORTEDITEM': "bulk.ExportedItem",
'BULK.MOCLONER': "bulk.MoCloner",
'BULK.MOMERGER': "bulk.MoMerger",
'BULK.REQUEST': "bulk.Request",
+ 'BULK.SUBREQUESTOBJ': "bulk.SubRequestObj",
'CAPABILITY.ADAPTERUNITDESCRIPTOR': "capability.AdapterUnitDescriptor",
'CAPABILITY.CATALOG': "capability.Catalog",
'CAPABILITY.CHASSISDESCRIPTOR': "capability.ChassisDescriptor",
@@ -261,10 +267,6 @@ class FirmwareUpgradeImpactStatusRelationship(ModelComposed):
'COND.HCLSTATUS': "cond.HclStatus",
'COND.HCLSTATUSDETAIL': "cond.HclStatusDetail",
'COND.HCLSTATUSJOB': "cond.HclStatusJob",
- 'CONFIG.EXPORTEDITEM': "config.ExportedItem",
- 'CONFIG.EXPORTER': "config.Exporter",
- 'CONFIG.IMPORTEDITEM': "config.ImportedItem",
- 'CONFIG.IMPORTER': "config.Importer",
'CONNECTORPACK.CONNECTORPACKUPGRADE': "connectorpack.ConnectorPackUpgrade",
'CONNECTORPACK.UPGRADEIMPACT': "connectorpack.UpgradeImpact",
'CRD.CUSTOMRESOURCE': "crd.CustomResource",
@@ -273,6 +275,7 @@ class FirmwareUpgradeImpactStatusRelationship(ModelComposed):
'EQUIPMENT.CHASSISIDENTITY': "equipment.ChassisIdentity",
'EQUIPMENT.CHASSISOPERATION': "equipment.ChassisOperation",
'EQUIPMENT.DEVICESUMMARY': "equipment.DeviceSummary",
+ 'EQUIPMENT.EXPANDERMODULE': "equipment.ExpanderModule",
'EQUIPMENT.FAN': "equipment.Fan",
'EQUIPMENT.FANCONTROL': "equipment.FanControl",
'EQUIPMENT.FANMODULE': "equipment.FanModule",
@@ -521,6 +524,7 @@ class FirmwareUpgradeImpactStatusRelationship(ModelComposed):
'KUBERNETES.ADDONDEFINITION': "kubernetes.AddonDefinition",
'KUBERNETES.ADDONPOLICY': "kubernetes.AddonPolicy",
'KUBERNETES.ADDONREPOSITORY': "kubernetes.AddonRepository",
+ 'KUBERNETES.BAREMETALNODEPROFILE': "kubernetes.BaremetalNodeProfile",
'KUBERNETES.CATALOG': "kubernetes.Catalog",
'KUBERNETES.CLUSTER': "kubernetes.Cluster",
'KUBERNETES.CLUSTERADDONPROFILE': "kubernetes.ClusterAddonProfile",
@@ -690,6 +694,11 @@ class FirmwareUpgradeImpactStatusRelationship(ModelComposed):
'RESOURCE.LICENSERESOURCECOUNT': "resource.LicenseResourceCount",
'RESOURCE.MEMBERSHIP': "resource.Membership",
'RESOURCE.MEMBERSHIPHOLDER': "resource.MembershipHolder",
+ 'RESOURCEPOOL.LEASE': "resourcepool.Lease",
+ 'RESOURCEPOOL.LEASERESOURCE': "resourcepool.LeaseResource",
+ 'RESOURCEPOOL.POOL': "resourcepool.Pool",
+ 'RESOURCEPOOL.POOLMEMBER': "resourcepool.PoolMember",
+ 'RESOURCEPOOL.UNIVERSE': "resourcepool.Universe",
'RPROXY.REVERSEPROXY': "rproxy.ReverseProxy",
'SDCARD.POLICY': "sdcard.Policy",
'SDWAN.PROFILE': "sdwan.Profile",
@@ -805,6 +814,7 @@ class FirmwareUpgradeImpactStatusRelationship(ModelComposed):
'TASK.NETAPPSCOPEDINVENTORY': "task.NetAppScopedInventory",
'TASK.PUBLICCLOUDSCOPEDINVENTORY': "task.PublicCloudScopedInventory",
'TASK.PURESCOPEDINVENTORY': "task.PureScopedInventory",
+ 'TASK.SERVERSCOPEDINVENTORY': "task.ServerScopedInventory",
'TECHSUPPORTMANAGEMENT.COLLECTIONCONTROLPOLICY': "techsupportmanagement.CollectionControlPolicy",
'TECHSUPPORTMANAGEMENT.DOWNLOAD': "techsupportmanagement.Download",
'TECHSUPPORTMANAGEMENT.TECHSUPPORTBUNDLE': "techsupportmanagement.TechSupportBundle",
@@ -836,6 +846,7 @@ class FirmwareUpgradeImpactStatusRelationship(ModelComposed):
'VIRTUALIZATION.VMWAREVCENTER': "virtualization.VmwareVcenter",
'VIRTUALIZATION.VMWAREVIRTUALDISK': "virtualization.VmwareVirtualDisk",
'VIRTUALIZATION.VMWAREVIRTUALMACHINE': "virtualization.VmwareVirtualMachine",
+ 'VIRTUALIZATION.VMWAREVIRTUALMACHINESNAPSHOT': "virtualization.VmwareVirtualMachineSnapshot",
'VIRTUALIZATION.VMWAREVIRTUALNETWORKINTERFACE': "virtualization.VmwareVirtualNetworkInterface",
'VIRTUALIZATION.VMWAREVIRTUALSWITCH': "virtualization.VmwareVirtualSwitch",
'VMEDIA.POLICY': "vmedia.Policy",
@@ -868,12 +879,14 @@ class FirmwareUpgradeImpactStatusRelationship(ModelComposed):
'WORKFLOW.TASKDEFINITION': "workflow.TaskDefinition",
'WORKFLOW.TASKINFO': "workflow.TaskInfo",
'WORKFLOW.TASKMETADATA': "workflow.TaskMetadata",
+ 'WORKFLOW.TASKNOTIFICATION': "workflow.TaskNotification",
'WORKFLOW.TEMPLATEEVALUATION': "workflow.TemplateEvaluation",
'WORKFLOW.TEMPLATEFUNCTIONMETA': "workflow.TemplateFunctionMeta",
'WORKFLOW.WORKFLOWDEFINITION': "workflow.WorkflowDefinition",
'WORKFLOW.WORKFLOWINFO': "workflow.WorkflowInfo",
'WORKFLOW.WORKFLOWMETA': "workflow.WorkflowMeta",
'WORKFLOW.WORKFLOWMETADATA': "workflow.WorkflowMetadata",
+ 'WORKFLOW.WORKFLOWNOTIFICATION': "workflow.WorkflowNotification",
},
}
diff --git a/intersight/model/firmware_upgrade_impact_status_response.py b/intersight/model/firmware_upgrade_impact_status_response.py
index 3cd2942922..554bb1d45e 100644
--- a/intersight/model/firmware_upgrade_impact_status_response.py
+++ b/intersight/model/firmware_upgrade_impact_status_response.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/firmware_upgrade_list.py b/intersight/model/firmware_upgrade_list.py
index de76ab5dc7..47690d929c 100644
--- a/intersight/model/firmware_upgrade_list.py
+++ b/intersight/model/firmware_upgrade_list.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/firmware_upgrade_list_all_of.py b/intersight/model/firmware_upgrade_list_all_of.py
index 9f82ab18a4..b2c10d4900 100644
--- a/intersight/model/firmware_upgrade_list_all_of.py
+++ b/intersight/model/firmware_upgrade_list_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/firmware_upgrade_response.py b/intersight/model/firmware_upgrade_response.py
index e19373850c..6439f6acf1 100644
--- a/intersight/model/firmware_upgrade_response.py
+++ b/intersight/model/firmware_upgrade_response.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/firmware_upgrade_status.py b/intersight/model/firmware_upgrade_status.py
index fe7a8e1ef8..c975400886 100644
--- a/intersight/model/firmware_upgrade_status.py
+++ b/intersight/model/firmware_upgrade_status.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/firmware_upgrade_status_all_of.py b/intersight/model/firmware_upgrade_status_all_of.py
index 7236db11b5..ae5d8228cb 100644
--- a/intersight/model/firmware_upgrade_status_all_of.py
+++ b/intersight/model/firmware_upgrade_status_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/firmware_upgrade_status_list.py b/intersight/model/firmware_upgrade_status_list.py
index 2c6f225b6b..3a42d123c8 100644
--- a/intersight/model/firmware_upgrade_status_list.py
+++ b/intersight/model/firmware_upgrade_status_list.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/firmware_upgrade_status_list_all_of.py b/intersight/model/firmware_upgrade_status_list_all_of.py
index 45d67a686f..c318922ae8 100644
--- a/intersight/model/firmware_upgrade_status_list_all_of.py
+++ b/intersight/model/firmware_upgrade_status_list_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/firmware_upgrade_status_relationship.py b/intersight/model/firmware_upgrade_status_relationship.py
index a44ca8fef8..b78a5e1b2d 100644
--- a/intersight/model/firmware_upgrade_status_relationship.py
+++ b/intersight/model/firmware_upgrade_status_relationship.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
@@ -123,6 +123,8 @@ class FirmwareUpgradeStatusRelationship(ModelComposed):
},
('object_type',): {
'AAA.AUDITRECORD': "aaa.AuditRecord",
+ 'AAA.RETENTIONCONFIG': "aaa.RetentionConfig",
+ 'AAA.RETENTIONPOLICY': "aaa.RetentionPolicy",
'ACCESS.POLICY': "access.Policy",
'ADAPTER.CONFIGPOLICY': "adapter.ConfigPolicy",
'ADAPTER.EXTETHINTERFACE': "adapter.ExtEthInterface",
@@ -139,6 +141,7 @@ class FirmwareUpgradeStatusRelationship(ModelComposed):
'APPLIANCE.DATAEXPORTPOLICY': "appliance.DataExportPolicy",
'APPLIANCE.DEVICECERTIFICATE': "appliance.DeviceCertificate",
'APPLIANCE.DEVICECLAIM': "appliance.DeviceClaim",
+ 'APPLIANCE.DEVICEUPGRADEPOLICY': "appliance.DeviceUpgradePolicy",
'APPLIANCE.DIAGSETTING': "appliance.DiagSetting",
'APPLIANCE.EXTERNALSYSLOGSETTING': "appliance.ExternalSyslogSetting",
'APPLIANCE.FILESYSTEMSTATUS': "appliance.FileSystemStatus",
@@ -187,9 +190,12 @@ class FirmwareUpgradeStatusRelationship(ModelComposed):
'BOOT.UEFISHELLDEVICE': "boot.UefiShellDevice",
'BOOT.USBDEVICE': "boot.UsbDevice",
'BOOT.VMEDIADEVICE': "boot.VmediaDevice",
+ 'BULK.EXPORT': "bulk.Export",
+ 'BULK.EXPORTEDITEM': "bulk.ExportedItem",
'BULK.MOCLONER': "bulk.MoCloner",
'BULK.MOMERGER': "bulk.MoMerger",
'BULK.REQUEST': "bulk.Request",
+ 'BULK.SUBREQUESTOBJ': "bulk.SubRequestObj",
'CAPABILITY.ADAPTERUNITDESCRIPTOR': "capability.AdapterUnitDescriptor",
'CAPABILITY.CATALOG': "capability.Catalog",
'CAPABILITY.CHASSISDESCRIPTOR': "capability.ChassisDescriptor",
@@ -253,10 +259,6 @@ class FirmwareUpgradeStatusRelationship(ModelComposed):
'COND.HCLSTATUS': "cond.HclStatus",
'COND.HCLSTATUSDETAIL': "cond.HclStatusDetail",
'COND.HCLSTATUSJOB': "cond.HclStatusJob",
- 'CONFIG.EXPORTEDITEM': "config.ExportedItem",
- 'CONFIG.EXPORTER': "config.Exporter",
- 'CONFIG.IMPORTEDITEM': "config.ImportedItem",
- 'CONFIG.IMPORTER': "config.Importer",
'CONNECTORPACK.CONNECTORPACKUPGRADE': "connectorpack.ConnectorPackUpgrade",
'CONNECTORPACK.UPGRADEIMPACT': "connectorpack.UpgradeImpact",
'CRD.CUSTOMRESOURCE': "crd.CustomResource",
@@ -265,6 +267,7 @@ class FirmwareUpgradeStatusRelationship(ModelComposed):
'EQUIPMENT.CHASSISIDENTITY': "equipment.ChassisIdentity",
'EQUIPMENT.CHASSISOPERATION': "equipment.ChassisOperation",
'EQUIPMENT.DEVICESUMMARY': "equipment.DeviceSummary",
+ 'EQUIPMENT.EXPANDERMODULE': "equipment.ExpanderModule",
'EQUIPMENT.FAN': "equipment.Fan",
'EQUIPMENT.FANCONTROL': "equipment.FanControl",
'EQUIPMENT.FANMODULE': "equipment.FanModule",
@@ -513,6 +516,7 @@ class FirmwareUpgradeStatusRelationship(ModelComposed):
'KUBERNETES.ADDONDEFINITION': "kubernetes.AddonDefinition",
'KUBERNETES.ADDONPOLICY': "kubernetes.AddonPolicy",
'KUBERNETES.ADDONREPOSITORY': "kubernetes.AddonRepository",
+ 'KUBERNETES.BAREMETALNODEPROFILE': "kubernetes.BaremetalNodeProfile",
'KUBERNETES.CATALOG': "kubernetes.Catalog",
'KUBERNETES.CLUSTER': "kubernetes.Cluster",
'KUBERNETES.CLUSTERADDONPROFILE': "kubernetes.ClusterAddonProfile",
@@ -682,6 +686,11 @@ class FirmwareUpgradeStatusRelationship(ModelComposed):
'RESOURCE.LICENSERESOURCECOUNT': "resource.LicenseResourceCount",
'RESOURCE.MEMBERSHIP': "resource.Membership",
'RESOURCE.MEMBERSHIPHOLDER': "resource.MembershipHolder",
+ 'RESOURCEPOOL.LEASE': "resourcepool.Lease",
+ 'RESOURCEPOOL.LEASERESOURCE': "resourcepool.LeaseResource",
+ 'RESOURCEPOOL.POOL': "resourcepool.Pool",
+ 'RESOURCEPOOL.POOLMEMBER': "resourcepool.PoolMember",
+ 'RESOURCEPOOL.UNIVERSE': "resourcepool.Universe",
'RPROXY.REVERSEPROXY': "rproxy.ReverseProxy",
'SDCARD.POLICY': "sdcard.Policy",
'SDWAN.PROFILE': "sdwan.Profile",
@@ -797,6 +806,7 @@ class FirmwareUpgradeStatusRelationship(ModelComposed):
'TASK.NETAPPSCOPEDINVENTORY': "task.NetAppScopedInventory",
'TASK.PUBLICCLOUDSCOPEDINVENTORY': "task.PublicCloudScopedInventory",
'TASK.PURESCOPEDINVENTORY': "task.PureScopedInventory",
+ 'TASK.SERVERSCOPEDINVENTORY': "task.ServerScopedInventory",
'TECHSUPPORTMANAGEMENT.COLLECTIONCONTROLPOLICY': "techsupportmanagement.CollectionControlPolicy",
'TECHSUPPORTMANAGEMENT.DOWNLOAD': "techsupportmanagement.Download",
'TECHSUPPORTMANAGEMENT.TECHSUPPORTBUNDLE': "techsupportmanagement.TechSupportBundle",
@@ -828,6 +838,7 @@ class FirmwareUpgradeStatusRelationship(ModelComposed):
'VIRTUALIZATION.VMWAREVCENTER': "virtualization.VmwareVcenter",
'VIRTUALIZATION.VMWAREVIRTUALDISK': "virtualization.VmwareVirtualDisk",
'VIRTUALIZATION.VMWAREVIRTUALMACHINE': "virtualization.VmwareVirtualMachine",
+ 'VIRTUALIZATION.VMWAREVIRTUALMACHINESNAPSHOT': "virtualization.VmwareVirtualMachineSnapshot",
'VIRTUALIZATION.VMWAREVIRTUALNETWORKINTERFACE': "virtualization.VmwareVirtualNetworkInterface",
'VIRTUALIZATION.VMWAREVIRTUALSWITCH': "virtualization.VmwareVirtualSwitch",
'VMEDIA.POLICY': "vmedia.Policy",
@@ -860,12 +871,14 @@ class FirmwareUpgradeStatusRelationship(ModelComposed):
'WORKFLOW.TASKDEFINITION': "workflow.TaskDefinition",
'WORKFLOW.TASKINFO': "workflow.TaskInfo",
'WORKFLOW.TASKMETADATA': "workflow.TaskMetadata",
+ 'WORKFLOW.TASKNOTIFICATION': "workflow.TaskNotification",
'WORKFLOW.TEMPLATEEVALUATION': "workflow.TemplateEvaluation",
'WORKFLOW.TEMPLATEFUNCTIONMETA': "workflow.TemplateFunctionMeta",
'WORKFLOW.WORKFLOWDEFINITION': "workflow.WorkflowDefinition",
'WORKFLOW.WORKFLOWINFO': "workflow.WorkflowInfo",
'WORKFLOW.WORKFLOWMETA': "workflow.WorkflowMeta",
'WORKFLOW.WORKFLOWMETADATA': "workflow.WorkflowMetadata",
+ 'WORKFLOW.WORKFLOWNOTIFICATION': "workflow.WorkflowNotification",
},
}
diff --git a/intersight/model/firmware_upgrade_status_response.py b/intersight/model/firmware_upgrade_status_response.py
index 26058fb919..5ab279cd46 100644
--- a/intersight/model/firmware_upgrade_status_response.py
+++ b/intersight/model/firmware_upgrade_status_response.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/forecast_catalog.py b/intersight/model/forecast_catalog.py
index ddd9b0b0e9..2abe4ea3d8 100644
--- a/intersight/model/forecast_catalog.py
+++ b/intersight/model/forecast_catalog.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/forecast_catalog_all_of.py b/intersight/model/forecast_catalog_all_of.py
index 6e74e9c77e..a42df71d33 100644
--- a/intersight/model/forecast_catalog_all_of.py
+++ b/intersight/model/forecast_catalog_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/forecast_catalog_list.py b/intersight/model/forecast_catalog_list.py
index 4cc2b11e3e..4d3c1237c8 100644
--- a/intersight/model/forecast_catalog_list.py
+++ b/intersight/model/forecast_catalog_list.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/forecast_catalog_list_all_of.py b/intersight/model/forecast_catalog_list_all_of.py
index 9258259066..c03c83eeab 100644
--- a/intersight/model/forecast_catalog_list_all_of.py
+++ b/intersight/model/forecast_catalog_list_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/forecast_catalog_relationship.py b/intersight/model/forecast_catalog_relationship.py
index 015478c7f8..635a0f64ef 100644
--- a/intersight/model/forecast_catalog_relationship.py
+++ b/intersight/model/forecast_catalog_relationship.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
@@ -74,6 +74,8 @@ class ForecastCatalogRelationship(ModelComposed):
},
('object_type',): {
'AAA.AUDITRECORD': "aaa.AuditRecord",
+ 'AAA.RETENTIONCONFIG': "aaa.RetentionConfig",
+ 'AAA.RETENTIONPOLICY': "aaa.RetentionPolicy",
'ACCESS.POLICY': "access.Policy",
'ADAPTER.CONFIGPOLICY': "adapter.ConfigPolicy",
'ADAPTER.EXTETHINTERFACE': "adapter.ExtEthInterface",
@@ -90,6 +92,7 @@ class ForecastCatalogRelationship(ModelComposed):
'APPLIANCE.DATAEXPORTPOLICY': "appliance.DataExportPolicy",
'APPLIANCE.DEVICECERTIFICATE': "appliance.DeviceCertificate",
'APPLIANCE.DEVICECLAIM': "appliance.DeviceClaim",
+ 'APPLIANCE.DEVICEUPGRADEPOLICY': "appliance.DeviceUpgradePolicy",
'APPLIANCE.DIAGSETTING': "appliance.DiagSetting",
'APPLIANCE.EXTERNALSYSLOGSETTING': "appliance.ExternalSyslogSetting",
'APPLIANCE.FILESYSTEMSTATUS': "appliance.FileSystemStatus",
@@ -138,9 +141,12 @@ class ForecastCatalogRelationship(ModelComposed):
'BOOT.UEFISHELLDEVICE': "boot.UefiShellDevice",
'BOOT.USBDEVICE': "boot.UsbDevice",
'BOOT.VMEDIADEVICE': "boot.VmediaDevice",
+ 'BULK.EXPORT': "bulk.Export",
+ 'BULK.EXPORTEDITEM': "bulk.ExportedItem",
'BULK.MOCLONER': "bulk.MoCloner",
'BULK.MOMERGER': "bulk.MoMerger",
'BULK.REQUEST': "bulk.Request",
+ 'BULK.SUBREQUESTOBJ': "bulk.SubRequestObj",
'CAPABILITY.ADAPTERUNITDESCRIPTOR': "capability.AdapterUnitDescriptor",
'CAPABILITY.CATALOG': "capability.Catalog",
'CAPABILITY.CHASSISDESCRIPTOR': "capability.ChassisDescriptor",
@@ -204,10 +210,6 @@ class ForecastCatalogRelationship(ModelComposed):
'COND.HCLSTATUS': "cond.HclStatus",
'COND.HCLSTATUSDETAIL': "cond.HclStatusDetail",
'COND.HCLSTATUSJOB': "cond.HclStatusJob",
- 'CONFIG.EXPORTEDITEM': "config.ExportedItem",
- 'CONFIG.EXPORTER': "config.Exporter",
- 'CONFIG.IMPORTEDITEM': "config.ImportedItem",
- 'CONFIG.IMPORTER': "config.Importer",
'CONNECTORPACK.CONNECTORPACKUPGRADE': "connectorpack.ConnectorPackUpgrade",
'CONNECTORPACK.UPGRADEIMPACT': "connectorpack.UpgradeImpact",
'CRD.CUSTOMRESOURCE': "crd.CustomResource",
@@ -216,6 +218,7 @@ class ForecastCatalogRelationship(ModelComposed):
'EQUIPMENT.CHASSISIDENTITY': "equipment.ChassisIdentity",
'EQUIPMENT.CHASSISOPERATION': "equipment.ChassisOperation",
'EQUIPMENT.DEVICESUMMARY': "equipment.DeviceSummary",
+ 'EQUIPMENT.EXPANDERMODULE': "equipment.ExpanderModule",
'EQUIPMENT.FAN': "equipment.Fan",
'EQUIPMENT.FANCONTROL': "equipment.FanControl",
'EQUIPMENT.FANMODULE': "equipment.FanModule",
@@ -464,6 +467,7 @@ class ForecastCatalogRelationship(ModelComposed):
'KUBERNETES.ADDONDEFINITION': "kubernetes.AddonDefinition",
'KUBERNETES.ADDONPOLICY': "kubernetes.AddonPolicy",
'KUBERNETES.ADDONREPOSITORY': "kubernetes.AddonRepository",
+ 'KUBERNETES.BAREMETALNODEPROFILE': "kubernetes.BaremetalNodeProfile",
'KUBERNETES.CATALOG': "kubernetes.Catalog",
'KUBERNETES.CLUSTER': "kubernetes.Cluster",
'KUBERNETES.CLUSTERADDONPROFILE': "kubernetes.ClusterAddonProfile",
@@ -633,6 +637,11 @@ class ForecastCatalogRelationship(ModelComposed):
'RESOURCE.LICENSERESOURCECOUNT': "resource.LicenseResourceCount",
'RESOURCE.MEMBERSHIP': "resource.Membership",
'RESOURCE.MEMBERSHIPHOLDER': "resource.MembershipHolder",
+ 'RESOURCEPOOL.LEASE': "resourcepool.Lease",
+ 'RESOURCEPOOL.LEASERESOURCE': "resourcepool.LeaseResource",
+ 'RESOURCEPOOL.POOL': "resourcepool.Pool",
+ 'RESOURCEPOOL.POOLMEMBER': "resourcepool.PoolMember",
+ 'RESOURCEPOOL.UNIVERSE': "resourcepool.Universe",
'RPROXY.REVERSEPROXY': "rproxy.ReverseProxy",
'SDCARD.POLICY': "sdcard.Policy",
'SDWAN.PROFILE': "sdwan.Profile",
@@ -748,6 +757,7 @@ class ForecastCatalogRelationship(ModelComposed):
'TASK.NETAPPSCOPEDINVENTORY': "task.NetAppScopedInventory",
'TASK.PUBLICCLOUDSCOPEDINVENTORY': "task.PublicCloudScopedInventory",
'TASK.PURESCOPEDINVENTORY': "task.PureScopedInventory",
+ 'TASK.SERVERSCOPEDINVENTORY': "task.ServerScopedInventory",
'TECHSUPPORTMANAGEMENT.COLLECTIONCONTROLPOLICY': "techsupportmanagement.CollectionControlPolicy",
'TECHSUPPORTMANAGEMENT.DOWNLOAD': "techsupportmanagement.Download",
'TECHSUPPORTMANAGEMENT.TECHSUPPORTBUNDLE': "techsupportmanagement.TechSupportBundle",
@@ -779,6 +789,7 @@ class ForecastCatalogRelationship(ModelComposed):
'VIRTUALIZATION.VMWAREVCENTER': "virtualization.VmwareVcenter",
'VIRTUALIZATION.VMWAREVIRTUALDISK': "virtualization.VmwareVirtualDisk",
'VIRTUALIZATION.VMWAREVIRTUALMACHINE': "virtualization.VmwareVirtualMachine",
+ 'VIRTUALIZATION.VMWAREVIRTUALMACHINESNAPSHOT': "virtualization.VmwareVirtualMachineSnapshot",
'VIRTUALIZATION.VMWAREVIRTUALNETWORKINTERFACE': "virtualization.VmwareVirtualNetworkInterface",
'VIRTUALIZATION.VMWAREVIRTUALSWITCH': "virtualization.VmwareVirtualSwitch",
'VMEDIA.POLICY': "vmedia.Policy",
@@ -811,12 +822,14 @@ class ForecastCatalogRelationship(ModelComposed):
'WORKFLOW.TASKDEFINITION': "workflow.TaskDefinition",
'WORKFLOW.TASKINFO': "workflow.TaskInfo",
'WORKFLOW.TASKMETADATA': "workflow.TaskMetadata",
+ 'WORKFLOW.TASKNOTIFICATION': "workflow.TaskNotification",
'WORKFLOW.TEMPLATEEVALUATION': "workflow.TemplateEvaluation",
'WORKFLOW.TEMPLATEFUNCTIONMETA': "workflow.TemplateFunctionMeta",
'WORKFLOW.WORKFLOWDEFINITION': "workflow.WorkflowDefinition",
'WORKFLOW.WORKFLOWINFO': "workflow.WorkflowInfo",
'WORKFLOW.WORKFLOWMETA': "workflow.WorkflowMeta",
'WORKFLOW.WORKFLOWMETADATA': "workflow.WorkflowMetadata",
+ 'WORKFLOW.WORKFLOWNOTIFICATION': "workflow.WorkflowNotification",
},
}
diff --git a/intersight/model/forecast_catalog_response.py b/intersight/model/forecast_catalog_response.py
index 3791b660b7..373041322f 100644
--- a/intersight/model/forecast_catalog_response.py
+++ b/intersight/model/forecast_catalog_response.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/forecast_definition.py b/intersight/model/forecast_definition.py
index 96756fd14c..76725c585c 100644
--- a/intersight/model/forecast_definition.py
+++ b/intersight/model/forecast_definition.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/forecast_definition_all_of.py b/intersight/model/forecast_definition_all_of.py
index ab51cfd6cb..bf77ad57e6 100644
--- a/intersight/model/forecast_definition_all_of.py
+++ b/intersight/model/forecast_definition_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/forecast_definition_list.py b/intersight/model/forecast_definition_list.py
index d8f0441b1f..39aa3ec45c 100644
--- a/intersight/model/forecast_definition_list.py
+++ b/intersight/model/forecast_definition_list.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/forecast_definition_list_all_of.py b/intersight/model/forecast_definition_list_all_of.py
index 83430f36cb..6f11168437 100644
--- a/intersight/model/forecast_definition_list_all_of.py
+++ b/intersight/model/forecast_definition_list_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/forecast_definition_relationship.py b/intersight/model/forecast_definition_relationship.py
index 9f183c24ed..76f1699962 100644
--- a/intersight/model/forecast_definition_relationship.py
+++ b/intersight/model/forecast_definition_relationship.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
@@ -74,6 +74,8 @@ class ForecastDefinitionRelationship(ModelComposed):
},
('object_type',): {
'AAA.AUDITRECORD': "aaa.AuditRecord",
+ 'AAA.RETENTIONCONFIG': "aaa.RetentionConfig",
+ 'AAA.RETENTIONPOLICY': "aaa.RetentionPolicy",
'ACCESS.POLICY': "access.Policy",
'ADAPTER.CONFIGPOLICY': "adapter.ConfigPolicy",
'ADAPTER.EXTETHINTERFACE': "adapter.ExtEthInterface",
@@ -90,6 +92,7 @@ class ForecastDefinitionRelationship(ModelComposed):
'APPLIANCE.DATAEXPORTPOLICY': "appliance.DataExportPolicy",
'APPLIANCE.DEVICECERTIFICATE': "appliance.DeviceCertificate",
'APPLIANCE.DEVICECLAIM': "appliance.DeviceClaim",
+ 'APPLIANCE.DEVICEUPGRADEPOLICY': "appliance.DeviceUpgradePolicy",
'APPLIANCE.DIAGSETTING': "appliance.DiagSetting",
'APPLIANCE.EXTERNALSYSLOGSETTING': "appliance.ExternalSyslogSetting",
'APPLIANCE.FILESYSTEMSTATUS': "appliance.FileSystemStatus",
@@ -138,9 +141,12 @@ class ForecastDefinitionRelationship(ModelComposed):
'BOOT.UEFISHELLDEVICE': "boot.UefiShellDevice",
'BOOT.USBDEVICE': "boot.UsbDevice",
'BOOT.VMEDIADEVICE': "boot.VmediaDevice",
+ 'BULK.EXPORT': "bulk.Export",
+ 'BULK.EXPORTEDITEM': "bulk.ExportedItem",
'BULK.MOCLONER': "bulk.MoCloner",
'BULK.MOMERGER': "bulk.MoMerger",
'BULK.REQUEST': "bulk.Request",
+ 'BULK.SUBREQUESTOBJ': "bulk.SubRequestObj",
'CAPABILITY.ADAPTERUNITDESCRIPTOR': "capability.AdapterUnitDescriptor",
'CAPABILITY.CATALOG': "capability.Catalog",
'CAPABILITY.CHASSISDESCRIPTOR': "capability.ChassisDescriptor",
@@ -204,10 +210,6 @@ class ForecastDefinitionRelationship(ModelComposed):
'COND.HCLSTATUS': "cond.HclStatus",
'COND.HCLSTATUSDETAIL': "cond.HclStatusDetail",
'COND.HCLSTATUSJOB': "cond.HclStatusJob",
- 'CONFIG.EXPORTEDITEM': "config.ExportedItem",
- 'CONFIG.EXPORTER': "config.Exporter",
- 'CONFIG.IMPORTEDITEM': "config.ImportedItem",
- 'CONFIG.IMPORTER': "config.Importer",
'CONNECTORPACK.CONNECTORPACKUPGRADE': "connectorpack.ConnectorPackUpgrade",
'CONNECTORPACK.UPGRADEIMPACT': "connectorpack.UpgradeImpact",
'CRD.CUSTOMRESOURCE': "crd.CustomResource",
@@ -216,6 +218,7 @@ class ForecastDefinitionRelationship(ModelComposed):
'EQUIPMENT.CHASSISIDENTITY': "equipment.ChassisIdentity",
'EQUIPMENT.CHASSISOPERATION': "equipment.ChassisOperation",
'EQUIPMENT.DEVICESUMMARY': "equipment.DeviceSummary",
+ 'EQUIPMENT.EXPANDERMODULE': "equipment.ExpanderModule",
'EQUIPMENT.FAN': "equipment.Fan",
'EQUIPMENT.FANCONTROL': "equipment.FanControl",
'EQUIPMENT.FANMODULE': "equipment.FanModule",
@@ -464,6 +467,7 @@ class ForecastDefinitionRelationship(ModelComposed):
'KUBERNETES.ADDONDEFINITION': "kubernetes.AddonDefinition",
'KUBERNETES.ADDONPOLICY': "kubernetes.AddonPolicy",
'KUBERNETES.ADDONREPOSITORY': "kubernetes.AddonRepository",
+ 'KUBERNETES.BAREMETALNODEPROFILE': "kubernetes.BaremetalNodeProfile",
'KUBERNETES.CATALOG': "kubernetes.Catalog",
'KUBERNETES.CLUSTER': "kubernetes.Cluster",
'KUBERNETES.CLUSTERADDONPROFILE': "kubernetes.ClusterAddonProfile",
@@ -633,6 +637,11 @@ class ForecastDefinitionRelationship(ModelComposed):
'RESOURCE.LICENSERESOURCECOUNT': "resource.LicenseResourceCount",
'RESOURCE.MEMBERSHIP': "resource.Membership",
'RESOURCE.MEMBERSHIPHOLDER': "resource.MembershipHolder",
+ 'RESOURCEPOOL.LEASE': "resourcepool.Lease",
+ 'RESOURCEPOOL.LEASERESOURCE': "resourcepool.LeaseResource",
+ 'RESOURCEPOOL.POOL': "resourcepool.Pool",
+ 'RESOURCEPOOL.POOLMEMBER': "resourcepool.PoolMember",
+ 'RESOURCEPOOL.UNIVERSE': "resourcepool.Universe",
'RPROXY.REVERSEPROXY': "rproxy.ReverseProxy",
'SDCARD.POLICY': "sdcard.Policy",
'SDWAN.PROFILE': "sdwan.Profile",
@@ -748,6 +757,7 @@ class ForecastDefinitionRelationship(ModelComposed):
'TASK.NETAPPSCOPEDINVENTORY': "task.NetAppScopedInventory",
'TASK.PUBLICCLOUDSCOPEDINVENTORY': "task.PublicCloudScopedInventory",
'TASK.PURESCOPEDINVENTORY': "task.PureScopedInventory",
+ 'TASK.SERVERSCOPEDINVENTORY': "task.ServerScopedInventory",
'TECHSUPPORTMANAGEMENT.COLLECTIONCONTROLPOLICY': "techsupportmanagement.CollectionControlPolicy",
'TECHSUPPORTMANAGEMENT.DOWNLOAD': "techsupportmanagement.Download",
'TECHSUPPORTMANAGEMENT.TECHSUPPORTBUNDLE': "techsupportmanagement.TechSupportBundle",
@@ -779,6 +789,7 @@ class ForecastDefinitionRelationship(ModelComposed):
'VIRTUALIZATION.VMWAREVCENTER': "virtualization.VmwareVcenter",
'VIRTUALIZATION.VMWAREVIRTUALDISK': "virtualization.VmwareVirtualDisk",
'VIRTUALIZATION.VMWAREVIRTUALMACHINE': "virtualization.VmwareVirtualMachine",
+ 'VIRTUALIZATION.VMWAREVIRTUALMACHINESNAPSHOT': "virtualization.VmwareVirtualMachineSnapshot",
'VIRTUALIZATION.VMWAREVIRTUALNETWORKINTERFACE': "virtualization.VmwareVirtualNetworkInterface",
'VIRTUALIZATION.VMWAREVIRTUALSWITCH': "virtualization.VmwareVirtualSwitch",
'VMEDIA.POLICY': "vmedia.Policy",
@@ -811,12 +822,14 @@ class ForecastDefinitionRelationship(ModelComposed):
'WORKFLOW.TASKDEFINITION': "workflow.TaskDefinition",
'WORKFLOW.TASKINFO': "workflow.TaskInfo",
'WORKFLOW.TASKMETADATA': "workflow.TaskMetadata",
+ 'WORKFLOW.TASKNOTIFICATION': "workflow.TaskNotification",
'WORKFLOW.TEMPLATEEVALUATION': "workflow.TemplateEvaluation",
'WORKFLOW.TEMPLATEFUNCTIONMETA': "workflow.TemplateFunctionMeta",
'WORKFLOW.WORKFLOWDEFINITION': "workflow.WorkflowDefinition",
'WORKFLOW.WORKFLOWINFO': "workflow.WorkflowInfo",
'WORKFLOW.WORKFLOWMETA': "workflow.WorkflowMeta",
'WORKFLOW.WORKFLOWMETADATA': "workflow.WorkflowMetadata",
+ 'WORKFLOW.WORKFLOWNOTIFICATION': "workflow.WorkflowNotification",
},
}
diff --git a/intersight/model/forecast_definition_response.py b/intersight/model/forecast_definition_response.py
index b1a63f2040..b04525fb72 100644
--- a/intersight/model/forecast_definition_response.py
+++ b/intersight/model/forecast_definition_response.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/forecast_instance.py b/intersight/model/forecast_instance.py
index 74c42f4be8..3ff2cce46f 100644
--- a/intersight/model/forecast_instance.py
+++ b/intersight/model/forecast_instance.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/forecast_instance_all_of.py b/intersight/model/forecast_instance_all_of.py
index 0b6659c8b0..50a0debee8 100644
--- a/intersight/model/forecast_instance_all_of.py
+++ b/intersight/model/forecast_instance_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/forecast_instance_list.py b/intersight/model/forecast_instance_list.py
index 57240fa09a..8dfc0e94da 100644
--- a/intersight/model/forecast_instance_list.py
+++ b/intersight/model/forecast_instance_list.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/forecast_instance_list_all_of.py b/intersight/model/forecast_instance_list_all_of.py
index 12eafa3fcb..b2c24e0e5c 100644
--- a/intersight/model/forecast_instance_list_all_of.py
+++ b/intersight/model/forecast_instance_list_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/forecast_instance_relationship.py b/intersight/model/forecast_instance_relationship.py
index 917e0b8d30..c1a1e81c8e 100644
--- a/intersight/model/forecast_instance_relationship.py
+++ b/intersight/model/forecast_instance_relationship.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
@@ -82,6 +82,8 @@ class ForecastInstanceRelationship(ModelComposed):
},
('object_type',): {
'AAA.AUDITRECORD': "aaa.AuditRecord",
+ 'AAA.RETENTIONCONFIG': "aaa.RetentionConfig",
+ 'AAA.RETENTIONPOLICY': "aaa.RetentionPolicy",
'ACCESS.POLICY': "access.Policy",
'ADAPTER.CONFIGPOLICY': "adapter.ConfigPolicy",
'ADAPTER.EXTETHINTERFACE': "adapter.ExtEthInterface",
@@ -98,6 +100,7 @@ class ForecastInstanceRelationship(ModelComposed):
'APPLIANCE.DATAEXPORTPOLICY': "appliance.DataExportPolicy",
'APPLIANCE.DEVICECERTIFICATE': "appliance.DeviceCertificate",
'APPLIANCE.DEVICECLAIM': "appliance.DeviceClaim",
+ 'APPLIANCE.DEVICEUPGRADEPOLICY': "appliance.DeviceUpgradePolicy",
'APPLIANCE.DIAGSETTING': "appliance.DiagSetting",
'APPLIANCE.EXTERNALSYSLOGSETTING': "appliance.ExternalSyslogSetting",
'APPLIANCE.FILESYSTEMSTATUS': "appliance.FileSystemStatus",
@@ -146,9 +149,12 @@ class ForecastInstanceRelationship(ModelComposed):
'BOOT.UEFISHELLDEVICE': "boot.UefiShellDevice",
'BOOT.USBDEVICE': "boot.UsbDevice",
'BOOT.VMEDIADEVICE': "boot.VmediaDevice",
+ 'BULK.EXPORT': "bulk.Export",
+ 'BULK.EXPORTEDITEM': "bulk.ExportedItem",
'BULK.MOCLONER': "bulk.MoCloner",
'BULK.MOMERGER': "bulk.MoMerger",
'BULK.REQUEST': "bulk.Request",
+ 'BULK.SUBREQUESTOBJ': "bulk.SubRequestObj",
'CAPABILITY.ADAPTERUNITDESCRIPTOR': "capability.AdapterUnitDescriptor",
'CAPABILITY.CATALOG': "capability.Catalog",
'CAPABILITY.CHASSISDESCRIPTOR': "capability.ChassisDescriptor",
@@ -212,10 +218,6 @@ class ForecastInstanceRelationship(ModelComposed):
'COND.HCLSTATUS': "cond.HclStatus",
'COND.HCLSTATUSDETAIL': "cond.HclStatusDetail",
'COND.HCLSTATUSJOB': "cond.HclStatusJob",
- 'CONFIG.EXPORTEDITEM': "config.ExportedItem",
- 'CONFIG.EXPORTER': "config.Exporter",
- 'CONFIG.IMPORTEDITEM': "config.ImportedItem",
- 'CONFIG.IMPORTER': "config.Importer",
'CONNECTORPACK.CONNECTORPACKUPGRADE': "connectorpack.ConnectorPackUpgrade",
'CONNECTORPACK.UPGRADEIMPACT': "connectorpack.UpgradeImpact",
'CRD.CUSTOMRESOURCE': "crd.CustomResource",
@@ -224,6 +226,7 @@ class ForecastInstanceRelationship(ModelComposed):
'EQUIPMENT.CHASSISIDENTITY': "equipment.ChassisIdentity",
'EQUIPMENT.CHASSISOPERATION': "equipment.ChassisOperation",
'EQUIPMENT.DEVICESUMMARY': "equipment.DeviceSummary",
+ 'EQUIPMENT.EXPANDERMODULE': "equipment.ExpanderModule",
'EQUIPMENT.FAN': "equipment.Fan",
'EQUIPMENT.FANCONTROL': "equipment.FanControl",
'EQUIPMENT.FANMODULE': "equipment.FanModule",
@@ -472,6 +475,7 @@ class ForecastInstanceRelationship(ModelComposed):
'KUBERNETES.ADDONDEFINITION': "kubernetes.AddonDefinition",
'KUBERNETES.ADDONPOLICY': "kubernetes.AddonPolicy",
'KUBERNETES.ADDONREPOSITORY': "kubernetes.AddonRepository",
+ 'KUBERNETES.BAREMETALNODEPROFILE': "kubernetes.BaremetalNodeProfile",
'KUBERNETES.CATALOG': "kubernetes.Catalog",
'KUBERNETES.CLUSTER': "kubernetes.Cluster",
'KUBERNETES.CLUSTERADDONPROFILE': "kubernetes.ClusterAddonProfile",
@@ -641,6 +645,11 @@ class ForecastInstanceRelationship(ModelComposed):
'RESOURCE.LICENSERESOURCECOUNT': "resource.LicenseResourceCount",
'RESOURCE.MEMBERSHIP': "resource.Membership",
'RESOURCE.MEMBERSHIPHOLDER': "resource.MembershipHolder",
+ 'RESOURCEPOOL.LEASE': "resourcepool.Lease",
+ 'RESOURCEPOOL.LEASERESOURCE': "resourcepool.LeaseResource",
+ 'RESOURCEPOOL.POOL': "resourcepool.Pool",
+ 'RESOURCEPOOL.POOLMEMBER': "resourcepool.PoolMember",
+ 'RESOURCEPOOL.UNIVERSE': "resourcepool.Universe",
'RPROXY.REVERSEPROXY': "rproxy.ReverseProxy",
'SDCARD.POLICY': "sdcard.Policy",
'SDWAN.PROFILE': "sdwan.Profile",
@@ -756,6 +765,7 @@ class ForecastInstanceRelationship(ModelComposed):
'TASK.NETAPPSCOPEDINVENTORY': "task.NetAppScopedInventory",
'TASK.PUBLICCLOUDSCOPEDINVENTORY': "task.PublicCloudScopedInventory",
'TASK.PURESCOPEDINVENTORY': "task.PureScopedInventory",
+ 'TASK.SERVERSCOPEDINVENTORY': "task.ServerScopedInventory",
'TECHSUPPORTMANAGEMENT.COLLECTIONCONTROLPOLICY': "techsupportmanagement.CollectionControlPolicy",
'TECHSUPPORTMANAGEMENT.DOWNLOAD': "techsupportmanagement.Download",
'TECHSUPPORTMANAGEMENT.TECHSUPPORTBUNDLE': "techsupportmanagement.TechSupportBundle",
@@ -787,6 +797,7 @@ class ForecastInstanceRelationship(ModelComposed):
'VIRTUALIZATION.VMWAREVCENTER': "virtualization.VmwareVcenter",
'VIRTUALIZATION.VMWAREVIRTUALDISK': "virtualization.VmwareVirtualDisk",
'VIRTUALIZATION.VMWAREVIRTUALMACHINE': "virtualization.VmwareVirtualMachine",
+ 'VIRTUALIZATION.VMWAREVIRTUALMACHINESNAPSHOT': "virtualization.VmwareVirtualMachineSnapshot",
'VIRTUALIZATION.VMWAREVIRTUALNETWORKINTERFACE': "virtualization.VmwareVirtualNetworkInterface",
'VIRTUALIZATION.VMWAREVIRTUALSWITCH': "virtualization.VmwareVirtualSwitch",
'VMEDIA.POLICY': "vmedia.Policy",
@@ -819,12 +830,14 @@ class ForecastInstanceRelationship(ModelComposed):
'WORKFLOW.TASKDEFINITION': "workflow.TaskDefinition",
'WORKFLOW.TASKINFO': "workflow.TaskInfo",
'WORKFLOW.TASKMETADATA': "workflow.TaskMetadata",
+ 'WORKFLOW.TASKNOTIFICATION': "workflow.TaskNotification",
'WORKFLOW.TEMPLATEEVALUATION': "workflow.TemplateEvaluation",
'WORKFLOW.TEMPLATEFUNCTIONMETA': "workflow.TemplateFunctionMeta",
'WORKFLOW.WORKFLOWDEFINITION': "workflow.WorkflowDefinition",
'WORKFLOW.WORKFLOWINFO': "workflow.WorkflowInfo",
'WORKFLOW.WORKFLOWMETA': "workflow.WorkflowMeta",
'WORKFLOW.WORKFLOWMETADATA': "workflow.WorkflowMetadata",
+ 'WORKFLOW.WORKFLOWNOTIFICATION': "workflow.WorkflowNotification",
},
}
diff --git a/intersight/model/forecast_instance_response.py b/intersight/model/forecast_instance_response.py
index ca6bec0241..26bc8fc530 100644
--- a/intersight/model/forecast_instance_response.py
+++ b/intersight/model/forecast_instance_response.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/forecast_model.py b/intersight/model/forecast_model.py
index 791619fe9f..6f40d1c366 100644
--- a/intersight/model/forecast_model.py
+++ b/intersight/model/forecast_model.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/forecast_model_all_of.py b/intersight/model/forecast_model_all_of.py
index 92d14a2657..1f26ae7f57 100644
--- a/intersight/model/forecast_model_all_of.py
+++ b/intersight/model/forecast_model_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/graphics_card.py b/intersight/model/graphics_card.py
index bfed05cceb..dc64ec2084 100644
--- a/intersight/model/graphics_card.py
+++ b/intersight/model/graphics_card.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/graphics_card_all_of.py b/intersight/model/graphics_card_all_of.py
index 1a91d9a86a..ccf247dec0 100644
--- a/intersight/model/graphics_card_all_of.py
+++ b/intersight/model/graphics_card_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/graphics_card_list.py b/intersight/model/graphics_card_list.py
index 60d59ccc69..cd348fd386 100644
--- a/intersight/model/graphics_card_list.py
+++ b/intersight/model/graphics_card_list.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/graphics_card_list_all_of.py b/intersight/model/graphics_card_list_all_of.py
index ba1eee7df8..3f2a7e895e 100644
--- a/intersight/model/graphics_card_list_all_of.py
+++ b/intersight/model/graphics_card_list_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/graphics_card_relationship.py b/intersight/model/graphics_card_relationship.py
index 6db75dc261..2f0aaba10e 100644
--- a/intersight/model/graphics_card_relationship.py
+++ b/intersight/model/graphics_card_relationship.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
@@ -88,6 +88,8 @@ class GraphicsCardRelationship(ModelComposed):
},
('object_type',): {
'AAA.AUDITRECORD': "aaa.AuditRecord",
+ 'AAA.RETENTIONCONFIG': "aaa.RetentionConfig",
+ 'AAA.RETENTIONPOLICY': "aaa.RetentionPolicy",
'ACCESS.POLICY': "access.Policy",
'ADAPTER.CONFIGPOLICY': "adapter.ConfigPolicy",
'ADAPTER.EXTETHINTERFACE': "adapter.ExtEthInterface",
@@ -104,6 +106,7 @@ class GraphicsCardRelationship(ModelComposed):
'APPLIANCE.DATAEXPORTPOLICY': "appliance.DataExportPolicy",
'APPLIANCE.DEVICECERTIFICATE': "appliance.DeviceCertificate",
'APPLIANCE.DEVICECLAIM': "appliance.DeviceClaim",
+ 'APPLIANCE.DEVICEUPGRADEPOLICY': "appliance.DeviceUpgradePolicy",
'APPLIANCE.DIAGSETTING': "appliance.DiagSetting",
'APPLIANCE.EXTERNALSYSLOGSETTING': "appliance.ExternalSyslogSetting",
'APPLIANCE.FILESYSTEMSTATUS': "appliance.FileSystemStatus",
@@ -152,9 +155,12 @@ class GraphicsCardRelationship(ModelComposed):
'BOOT.UEFISHELLDEVICE': "boot.UefiShellDevice",
'BOOT.USBDEVICE': "boot.UsbDevice",
'BOOT.VMEDIADEVICE': "boot.VmediaDevice",
+ 'BULK.EXPORT': "bulk.Export",
+ 'BULK.EXPORTEDITEM': "bulk.ExportedItem",
'BULK.MOCLONER': "bulk.MoCloner",
'BULK.MOMERGER': "bulk.MoMerger",
'BULK.REQUEST': "bulk.Request",
+ 'BULK.SUBREQUESTOBJ': "bulk.SubRequestObj",
'CAPABILITY.ADAPTERUNITDESCRIPTOR': "capability.AdapterUnitDescriptor",
'CAPABILITY.CATALOG': "capability.Catalog",
'CAPABILITY.CHASSISDESCRIPTOR': "capability.ChassisDescriptor",
@@ -218,10 +224,6 @@ class GraphicsCardRelationship(ModelComposed):
'COND.HCLSTATUS': "cond.HclStatus",
'COND.HCLSTATUSDETAIL': "cond.HclStatusDetail",
'COND.HCLSTATUSJOB': "cond.HclStatusJob",
- 'CONFIG.EXPORTEDITEM': "config.ExportedItem",
- 'CONFIG.EXPORTER': "config.Exporter",
- 'CONFIG.IMPORTEDITEM': "config.ImportedItem",
- 'CONFIG.IMPORTER': "config.Importer",
'CONNECTORPACK.CONNECTORPACKUPGRADE': "connectorpack.ConnectorPackUpgrade",
'CONNECTORPACK.UPGRADEIMPACT': "connectorpack.UpgradeImpact",
'CRD.CUSTOMRESOURCE': "crd.CustomResource",
@@ -230,6 +232,7 @@ class GraphicsCardRelationship(ModelComposed):
'EQUIPMENT.CHASSISIDENTITY': "equipment.ChassisIdentity",
'EQUIPMENT.CHASSISOPERATION': "equipment.ChassisOperation",
'EQUIPMENT.DEVICESUMMARY': "equipment.DeviceSummary",
+ 'EQUIPMENT.EXPANDERMODULE': "equipment.ExpanderModule",
'EQUIPMENT.FAN': "equipment.Fan",
'EQUIPMENT.FANCONTROL': "equipment.FanControl",
'EQUIPMENT.FANMODULE': "equipment.FanModule",
@@ -478,6 +481,7 @@ class GraphicsCardRelationship(ModelComposed):
'KUBERNETES.ADDONDEFINITION': "kubernetes.AddonDefinition",
'KUBERNETES.ADDONPOLICY': "kubernetes.AddonPolicy",
'KUBERNETES.ADDONREPOSITORY': "kubernetes.AddonRepository",
+ 'KUBERNETES.BAREMETALNODEPROFILE': "kubernetes.BaremetalNodeProfile",
'KUBERNETES.CATALOG': "kubernetes.Catalog",
'KUBERNETES.CLUSTER': "kubernetes.Cluster",
'KUBERNETES.CLUSTERADDONPROFILE': "kubernetes.ClusterAddonProfile",
@@ -647,6 +651,11 @@ class GraphicsCardRelationship(ModelComposed):
'RESOURCE.LICENSERESOURCECOUNT': "resource.LicenseResourceCount",
'RESOURCE.MEMBERSHIP': "resource.Membership",
'RESOURCE.MEMBERSHIPHOLDER': "resource.MembershipHolder",
+ 'RESOURCEPOOL.LEASE': "resourcepool.Lease",
+ 'RESOURCEPOOL.LEASERESOURCE': "resourcepool.LeaseResource",
+ 'RESOURCEPOOL.POOL': "resourcepool.Pool",
+ 'RESOURCEPOOL.POOLMEMBER': "resourcepool.PoolMember",
+ 'RESOURCEPOOL.UNIVERSE': "resourcepool.Universe",
'RPROXY.REVERSEPROXY': "rproxy.ReverseProxy",
'SDCARD.POLICY': "sdcard.Policy",
'SDWAN.PROFILE': "sdwan.Profile",
@@ -762,6 +771,7 @@ class GraphicsCardRelationship(ModelComposed):
'TASK.NETAPPSCOPEDINVENTORY': "task.NetAppScopedInventory",
'TASK.PUBLICCLOUDSCOPEDINVENTORY': "task.PublicCloudScopedInventory",
'TASK.PURESCOPEDINVENTORY': "task.PureScopedInventory",
+ 'TASK.SERVERSCOPEDINVENTORY': "task.ServerScopedInventory",
'TECHSUPPORTMANAGEMENT.COLLECTIONCONTROLPOLICY': "techsupportmanagement.CollectionControlPolicy",
'TECHSUPPORTMANAGEMENT.DOWNLOAD': "techsupportmanagement.Download",
'TECHSUPPORTMANAGEMENT.TECHSUPPORTBUNDLE': "techsupportmanagement.TechSupportBundle",
@@ -793,6 +803,7 @@ class GraphicsCardRelationship(ModelComposed):
'VIRTUALIZATION.VMWAREVCENTER': "virtualization.VmwareVcenter",
'VIRTUALIZATION.VMWAREVIRTUALDISK': "virtualization.VmwareVirtualDisk",
'VIRTUALIZATION.VMWAREVIRTUALMACHINE': "virtualization.VmwareVirtualMachine",
+ 'VIRTUALIZATION.VMWAREVIRTUALMACHINESNAPSHOT': "virtualization.VmwareVirtualMachineSnapshot",
'VIRTUALIZATION.VMWAREVIRTUALNETWORKINTERFACE': "virtualization.VmwareVirtualNetworkInterface",
'VIRTUALIZATION.VMWAREVIRTUALSWITCH': "virtualization.VmwareVirtualSwitch",
'VMEDIA.POLICY': "vmedia.Policy",
@@ -825,12 +836,14 @@ class GraphicsCardRelationship(ModelComposed):
'WORKFLOW.TASKDEFINITION': "workflow.TaskDefinition",
'WORKFLOW.TASKINFO': "workflow.TaskInfo",
'WORKFLOW.TASKMETADATA': "workflow.TaskMetadata",
+ 'WORKFLOW.TASKNOTIFICATION': "workflow.TaskNotification",
'WORKFLOW.TEMPLATEEVALUATION': "workflow.TemplateEvaluation",
'WORKFLOW.TEMPLATEFUNCTIONMETA': "workflow.TemplateFunctionMeta",
'WORKFLOW.WORKFLOWDEFINITION': "workflow.WorkflowDefinition",
'WORKFLOW.WORKFLOWINFO': "workflow.WorkflowInfo",
'WORKFLOW.WORKFLOWMETA': "workflow.WorkflowMeta",
'WORKFLOW.WORKFLOWMETADATA': "workflow.WorkflowMetadata",
+ 'WORKFLOW.WORKFLOWNOTIFICATION': "workflow.WorkflowNotification",
},
}
diff --git a/intersight/model/graphics_card_response.py b/intersight/model/graphics_card_response.py
index 86ae024349..a76e5dae04 100644
--- a/intersight/model/graphics_card_response.py
+++ b/intersight/model/graphics_card_response.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/graphics_controller.py b/intersight/model/graphics_controller.py
index 0403e45aac..eac8e088db 100644
--- a/intersight/model/graphics_controller.py
+++ b/intersight/model/graphics_controller.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/graphics_controller_all_of.py b/intersight/model/graphics_controller_all_of.py
index 79432ec2fd..dc90197622 100644
--- a/intersight/model/graphics_controller_all_of.py
+++ b/intersight/model/graphics_controller_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/graphics_controller_list.py b/intersight/model/graphics_controller_list.py
index 587e90a03f..aa348c878c 100644
--- a/intersight/model/graphics_controller_list.py
+++ b/intersight/model/graphics_controller_list.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/graphics_controller_list_all_of.py b/intersight/model/graphics_controller_list_all_of.py
index a49dd8b1e9..28c6bdd1c7 100644
--- a/intersight/model/graphics_controller_list_all_of.py
+++ b/intersight/model/graphics_controller_list_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/graphics_controller_relationship.py b/intersight/model/graphics_controller_relationship.py
index 503fbe4563..5ce2fd77c8 100644
--- a/intersight/model/graphics_controller_relationship.py
+++ b/intersight/model/graphics_controller_relationship.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
@@ -80,6 +80,8 @@ class GraphicsControllerRelationship(ModelComposed):
},
('object_type',): {
'AAA.AUDITRECORD': "aaa.AuditRecord",
+ 'AAA.RETENTIONCONFIG': "aaa.RetentionConfig",
+ 'AAA.RETENTIONPOLICY': "aaa.RetentionPolicy",
'ACCESS.POLICY': "access.Policy",
'ADAPTER.CONFIGPOLICY': "adapter.ConfigPolicy",
'ADAPTER.EXTETHINTERFACE': "adapter.ExtEthInterface",
@@ -96,6 +98,7 @@ class GraphicsControllerRelationship(ModelComposed):
'APPLIANCE.DATAEXPORTPOLICY': "appliance.DataExportPolicy",
'APPLIANCE.DEVICECERTIFICATE': "appliance.DeviceCertificate",
'APPLIANCE.DEVICECLAIM': "appliance.DeviceClaim",
+ 'APPLIANCE.DEVICEUPGRADEPOLICY': "appliance.DeviceUpgradePolicy",
'APPLIANCE.DIAGSETTING': "appliance.DiagSetting",
'APPLIANCE.EXTERNALSYSLOGSETTING': "appliance.ExternalSyslogSetting",
'APPLIANCE.FILESYSTEMSTATUS': "appliance.FileSystemStatus",
@@ -144,9 +147,12 @@ class GraphicsControllerRelationship(ModelComposed):
'BOOT.UEFISHELLDEVICE': "boot.UefiShellDevice",
'BOOT.USBDEVICE': "boot.UsbDevice",
'BOOT.VMEDIADEVICE': "boot.VmediaDevice",
+ 'BULK.EXPORT': "bulk.Export",
+ 'BULK.EXPORTEDITEM': "bulk.ExportedItem",
'BULK.MOCLONER': "bulk.MoCloner",
'BULK.MOMERGER': "bulk.MoMerger",
'BULK.REQUEST': "bulk.Request",
+ 'BULK.SUBREQUESTOBJ': "bulk.SubRequestObj",
'CAPABILITY.ADAPTERUNITDESCRIPTOR': "capability.AdapterUnitDescriptor",
'CAPABILITY.CATALOG': "capability.Catalog",
'CAPABILITY.CHASSISDESCRIPTOR': "capability.ChassisDescriptor",
@@ -210,10 +216,6 @@ class GraphicsControllerRelationship(ModelComposed):
'COND.HCLSTATUS': "cond.HclStatus",
'COND.HCLSTATUSDETAIL': "cond.HclStatusDetail",
'COND.HCLSTATUSJOB': "cond.HclStatusJob",
- 'CONFIG.EXPORTEDITEM': "config.ExportedItem",
- 'CONFIG.EXPORTER': "config.Exporter",
- 'CONFIG.IMPORTEDITEM': "config.ImportedItem",
- 'CONFIG.IMPORTER': "config.Importer",
'CONNECTORPACK.CONNECTORPACKUPGRADE': "connectorpack.ConnectorPackUpgrade",
'CONNECTORPACK.UPGRADEIMPACT': "connectorpack.UpgradeImpact",
'CRD.CUSTOMRESOURCE': "crd.CustomResource",
@@ -222,6 +224,7 @@ class GraphicsControllerRelationship(ModelComposed):
'EQUIPMENT.CHASSISIDENTITY': "equipment.ChassisIdentity",
'EQUIPMENT.CHASSISOPERATION': "equipment.ChassisOperation",
'EQUIPMENT.DEVICESUMMARY': "equipment.DeviceSummary",
+ 'EQUIPMENT.EXPANDERMODULE': "equipment.ExpanderModule",
'EQUIPMENT.FAN': "equipment.Fan",
'EQUIPMENT.FANCONTROL': "equipment.FanControl",
'EQUIPMENT.FANMODULE': "equipment.FanModule",
@@ -470,6 +473,7 @@ class GraphicsControllerRelationship(ModelComposed):
'KUBERNETES.ADDONDEFINITION': "kubernetes.AddonDefinition",
'KUBERNETES.ADDONPOLICY': "kubernetes.AddonPolicy",
'KUBERNETES.ADDONREPOSITORY': "kubernetes.AddonRepository",
+ 'KUBERNETES.BAREMETALNODEPROFILE': "kubernetes.BaremetalNodeProfile",
'KUBERNETES.CATALOG': "kubernetes.Catalog",
'KUBERNETES.CLUSTER': "kubernetes.Cluster",
'KUBERNETES.CLUSTERADDONPROFILE': "kubernetes.ClusterAddonProfile",
@@ -639,6 +643,11 @@ class GraphicsControllerRelationship(ModelComposed):
'RESOURCE.LICENSERESOURCECOUNT': "resource.LicenseResourceCount",
'RESOURCE.MEMBERSHIP': "resource.Membership",
'RESOURCE.MEMBERSHIPHOLDER': "resource.MembershipHolder",
+ 'RESOURCEPOOL.LEASE': "resourcepool.Lease",
+ 'RESOURCEPOOL.LEASERESOURCE': "resourcepool.LeaseResource",
+ 'RESOURCEPOOL.POOL': "resourcepool.Pool",
+ 'RESOURCEPOOL.POOLMEMBER': "resourcepool.PoolMember",
+ 'RESOURCEPOOL.UNIVERSE': "resourcepool.Universe",
'RPROXY.REVERSEPROXY': "rproxy.ReverseProxy",
'SDCARD.POLICY': "sdcard.Policy",
'SDWAN.PROFILE': "sdwan.Profile",
@@ -754,6 +763,7 @@ class GraphicsControllerRelationship(ModelComposed):
'TASK.NETAPPSCOPEDINVENTORY': "task.NetAppScopedInventory",
'TASK.PUBLICCLOUDSCOPEDINVENTORY': "task.PublicCloudScopedInventory",
'TASK.PURESCOPEDINVENTORY': "task.PureScopedInventory",
+ 'TASK.SERVERSCOPEDINVENTORY': "task.ServerScopedInventory",
'TECHSUPPORTMANAGEMENT.COLLECTIONCONTROLPOLICY': "techsupportmanagement.CollectionControlPolicy",
'TECHSUPPORTMANAGEMENT.DOWNLOAD': "techsupportmanagement.Download",
'TECHSUPPORTMANAGEMENT.TECHSUPPORTBUNDLE': "techsupportmanagement.TechSupportBundle",
@@ -785,6 +795,7 @@ class GraphicsControllerRelationship(ModelComposed):
'VIRTUALIZATION.VMWAREVCENTER': "virtualization.VmwareVcenter",
'VIRTUALIZATION.VMWAREVIRTUALDISK': "virtualization.VmwareVirtualDisk",
'VIRTUALIZATION.VMWAREVIRTUALMACHINE': "virtualization.VmwareVirtualMachine",
+ 'VIRTUALIZATION.VMWAREVIRTUALMACHINESNAPSHOT': "virtualization.VmwareVirtualMachineSnapshot",
'VIRTUALIZATION.VMWAREVIRTUALNETWORKINTERFACE': "virtualization.VmwareVirtualNetworkInterface",
'VIRTUALIZATION.VMWAREVIRTUALSWITCH': "virtualization.VmwareVirtualSwitch",
'VMEDIA.POLICY': "vmedia.Policy",
@@ -817,12 +828,14 @@ class GraphicsControllerRelationship(ModelComposed):
'WORKFLOW.TASKDEFINITION': "workflow.TaskDefinition",
'WORKFLOW.TASKINFO': "workflow.TaskInfo",
'WORKFLOW.TASKMETADATA': "workflow.TaskMetadata",
+ 'WORKFLOW.TASKNOTIFICATION': "workflow.TaskNotification",
'WORKFLOW.TEMPLATEEVALUATION': "workflow.TemplateEvaluation",
'WORKFLOW.TEMPLATEFUNCTIONMETA': "workflow.TemplateFunctionMeta",
'WORKFLOW.WORKFLOWDEFINITION': "workflow.WorkflowDefinition",
'WORKFLOW.WORKFLOWINFO': "workflow.WorkflowInfo",
'WORKFLOW.WORKFLOWMETA': "workflow.WorkflowMeta",
'WORKFLOW.WORKFLOWMETADATA': "workflow.WorkflowMetadata",
+ 'WORKFLOW.WORKFLOWNOTIFICATION': "workflow.WorkflowNotification",
},
}
diff --git a/intersight/model/graphics_controller_response.py b/intersight/model/graphics_controller_response.py
index 61f85f398d..a020c4de17 100644
--- a/intersight/model/graphics_controller_response.py
+++ b/intersight/model/graphics_controller_response.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/hcl_compatibility_status.py b/intersight/model/hcl_compatibility_status.py
index a36e54ea59..9b8be0be0f 100644
--- a/intersight/model/hcl_compatibility_status.py
+++ b/intersight/model/hcl_compatibility_status.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/hcl_compatibility_status_all_of.py b/intersight/model/hcl_compatibility_status_all_of.py
index ee638f5f45..6579906791 100644
--- a/intersight/model/hcl_compatibility_status_all_of.py
+++ b/intersight/model/hcl_compatibility_status_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/hcl_constraint.py b/intersight/model/hcl_constraint.py
index 365b80429a..44b33c5df4 100644
--- a/intersight/model/hcl_constraint.py
+++ b/intersight/model/hcl_constraint.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/hcl_constraint_all_of.py b/intersight/model/hcl_constraint_all_of.py
index 290465d475..28da48c2d1 100644
--- a/intersight/model/hcl_constraint_all_of.py
+++ b/intersight/model/hcl_constraint_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/hcl_driver_image.py b/intersight/model/hcl_driver_image.py
index 9a6bf83e19..7fc4510598 100644
--- a/intersight/model/hcl_driver_image.py
+++ b/intersight/model/hcl_driver_image.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/hcl_driver_image_all_of.py b/intersight/model/hcl_driver_image_all_of.py
index 542d988274..c880e51a69 100644
--- a/intersight/model/hcl_driver_image_all_of.py
+++ b/intersight/model/hcl_driver_image_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/hcl_driver_image_list.py b/intersight/model/hcl_driver_image_list.py
index 92afe547de..a8d3d43f0c 100644
--- a/intersight/model/hcl_driver_image_list.py
+++ b/intersight/model/hcl_driver_image_list.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/hcl_driver_image_list_all_of.py b/intersight/model/hcl_driver_image_list_all_of.py
index 06b7b469c4..5fdc660429 100644
--- a/intersight/model/hcl_driver_image_list_all_of.py
+++ b/intersight/model/hcl_driver_image_list_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/hcl_driver_image_response.py b/intersight/model/hcl_driver_image_response.py
index 8cd0b2cc18..d661580d38 100644
--- a/intersight/model/hcl_driver_image_response.py
+++ b/intersight/model/hcl_driver_image_response.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/hcl_exempted_catalog.py b/intersight/model/hcl_exempted_catalog.py
index 95da0621ce..055ab4504e 100644
--- a/intersight/model/hcl_exempted_catalog.py
+++ b/intersight/model/hcl_exempted_catalog.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/hcl_exempted_catalog_all_of.py b/intersight/model/hcl_exempted_catalog_all_of.py
index 663ca1bc64..f31f0ad9e1 100644
--- a/intersight/model/hcl_exempted_catalog_all_of.py
+++ b/intersight/model/hcl_exempted_catalog_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/hcl_exempted_catalog_list.py b/intersight/model/hcl_exempted_catalog_list.py
index efb7c56956..a9fd472143 100644
--- a/intersight/model/hcl_exempted_catalog_list.py
+++ b/intersight/model/hcl_exempted_catalog_list.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/hcl_exempted_catalog_list_all_of.py b/intersight/model/hcl_exempted_catalog_list_all_of.py
index 34df8dd090..4cda225567 100644
--- a/intersight/model/hcl_exempted_catalog_list_all_of.py
+++ b/intersight/model/hcl_exempted_catalog_list_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/hcl_exempted_catalog_response.py b/intersight/model/hcl_exempted_catalog_response.py
index f188a2ce99..287f64a864 100644
--- a/intersight/model/hcl_exempted_catalog_response.py
+++ b/intersight/model/hcl_exempted_catalog_response.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/hcl_firmware.py b/intersight/model/hcl_firmware.py
index d9d167c86a..743d1fa3c0 100644
--- a/intersight/model/hcl_firmware.py
+++ b/intersight/model/hcl_firmware.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/hcl_firmware_all_of.py b/intersight/model/hcl_firmware_all_of.py
index 2cfe5949cc..741f002326 100644
--- a/intersight/model/hcl_firmware_all_of.py
+++ b/intersight/model/hcl_firmware_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/hcl_hardware_compatibility_profile.py b/intersight/model/hcl_hardware_compatibility_profile.py
index 5e22543ed9..f1e3c32a4f 100644
--- a/intersight/model/hcl_hardware_compatibility_profile.py
+++ b/intersight/model/hcl_hardware_compatibility_profile.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/hcl_hardware_compatibility_profile_all_of.py b/intersight/model/hcl_hardware_compatibility_profile_all_of.py
index 759003e7c0..75c89140d3 100644
--- a/intersight/model/hcl_hardware_compatibility_profile_all_of.py
+++ b/intersight/model/hcl_hardware_compatibility_profile_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/hcl_hyperflex_software_compatibility_info.py b/intersight/model/hcl_hyperflex_software_compatibility_info.py
index c62c1cb4a9..548a52902e 100644
--- a/intersight/model/hcl_hyperflex_software_compatibility_info.py
+++ b/intersight/model/hcl_hyperflex_software_compatibility_info.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/hcl_hyperflex_software_compatibility_info_all_of.py b/intersight/model/hcl_hyperflex_software_compatibility_info_all_of.py
index 92d36b246b..d5fdd5cbad 100644
--- a/intersight/model/hcl_hyperflex_software_compatibility_info_all_of.py
+++ b/intersight/model/hcl_hyperflex_software_compatibility_info_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/hcl_hyperflex_software_compatibility_info_list.py b/intersight/model/hcl_hyperflex_software_compatibility_info_list.py
index 20f287b6ca..20b03b383e 100644
--- a/intersight/model/hcl_hyperflex_software_compatibility_info_list.py
+++ b/intersight/model/hcl_hyperflex_software_compatibility_info_list.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/hcl_hyperflex_software_compatibility_info_list_all_of.py b/intersight/model/hcl_hyperflex_software_compatibility_info_list_all_of.py
index a198284d8b..bfe712f8cc 100644
--- a/intersight/model/hcl_hyperflex_software_compatibility_info_list_all_of.py
+++ b/intersight/model/hcl_hyperflex_software_compatibility_info_list_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/hcl_hyperflex_software_compatibility_info_relationship.py b/intersight/model/hcl_hyperflex_software_compatibility_info_relationship.py
index 7aae105fe0..e63bcd256f 100644
--- a/intersight/model/hcl_hyperflex_software_compatibility_info_relationship.py
+++ b/intersight/model/hcl_hyperflex_software_compatibility_info_relationship.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
@@ -82,6 +82,8 @@ class HclHyperflexSoftwareCompatibilityInfoRelationship(ModelComposed):
},
('object_type',): {
'AAA.AUDITRECORD': "aaa.AuditRecord",
+ 'AAA.RETENTIONCONFIG': "aaa.RetentionConfig",
+ 'AAA.RETENTIONPOLICY': "aaa.RetentionPolicy",
'ACCESS.POLICY': "access.Policy",
'ADAPTER.CONFIGPOLICY': "adapter.ConfigPolicy",
'ADAPTER.EXTETHINTERFACE': "adapter.ExtEthInterface",
@@ -98,6 +100,7 @@ class HclHyperflexSoftwareCompatibilityInfoRelationship(ModelComposed):
'APPLIANCE.DATAEXPORTPOLICY': "appliance.DataExportPolicy",
'APPLIANCE.DEVICECERTIFICATE': "appliance.DeviceCertificate",
'APPLIANCE.DEVICECLAIM': "appliance.DeviceClaim",
+ 'APPLIANCE.DEVICEUPGRADEPOLICY': "appliance.DeviceUpgradePolicy",
'APPLIANCE.DIAGSETTING': "appliance.DiagSetting",
'APPLIANCE.EXTERNALSYSLOGSETTING': "appliance.ExternalSyslogSetting",
'APPLIANCE.FILESYSTEMSTATUS': "appliance.FileSystemStatus",
@@ -146,9 +149,12 @@ class HclHyperflexSoftwareCompatibilityInfoRelationship(ModelComposed):
'BOOT.UEFISHELLDEVICE': "boot.UefiShellDevice",
'BOOT.USBDEVICE': "boot.UsbDevice",
'BOOT.VMEDIADEVICE': "boot.VmediaDevice",
+ 'BULK.EXPORT': "bulk.Export",
+ 'BULK.EXPORTEDITEM': "bulk.ExportedItem",
'BULK.MOCLONER': "bulk.MoCloner",
'BULK.MOMERGER': "bulk.MoMerger",
'BULK.REQUEST': "bulk.Request",
+ 'BULK.SUBREQUESTOBJ': "bulk.SubRequestObj",
'CAPABILITY.ADAPTERUNITDESCRIPTOR': "capability.AdapterUnitDescriptor",
'CAPABILITY.CATALOG': "capability.Catalog",
'CAPABILITY.CHASSISDESCRIPTOR': "capability.ChassisDescriptor",
@@ -212,10 +218,6 @@ class HclHyperflexSoftwareCompatibilityInfoRelationship(ModelComposed):
'COND.HCLSTATUS': "cond.HclStatus",
'COND.HCLSTATUSDETAIL': "cond.HclStatusDetail",
'COND.HCLSTATUSJOB': "cond.HclStatusJob",
- 'CONFIG.EXPORTEDITEM': "config.ExportedItem",
- 'CONFIG.EXPORTER': "config.Exporter",
- 'CONFIG.IMPORTEDITEM': "config.ImportedItem",
- 'CONFIG.IMPORTER': "config.Importer",
'CONNECTORPACK.CONNECTORPACKUPGRADE': "connectorpack.ConnectorPackUpgrade",
'CONNECTORPACK.UPGRADEIMPACT': "connectorpack.UpgradeImpact",
'CRD.CUSTOMRESOURCE': "crd.CustomResource",
@@ -224,6 +226,7 @@ class HclHyperflexSoftwareCompatibilityInfoRelationship(ModelComposed):
'EQUIPMENT.CHASSISIDENTITY': "equipment.ChassisIdentity",
'EQUIPMENT.CHASSISOPERATION': "equipment.ChassisOperation",
'EQUIPMENT.DEVICESUMMARY': "equipment.DeviceSummary",
+ 'EQUIPMENT.EXPANDERMODULE': "equipment.ExpanderModule",
'EQUIPMENT.FAN': "equipment.Fan",
'EQUIPMENT.FANCONTROL': "equipment.FanControl",
'EQUIPMENT.FANMODULE': "equipment.FanModule",
@@ -472,6 +475,7 @@ class HclHyperflexSoftwareCompatibilityInfoRelationship(ModelComposed):
'KUBERNETES.ADDONDEFINITION': "kubernetes.AddonDefinition",
'KUBERNETES.ADDONPOLICY': "kubernetes.AddonPolicy",
'KUBERNETES.ADDONREPOSITORY': "kubernetes.AddonRepository",
+ 'KUBERNETES.BAREMETALNODEPROFILE': "kubernetes.BaremetalNodeProfile",
'KUBERNETES.CATALOG': "kubernetes.Catalog",
'KUBERNETES.CLUSTER': "kubernetes.Cluster",
'KUBERNETES.CLUSTERADDONPROFILE': "kubernetes.ClusterAddonProfile",
@@ -641,6 +645,11 @@ class HclHyperflexSoftwareCompatibilityInfoRelationship(ModelComposed):
'RESOURCE.LICENSERESOURCECOUNT': "resource.LicenseResourceCount",
'RESOURCE.MEMBERSHIP': "resource.Membership",
'RESOURCE.MEMBERSHIPHOLDER': "resource.MembershipHolder",
+ 'RESOURCEPOOL.LEASE': "resourcepool.Lease",
+ 'RESOURCEPOOL.LEASERESOURCE': "resourcepool.LeaseResource",
+ 'RESOURCEPOOL.POOL': "resourcepool.Pool",
+ 'RESOURCEPOOL.POOLMEMBER': "resourcepool.PoolMember",
+ 'RESOURCEPOOL.UNIVERSE': "resourcepool.Universe",
'RPROXY.REVERSEPROXY': "rproxy.ReverseProxy",
'SDCARD.POLICY': "sdcard.Policy",
'SDWAN.PROFILE': "sdwan.Profile",
@@ -756,6 +765,7 @@ class HclHyperflexSoftwareCompatibilityInfoRelationship(ModelComposed):
'TASK.NETAPPSCOPEDINVENTORY': "task.NetAppScopedInventory",
'TASK.PUBLICCLOUDSCOPEDINVENTORY': "task.PublicCloudScopedInventory",
'TASK.PURESCOPEDINVENTORY': "task.PureScopedInventory",
+ 'TASK.SERVERSCOPEDINVENTORY': "task.ServerScopedInventory",
'TECHSUPPORTMANAGEMENT.COLLECTIONCONTROLPOLICY': "techsupportmanagement.CollectionControlPolicy",
'TECHSUPPORTMANAGEMENT.DOWNLOAD': "techsupportmanagement.Download",
'TECHSUPPORTMANAGEMENT.TECHSUPPORTBUNDLE': "techsupportmanagement.TechSupportBundle",
@@ -787,6 +797,7 @@ class HclHyperflexSoftwareCompatibilityInfoRelationship(ModelComposed):
'VIRTUALIZATION.VMWAREVCENTER': "virtualization.VmwareVcenter",
'VIRTUALIZATION.VMWAREVIRTUALDISK': "virtualization.VmwareVirtualDisk",
'VIRTUALIZATION.VMWAREVIRTUALMACHINE': "virtualization.VmwareVirtualMachine",
+ 'VIRTUALIZATION.VMWAREVIRTUALMACHINESNAPSHOT': "virtualization.VmwareVirtualMachineSnapshot",
'VIRTUALIZATION.VMWAREVIRTUALNETWORKINTERFACE': "virtualization.VmwareVirtualNetworkInterface",
'VIRTUALIZATION.VMWAREVIRTUALSWITCH': "virtualization.VmwareVirtualSwitch",
'VMEDIA.POLICY': "vmedia.Policy",
@@ -819,12 +830,14 @@ class HclHyperflexSoftwareCompatibilityInfoRelationship(ModelComposed):
'WORKFLOW.TASKDEFINITION': "workflow.TaskDefinition",
'WORKFLOW.TASKINFO': "workflow.TaskInfo",
'WORKFLOW.TASKMETADATA': "workflow.TaskMetadata",
+ 'WORKFLOW.TASKNOTIFICATION': "workflow.TaskNotification",
'WORKFLOW.TEMPLATEEVALUATION': "workflow.TemplateEvaluation",
'WORKFLOW.TEMPLATEFUNCTIONMETA': "workflow.TemplateFunctionMeta",
'WORKFLOW.WORKFLOWDEFINITION': "workflow.WorkflowDefinition",
'WORKFLOW.WORKFLOWINFO': "workflow.WorkflowInfo",
'WORKFLOW.WORKFLOWMETA': "workflow.WorkflowMeta",
'WORKFLOW.WORKFLOWMETADATA': "workflow.WorkflowMetadata",
+ 'WORKFLOW.WORKFLOWNOTIFICATION': "workflow.WorkflowNotification",
},
}
diff --git a/intersight/model/hcl_hyperflex_software_compatibility_info_response.py b/intersight/model/hcl_hyperflex_software_compatibility_info_response.py
index 1196d44216..e7f0531748 100644
--- a/intersight/model/hcl_hyperflex_software_compatibility_info_response.py
+++ b/intersight/model/hcl_hyperflex_software_compatibility_info_response.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/hcl_operating_system.py b/intersight/model/hcl_operating_system.py
index c7c49e9150..5a7a0b7c8c 100644
--- a/intersight/model/hcl_operating_system.py
+++ b/intersight/model/hcl_operating_system.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/hcl_operating_system_all_of.py b/intersight/model/hcl_operating_system_all_of.py
index 590fa1b336..507f3072c2 100644
--- a/intersight/model/hcl_operating_system_all_of.py
+++ b/intersight/model/hcl_operating_system_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/hcl_operating_system_list.py b/intersight/model/hcl_operating_system_list.py
index 9f42c60ce1..d7bb62f768 100644
--- a/intersight/model/hcl_operating_system_list.py
+++ b/intersight/model/hcl_operating_system_list.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/hcl_operating_system_list_all_of.py b/intersight/model/hcl_operating_system_list_all_of.py
index f497c6ee1d..032c68780f 100644
--- a/intersight/model/hcl_operating_system_list_all_of.py
+++ b/intersight/model/hcl_operating_system_list_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/hcl_operating_system_relationship.py b/intersight/model/hcl_operating_system_relationship.py
index c5687cfe1c..053e8c9f68 100644
--- a/intersight/model/hcl_operating_system_relationship.py
+++ b/intersight/model/hcl_operating_system_relationship.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
@@ -74,6 +74,8 @@ class HclOperatingSystemRelationship(ModelComposed):
},
('object_type',): {
'AAA.AUDITRECORD': "aaa.AuditRecord",
+ 'AAA.RETENTIONCONFIG': "aaa.RetentionConfig",
+ 'AAA.RETENTIONPOLICY': "aaa.RetentionPolicy",
'ACCESS.POLICY': "access.Policy",
'ADAPTER.CONFIGPOLICY': "adapter.ConfigPolicy",
'ADAPTER.EXTETHINTERFACE': "adapter.ExtEthInterface",
@@ -90,6 +92,7 @@ class HclOperatingSystemRelationship(ModelComposed):
'APPLIANCE.DATAEXPORTPOLICY': "appliance.DataExportPolicy",
'APPLIANCE.DEVICECERTIFICATE': "appliance.DeviceCertificate",
'APPLIANCE.DEVICECLAIM': "appliance.DeviceClaim",
+ 'APPLIANCE.DEVICEUPGRADEPOLICY': "appliance.DeviceUpgradePolicy",
'APPLIANCE.DIAGSETTING': "appliance.DiagSetting",
'APPLIANCE.EXTERNALSYSLOGSETTING': "appliance.ExternalSyslogSetting",
'APPLIANCE.FILESYSTEMSTATUS': "appliance.FileSystemStatus",
@@ -138,9 +141,12 @@ class HclOperatingSystemRelationship(ModelComposed):
'BOOT.UEFISHELLDEVICE': "boot.UefiShellDevice",
'BOOT.USBDEVICE': "boot.UsbDevice",
'BOOT.VMEDIADEVICE': "boot.VmediaDevice",
+ 'BULK.EXPORT': "bulk.Export",
+ 'BULK.EXPORTEDITEM': "bulk.ExportedItem",
'BULK.MOCLONER': "bulk.MoCloner",
'BULK.MOMERGER': "bulk.MoMerger",
'BULK.REQUEST': "bulk.Request",
+ 'BULK.SUBREQUESTOBJ': "bulk.SubRequestObj",
'CAPABILITY.ADAPTERUNITDESCRIPTOR': "capability.AdapterUnitDescriptor",
'CAPABILITY.CATALOG': "capability.Catalog",
'CAPABILITY.CHASSISDESCRIPTOR': "capability.ChassisDescriptor",
@@ -204,10 +210,6 @@ class HclOperatingSystemRelationship(ModelComposed):
'COND.HCLSTATUS': "cond.HclStatus",
'COND.HCLSTATUSDETAIL': "cond.HclStatusDetail",
'COND.HCLSTATUSJOB': "cond.HclStatusJob",
- 'CONFIG.EXPORTEDITEM': "config.ExportedItem",
- 'CONFIG.EXPORTER': "config.Exporter",
- 'CONFIG.IMPORTEDITEM': "config.ImportedItem",
- 'CONFIG.IMPORTER': "config.Importer",
'CONNECTORPACK.CONNECTORPACKUPGRADE': "connectorpack.ConnectorPackUpgrade",
'CONNECTORPACK.UPGRADEIMPACT': "connectorpack.UpgradeImpact",
'CRD.CUSTOMRESOURCE': "crd.CustomResource",
@@ -216,6 +218,7 @@ class HclOperatingSystemRelationship(ModelComposed):
'EQUIPMENT.CHASSISIDENTITY': "equipment.ChassisIdentity",
'EQUIPMENT.CHASSISOPERATION': "equipment.ChassisOperation",
'EQUIPMENT.DEVICESUMMARY': "equipment.DeviceSummary",
+ 'EQUIPMENT.EXPANDERMODULE': "equipment.ExpanderModule",
'EQUIPMENT.FAN': "equipment.Fan",
'EQUIPMENT.FANCONTROL': "equipment.FanControl",
'EQUIPMENT.FANMODULE': "equipment.FanModule",
@@ -464,6 +467,7 @@ class HclOperatingSystemRelationship(ModelComposed):
'KUBERNETES.ADDONDEFINITION': "kubernetes.AddonDefinition",
'KUBERNETES.ADDONPOLICY': "kubernetes.AddonPolicy",
'KUBERNETES.ADDONREPOSITORY': "kubernetes.AddonRepository",
+ 'KUBERNETES.BAREMETALNODEPROFILE': "kubernetes.BaremetalNodeProfile",
'KUBERNETES.CATALOG': "kubernetes.Catalog",
'KUBERNETES.CLUSTER': "kubernetes.Cluster",
'KUBERNETES.CLUSTERADDONPROFILE': "kubernetes.ClusterAddonProfile",
@@ -633,6 +637,11 @@ class HclOperatingSystemRelationship(ModelComposed):
'RESOURCE.LICENSERESOURCECOUNT': "resource.LicenseResourceCount",
'RESOURCE.MEMBERSHIP': "resource.Membership",
'RESOURCE.MEMBERSHIPHOLDER': "resource.MembershipHolder",
+ 'RESOURCEPOOL.LEASE': "resourcepool.Lease",
+ 'RESOURCEPOOL.LEASERESOURCE': "resourcepool.LeaseResource",
+ 'RESOURCEPOOL.POOL': "resourcepool.Pool",
+ 'RESOURCEPOOL.POOLMEMBER': "resourcepool.PoolMember",
+ 'RESOURCEPOOL.UNIVERSE': "resourcepool.Universe",
'RPROXY.REVERSEPROXY': "rproxy.ReverseProxy",
'SDCARD.POLICY': "sdcard.Policy",
'SDWAN.PROFILE': "sdwan.Profile",
@@ -748,6 +757,7 @@ class HclOperatingSystemRelationship(ModelComposed):
'TASK.NETAPPSCOPEDINVENTORY': "task.NetAppScopedInventory",
'TASK.PUBLICCLOUDSCOPEDINVENTORY': "task.PublicCloudScopedInventory",
'TASK.PURESCOPEDINVENTORY': "task.PureScopedInventory",
+ 'TASK.SERVERSCOPEDINVENTORY': "task.ServerScopedInventory",
'TECHSUPPORTMANAGEMENT.COLLECTIONCONTROLPOLICY': "techsupportmanagement.CollectionControlPolicy",
'TECHSUPPORTMANAGEMENT.DOWNLOAD': "techsupportmanagement.Download",
'TECHSUPPORTMANAGEMENT.TECHSUPPORTBUNDLE': "techsupportmanagement.TechSupportBundle",
@@ -779,6 +789,7 @@ class HclOperatingSystemRelationship(ModelComposed):
'VIRTUALIZATION.VMWAREVCENTER': "virtualization.VmwareVcenter",
'VIRTUALIZATION.VMWAREVIRTUALDISK': "virtualization.VmwareVirtualDisk",
'VIRTUALIZATION.VMWAREVIRTUALMACHINE': "virtualization.VmwareVirtualMachine",
+ 'VIRTUALIZATION.VMWAREVIRTUALMACHINESNAPSHOT': "virtualization.VmwareVirtualMachineSnapshot",
'VIRTUALIZATION.VMWAREVIRTUALNETWORKINTERFACE': "virtualization.VmwareVirtualNetworkInterface",
'VIRTUALIZATION.VMWAREVIRTUALSWITCH': "virtualization.VmwareVirtualSwitch",
'VMEDIA.POLICY': "vmedia.Policy",
@@ -811,12 +822,14 @@ class HclOperatingSystemRelationship(ModelComposed):
'WORKFLOW.TASKDEFINITION': "workflow.TaskDefinition",
'WORKFLOW.TASKINFO': "workflow.TaskInfo",
'WORKFLOW.TASKMETADATA': "workflow.TaskMetadata",
+ 'WORKFLOW.TASKNOTIFICATION': "workflow.TaskNotification",
'WORKFLOW.TEMPLATEEVALUATION': "workflow.TemplateEvaluation",
'WORKFLOW.TEMPLATEFUNCTIONMETA': "workflow.TemplateFunctionMeta",
'WORKFLOW.WORKFLOWDEFINITION': "workflow.WorkflowDefinition",
'WORKFLOW.WORKFLOWINFO': "workflow.WorkflowInfo",
'WORKFLOW.WORKFLOWMETA': "workflow.WorkflowMeta",
'WORKFLOW.WORKFLOWMETADATA': "workflow.WorkflowMetadata",
+ 'WORKFLOW.WORKFLOWNOTIFICATION': "workflow.WorkflowNotification",
},
}
diff --git a/intersight/model/hcl_operating_system_response.py b/intersight/model/hcl_operating_system_response.py
index b54ec10f5e..566928bf87 100644
--- a/intersight/model/hcl_operating_system_response.py
+++ b/intersight/model/hcl_operating_system_response.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/hcl_operating_system_vendor.py b/intersight/model/hcl_operating_system_vendor.py
index 4456788c00..b895dc9957 100644
--- a/intersight/model/hcl_operating_system_vendor.py
+++ b/intersight/model/hcl_operating_system_vendor.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/hcl_operating_system_vendor_all_of.py b/intersight/model/hcl_operating_system_vendor_all_of.py
index c14b0acd24..08953a85a8 100644
--- a/intersight/model/hcl_operating_system_vendor_all_of.py
+++ b/intersight/model/hcl_operating_system_vendor_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/hcl_operating_system_vendor_list.py b/intersight/model/hcl_operating_system_vendor_list.py
index ab81c9c99a..1d4f4503c3 100644
--- a/intersight/model/hcl_operating_system_vendor_list.py
+++ b/intersight/model/hcl_operating_system_vendor_list.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/hcl_operating_system_vendor_list_all_of.py b/intersight/model/hcl_operating_system_vendor_list_all_of.py
index 3f090859c2..a6b905df7b 100644
--- a/intersight/model/hcl_operating_system_vendor_list_all_of.py
+++ b/intersight/model/hcl_operating_system_vendor_list_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/hcl_operating_system_vendor_relationship.py b/intersight/model/hcl_operating_system_vendor_relationship.py
index 45ddfcc601..42528d9eb2 100644
--- a/intersight/model/hcl_operating_system_vendor_relationship.py
+++ b/intersight/model/hcl_operating_system_vendor_relationship.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
@@ -72,6 +72,8 @@ class HclOperatingSystemVendorRelationship(ModelComposed):
},
('object_type',): {
'AAA.AUDITRECORD': "aaa.AuditRecord",
+ 'AAA.RETENTIONCONFIG': "aaa.RetentionConfig",
+ 'AAA.RETENTIONPOLICY': "aaa.RetentionPolicy",
'ACCESS.POLICY': "access.Policy",
'ADAPTER.CONFIGPOLICY': "adapter.ConfigPolicy",
'ADAPTER.EXTETHINTERFACE': "adapter.ExtEthInterface",
@@ -88,6 +90,7 @@ class HclOperatingSystemVendorRelationship(ModelComposed):
'APPLIANCE.DATAEXPORTPOLICY': "appliance.DataExportPolicy",
'APPLIANCE.DEVICECERTIFICATE': "appliance.DeviceCertificate",
'APPLIANCE.DEVICECLAIM': "appliance.DeviceClaim",
+ 'APPLIANCE.DEVICEUPGRADEPOLICY': "appliance.DeviceUpgradePolicy",
'APPLIANCE.DIAGSETTING': "appliance.DiagSetting",
'APPLIANCE.EXTERNALSYSLOGSETTING': "appliance.ExternalSyslogSetting",
'APPLIANCE.FILESYSTEMSTATUS': "appliance.FileSystemStatus",
@@ -136,9 +139,12 @@ class HclOperatingSystemVendorRelationship(ModelComposed):
'BOOT.UEFISHELLDEVICE': "boot.UefiShellDevice",
'BOOT.USBDEVICE': "boot.UsbDevice",
'BOOT.VMEDIADEVICE': "boot.VmediaDevice",
+ 'BULK.EXPORT': "bulk.Export",
+ 'BULK.EXPORTEDITEM': "bulk.ExportedItem",
'BULK.MOCLONER': "bulk.MoCloner",
'BULK.MOMERGER': "bulk.MoMerger",
'BULK.REQUEST': "bulk.Request",
+ 'BULK.SUBREQUESTOBJ': "bulk.SubRequestObj",
'CAPABILITY.ADAPTERUNITDESCRIPTOR': "capability.AdapterUnitDescriptor",
'CAPABILITY.CATALOG': "capability.Catalog",
'CAPABILITY.CHASSISDESCRIPTOR': "capability.ChassisDescriptor",
@@ -202,10 +208,6 @@ class HclOperatingSystemVendorRelationship(ModelComposed):
'COND.HCLSTATUS': "cond.HclStatus",
'COND.HCLSTATUSDETAIL': "cond.HclStatusDetail",
'COND.HCLSTATUSJOB': "cond.HclStatusJob",
- 'CONFIG.EXPORTEDITEM': "config.ExportedItem",
- 'CONFIG.EXPORTER': "config.Exporter",
- 'CONFIG.IMPORTEDITEM': "config.ImportedItem",
- 'CONFIG.IMPORTER': "config.Importer",
'CONNECTORPACK.CONNECTORPACKUPGRADE': "connectorpack.ConnectorPackUpgrade",
'CONNECTORPACK.UPGRADEIMPACT': "connectorpack.UpgradeImpact",
'CRD.CUSTOMRESOURCE': "crd.CustomResource",
@@ -214,6 +216,7 @@ class HclOperatingSystemVendorRelationship(ModelComposed):
'EQUIPMENT.CHASSISIDENTITY': "equipment.ChassisIdentity",
'EQUIPMENT.CHASSISOPERATION': "equipment.ChassisOperation",
'EQUIPMENT.DEVICESUMMARY': "equipment.DeviceSummary",
+ 'EQUIPMENT.EXPANDERMODULE': "equipment.ExpanderModule",
'EQUIPMENT.FAN': "equipment.Fan",
'EQUIPMENT.FANCONTROL': "equipment.FanControl",
'EQUIPMENT.FANMODULE': "equipment.FanModule",
@@ -462,6 +465,7 @@ class HclOperatingSystemVendorRelationship(ModelComposed):
'KUBERNETES.ADDONDEFINITION': "kubernetes.AddonDefinition",
'KUBERNETES.ADDONPOLICY': "kubernetes.AddonPolicy",
'KUBERNETES.ADDONREPOSITORY': "kubernetes.AddonRepository",
+ 'KUBERNETES.BAREMETALNODEPROFILE': "kubernetes.BaremetalNodeProfile",
'KUBERNETES.CATALOG': "kubernetes.Catalog",
'KUBERNETES.CLUSTER': "kubernetes.Cluster",
'KUBERNETES.CLUSTERADDONPROFILE': "kubernetes.ClusterAddonProfile",
@@ -631,6 +635,11 @@ class HclOperatingSystemVendorRelationship(ModelComposed):
'RESOURCE.LICENSERESOURCECOUNT': "resource.LicenseResourceCount",
'RESOURCE.MEMBERSHIP': "resource.Membership",
'RESOURCE.MEMBERSHIPHOLDER': "resource.MembershipHolder",
+ 'RESOURCEPOOL.LEASE': "resourcepool.Lease",
+ 'RESOURCEPOOL.LEASERESOURCE': "resourcepool.LeaseResource",
+ 'RESOURCEPOOL.POOL': "resourcepool.Pool",
+ 'RESOURCEPOOL.POOLMEMBER': "resourcepool.PoolMember",
+ 'RESOURCEPOOL.UNIVERSE': "resourcepool.Universe",
'RPROXY.REVERSEPROXY': "rproxy.ReverseProxy",
'SDCARD.POLICY': "sdcard.Policy",
'SDWAN.PROFILE': "sdwan.Profile",
@@ -746,6 +755,7 @@ class HclOperatingSystemVendorRelationship(ModelComposed):
'TASK.NETAPPSCOPEDINVENTORY': "task.NetAppScopedInventory",
'TASK.PUBLICCLOUDSCOPEDINVENTORY': "task.PublicCloudScopedInventory",
'TASK.PURESCOPEDINVENTORY': "task.PureScopedInventory",
+ 'TASK.SERVERSCOPEDINVENTORY': "task.ServerScopedInventory",
'TECHSUPPORTMANAGEMENT.COLLECTIONCONTROLPOLICY': "techsupportmanagement.CollectionControlPolicy",
'TECHSUPPORTMANAGEMENT.DOWNLOAD': "techsupportmanagement.Download",
'TECHSUPPORTMANAGEMENT.TECHSUPPORTBUNDLE': "techsupportmanagement.TechSupportBundle",
@@ -777,6 +787,7 @@ class HclOperatingSystemVendorRelationship(ModelComposed):
'VIRTUALIZATION.VMWAREVCENTER': "virtualization.VmwareVcenter",
'VIRTUALIZATION.VMWAREVIRTUALDISK': "virtualization.VmwareVirtualDisk",
'VIRTUALIZATION.VMWAREVIRTUALMACHINE': "virtualization.VmwareVirtualMachine",
+ 'VIRTUALIZATION.VMWAREVIRTUALMACHINESNAPSHOT': "virtualization.VmwareVirtualMachineSnapshot",
'VIRTUALIZATION.VMWAREVIRTUALNETWORKINTERFACE': "virtualization.VmwareVirtualNetworkInterface",
'VIRTUALIZATION.VMWAREVIRTUALSWITCH': "virtualization.VmwareVirtualSwitch",
'VMEDIA.POLICY': "vmedia.Policy",
@@ -809,12 +820,14 @@ class HclOperatingSystemVendorRelationship(ModelComposed):
'WORKFLOW.TASKDEFINITION': "workflow.TaskDefinition",
'WORKFLOW.TASKINFO': "workflow.TaskInfo",
'WORKFLOW.TASKMETADATA': "workflow.TaskMetadata",
+ 'WORKFLOW.TASKNOTIFICATION': "workflow.TaskNotification",
'WORKFLOW.TEMPLATEEVALUATION': "workflow.TemplateEvaluation",
'WORKFLOW.TEMPLATEFUNCTIONMETA': "workflow.TemplateFunctionMeta",
'WORKFLOW.WORKFLOWDEFINITION': "workflow.WorkflowDefinition",
'WORKFLOW.WORKFLOWINFO': "workflow.WorkflowInfo",
'WORKFLOW.WORKFLOWMETA': "workflow.WorkflowMeta",
'WORKFLOW.WORKFLOWMETADATA': "workflow.WorkflowMetadata",
+ 'WORKFLOW.WORKFLOWNOTIFICATION': "workflow.WorkflowNotification",
},
}
diff --git a/intersight/model/hcl_operating_system_vendor_response.py b/intersight/model/hcl_operating_system_vendor_response.py
index dafa6b09ef..7a48b8a530 100644
--- a/intersight/model/hcl_operating_system_vendor_response.py
+++ b/intersight/model/hcl_operating_system_vendor_response.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/hcl_product.py b/intersight/model/hcl_product.py
index 079e5926d7..134ed9ba78 100644
--- a/intersight/model/hcl_product.py
+++ b/intersight/model/hcl_product.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/hcl_product_all_of.py b/intersight/model/hcl_product_all_of.py
index bd721056e4..df025a139e 100644
--- a/intersight/model/hcl_product_all_of.py
+++ b/intersight/model/hcl_product_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/hcl_supported_driver_name.py b/intersight/model/hcl_supported_driver_name.py
index ad20c11f14..af4a574130 100644
--- a/intersight/model/hcl_supported_driver_name.py
+++ b/intersight/model/hcl_supported_driver_name.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/hcl_supported_driver_name_all_of.py b/intersight/model/hcl_supported_driver_name_all_of.py
index 1bb723001f..e555523338 100644
--- a/intersight/model/hcl_supported_driver_name_all_of.py
+++ b/intersight/model/hcl_supported_driver_name_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/hyperflex_abstract_app_setting.py b/intersight/model/hyperflex_abstract_app_setting.py
index c611389f9d..0def01ae52 100644
--- a/intersight/model/hyperflex_abstract_app_setting.py
+++ b/intersight/model/hyperflex_abstract_app_setting.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/hyperflex_abstract_app_setting_all_of.py b/intersight/model/hyperflex_abstract_app_setting_all_of.py
index 06468fa8c9..c3099a0698 100644
--- a/intersight/model/hyperflex_abstract_app_setting_all_of.py
+++ b/intersight/model/hyperflex_abstract_app_setting_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/hyperflex_alarm.py b/intersight/model/hyperflex_alarm.py
index 3bc62c2338..3a5ad6096c 100644
--- a/intersight/model/hyperflex_alarm.py
+++ b/intersight/model/hyperflex_alarm.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/hyperflex_alarm_all_of.py b/intersight/model/hyperflex_alarm_all_of.py
index d5f08abbc5..1095e6380f 100644
--- a/intersight/model/hyperflex_alarm_all_of.py
+++ b/intersight/model/hyperflex_alarm_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/hyperflex_alarm_list.py b/intersight/model/hyperflex_alarm_list.py
index d63f9cc035..37bfa3aea8 100644
--- a/intersight/model/hyperflex_alarm_list.py
+++ b/intersight/model/hyperflex_alarm_list.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/hyperflex_alarm_list_all_of.py b/intersight/model/hyperflex_alarm_list_all_of.py
index 0874e7eee3..12a82e80d8 100644
--- a/intersight/model/hyperflex_alarm_list_all_of.py
+++ b/intersight/model/hyperflex_alarm_list_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/hyperflex_alarm_relationship.py b/intersight/model/hyperflex_alarm_relationship.py
index ad01cfddc6..6a5b8d7fa6 100644
--- a/intersight/model/hyperflex_alarm_relationship.py
+++ b/intersight/model/hyperflex_alarm_relationship.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
@@ -92,6 +92,8 @@ class HyperflexAlarmRelationship(ModelComposed):
},
('object_type',): {
'AAA.AUDITRECORD': "aaa.AuditRecord",
+ 'AAA.RETENTIONCONFIG': "aaa.RetentionConfig",
+ 'AAA.RETENTIONPOLICY': "aaa.RetentionPolicy",
'ACCESS.POLICY': "access.Policy",
'ADAPTER.CONFIGPOLICY': "adapter.ConfigPolicy",
'ADAPTER.EXTETHINTERFACE': "adapter.ExtEthInterface",
@@ -108,6 +110,7 @@ class HyperflexAlarmRelationship(ModelComposed):
'APPLIANCE.DATAEXPORTPOLICY': "appliance.DataExportPolicy",
'APPLIANCE.DEVICECERTIFICATE': "appliance.DeviceCertificate",
'APPLIANCE.DEVICECLAIM': "appliance.DeviceClaim",
+ 'APPLIANCE.DEVICEUPGRADEPOLICY': "appliance.DeviceUpgradePolicy",
'APPLIANCE.DIAGSETTING': "appliance.DiagSetting",
'APPLIANCE.EXTERNALSYSLOGSETTING': "appliance.ExternalSyslogSetting",
'APPLIANCE.FILESYSTEMSTATUS': "appliance.FileSystemStatus",
@@ -156,9 +159,12 @@ class HyperflexAlarmRelationship(ModelComposed):
'BOOT.UEFISHELLDEVICE': "boot.UefiShellDevice",
'BOOT.USBDEVICE': "boot.UsbDevice",
'BOOT.VMEDIADEVICE': "boot.VmediaDevice",
+ 'BULK.EXPORT': "bulk.Export",
+ 'BULK.EXPORTEDITEM': "bulk.ExportedItem",
'BULK.MOCLONER': "bulk.MoCloner",
'BULK.MOMERGER': "bulk.MoMerger",
'BULK.REQUEST': "bulk.Request",
+ 'BULK.SUBREQUESTOBJ': "bulk.SubRequestObj",
'CAPABILITY.ADAPTERUNITDESCRIPTOR': "capability.AdapterUnitDescriptor",
'CAPABILITY.CATALOG': "capability.Catalog",
'CAPABILITY.CHASSISDESCRIPTOR': "capability.ChassisDescriptor",
@@ -222,10 +228,6 @@ class HyperflexAlarmRelationship(ModelComposed):
'COND.HCLSTATUS': "cond.HclStatus",
'COND.HCLSTATUSDETAIL': "cond.HclStatusDetail",
'COND.HCLSTATUSJOB': "cond.HclStatusJob",
- 'CONFIG.EXPORTEDITEM': "config.ExportedItem",
- 'CONFIG.EXPORTER': "config.Exporter",
- 'CONFIG.IMPORTEDITEM': "config.ImportedItem",
- 'CONFIG.IMPORTER': "config.Importer",
'CONNECTORPACK.CONNECTORPACKUPGRADE': "connectorpack.ConnectorPackUpgrade",
'CONNECTORPACK.UPGRADEIMPACT': "connectorpack.UpgradeImpact",
'CRD.CUSTOMRESOURCE': "crd.CustomResource",
@@ -234,6 +236,7 @@ class HyperflexAlarmRelationship(ModelComposed):
'EQUIPMENT.CHASSISIDENTITY': "equipment.ChassisIdentity",
'EQUIPMENT.CHASSISOPERATION': "equipment.ChassisOperation",
'EQUIPMENT.DEVICESUMMARY': "equipment.DeviceSummary",
+ 'EQUIPMENT.EXPANDERMODULE': "equipment.ExpanderModule",
'EQUIPMENT.FAN': "equipment.Fan",
'EQUIPMENT.FANCONTROL': "equipment.FanControl",
'EQUIPMENT.FANMODULE': "equipment.FanModule",
@@ -482,6 +485,7 @@ class HyperflexAlarmRelationship(ModelComposed):
'KUBERNETES.ADDONDEFINITION': "kubernetes.AddonDefinition",
'KUBERNETES.ADDONPOLICY': "kubernetes.AddonPolicy",
'KUBERNETES.ADDONREPOSITORY': "kubernetes.AddonRepository",
+ 'KUBERNETES.BAREMETALNODEPROFILE': "kubernetes.BaremetalNodeProfile",
'KUBERNETES.CATALOG': "kubernetes.Catalog",
'KUBERNETES.CLUSTER': "kubernetes.Cluster",
'KUBERNETES.CLUSTERADDONPROFILE': "kubernetes.ClusterAddonProfile",
@@ -651,6 +655,11 @@ class HyperflexAlarmRelationship(ModelComposed):
'RESOURCE.LICENSERESOURCECOUNT': "resource.LicenseResourceCount",
'RESOURCE.MEMBERSHIP': "resource.Membership",
'RESOURCE.MEMBERSHIPHOLDER': "resource.MembershipHolder",
+ 'RESOURCEPOOL.LEASE': "resourcepool.Lease",
+ 'RESOURCEPOOL.LEASERESOURCE': "resourcepool.LeaseResource",
+ 'RESOURCEPOOL.POOL': "resourcepool.Pool",
+ 'RESOURCEPOOL.POOLMEMBER': "resourcepool.PoolMember",
+ 'RESOURCEPOOL.UNIVERSE': "resourcepool.Universe",
'RPROXY.REVERSEPROXY': "rproxy.ReverseProxy",
'SDCARD.POLICY': "sdcard.Policy",
'SDWAN.PROFILE': "sdwan.Profile",
@@ -766,6 +775,7 @@ class HyperflexAlarmRelationship(ModelComposed):
'TASK.NETAPPSCOPEDINVENTORY': "task.NetAppScopedInventory",
'TASK.PUBLICCLOUDSCOPEDINVENTORY': "task.PublicCloudScopedInventory",
'TASK.PURESCOPEDINVENTORY': "task.PureScopedInventory",
+ 'TASK.SERVERSCOPEDINVENTORY': "task.ServerScopedInventory",
'TECHSUPPORTMANAGEMENT.COLLECTIONCONTROLPOLICY': "techsupportmanagement.CollectionControlPolicy",
'TECHSUPPORTMANAGEMENT.DOWNLOAD': "techsupportmanagement.Download",
'TECHSUPPORTMANAGEMENT.TECHSUPPORTBUNDLE': "techsupportmanagement.TechSupportBundle",
@@ -797,6 +807,7 @@ class HyperflexAlarmRelationship(ModelComposed):
'VIRTUALIZATION.VMWAREVCENTER': "virtualization.VmwareVcenter",
'VIRTUALIZATION.VMWAREVIRTUALDISK': "virtualization.VmwareVirtualDisk",
'VIRTUALIZATION.VMWAREVIRTUALMACHINE': "virtualization.VmwareVirtualMachine",
+ 'VIRTUALIZATION.VMWAREVIRTUALMACHINESNAPSHOT': "virtualization.VmwareVirtualMachineSnapshot",
'VIRTUALIZATION.VMWAREVIRTUALNETWORKINTERFACE': "virtualization.VmwareVirtualNetworkInterface",
'VIRTUALIZATION.VMWAREVIRTUALSWITCH': "virtualization.VmwareVirtualSwitch",
'VMEDIA.POLICY': "vmedia.Policy",
@@ -829,12 +840,14 @@ class HyperflexAlarmRelationship(ModelComposed):
'WORKFLOW.TASKDEFINITION': "workflow.TaskDefinition",
'WORKFLOW.TASKINFO': "workflow.TaskInfo",
'WORKFLOW.TASKMETADATA': "workflow.TaskMetadata",
+ 'WORKFLOW.TASKNOTIFICATION': "workflow.TaskNotification",
'WORKFLOW.TEMPLATEEVALUATION': "workflow.TemplateEvaluation",
'WORKFLOW.TEMPLATEFUNCTIONMETA': "workflow.TemplateFunctionMeta",
'WORKFLOW.WORKFLOWDEFINITION': "workflow.WorkflowDefinition",
'WORKFLOW.WORKFLOWINFO': "workflow.WorkflowInfo",
'WORKFLOW.WORKFLOWMETA': "workflow.WorkflowMeta",
'WORKFLOW.WORKFLOWMETADATA': "workflow.WorkflowMetadata",
+ 'WORKFLOW.WORKFLOWNOTIFICATION': "workflow.WorkflowNotification",
},
}
diff --git a/intersight/model/hyperflex_alarm_response.py b/intersight/model/hyperflex_alarm_response.py
index c934f5617b..cddb452753 100644
--- a/intersight/model/hyperflex_alarm_response.py
+++ b/intersight/model/hyperflex_alarm_response.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/hyperflex_alarm_summary.py b/intersight/model/hyperflex_alarm_summary.py
index 922f02dda7..18d9db0e02 100644
--- a/intersight/model/hyperflex_alarm_summary.py
+++ b/intersight/model/hyperflex_alarm_summary.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/hyperflex_alarm_summary_all_of.py b/intersight/model/hyperflex_alarm_summary_all_of.py
index 8dfd2439a6..22c1012dde 100644
--- a/intersight/model/hyperflex_alarm_summary_all_of.py
+++ b/intersight/model/hyperflex_alarm_summary_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/hyperflex_app_catalog.py b/intersight/model/hyperflex_app_catalog.py
index 4a4d0a4f91..d20f8b99bf 100644
--- a/intersight/model/hyperflex_app_catalog.py
+++ b/intersight/model/hyperflex_app_catalog.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/hyperflex_app_catalog_all_of.py b/intersight/model/hyperflex_app_catalog_all_of.py
index 824c273e3f..de1d254d76 100644
--- a/intersight/model/hyperflex_app_catalog_all_of.py
+++ b/intersight/model/hyperflex_app_catalog_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/hyperflex_app_catalog_list.py b/intersight/model/hyperflex_app_catalog_list.py
index d11d49efbd..c18c3afb49 100644
--- a/intersight/model/hyperflex_app_catalog_list.py
+++ b/intersight/model/hyperflex_app_catalog_list.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/hyperflex_app_catalog_list_all_of.py b/intersight/model/hyperflex_app_catalog_list_all_of.py
index 9118c2d486..c52fc3481d 100644
--- a/intersight/model/hyperflex_app_catalog_list_all_of.py
+++ b/intersight/model/hyperflex_app_catalog_list_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/hyperflex_app_catalog_relationship.py b/intersight/model/hyperflex_app_catalog_relationship.py
index 5e462f42db..48f9afecab 100644
--- a/intersight/model/hyperflex_app_catalog_relationship.py
+++ b/intersight/model/hyperflex_app_catalog_relationship.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
@@ -88,6 +88,8 @@ class HyperflexAppCatalogRelationship(ModelComposed):
},
('object_type',): {
'AAA.AUDITRECORD': "aaa.AuditRecord",
+ 'AAA.RETENTIONCONFIG': "aaa.RetentionConfig",
+ 'AAA.RETENTIONPOLICY': "aaa.RetentionPolicy",
'ACCESS.POLICY': "access.Policy",
'ADAPTER.CONFIGPOLICY': "adapter.ConfigPolicy",
'ADAPTER.EXTETHINTERFACE': "adapter.ExtEthInterface",
@@ -104,6 +106,7 @@ class HyperflexAppCatalogRelationship(ModelComposed):
'APPLIANCE.DATAEXPORTPOLICY': "appliance.DataExportPolicy",
'APPLIANCE.DEVICECERTIFICATE': "appliance.DeviceCertificate",
'APPLIANCE.DEVICECLAIM': "appliance.DeviceClaim",
+ 'APPLIANCE.DEVICEUPGRADEPOLICY': "appliance.DeviceUpgradePolicy",
'APPLIANCE.DIAGSETTING': "appliance.DiagSetting",
'APPLIANCE.EXTERNALSYSLOGSETTING': "appliance.ExternalSyslogSetting",
'APPLIANCE.FILESYSTEMSTATUS': "appliance.FileSystemStatus",
@@ -152,9 +155,12 @@ class HyperflexAppCatalogRelationship(ModelComposed):
'BOOT.UEFISHELLDEVICE': "boot.UefiShellDevice",
'BOOT.USBDEVICE': "boot.UsbDevice",
'BOOT.VMEDIADEVICE': "boot.VmediaDevice",
+ 'BULK.EXPORT': "bulk.Export",
+ 'BULK.EXPORTEDITEM': "bulk.ExportedItem",
'BULK.MOCLONER': "bulk.MoCloner",
'BULK.MOMERGER': "bulk.MoMerger",
'BULK.REQUEST': "bulk.Request",
+ 'BULK.SUBREQUESTOBJ': "bulk.SubRequestObj",
'CAPABILITY.ADAPTERUNITDESCRIPTOR': "capability.AdapterUnitDescriptor",
'CAPABILITY.CATALOG': "capability.Catalog",
'CAPABILITY.CHASSISDESCRIPTOR': "capability.ChassisDescriptor",
@@ -218,10 +224,6 @@ class HyperflexAppCatalogRelationship(ModelComposed):
'COND.HCLSTATUS': "cond.HclStatus",
'COND.HCLSTATUSDETAIL': "cond.HclStatusDetail",
'COND.HCLSTATUSJOB': "cond.HclStatusJob",
- 'CONFIG.EXPORTEDITEM': "config.ExportedItem",
- 'CONFIG.EXPORTER': "config.Exporter",
- 'CONFIG.IMPORTEDITEM': "config.ImportedItem",
- 'CONFIG.IMPORTER': "config.Importer",
'CONNECTORPACK.CONNECTORPACKUPGRADE': "connectorpack.ConnectorPackUpgrade",
'CONNECTORPACK.UPGRADEIMPACT': "connectorpack.UpgradeImpact",
'CRD.CUSTOMRESOURCE': "crd.CustomResource",
@@ -230,6 +232,7 @@ class HyperflexAppCatalogRelationship(ModelComposed):
'EQUIPMENT.CHASSISIDENTITY': "equipment.ChassisIdentity",
'EQUIPMENT.CHASSISOPERATION': "equipment.ChassisOperation",
'EQUIPMENT.DEVICESUMMARY': "equipment.DeviceSummary",
+ 'EQUIPMENT.EXPANDERMODULE': "equipment.ExpanderModule",
'EQUIPMENT.FAN': "equipment.Fan",
'EQUIPMENT.FANCONTROL': "equipment.FanControl",
'EQUIPMENT.FANMODULE': "equipment.FanModule",
@@ -478,6 +481,7 @@ class HyperflexAppCatalogRelationship(ModelComposed):
'KUBERNETES.ADDONDEFINITION': "kubernetes.AddonDefinition",
'KUBERNETES.ADDONPOLICY': "kubernetes.AddonPolicy",
'KUBERNETES.ADDONREPOSITORY': "kubernetes.AddonRepository",
+ 'KUBERNETES.BAREMETALNODEPROFILE': "kubernetes.BaremetalNodeProfile",
'KUBERNETES.CATALOG': "kubernetes.Catalog",
'KUBERNETES.CLUSTER': "kubernetes.Cluster",
'KUBERNETES.CLUSTERADDONPROFILE': "kubernetes.ClusterAddonProfile",
@@ -647,6 +651,11 @@ class HyperflexAppCatalogRelationship(ModelComposed):
'RESOURCE.LICENSERESOURCECOUNT': "resource.LicenseResourceCount",
'RESOURCE.MEMBERSHIP': "resource.Membership",
'RESOURCE.MEMBERSHIPHOLDER': "resource.MembershipHolder",
+ 'RESOURCEPOOL.LEASE': "resourcepool.Lease",
+ 'RESOURCEPOOL.LEASERESOURCE': "resourcepool.LeaseResource",
+ 'RESOURCEPOOL.POOL': "resourcepool.Pool",
+ 'RESOURCEPOOL.POOLMEMBER': "resourcepool.PoolMember",
+ 'RESOURCEPOOL.UNIVERSE': "resourcepool.Universe",
'RPROXY.REVERSEPROXY': "rproxy.ReverseProxy",
'SDCARD.POLICY': "sdcard.Policy",
'SDWAN.PROFILE': "sdwan.Profile",
@@ -762,6 +771,7 @@ class HyperflexAppCatalogRelationship(ModelComposed):
'TASK.NETAPPSCOPEDINVENTORY': "task.NetAppScopedInventory",
'TASK.PUBLICCLOUDSCOPEDINVENTORY': "task.PublicCloudScopedInventory",
'TASK.PURESCOPEDINVENTORY': "task.PureScopedInventory",
+ 'TASK.SERVERSCOPEDINVENTORY': "task.ServerScopedInventory",
'TECHSUPPORTMANAGEMENT.COLLECTIONCONTROLPOLICY': "techsupportmanagement.CollectionControlPolicy",
'TECHSUPPORTMANAGEMENT.DOWNLOAD': "techsupportmanagement.Download",
'TECHSUPPORTMANAGEMENT.TECHSUPPORTBUNDLE': "techsupportmanagement.TechSupportBundle",
@@ -793,6 +803,7 @@ class HyperflexAppCatalogRelationship(ModelComposed):
'VIRTUALIZATION.VMWAREVCENTER': "virtualization.VmwareVcenter",
'VIRTUALIZATION.VMWAREVIRTUALDISK': "virtualization.VmwareVirtualDisk",
'VIRTUALIZATION.VMWAREVIRTUALMACHINE': "virtualization.VmwareVirtualMachine",
+ 'VIRTUALIZATION.VMWAREVIRTUALMACHINESNAPSHOT': "virtualization.VmwareVirtualMachineSnapshot",
'VIRTUALIZATION.VMWAREVIRTUALNETWORKINTERFACE': "virtualization.VmwareVirtualNetworkInterface",
'VIRTUALIZATION.VMWAREVIRTUALSWITCH': "virtualization.VmwareVirtualSwitch",
'VMEDIA.POLICY': "vmedia.Policy",
@@ -825,12 +836,14 @@ class HyperflexAppCatalogRelationship(ModelComposed):
'WORKFLOW.TASKDEFINITION': "workflow.TaskDefinition",
'WORKFLOW.TASKINFO': "workflow.TaskInfo",
'WORKFLOW.TASKMETADATA': "workflow.TaskMetadata",
+ 'WORKFLOW.TASKNOTIFICATION': "workflow.TaskNotification",
'WORKFLOW.TEMPLATEEVALUATION': "workflow.TemplateEvaluation",
'WORKFLOW.TEMPLATEFUNCTIONMETA': "workflow.TemplateFunctionMeta",
'WORKFLOW.WORKFLOWDEFINITION': "workflow.WorkflowDefinition",
'WORKFLOW.WORKFLOWINFO': "workflow.WorkflowInfo",
'WORKFLOW.WORKFLOWMETA': "workflow.WorkflowMeta",
'WORKFLOW.WORKFLOWMETADATA': "workflow.WorkflowMetadata",
+ 'WORKFLOW.WORKFLOWNOTIFICATION': "workflow.WorkflowNotification",
},
}
diff --git a/intersight/model/hyperflex_app_catalog_response.py b/intersight/model/hyperflex_app_catalog_response.py
index e1f1c43225..16463eddd9 100644
--- a/intersight/model/hyperflex_app_catalog_response.py
+++ b/intersight/model/hyperflex_app_catalog_response.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/hyperflex_app_setting_constraint.py b/intersight/model/hyperflex_app_setting_constraint.py
index 2eef06285e..4902922570 100644
--- a/intersight/model/hyperflex_app_setting_constraint.py
+++ b/intersight/model/hyperflex_app_setting_constraint.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/hyperflex_app_setting_constraint_all_of.py b/intersight/model/hyperflex_app_setting_constraint_all_of.py
index 5f5eb3bbef..cee89cca0b 100644
--- a/intersight/model/hyperflex_app_setting_constraint_all_of.py
+++ b/intersight/model/hyperflex_app_setting_constraint_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/hyperflex_auto_support_policy.py b/intersight/model/hyperflex_auto_support_policy.py
index 8810b7d919..bf64f3d6f9 100644
--- a/intersight/model/hyperflex_auto_support_policy.py
+++ b/intersight/model/hyperflex_auto_support_policy.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/hyperflex_auto_support_policy_all_of.py b/intersight/model/hyperflex_auto_support_policy_all_of.py
index be9620eab0..fa69e7012c 100644
--- a/intersight/model/hyperflex_auto_support_policy_all_of.py
+++ b/intersight/model/hyperflex_auto_support_policy_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/hyperflex_auto_support_policy_list.py b/intersight/model/hyperflex_auto_support_policy_list.py
index 7492bd3773..53d2c316da 100644
--- a/intersight/model/hyperflex_auto_support_policy_list.py
+++ b/intersight/model/hyperflex_auto_support_policy_list.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/hyperflex_auto_support_policy_list_all_of.py b/intersight/model/hyperflex_auto_support_policy_list_all_of.py
index c7b6db984c..573b6c63b6 100644
--- a/intersight/model/hyperflex_auto_support_policy_list_all_of.py
+++ b/intersight/model/hyperflex_auto_support_policy_list_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/hyperflex_auto_support_policy_relationship.py b/intersight/model/hyperflex_auto_support_policy_relationship.py
index 016dcdc82f..281c857999 100644
--- a/intersight/model/hyperflex_auto_support_policy_relationship.py
+++ b/intersight/model/hyperflex_auto_support_policy_relationship.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
@@ -76,6 +76,8 @@ class HyperflexAutoSupportPolicyRelationship(ModelComposed):
},
('object_type',): {
'AAA.AUDITRECORD': "aaa.AuditRecord",
+ 'AAA.RETENTIONCONFIG': "aaa.RetentionConfig",
+ 'AAA.RETENTIONPOLICY': "aaa.RetentionPolicy",
'ACCESS.POLICY': "access.Policy",
'ADAPTER.CONFIGPOLICY': "adapter.ConfigPolicy",
'ADAPTER.EXTETHINTERFACE': "adapter.ExtEthInterface",
@@ -92,6 +94,7 @@ class HyperflexAutoSupportPolicyRelationship(ModelComposed):
'APPLIANCE.DATAEXPORTPOLICY': "appliance.DataExportPolicy",
'APPLIANCE.DEVICECERTIFICATE': "appliance.DeviceCertificate",
'APPLIANCE.DEVICECLAIM': "appliance.DeviceClaim",
+ 'APPLIANCE.DEVICEUPGRADEPOLICY': "appliance.DeviceUpgradePolicy",
'APPLIANCE.DIAGSETTING': "appliance.DiagSetting",
'APPLIANCE.EXTERNALSYSLOGSETTING': "appliance.ExternalSyslogSetting",
'APPLIANCE.FILESYSTEMSTATUS': "appliance.FileSystemStatus",
@@ -140,9 +143,12 @@ class HyperflexAutoSupportPolicyRelationship(ModelComposed):
'BOOT.UEFISHELLDEVICE': "boot.UefiShellDevice",
'BOOT.USBDEVICE': "boot.UsbDevice",
'BOOT.VMEDIADEVICE': "boot.VmediaDevice",
+ 'BULK.EXPORT': "bulk.Export",
+ 'BULK.EXPORTEDITEM': "bulk.ExportedItem",
'BULK.MOCLONER': "bulk.MoCloner",
'BULK.MOMERGER': "bulk.MoMerger",
'BULK.REQUEST': "bulk.Request",
+ 'BULK.SUBREQUESTOBJ': "bulk.SubRequestObj",
'CAPABILITY.ADAPTERUNITDESCRIPTOR': "capability.AdapterUnitDescriptor",
'CAPABILITY.CATALOG': "capability.Catalog",
'CAPABILITY.CHASSISDESCRIPTOR': "capability.ChassisDescriptor",
@@ -206,10 +212,6 @@ class HyperflexAutoSupportPolicyRelationship(ModelComposed):
'COND.HCLSTATUS': "cond.HclStatus",
'COND.HCLSTATUSDETAIL': "cond.HclStatusDetail",
'COND.HCLSTATUSJOB': "cond.HclStatusJob",
- 'CONFIG.EXPORTEDITEM': "config.ExportedItem",
- 'CONFIG.EXPORTER': "config.Exporter",
- 'CONFIG.IMPORTEDITEM': "config.ImportedItem",
- 'CONFIG.IMPORTER': "config.Importer",
'CONNECTORPACK.CONNECTORPACKUPGRADE': "connectorpack.ConnectorPackUpgrade",
'CONNECTORPACK.UPGRADEIMPACT': "connectorpack.UpgradeImpact",
'CRD.CUSTOMRESOURCE': "crd.CustomResource",
@@ -218,6 +220,7 @@ class HyperflexAutoSupportPolicyRelationship(ModelComposed):
'EQUIPMENT.CHASSISIDENTITY': "equipment.ChassisIdentity",
'EQUIPMENT.CHASSISOPERATION': "equipment.ChassisOperation",
'EQUIPMENT.DEVICESUMMARY': "equipment.DeviceSummary",
+ 'EQUIPMENT.EXPANDERMODULE': "equipment.ExpanderModule",
'EQUIPMENT.FAN': "equipment.Fan",
'EQUIPMENT.FANCONTROL': "equipment.FanControl",
'EQUIPMENT.FANMODULE': "equipment.FanModule",
@@ -466,6 +469,7 @@ class HyperflexAutoSupportPolicyRelationship(ModelComposed):
'KUBERNETES.ADDONDEFINITION': "kubernetes.AddonDefinition",
'KUBERNETES.ADDONPOLICY': "kubernetes.AddonPolicy",
'KUBERNETES.ADDONREPOSITORY': "kubernetes.AddonRepository",
+ 'KUBERNETES.BAREMETALNODEPROFILE': "kubernetes.BaremetalNodeProfile",
'KUBERNETES.CATALOG': "kubernetes.Catalog",
'KUBERNETES.CLUSTER': "kubernetes.Cluster",
'KUBERNETES.CLUSTERADDONPROFILE': "kubernetes.ClusterAddonProfile",
@@ -635,6 +639,11 @@ class HyperflexAutoSupportPolicyRelationship(ModelComposed):
'RESOURCE.LICENSERESOURCECOUNT': "resource.LicenseResourceCount",
'RESOURCE.MEMBERSHIP': "resource.Membership",
'RESOURCE.MEMBERSHIPHOLDER': "resource.MembershipHolder",
+ 'RESOURCEPOOL.LEASE': "resourcepool.Lease",
+ 'RESOURCEPOOL.LEASERESOURCE': "resourcepool.LeaseResource",
+ 'RESOURCEPOOL.POOL': "resourcepool.Pool",
+ 'RESOURCEPOOL.POOLMEMBER': "resourcepool.PoolMember",
+ 'RESOURCEPOOL.UNIVERSE': "resourcepool.Universe",
'RPROXY.REVERSEPROXY': "rproxy.ReverseProxy",
'SDCARD.POLICY': "sdcard.Policy",
'SDWAN.PROFILE': "sdwan.Profile",
@@ -750,6 +759,7 @@ class HyperflexAutoSupportPolicyRelationship(ModelComposed):
'TASK.NETAPPSCOPEDINVENTORY': "task.NetAppScopedInventory",
'TASK.PUBLICCLOUDSCOPEDINVENTORY': "task.PublicCloudScopedInventory",
'TASK.PURESCOPEDINVENTORY': "task.PureScopedInventory",
+ 'TASK.SERVERSCOPEDINVENTORY': "task.ServerScopedInventory",
'TECHSUPPORTMANAGEMENT.COLLECTIONCONTROLPOLICY': "techsupportmanagement.CollectionControlPolicy",
'TECHSUPPORTMANAGEMENT.DOWNLOAD': "techsupportmanagement.Download",
'TECHSUPPORTMANAGEMENT.TECHSUPPORTBUNDLE': "techsupportmanagement.TechSupportBundle",
@@ -781,6 +791,7 @@ class HyperflexAutoSupportPolicyRelationship(ModelComposed):
'VIRTUALIZATION.VMWAREVCENTER': "virtualization.VmwareVcenter",
'VIRTUALIZATION.VMWAREVIRTUALDISK': "virtualization.VmwareVirtualDisk",
'VIRTUALIZATION.VMWAREVIRTUALMACHINE': "virtualization.VmwareVirtualMachine",
+ 'VIRTUALIZATION.VMWAREVIRTUALMACHINESNAPSHOT': "virtualization.VmwareVirtualMachineSnapshot",
'VIRTUALIZATION.VMWAREVIRTUALNETWORKINTERFACE': "virtualization.VmwareVirtualNetworkInterface",
'VIRTUALIZATION.VMWAREVIRTUALSWITCH': "virtualization.VmwareVirtualSwitch",
'VMEDIA.POLICY': "vmedia.Policy",
@@ -813,12 +824,14 @@ class HyperflexAutoSupportPolicyRelationship(ModelComposed):
'WORKFLOW.TASKDEFINITION': "workflow.TaskDefinition",
'WORKFLOW.TASKINFO': "workflow.TaskInfo",
'WORKFLOW.TASKMETADATA': "workflow.TaskMetadata",
+ 'WORKFLOW.TASKNOTIFICATION': "workflow.TaskNotification",
'WORKFLOW.TEMPLATEEVALUATION': "workflow.TemplateEvaluation",
'WORKFLOW.TEMPLATEFUNCTIONMETA': "workflow.TemplateFunctionMeta",
'WORKFLOW.WORKFLOWDEFINITION': "workflow.WorkflowDefinition",
'WORKFLOW.WORKFLOWINFO': "workflow.WorkflowInfo",
'WORKFLOW.WORKFLOWMETA': "workflow.WorkflowMeta",
'WORKFLOW.WORKFLOWMETADATA': "workflow.WorkflowMetadata",
+ 'WORKFLOW.WORKFLOWNOTIFICATION': "workflow.WorkflowNotification",
},
}
diff --git a/intersight/model/hyperflex_auto_support_policy_response.py b/intersight/model/hyperflex_auto_support_policy_response.py
index cfce8be48f..3200fafb72 100644
--- a/intersight/model/hyperflex_auto_support_policy_response.py
+++ b/intersight/model/hyperflex_auto_support_policy_response.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/hyperflex_backup_cluster.py b/intersight/model/hyperflex_backup_cluster.py
index 59bc72c7b5..a30b4538c6 100644
--- a/intersight/model/hyperflex_backup_cluster.py
+++ b/intersight/model/hyperflex_backup_cluster.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/hyperflex_backup_cluster_all_of.py b/intersight/model/hyperflex_backup_cluster_all_of.py
index f0d9f8bc7b..ec007229cf 100644
--- a/intersight/model/hyperflex_backup_cluster_all_of.py
+++ b/intersight/model/hyperflex_backup_cluster_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/hyperflex_backup_cluster_list.py b/intersight/model/hyperflex_backup_cluster_list.py
index b9fe316768..1f1a4b0929 100644
--- a/intersight/model/hyperflex_backup_cluster_list.py
+++ b/intersight/model/hyperflex_backup_cluster_list.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/hyperflex_backup_cluster_list_all_of.py b/intersight/model/hyperflex_backup_cluster_list_all_of.py
index a53b6499cb..bbf55fa155 100644
--- a/intersight/model/hyperflex_backup_cluster_list_all_of.py
+++ b/intersight/model/hyperflex_backup_cluster_list_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/hyperflex_backup_cluster_relationship.py b/intersight/model/hyperflex_backup_cluster_relationship.py
index dd52c9fe17..2ac386f2a3 100644
--- a/intersight/model/hyperflex_backup_cluster_relationship.py
+++ b/intersight/model/hyperflex_backup_cluster_relationship.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
@@ -74,6 +74,8 @@ class HyperflexBackupClusterRelationship(ModelComposed):
},
('object_type',): {
'AAA.AUDITRECORD': "aaa.AuditRecord",
+ 'AAA.RETENTIONCONFIG': "aaa.RetentionConfig",
+ 'AAA.RETENTIONPOLICY': "aaa.RetentionPolicy",
'ACCESS.POLICY': "access.Policy",
'ADAPTER.CONFIGPOLICY': "adapter.ConfigPolicy",
'ADAPTER.EXTETHINTERFACE': "adapter.ExtEthInterface",
@@ -90,6 +92,7 @@ class HyperflexBackupClusterRelationship(ModelComposed):
'APPLIANCE.DATAEXPORTPOLICY': "appliance.DataExportPolicy",
'APPLIANCE.DEVICECERTIFICATE': "appliance.DeviceCertificate",
'APPLIANCE.DEVICECLAIM': "appliance.DeviceClaim",
+ 'APPLIANCE.DEVICEUPGRADEPOLICY': "appliance.DeviceUpgradePolicy",
'APPLIANCE.DIAGSETTING': "appliance.DiagSetting",
'APPLIANCE.EXTERNALSYSLOGSETTING': "appliance.ExternalSyslogSetting",
'APPLIANCE.FILESYSTEMSTATUS': "appliance.FileSystemStatus",
@@ -138,9 +141,12 @@ class HyperflexBackupClusterRelationship(ModelComposed):
'BOOT.UEFISHELLDEVICE': "boot.UefiShellDevice",
'BOOT.USBDEVICE': "boot.UsbDevice",
'BOOT.VMEDIADEVICE': "boot.VmediaDevice",
+ 'BULK.EXPORT': "bulk.Export",
+ 'BULK.EXPORTEDITEM': "bulk.ExportedItem",
'BULK.MOCLONER': "bulk.MoCloner",
'BULK.MOMERGER': "bulk.MoMerger",
'BULK.REQUEST': "bulk.Request",
+ 'BULK.SUBREQUESTOBJ': "bulk.SubRequestObj",
'CAPABILITY.ADAPTERUNITDESCRIPTOR': "capability.AdapterUnitDescriptor",
'CAPABILITY.CATALOG': "capability.Catalog",
'CAPABILITY.CHASSISDESCRIPTOR': "capability.ChassisDescriptor",
@@ -204,10 +210,6 @@ class HyperflexBackupClusterRelationship(ModelComposed):
'COND.HCLSTATUS': "cond.HclStatus",
'COND.HCLSTATUSDETAIL': "cond.HclStatusDetail",
'COND.HCLSTATUSJOB': "cond.HclStatusJob",
- 'CONFIG.EXPORTEDITEM': "config.ExportedItem",
- 'CONFIG.EXPORTER': "config.Exporter",
- 'CONFIG.IMPORTEDITEM': "config.ImportedItem",
- 'CONFIG.IMPORTER': "config.Importer",
'CONNECTORPACK.CONNECTORPACKUPGRADE': "connectorpack.ConnectorPackUpgrade",
'CONNECTORPACK.UPGRADEIMPACT': "connectorpack.UpgradeImpact",
'CRD.CUSTOMRESOURCE': "crd.CustomResource",
@@ -216,6 +218,7 @@ class HyperflexBackupClusterRelationship(ModelComposed):
'EQUIPMENT.CHASSISIDENTITY': "equipment.ChassisIdentity",
'EQUIPMENT.CHASSISOPERATION': "equipment.ChassisOperation",
'EQUIPMENT.DEVICESUMMARY': "equipment.DeviceSummary",
+ 'EQUIPMENT.EXPANDERMODULE': "equipment.ExpanderModule",
'EQUIPMENT.FAN': "equipment.Fan",
'EQUIPMENT.FANCONTROL': "equipment.FanControl",
'EQUIPMENT.FANMODULE': "equipment.FanModule",
@@ -464,6 +467,7 @@ class HyperflexBackupClusterRelationship(ModelComposed):
'KUBERNETES.ADDONDEFINITION': "kubernetes.AddonDefinition",
'KUBERNETES.ADDONPOLICY': "kubernetes.AddonPolicy",
'KUBERNETES.ADDONREPOSITORY': "kubernetes.AddonRepository",
+ 'KUBERNETES.BAREMETALNODEPROFILE': "kubernetes.BaremetalNodeProfile",
'KUBERNETES.CATALOG': "kubernetes.Catalog",
'KUBERNETES.CLUSTER': "kubernetes.Cluster",
'KUBERNETES.CLUSTERADDONPROFILE': "kubernetes.ClusterAddonProfile",
@@ -633,6 +637,11 @@ class HyperflexBackupClusterRelationship(ModelComposed):
'RESOURCE.LICENSERESOURCECOUNT': "resource.LicenseResourceCount",
'RESOURCE.MEMBERSHIP': "resource.Membership",
'RESOURCE.MEMBERSHIPHOLDER': "resource.MembershipHolder",
+ 'RESOURCEPOOL.LEASE': "resourcepool.Lease",
+ 'RESOURCEPOOL.LEASERESOURCE': "resourcepool.LeaseResource",
+ 'RESOURCEPOOL.POOL': "resourcepool.Pool",
+ 'RESOURCEPOOL.POOLMEMBER': "resourcepool.PoolMember",
+ 'RESOURCEPOOL.UNIVERSE': "resourcepool.Universe",
'RPROXY.REVERSEPROXY': "rproxy.ReverseProxy",
'SDCARD.POLICY': "sdcard.Policy",
'SDWAN.PROFILE': "sdwan.Profile",
@@ -748,6 +757,7 @@ class HyperflexBackupClusterRelationship(ModelComposed):
'TASK.NETAPPSCOPEDINVENTORY': "task.NetAppScopedInventory",
'TASK.PUBLICCLOUDSCOPEDINVENTORY': "task.PublicCloudScopedInventory",
'TASK.PURESCOPEDINVENTORY': "task.PureScopedInventory",
+ 'TASK.SERVERSCOPEDINVENTORY': "task.ServerScopedInventory",
'TECHSUPPORTMANAGEMENT.COLLECTIONCONTROLPOLICY': "techsupportmanagement.CollectionControlPolicy",
'TECHSUPPORTMANAGEMENT.DOWNLOAD': "techsupportmanagement.Download",
'TECHSUPPORTMANAGEMENT.TECHSUPPORTBUNDLE': "techsupportmanagement.TechSupportBundle",
@@ -779,6 +789,7 @@ class HyperflexBackupClusterRelationship(ModelComposed):
'VIRTUALIZATION.VMWAREVCENTER': "virtualization.VmwareVcenter",
'VIRTUALIZATION.VMWAREVIRTUALDISK': "virtualization.VmwareVirtualDisk",
'VIRTUALIZATION.VMWAREVIRTUALMACHINE': "virtualization.VmwareVirtualMachine",
+ 'VIRTUALIZATION.VMWAREVIRTUALMACHINESNAPSHOT': "virtualization.VmwareVirtualMachineSnapshot",
'VIRTUALIZATION.VMWAREVIRTUALNETWORKINTERFACE': "virtualization.VmwareVirtualNetworkInterface",
'VIRTUALIZATION.VMWAREVIRTUALSWITCH': "virtualization.VmwareVirtualSwitch",
'VMEDIA.POLICY': "vmedia.Policy",
@@ -811,12 +822,14 @@ class HyperflexBackupClusterRelationship(ModelComposed):
'WORKFLOW.TASKDEFINITION': "workflow.TaskDefinition",
'WORKFLOW.TASKINFO': "workflow.TaskInfo",
'WORKFLOW.TASKMETADATA': "workflow.TaskMetadata",
+ 'WORKFLOW.TASKNOTIFICATION': "workflow.TaskNotification",
'WORKFLOW.TEMPLATEEVALUATION': "workflow.TemplateEvaluation",
'WORKFLOW.TEMPLATEFUNCTIONMETA': "workflow.TemplateFunctionMeta",
'WORKFLOW.WORKFLOWDEFINITION': "workflow.WorkflowDefinition",
'WORKFLOW.WORKFLOWINFO': "workflow.WorkflowInfo",
'WORKFLOW.WORKFLOWMETA': "workflow.WorkflowMeta",
'WORKFLOW.WORKFLOWMETADATA': "workflow.WorkflowMetadata",
+ 'WORKFLOW.WORKFLOWNOTIFICATION': "workflow.WorkflowNotification",
},
}
diff --git a/intersight/model/hyperflex_backup_cluster_response.py b/intersight/model/hyperflex_backup_cluster_response.py
index 6c8475289a..78691f4ce6 100644
--- a/intersight/model/hyperflex_backup_cluster_response.py
+++ b/intersight/model/hyperflex_backup_cluster_response.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/hyperflex_base_cluster.py b/intersight/model/hyperflex_base_cluster.py
index 27e905138a..2f32e438c0 100644
--- a/intersight/model/hyperflex_base_cluster.py
+++ b/intersight/model/hyperflex_base_cluster.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/hyperflex_base_cluster_all_of.py b/intersight/model/hyperflex_base_cluster_all_of.py
index 71bd11dadc..ce4cab0cb4 100644
--- a/intersight/model/hyperflex_base_cluster_all_of.py
+++ b/intersight/model/hyperflex_base_cluster_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/hyperflex_base_cluster_relationship.py b/intersight/model/hyperflex_base_cluster_relationship.py
index 4de4f01101..e234431475 100644
--- a/intersight/model/hyperflex_base_cluster_relationship.py
+++ b/intersight/model/hyperflex_base_cluster_relationship.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
@@ -108,6 +108,8 @@ class HyperflexBaseClusterRelationship(ModelComposed):
},
('object_type',): {
'AAA.AUDITRECORD': "aaa.AuditRecord",
+ 'AAA.RETENTIONCONFIG': "aaa.RetentionConfig",
+ 'AAA.RETENTIONPOLICY': "aaa.RetentionPolicy",
'ACCESS.POLICY': "access.Policy",
'ADAPTER.CONFIGPOLICY': "adapter.ConfigPolicy",
'ADAPTER.EXTETHINTERFACE': "adapter.ExtEthInterface",
@@ -124,6 +126,7 @@ class HyperflexBaseClusterRelationship(ModelComposed):
'APPLIANCE.DATAEXPORTPOLICY': "appliance.DataExportPolicy",
'APPLIANCE.DEVICECERTIFICATE': "appliance.DeviceCertificate",
'APPLIANCE.DEVICECLAIM': "appliance.DeviceClaim",
+ 'APPLIANCE.DEVICEUPGRADEPOLICY': "appliance.DeviceUpgradePolicy",
'APPLIANCE.DIAGSETTING': "appliance.DiagSetting",
'APPLIANCE.EXTERNALSYSLOGSETTING': "appliance.ExternalSyslogSetting",
'APPLIANCE.FILESYSTEMSTATUS': "appliance.FileSystemStatus",
@@ -172,9 +175,12 @@ class HyperflexBaseClusterRelationship(ModelComposed):
'BOOT.UEFISHELLDEVICE': "boot.UefiShellDevice",
'BOOT.USBDEVICE': "boot.UsbDevice",
'BOOT.VMEDIADEVICE': "boot.VmediaDevice",
+ 'BULK.EXPORT': "bulk.Export",
+ 'BULK.EXPORTEDITEM': "bulk.ExportedItem",
'BULK.MOCLONER': "bulk.MoCloner",
'BULK.MOMERGER': "bulk.MoMerger",
'BULK.REQUEST': "bulk.Request",
+ 'BULK.SUBREQUESTOBJ': "bulk.SubRequestObj",
'CAPABILITY.ADAPTERUNITDESCRIPTOR': "capability.AdapterUnitDescriptor",
'CAPABILITY.CATALOG': "capability.Catalog",
'CAPABILITY.CHASSISDESCRIPTOR': "capability.ChassisDescriptor",
@@ -238,10 +244,6 @@ class HyperflexBaseClusterRelationship(ModelComposed):
'COND.HCLSTATUS': "cond.HclStatus",
'COND.HCLSTATUSDETAIL': "cond.HclStatusDetail",
'COND.HCLSTATUSJOB': "cond.HclStatusJob",
- 'CONFIG.EXPORTEDITEM': "config.ExportedItem",
- 'CONFIG.EXPORTER': "config.Exporter",
- 'CONFIG.IMPORTEDITEM': "config.ImportedItem",
- 'CONFIG.IMPORTER': "config.Importer",
'CONNECTORPACK.CONNECTORPACKUPGRADE': "connectorpack.ConnectorPackUpgrade",
'CONNECTORPACK.UPGRADEIMPACT': "connectorpack.UpgradeImpact",
'CRD.CUSTOMRESOURCE': "crd.CustomResource",
@@ -250,6 +252,7 @@ class HyperflexBaseClusterRelationship(ModelComposed):
'EQUIPMENT.CHASSISIDENTITY': "equipment.ChassisIdentity",
'EQUIPMENT.CHASSISOPERATION': "equipment.ChassisOperation",
'EQUIPMENT.DEVICESUMMARY': "equipment.DeviceSummary",
+ 'EQUIPMENT.EXPANDERMODULE': "equipment.ExpanderModule",
'EQUIPMENT.FAN': "equipment.Fan",
'EQUIPMENT.FANCONTROL': "equipment.FanControl",
'EQUIPMENT.FANMODULE': "equipment.FanModule",
@@ -498,6 +501,7 @@ class HyperflexBaseClusterRelationship(ModelComposed):
'KUBERNETES.ADDONDEFINITION': "kubernetes.AddonDefinition",
'KUBERNETES.ADDONPOLICY': "kubernetes.AddonPolicy",
'KUBERNETES.ADDONREPOSITORY': "kubernetes.AddonRepository",
+ 'KUBERNETES.BAREMETALNODEPROFILE': "kubernetes.BaremetalNodeProfile",
'KUBERNETES.CATALOG': "kubernetes.Catalog",
'KUBERNETES.CLUSTER': "kubernetes.Cluster",
'KUBERNETES.CLUSTERADDONPROFILE': "kubernetes.ClusterAddonProfile",
@@ -667,6 +671,11 @@ class HyperflexBaseClusterRelationship(ModelComposed):
'RESOURCE.LICENSERESOURCECOUNT': "resource.LicenseResourceCount",
'RESOURCE.MEMBERSHIP': "resource.Membership",
'RESOURCE.MEMBERSHIPHOLDER': "resource.MembershipHolder",
+ 'RESOURCEPOOL.LEASE': "resourcepool.Lease",
+ 'RESOURCEPOOL.LEASERESOURCE': "resourcepool.LeaseResource",
+ 'RESOURCEPOOL.POOL': "resourcepool.Pool",
+ 'RESOURCEPOOL.POOLMEMBER': "resourcepool.PoolMember",
+ 'RESOURCEPOOL.UNIVERSE': "resourcepool.Universe",
'RPROXY.REVERSEPROXY': "rproxy.ReverseProxy",
'SDCARD.POLICY': "sdcard.Policy",
'SDWAN.PROFILE': "sdwan.Profile",
@@ -782,6 +791,7 @@ class HyperflexBaseClusterRelationship(ModelComposed):
'TASK.NETAPPSCOPEDINVENTORY': "task.NetAppScopedInventory",
'TASK.PUBLICCLOUDSCOPEDINVENTORY': "task.PublicCloudScopedInventory",
'TASK.PURESCOPEDINVENTORY': "task.PureScopedInventory",
+ 'TASK.SERVERSCOPEDINVENTORY': "task.ServerScopedInventory",
'TECHSUPPORTMANAGEMENT.COLLECTIONCONTROLPOLICY': "techsupportmanagement.CollectionControlPolicy",
'TECHSUPPORTMANAGEMENT.DOWNLOAD': "techsupportmanagement.Download",
'TECHSUPPORTMANAGEMENT.TECHSUPPORTBUNDLE': "techsupportmanagement.TechSupportBundle",
@@ -813,6 +823,7 @@ class HyperflexBaseClusterRelationship(ModelComposed):
'VIRTUALIZATION.VMWAREVCENTER': "virtualization.VmwareVcenter",
'VIRTUALIZATION.VMWAREVIRTUALDISK': "virtualization.VmwareVirtualDisk",
'VIRTUALIZATION.VMWAREVIRTUALMACHINE': "virtualization.VmwareVirtualMachine",
+ 'VIRTUALIZATION.VMWAREVIRTUALMACHINESNAPSHOT': "virtualization.VmwareVirtualMachineSnapshot",
'VIRTUALIZATION.VMWAREVIRTUALNETWORKINTERFACE': "virtualization.VmwareVirtualNetworkInterface",
'VIRTUALIZATION.VMWAREVIRTUALSWITCH': "virtualization.VmwareVirtualSwitch",
'VMEDIA.POLICY': "vmedia.Policy",
@@ -845,12 +856,14 @@ class HyperflexBaseClusterRelationship(ModelComposed):
'WORKFLOW.TASKDEFINITION': "workflow.TaskDefinition",
'WORKFLOW.TASKINFO': "workflow.TaskInfo",
'WORKFLOW.TASKMETADATA': "workflow.TaskMetadata",
+ 'WORKFLOW.TASKNOTIFICATION': "workflow.TaskNotification",
'WORKFLOW.TEMPLATEEVALUATION': "workflow.TemplateEvaluation",
'WORKFLOW.TEMPLATEFUNCTIONMETA': "workflow.TemplateFunctionMeta",
'WORKFLOW.WORKFLOWDEFINITION': "workflow.WorkflowDefinition",
'WORKFLOW.WORKFLOWINFO': "workflow.WorkflowInfo",
'WORKFLOW.WORKFLOWMETA': "workflow.WorkflowMeta",
'WORKFLOW.WORKFLOWMETADATA': "workflow.WorkflowMetadata",
+ 'WORKFLOW.WORKFLOWNOTIFICATION': "workflow.WorkflowNotification",
},
}
diff --git a/intersight/model/hyperflex_bond_state.py b/intersight/model/hyperflex_bond_state.py
index 06f8b72583..cbcb854811 100644
--- a/intersight/model/hyperflex_bond_state.py
+++ b/intersight/model/hyperflex_bond_state.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/hyperflex_bond_state_all_of.py b/intersight/model/hyperflex_bond_state_all_of.py
index 12493b5a8e..532f6dd7f7 100644
--- a/intersight/model/hyperflex_bond_state_all_of.py
+++ b/intersight/model/hyperflex_bond_state_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/hyperflex_capability_info.py b/intersight/model/hyperflex_capability_info.py
index 14da952050..ffa8b4894b 100644
--- a/intersight/model/hyperflex_capability_info.py
+++ b/intersight/model/hyperflex_capability_info.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/hyperflex_capability_info_all_of.py b/intersight/model/hyperflex_capability_info_all_of.py
index 30641ac5d4..8bdcad6120 100644
--- a/intersight/model/hyperflex_capability_info_all_of.py
+++ b/intersight/model/hyperflex_capability_info_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/hyperflex_capability_info_list.py b/intersight/model/hyperflex_capability_info_list.py
index e3dc318df6..89dd88649f 100644
--- a/intersight/model/hyperflex_capability_info_list.py
+++ b/intersight/model/hyperflex_capability_info_list.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/hyperflex_capability_info_list_all_of.py b/intersight/model/hyperflex_capability_info_list_all_of.py
index c10e1bd5cc..51b9da4451 100644
--- a/intersight/model/hyperflex_capability_info_list_all_of.py
+++ b/intersight/model/hyperflex_capability_info_list_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/hyperflex_capability_info_relationship.py b/intersight/model/hyperflex_capability_info_relationship.py
index 38cc7068a3..a4a1ecdeaf 100644
--- a/intersight/model/hyperflex_capability_info_relationship.py
+++ b/intersight/model/hyperflex_capability_info_relationship.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
@@ -76,6 +76,8 @@ class HyperflexCapabilityInfoRelationship(ModelComposed):
},
('object_type',): {
'AAA.AUDITRECORD': "aaa.AuditRecord",
+ 'AAA.RETENTIONCONFIG': "aaa.RetentionConfig",
+ 'AAA.RETENTIONPOLICY': "aaa.RetentionPolicy",
'ACCESS.POLICY': "access.Policy",
'ADAPTER.CONFIGPOLICY': "adapter.ConfigPolicy",
'ADAPTER.EXTETHINTERFACE': "adapter.ExtEthInterface",
@@ -92,6 +94,7 @@ class HyperflexCapabilityInfoRelationship(ModelComposed):
'APPLIANCE.DATAEXPORTPOLICY': "appliance.DataExportPolicy",
'APPLIANCE.DEVICECERTIFICATE': "appliance.DeviceCertificate",
'APPLIANCE.DEVICECLAIM': "appliance.DeviceClaim",
+ 'APPLIANCE.DEVICEUPGRADEPOLICY': "appliance.DeviceUpgradePolicy",
'APPLIANCE.DIAGSETTING': "appliance.DiagSetting",
'APPLIANCE.EXTERNALSYSLOGSETTING': "appliance.ExternalSyslogSetting",
'APPLIANCE.FILESYSTEMSTATUS': "appliance.FileSystemStatus",
@@ -140,9 +143,12 @@ class HyperflexCapabilityInfoRelationship(ModelComposed):
'BOOT.UEFISHELLDEVICE': "boot.UefiShellDevice",
'BOOT.USBDEVICE': "boot.UsbDevice",
'BOOT.VMEDIADEVICE': "boot.VmediaDevice",
+ 'BULK.EXPORT': "bulk.Export",
+ 'BULK.EXPORTEDITEM': "bulk.ExportedItem",
'BULK.MOCLONER': "bulk.MoCloner",
'BULK.MOMERGER': "bulk.MoMerger",
'BULK.REQUEST': "bulk.Request",
+ 'BULK.SUBREQUESTOBJ': "bulk.SubRequestObj",
'CAPABILITY.ADAPTERUNITDESCRIPTOR': "capability.AdapterUnitDescriptor",
'CAPABILITY.CATALOG': "capability.Catalog",
'CAPABILITY.CHASSISDESCRIPTOR': "capability.ChassisDescriptor",
@@ -206,10 +212,6 @@ class HyperflexCapabilityInfoRelationship(ModelComposed):
'COND.HCLSTATUS': "cond.HclStatus",
'COND.HCLSTATUSDETAIL': "cond.HclStatusDetail",
'COND.HCLSTATUSJOB': "cond.HclStatusJob",
- 'CONFIG.EXPORTEDITEM': "config.ExportedItem",
- 'CONFIG.EXPORTER': "config.Exporter",
- 'CONFIG.IMPORTEDITEM': "config.ImportedItem",
- 'CONFIG.IMPORTER': "config.Importer",
'CONNECTORPACK.CONNECTORPACKUPGRADE': "connectorpack.ConnectorPackUpgrade",
'CONNECTORPACK.UPGRADEIMPACT': "connectorpack.UpgradeImpact",
'CRD.CUSTOMRESOURCE': "crd.CustomResource",
@@ -218,6 +220,7 @@ class HyperflexCapabilityInfoRelationship(ModelComposed):
'EQUIPMENT.CHASSISIDENTITY': "equipment.ChassisIdentity",
'EQUIPMENT.CHASSISOPERATION': "equipment.ChassisOperation",
'EQUIPMENT.DEVICESUMMARY': "equipment.DeviceSummary",
+ 'EQUIPMENT.EXPANDERMODULE': "equipment.ExpanderModule",
'EQUIPMENT.FAN': "equipment.Fan",
'EQUIPMENT.FANCONTROL': "equipment.FanControl",
'EQUIPMENT.FANMODULE': "equipment.FanModule",
@@ -466,6 +469,7 @@ class HyperflexCapabilityInfoRelationship(ModelComposed):
'KUBERNETES.ADDONDEFINITION': "kubernetes.AddonDefinition",
'KUBERNETES.ADDONPOLICY': "kubernetes.AddonPolicy",
'KUBERNETES.ADDONREPOSITORY': "kubernetes.AddonRepository",
+ 'KUBERNETES.BAREMETALNODEPROFILE': "kubernetes.BaremetalNodeProfile",
'KUBERNETES.CATALOG': "kubernetes.Catalog",
'KUBERNETES.CLUSTER': "kubernetes.Cluster",
'KUBERNETES.CLUSTERADDONPROFILE': "kubernetes.ClusterAddonProfile",
@@ -635,6 +639,11 @@ class HyperflexCapabilityInfoRelationship(ModelComposed):
'RESOURCE.LICENSERESOURCECOUNT': "resource.LicenseResourceCount",
'RESOURCE.MEMBERSHIP': "resource.Membership",
'RESOURCE.MEMBERSHIPHOLDER': "resource.MembershipHolder",
+ 'RESOURCEPOOL.LEASE': "resourcepool.Lease",
+ 'RESOURCEPOOL.LEASERESOURCE': "resourcepool.LeaseResource",
+ 'RESOURCEPOOL.POOL': "resourcepool.Pool",
+ 'RESOURCEPOOL.POOLMEMBER': "resourcepool.PoolMember",
+ 'RESOURCEPOOL.UNIVERSE': "resourcepool.Universe",
'RPROXY.REVERSEPROXY': "rproxy.ReverseProxy",
'SDCARD.POLICY': "sdcard.Policy",
'SDWAN.PROFILE': "sdwan.Profile",
@@ -750,6 +759,7 @@ class HyperflexCapabilityInfoRelationship(ModelComposed):
'TASK.NETAPPSCOPEDINVENTORY': "task.NetAppScopedInventory",
'TASK.PUBLICCLOUDSCOPEDINVENTORY': "task.PublicCloudScopedInventory",
'TASK.PURESCOPEDINVENTORY': "task.PureScopedInventory",
+ 'TASK.SERVERSCOPEDINVENTORY': "task.ServerScopedInventory",
'TECHSUPPORTMANAGEMENT.COLLECTIONCONTROLPOLICY': "techsupportmanagement.CollectionControlPolicy",
'TECHSUPPORTMANAGEMENT.DOWNLOAD': "techsupportmanagement.Download",
'TECHSUPPORTMANAGEMENT.TECHSUPPORTBUNDLE': "techsupportmanagement.TechSupportBundle",
@@ -781,6 +791,7 @@ class HyperflexCapabilityInfoRelationship(ModelComposed):
'VIRTUALIZATION.VMWAREVCENTER': "virtualization.VmwareVcenter",
'VIRTUALIZATION.VMWAREVIRTUALDISK': "virtualization.VmwareVirtualDisk",
'VIRTUALIZATION.VMWAREVIRTUALMACHINE': "virtualization.VmwareVirtualMachine",
+ 'VIRTUALIZATION.VMWAREVIRTUALMACHINESNAPSHOT': "virtualization.VmwareVirtualMachineSnapshot",
'VIRTUALIZATION.VMWAREVIRTUALNETWORKINTERFACE': "virtualization.VmwareVirtualNetworkInterface",
'VIRTUALIZATION.VMWAREVIRTUALSWITCH': "virtualization.VmwareVirtualSwitch",
'VMEDIA.POLICY': "vmedia.Policy",
@@ -813,12 +824,14 @@ class HyperflexCapabilityInfoRelationship(ModelComposed):
'WORKFLOW.TASKDEFINITION': "workflow.TaskDefinition",
'WORKFLOW.TASKINFO': "workflow.TaskInfo",
'WORKFLOW.TASKMETADATA': "workflow.TaskMetadata",
+ 'WORKFLOW.TASKNOTIFICATION': "workflow.TaskNotification",
'WORKFLOW.TEMPLATEEVALUATION': "workflow.TemplateEvaluation",
'WORKFLOW.TEMPLATEFUNCTIONMETA': "workflow.TemplateFunctionMeta",
'WORKFLOW.WORKFLOWDEFINITION': "workflow.WorkflowDefinition",
'WORKFLOW.WORKFLOWINFO': "workflow.WorkflowInfo",
'WORKFLOW.WORKFLOWMETA': "workflow.WorkflowMeta",
'WORKFLOW.WORKFLOWMETADATA': "workflow.WorkflowMetadata",
+ 'WORKFLOW.WORKFLOWNOTIFICATION': "workflow.WorkflowNotification",
},
}
diff --git a/intersight/model/hyperflex_capability_info_response.py b/intersight/model/hyperflex_capability_info_response.py
index 8efd045212..29afb186a0 100644
--- a/intersight/model/hyperflex_capability_info_response.py
+++ b/intersight/model/hyperflex_capability_info_response.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/hyperflex_cisco_hypervisor_manager.py b/intersight/model/hyperflex_cisco_hypervisor_manager.py
index a1f56d1f1d..eb5fe2178f 100644
--- a/intersight/model/hyperflex_cisco_hypervisor_manager.py
+++ b/intersight/model/hyperflex_cisco_hypervisor_manager.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/hyperflex_cisco_hypervisor_manager_all_of.py b/intersight/model/hyperflex_cisco_hypervisor_manager_all_of.py
index 0d693438a5..2d776ff1c4 100644
--- a/intersight/model/hyperflex_cisco_hypervisor_manager_all_of.py
+++ b/intersight/model/hyperflex_cisco_hypervisor_manager_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/hyperflex_cisco_hypervisor_manager_list.py b/intersight/model/hyperflex_cisco_hypervisor_manager_list.py
index 549e1eedab..2ff6e18aa2 100644
--- a/intersight/model/hyperflex_cisco_hypervisor_manager_list.py
+++ b/intersight/model/hyperflex_cisco_hypervisor_manager_list.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/hyperflex_cisco_hypervisor_manager_list_all_of.py b/intersight/model/hyperflex_cisco_hypervisor_manager_list_all_of.py
index 64a7665a0e..80cc63bac2 100644
--- a/intersight/model/hyperflex_cisco_hypervisor_manager_list_all_of.py
+++ b/intersight/model/hyperflex_cisco_hypervisor_manager_list_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/hyperflex_cisco_hypervisor_manager_relationship.py b/intersight/model/hyperflex_cisco_hypervisor_manager_relationship.py
index fd2774aa5c..807261a152 100644
--- a/intersight/model/hyperflex_cisco_hypervisor_manager_relationship.py
+++ b/intersight/model/hyperflex_cisco_hypervisor_manager_relationship.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
@@ -76,6 +76,8 @@ class HyperflexCiscoHypervisorManagerRelationship(ModelComposed):
},
('object_type',): {
'AAA.AUDITRECORD': "aaa.AuditRecord",
+ 'AAA.RETENTIONCONFIG': "aaa.RetentionConfig",
+ 'AAA.RETENTIONPOLICY': "aaa.RetentionPolicy",
'ACCESS.POLICY': "access.Policy",
'ADAPTER.CONFIGPOLICY': "adapter.ConfigPolicy",
'ADAPTER.EXTETHINTERFACE': "adapter.ExtEthInterface",
@@ -92,6 +94,7 @@ class HyperflexCiscoHypervisorManagerRelationship(ModelComposed):
'APPLIANCE.DATAEXPORTPOLICY': "appliance.DataExportPolicy",
'APPLIANCE.DEVICECERTIFICATE': "appliance.DeviceCertificate",
'APPLIANCE.DEVICECLAIM': "appliance.DeviceClaim",
+ 'APPLIANCE.DEVICEUPGRADEPOLICY': "appliance.DeviceUpgradePolicy",
'APPLIANCE.DIAGSETTING': "appliance.DiagSetting",
'APPLIANCE.EXTERNALSYSLOGSETTING': "appliance.ExternalSyslogSetting",
'APPLIANCE.FILESYSTEMSTATUS': "appliance.FileSystemStatus",
@@ -140,9 +143,12 @@ class HyperflexCiscoHypervisorManagerRelationship(ModelComposed):
'BOOT.UEFISHELLDEVICE': "boot.UefiShellDevice",
'BOOT.USBDEVICE': "boot.UsbDevice",
'BOOT.VMEDIADEVICE': "boot.VmediaDevice",
+ 'BULK.EXPORT': "bulk.Export",
+ 'BULK.EXPORTEDITEM': "bulk.ExportedItem",
'BULK.MOCLONER': "bulk.MoCloner",
'BULK.MOMERGER': "bulk.MoMerger",
'BULK.REQUEST': "bulk.Request",
+ 'BULK.SUBREQUESTOBJ': "bulk.SubRequestObj",
'CAPABILITY.ADAPTERUNITDESCRIPTOR': "capability.AdapterUnitDescriptor",
'CAPABILITY.CATALOG': "capability.Catalog",
'CAPABILITY.CHASSISDESCRIPTOR': "capability.ChassisDescriptor",
@@ -206,10 +212,6 @@ class HyperflexCiscoHypervisorManagerRelationship(ModelComposed):
'COND.HCLSTATUS': "cond.HclStatus",
'COND.HCLSTATUSDETAIL': "cond.HclStatusDetail",
'COND.HCLSTATUSJOB': "cond.HclStatusJob",
- 'CONFIG.EXPORTEDITEM': "config.ExportedItem",
- 'CONFIG.EXPORTER': "config.Exporter",
- 'CONFIG.IMPORTEDITEM': "config.ImportedItem",
- 'CONFIG.IMPORTER': "config.Importer",
'CONNECTORPACK.CONNECTORPACKUPGRADE': "connectorpack.ConnectorPackUpgrade",
'CONNECTORPACK.UPGRADEIMPACT': "connectorpack.UpgradeImpact",
'CRD.CUSTOMRESOURCE': "crd.CustomResource",
@@ -218,6 +220,7 @@ class HyperflexCiscoHypervisorManagerRelationship(ModelComposed):
'EQUIPMENT.CHASSISIDENTITY': "equipment.ChassisIdentity",
'EQUIPMENT.CHASSISOPERATION': "equipment.ChassisOperation",
'EQUIPMENT.DEVICESUMMARY': "equipment.DeviceSummary",
+ 'EQUIPMENT.EXPANDERMODULE': "equipment.ExpanderModule",
'EQUIPMENT.FAN': "equipment.Fan",
'EQUIPMENT.FANCONTROL': "equipment.FanControl",
'EQUIPMENT.FANMODULE': "equipment.FanModule",
@@ -466,6 +469,7 @@ class HyperflexCiscoHypervisorManagerRelationship(ModelComposed):
'KUBERNETES.ADDONDEFINITION': "kubernetes.AddonDefinition",
'KUBERNETES.ADDONPOLICY': "kubernetes.AddonPolicy",
'KUBERNETES.ADDONREPOSITORY': "kubernetes.AddonRepository",
+ 'KUBERNETES.BAREMETALNODEPROFILE': "kubernetes.BaremetalNodeProfile",
'KUBERNETES.CATALOG': "kubernetes.Catalog",
'KUBERNETES.CLUSTER': "kubernetes.Cluster",
'KUBERNETES.CLUSTERADDONPROFILE': "kubernetes.ClusterAddonProfile",
@@ -635,6 +639,11 @@ class HyperflexCiscoHypervisorManagerRelationship(ModelComposed):
'RESOURCE.LICENSERESOURCECOUNT': "resource.LicenseResourceCount",
'RESOURCE.MEMBERSHIP': "resource.Membership",
'RESOURCE.MEMBERSHIPHOLDER': "resource.MembershipHolder",
+ 'RESOURCEPOOL.LEASE': "resourcepool.Lease",
+ 'RESOURCEPOOL.LEASERESOURCE': "resourcepool.LeaseResource",
+ 'RESOURCEPOOL.POOL': "resourcepool.Pool",
+ 'RESOURCEPOOL.POOLMEMBER': "resourcepool.PoolMember",
+ 'RESOURCEPOOL.UNIVERSE': "resourcepool.Universe",
'RPROXY.REVERSEPROXY': "rproxy.ReverseProxy",
'SDCARD.POLICY': "sdcard.Policy",
'SDWAN.PROFILE': "sdwan.Profile",
@@ -750,6 +759,7 @@ class HyperflexCiscoHypervisorManagerRelationship(ModelComposed):
'TASK.NETAPPSCOPEDINVENTORY': "task.NetAppScopedInventory",
'TASK.PUBLICCLOUDSCOPEDINVENTORY': "task.PublicCloudScopedInventory",
'TASK.PURESCOPEDINVENTORY': "task.PureScopedInventory",
+ 'TASK.SERVERSCOPEDINVENTORY': "task.ServerScopedInventory",
'TECHSUPPORTMANAGEMENT.COLLECTIONCONTROLPOLICY': "techsupportmanagement.CollectionControlPolicy",
'TECHSUPPORTMANAGEMENT.DOWNLOAD': "techsupportmanagement.Download",
'TECHSUPPORTMANAGEMENT.TECHSUPPORTBUNDLE': "techsupportmanagement.TechSupportBundle",
@@ -781,6 +791,7 @@ class HyperflexCiscoHypervisorManagerRelationship(ModelComposed):
'VIRTUALIZATION.VMWAREVCENTER': "virtualization.VmwareVcenter",
'VIRTUALIZATION.VMWAREVIRTUALDISK': "virtualization.VmwareVirtualDisk",
'VIRTUALIZATION.VMWAREVIRTUALMACHINE': "virtualization.VmwareVirtualMachine",
+ 'VIRTUALIZATION.VMWAREVIRTUALMACHINESNAPSHOT': "virtualization.VmwareVirtualMachineSnapshot",
'VIRTUALIZATION.VMWAREVIRTUALNETWORKINTERFACE': "virtualization.VmwareVirtualNetworkInterface",
'VIRTUALIZATION.VMWAREVIRTUALSWITCH': "virtualization.VmwareVirtualSwitch",
'VMEDIA.POLICY': "vmedia.Policy",
@@ -813,12 +824,14 @@ class HyperflexCiscoHypervisorManagerRelationship(ModelComposed):
'WORKFLOW.TASKDEFINITION': "workflow.TaskDefinition",
'WORKFLOW.TASKINFO': "workflow.TaskInfo",
'WORKFLOW.TASKMETADATA': "workflow.TaskMetadata",
+ 'WORKFLOW.TASKNOTIFICATION': "workflow.TaskNotification",
'WORKFLOW.TEMPLATEEVALUATION': "workflow.TemplateEvaluation",
'WORKFLOW.TEMPLATEFUNCTIONMETA': "workflow.TemplateFunctionMeta",
'WORKFLOW.WORKFLOWDEFINITION': "workflow.WorkflowDefinition",
'WORKFLOW.WORKFLOWINFO': "workflow.WorkflowInfo",
'WORKFLOW.WORKFLOWMETA': "workflow.WorkflowMeta",
'WORKFLOW.WORKFLOWMETADATA': "workflow.WorkflowMetadata",
+ 'WORKFLOW.WORKFLOWNOTIFICATION': "workflow.WorkflowNotification",
},
}
diff --git a/intersight/model/hyperflex_cisco_hypervisor_manager_response.py b/intersight/model/hyperflex_cisco_hypervisor_manager_response.py
index 0036c13062..734c22da35 100644
--- a/intersight/model/hyperflex_cisco_hypervisor_manager_response.py
+++ b/intersight/model/hyperflex_cisco_hypervisor_manager_response.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/hyperflex_cluster.py b/intersight/model/hyperflex_cluster.py
index baa464fc02..9bc7b4986d 100644
--- a/intersight/model/hyperflex_cluster.py
+++ b/intersight/model/hyperflex_cluster.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/hyperflex_cluster_all_of.py b/intersight/model/hyperflex_cluster_all_of.py
index 2e57975a30..70adee54e5 100644
--- a/intersight/model/hyperflex_cluster_all_of.py
+++ b/intersight/model/hyperflex_cluster_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/hyperflex_cluster_backup_policy.py b/intersight/model/hyperflex_cluster_backup_policy.py
index c354ef5c84..41528fd168 100644
--- a/intersight/model/hyperflex_cluster_backup_policy.py
+++ b/intersight/model/hyperflex_cluster_backup_policy.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/hyperflex_cluster_backup_policy_all_of.py b/intersight/model/hyperflex_cluster_backup_policy_all_of.py
index 7aafaa69f4..9dfe207da6 100644
--- a/intersight/model/hyperflex_cluster_backup_policy_all_of.py
+++ b/intersight/model/hyperflex_cluster_backup_policy_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/hyperflex_cluster_backup_policy_deployment.py b/intersight/model/hyperflex_cluster_backup_policy_deployment.py
index e473c13e38..24d60e2434 100644
--- a/intersight/model/hyperflex_cluster_backup_policy_deployment.py
+++ b/intersight/model/hyperflex_cluster_backup_policy_deployment.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/hyperflex_cluster_backup_policy_deployment_all_of.py b/intersight/model/hyperflex_cluster_backup_policy_deployment_all_of.py
index cf5abf64dd..5256c02c41 100644
--- a/intersight/model/hyperflex_cluster_backup_policy_deployment_all_of.py
+++ b/intersight/model/hyperflex_cluster_backup_policy_deployment_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/hyperflex_cluster_backup_policy_deployment_list.py b/intersight/model/hyperflex_cluster_backup_policy_deployment_list.py
index 01e91709ca..b6ece5f337 100644
--- a/intersight/model/hyperflex_cluster_backup_policy_deployment_list.py
+++ b/intersight/model/hyperflex_cluster_backup_policy_deployment_list.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/hyperflex_cluster_backup_policy_deployment_list_all_of.py b/intersight/model/hyperflex_cluster_backup_policy_deployment_list_all_of.py
index cfc4529d92..8b989428b0 100644
--- a/intersight/model/hyperflex_cluster_backup_policy_deployment_list_all_of.py
+++ b/intersight/model/hyperflex_cluster_backup_policy_deployment_list_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/hyperflex_cluster_backup_policy_deployment_response.py b/intersight/model/hyperflex_cluster_backup_policy_deployment_response.py
index 809c4ebc8b..bafb2336cb 100644
--- a/intersight/model/hyperflex_cluster_backup_policy_deployment_response.py
+++ b/intersight/model/hyperflex_cluster_backup_policy_deployment_response.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/hyperflex_cluster_backup_policy_list.py b/intersight/model/hyperflex_cluster_backup_policy_list.py
index 847c0ceca9..fb4ce253a0 100644
--- a/intersight/model/hyperflex_cluster_backup_policy_list.py
+++ b/intersight/model/hyperflex_cluster_backup_policy_list.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/hyperflex_cluster_backup_policy_list_all_of.py b/intersight/model/hyperflex_cluster_backup_policy_list_all_of.py
index 722ca60906..c692e7232b 100644
--- a/intersight/model/hyperflex_cluster_backup_policy_list_all_of.py
+++ b/intersight/model/hyperflex_cluster_backup_policy_list_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/hyperflex_cluster_backup_policy_response.py b/intersight/model/hyperflex_cluster_backup_policy_response.py
index 90bf947a9e..6335b2c901 100644
--- a/intersight/model/hyperflex_cluster_backup_policy_response.py
+++ b/intersight/model/hyperflex_cluster_backup_policy_response.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/hyperflex_cluster_health_check_execution_snapshot.py b/intersight/model/hyperflex_cluster_health_check_execution_snapshot.py
index 886be2e4e3..3ae6b70c97 100644
--- a/intersight/model/hyperflex_cluster_health_check_execution_snapshot.py
+++ b/intersight/model/hyperflex_cluster_health_check_execution_snapshot.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/hyperflex_cluster_health_check_execution_snapshot_all_of.py b/intersight/model/hyperflex_cluster_health_check_execution_snapshot_all_of.py
index abc3ff585a..4bc30ee82e 100644
--- a/intersight/model/hyperflex_cluster_health_check_execution_snapshot_all_of.py
+++ b/intersight/model/hyperflex_cluster_health_check_execution_snapshot_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/hyperflex_cluster_health_check_execution_snapshot_list.py b/intersight/model/hyperflex_cluster_health_check_execution_snapshot_list.py
index 3f298d724a..d9bd230bfe 100644
--- a/intersight/model/hyperflex_cluster_health_check_execution_snapshot_list.py
+++ b/intersight/model/hyperflex_cluster_health_check_execution_snapshot_list.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/hyperflex_cluster_health_check_execution_snapshot_list_all_of.py b/intersight/model/hyperflex_cluster_health_check_execution_snapshot_list_all_of.py
index b7d2c14f48..8510ae24ce 100644
--- a/intersight/model/hyperflex_cluster_health_check_execution_snapshot_list_all_of.py
+++ b/intersight/model/hyperflex_cluster_health_check_execution_snapshot_list_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/hyperflex_cluster_health_check_execution_snapshot_response.py b/intersight/model/hyperflex_cluster_health_check_execution_snapshot_response.py
index 0d088cc697..565f794c23 100644
--- a/intersight/model/hyperflex_cluster_health_check_execution_snapshot_response.py
+++ b/intersight/model/hyperflex_cluster_health_check_execution_snapshot_response.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/hyperflex_cluster_list.py b/intersight/model/hyperflex_cluster_list.py
index 57bb3574ff..24891dab81 100644
--- a/intersight/model/hyperflex_cluster_list.py
+++ b/intersight/model/hyperflex_cluster_list.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/hyperflex_cluster_list_all_of.py b/intersight/model/hyperflex_cluster_list_all_of.py
index ee3c434d24..f2b8af05c2 100644
--- a/intersight/model/hyperflex_cluster_list_all_of.py
+++ b/intersight/model/hyperflex_cluster_list_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/hyperflex_cluster_network_policy.py b/intersight/model/hyperflex_cluster_network_policy.py
index 93ad6fb35f..a03331b294 100644
--- a/intersight/model/hyperflex_cluster_network_policy.py
+++ b/intersight/model/hyperflex_cluster_network_policy.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/hyperflex_cluster_network_policy_all_of.py b/intersight/model/hyperflex_cluster_network_policy_all_of.py
index 7599f15389..5604d7b19c 100644
--- a/intersight/model/hyperflex_cluster_network_policy_all_of.py
+++ b/intersight/model/hyperflex_cluster_network_policy_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/hyperflex_cluster_network_policy_list.py b/intersight/model/hyperflex_cluster_network_policy_list.py
index 004339e540..fcb04b3089 100644
--- a/intersight/model/hyperflex_cluster_network_policy_list.py
+++ b/intersight/model/hyperflex_cluster_network_policy_list.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/hyperflex_cluster_network_policy_list_all_of.py b/intersight/model/hyperflex_cluster_network_policy_list_all_of.py
index 9e866de9e2..47ac86ea9b 100644
--- a/intersight/model/hyperflex_cluster_network_policy_list_all_of.py
+++ b/intersight/model/hyperflex_cluster_network_policy_list_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/hyperflex_cluster_network_policy_relationship.py b/intersight/model/hyperflex_cluster_network_policy_relationship.py
index 31277b51cf..a0745bbf68 100644
--- a/intersight/model/hyperflex_cluster_network_policy_relationship.py
+++ b/intersight/model/hyperflex_cluster_network_policy_relationship.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
@@ -87,6 +87,8 @@ class HyperflexClusterNetworkPolicyRelationship(ModelComposed):
},
('object_type',): {
'AAA.AUDITRECORD': "aaa.AuditRecord",
+ 'AAA.RETENTIONCONFIG': "aaa.RetentionConfig",
+ 'AAA.RETENTIONPOLICY': "aaa.RetentionPolicy",
'ACCESS.POLICY': "access.Policy",
'ADAPTER.CONFIGPOLICY': "adapter.ConfigPolicy",
'ADAPTER.EXTETHINTERFACE': "adapter.ExtEthInterface",
@@ -103,6 +105,7 @@ class HyperflexClusterNetworkPolicyRelationship(ModelComposed):
'APPLIANCE.DATAEXPORTPOLICY': "appliance.DataExportPolicy",
'APPLIANCE.DEVICECERTIFICATE': "appliance.DeviceCertificate",
'APPLIANCE.DEVICECLAIM': "appliance.DeviceClaim",
+ 'APPLIANCE.DEVICEUPGRADEPOLICY': "appliance.DeviceUpgradePolicy",
'APPLIANCE.DIAGSETTING': "appliance.DiagSetting",
'APPLIANCE.EXTERNALSYSLOGSETTING': "appliance.ExternalSyslogSetting",
'APPLIANCE.FILESYSTEMSTATUS': "appliance.FileSystemStatus",
@@ -151,9 +154,12 @@ class HyperflexClusterNetworkPolicyRelationship(ModelComposed):
'BOOT.UEFISHELLDEVICE': "boot.UefiShellDevice",
'BOOT.USBDEVICE': "boot.UsbDevice",
'BOOT.VMEDIADEVICE': "boot.VmediaDevice",
+ 'BULK.EXPORT': "bulk.Export",
+ 'BULK.EXPORTEDITEM': "bulk.ExportedItem",
'BULK.MOCLONER': "bulk.MoCloner",
'BULK.MOMERGER': "bulk.MoMerger",
'BULK.REQUEST': "bulk.Request",
+ 'BULK.SUBREQUESTOBJ': "bulk.SubRequestObj",
'CAPABILITY.ADAPTERUNITDESCRIPTOR': "capability.AdapterUnitDescriptor",
'CAPABILITY.CATALOG': "capability.Catalog",
'CAPABILITY.CHASSISDESCRIPTOR': "capability.ChassisDescriptor",
@@ -217,10 +223,6 @@ class HyperflexClusterNetworkPolicyRelationship(ModelComposed):
'COND.HCLSTATUS': "cond.HclStatus",
'COND.HCLSTATUSDETAIL': "cond.HclStatusDetail",
'COND.HCLSTATUSJOB': "cond.HclStatusJob",
- 'CONFIG.EXPORTEDITEM': "config.ExportedItem",
- 'CONFIG.EXPORTER': "config.Exporter",
- 'CONFIG.IMPORTEDITEM': "config.ImportedItem",
- 'CONFIG.IMPORTER': "config.Importer",
'CONNECTORPACK.CONNECTORPACKUPGRADE': "connectorpack.ConnectorPackUpgrade",
'CONNECTORPACK.UPGRADEIMPACT': "connectorpack.UpgradeImpact",
'CRD.CUSTOMRESOURCE': "crd.CustomResource",
@@ -229,6 +231,7 @@ class HyperflexClusterNetworkPolicyRelationship(ModelComposed):
'EQUIPMENT.CHASSISIDENTITY': "equipment.ChassisIdentity",
'EQUIPMENT.CHASSISOPERATION': "equipment.ChassisOperation",
'EQUIPMENT.DEVICESUMMARY': "equipment.DeviceSummary",
+ 'EQUIPMENT.EXPANDERMODULE': "equipment.ExpanderModule",
'EQUIPMENT.FAN': "equipment.Fan",
'EQUIPMENT.FANCONTROL': "equipment.FanControl",
'EQUIPMENT.FANMODULE': "equipment.FanModule",
@@ -477,6 +480,7 @@ class HyperflexClusterNetworkPolicyRelationship(ModelComposed):
'KUBERNETES.ADDONDEFINITION': "kubernetes.AddonDefinition",
'KUBERNETES.ADDONPOLICY': "kubernetes.AddonPolicy",
'KUBERNETES.ADDONREPOSITORY': "kubernetes.AddonRepository",
+ 'KUBERNETES.BAREMETALNODEPROFILE': "kubernetes.BaremetalNodeProfile",
'KUBERNETES.CATALOG': "kubernetes.Catalog",
'KUBERNETES.CLUSTER': "kubernetes.Cluster",
'KUBERNETES.CLUSTERADDONPROFILE': "kubernetes.ClusterAddonProfile",
@@ -646,6 +650,11 @@ class HyperflexClusterNetworkPolicyRelationship(ModelComposed):
'RESOURCE.LICENSERESOURCECOUNT': "resource.LicenseResourceCount",
'RESOURCE.MEMBERSHIP': "resource.Membership",
'RESOURCE.MEMBERSHIPHOLDER': "resource.MembershipHolder",
+ 'RESOURCEPOOL.LEASE': "resourcepool.Lease",
+ 'RESOURCEPOOL.LEASERESOURCE': "resourcepool.LeaseResource",
+ 'RESOURCEPOOL.POOL': "resourcepool.Pool",
+ 'RESOURCEPOOL.POOLMEMBER': "resourcepool.PoolMember",
+ 'RESOURCEPOOL.UNIVERSE': "resourcepool.Universe",
'RPROXY.REVERSEPROXY': "rproxy.ReverseProxy",
'SDCARD.POLICY': "sdcard.Policy",
'SDWAN.PROFILE': "sdwan.Profile",
@@ -761,6 +770,7 @@ class HyperflexClusterNetworkPolicyRelationship(ModelComposed):
'TASK.NETAPPSCOPEDINVENTORY': "task.NetAppScopedInventory",
'TASK.PUBLICCLOUDSCOPEDINVENTORY': "task.PublicCloudScopedInventory",
'TASK.PURESCOPEDINVENTORY': "task.PureScopedInventory",
+ 'TASK.SERVERSCOPEDINVENTORY': "task.ServerScopedInventory",
'TECHSUPPORTMANAGEMENT.COLLECTIONCONTROLPOLICY': "techsupportmanagement.CollectionControlPolicy",
'TECHSUPPORTMANAGEMENT.DOWNLOAD': "techsupportmanagement.Download",
'TECHSUPPORTMANAGEMENT.TECHSUPPORTBUNDLE': "techsupportmanagement.TechSupportBundle",
@@ -792,6 +802,7 @@ class HyperflexClusterNetworkPolicyRelationship(ModelComposed):
'VIRTUALIZATION.VMWAREVCENTER': "virtualization.VmwareVcenter",
'VIRTUALIZATION.VMWAREVIRTUALDISK': "virtualization.VmwareVirtualDisk",
'VIRTUALIZATION.VMWAREVIRTUALMACHINE': "virtualization.VmwareVirtualMachine",
+ 'VIRTUALIZATION.VMWAREVIRTUALMACHINESNAPSHOT': "virtualization.VmwareVirtualMachineSnapshot",
'VIRTUALIZATION.VMWAREVIRTUALNETWORKINTERFACE': "virtualization.VmwareVirtualNetworkInterface",
'VIRTUALIZATION.VMWAREVIRTUALSWITCH': "virtualization.VmwareVirtualSwitch",
'VMEDIA.POLICY': "vmedia.Policy",
@@ -824,12 +835,14 @@ class HyperflexClusterNetworkPolicyRelationship(ModelComposed):
'WORKFLOW.TASKDEFINITION': "workflow.TaskDefinition",
'WORKFLOW.TASKINFO': "workflow.TaskInfo",
'WORKFLOW.TASKMETADATA': "workflow.TaskMetadata",
+ 'WORKFLOW.TASKNOTIFICATION': "workflow.TaskNotification",
'WORKFLOW.TEMPLATEEVALUATION': "workflow.TemplateEvaluation",
'WORKFLOW.TEMPLATEFUNCTIONMETA': "workflow.TemplateFunctionMeta",
'WORKFLOW.WORKFLOWDEFINITION': "workflow.WorkflowDefinition",
'WORKFLOW.WORKFLOWINFO': "workflow.WorkflowInfo",
'WORKFLOW.WORKFLOWMETA': "workflow.WorkflowMeta",
'WORKFLOW.WORKFLOWMETADATA': "workflow.WorkflowMetadata",
+ 'WORKFLOW.WORKFLOWNOTIFICATION': "workflow.WorkflowNotification",
},
}
diff --git a/intersight/model/hyperflex_cluster_network_policy_response.py b/intersight/model/hyperflex_cluster_network_policy_response.py
index 4553bd6bd0..c58adfd3a9 100644
--- a/intersight/model/hyperflex_cluster_network_policy_response.py
+++ b/intersight/model/hyperflex_cluster_network_policy_response.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/hyperflex_cluster_profile.py b/intersight/model/hyperflex_cluster_profile.py
index 9aeec63f04..675ac58ce4 100644
--- a/intersight/model/hyperflex_cluster_profile.py
+++ b/intersight/model/hyperflex_cluster_profile.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/hyperflex_cluster_profile_all_of.py b/intersight/model/hyperflex_cluster_profile_all_of.py
index 3b1ba1d386..a18bde8155 100644
--- a/intersight/model/hyperflex_cluster_profile_all_of.py
+++ b/intersight/model/hyperflex_cluster_profile_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/hyperflex_cluster_profile_list.py b/intersight/model/hyperflex_cluster_profile_list.py
index 5186cfeb63..464043cc32 100644
--- a/intersight/model/hyperflex_cluster_profile_list.py
+++ b/intersight/model/hyperflex_cluster_profile_list.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/hyperflex_cluster_profile_list_all_of.py b/intersight/model/hyperflex_cluster_profile_list_all_of.py
index 00a735157f..6d311ffa41 100644
--- a/intersight/model/hyperflex_cluster_profile_list_all_of.py
+++ b/intersight/model/hyperflex_cluster_profile_list_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/hyperflex_cluster_profile_relationship.py b/intersight/model/hyperflex_cluster_profile_relationship.py
index 76aa88135c..39636a254b 100644
--- a/intersight/model/hyperflex_cluster_profile_relationship.py
+++ b/intersight/model/hyperflex_cluster_profile_relationship.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
@@ -137,6 +137,8 @@ class HyperflexClusterProfileRelationship(ModelComposed):
},
('object_type',): {
'AAA.AUDITRECORD': "aaa.AuditRecord",
+ 'AAA.RETENTIONCONFIG': "aaa.RetentionConfig",
+ 'AAA.RETENTIONPOLICY': "aaa.RetentionPolicy",
'ACCESS.POLICY': "access.Policy",
'ADAPTER.CONFIGPOLICY': "adapter.ConfigPolicy",
'ADAPTER.EXTETHINTERFACE': "adapter.ExtEthInterface",
@@ -153,6 +155,7 @@ class HyperflexClusterProfileRelationship(ModelComposed):
'APPLIANCE.DATAEXPORTPOLICY': "appliance.DataExportPolicy",
'APPLIANCE.DEVICECERTIFICATE': "appliance.DeviceCertificate",
'APPLIANCE.DEVICECLAIM': "appliance.DeviceClaim",
+ 'APPLIANCE.DEVICEUPGRADEPOLICY': "appliance.DeviceUpgradePolicy",
'APPLIANCE.DIAGSETTING': "appliance.DiagSetting",
'APPLIANCE.EXTERNALSYSLOGSETTING': "appliance.ExternalSyslogSetting",
'APPLIANCE.FILESYSTEMSTATUS': "appliance.FileSystemStatus",
@@ -201,9 +204,12 @@ class HyperflexClusterProfileRelationship(ModelComposed):
'BOOT.UEFISHELLDEVICE': "boot.UefiShellDevice",
'BOOT.USBDEVICE': "boot.UsbDevice",
'BOOT.VMEDIADEVICE': "boot.VmediaDevice",
+ 'BULK.EXPORT': "bulk.Export",
+ 'BULK.EXPORTEDITEM': "bulk.ExportedItem",
'BULK.MOCLONER': "bulk.MoCloner",
'BULK.MOMERGER': "bulk.MoMerger",
'BULK.REQUEST': "bulk.Request",
+ 'BULK.SUBREQUESTOBJ': "bulk.SubRequestObj",
'CAPABILITY.ADAPTERUNITDESCRIPTOR': "capability.AdapterUnitDescriptor",
'CAPABILITY.CATALOG': "capability.Catalog",
'CAPABILITY.CHASSISDESCRIPTOR': "capability.ChassisDescriptor",
@@ -267,10 +273,6 @@ class HyperflexClusterProfileRelationship(ModelComposed):
'COND.HCLSTATUS': "cond.HclStatus",
'COND.HCLSTATUSDETAIL': "cond.HclStatusDetail",
'COND.HCLSTATUSJOB': "cond.HclStatusJob",
- 'CONFIG.EXPORTEDITEM': "config.ExportedItem",
- 'CONFIG.EXPORTER': "config.Exporter",
- 'CONFIG.IMPORTEDITEM': "config.ImportedItem",
- 'CONFIG.IMPORTER': "config.Importer",
'CONNECTORPACK.CONNECTORPACKUPGRADE': "connectorpack.ConnectorPackUpgrade",
'CONNECTORPACK.UPGRADEIMPACT': "connectorpack.UpgradeImpact",
'CRD.CUSTOMRESOURCE': "crd.CustomResource",
@@ -279,6 +281,7 @@ class HyperflexClusterProfileRelationship(ModelComposed):
'EQUIPMENT.CHASSISIDENTITY': "equipment.ChassisIdentity",
'EQUIPMENT.CHASSISOPERATION': "equipment.ChassisOperation",
'EQUIPMENT.DEVICESUMMARY': "equipment.DeviceSummary",
+ 'EQUIPMENT.EXPANDERMODULE': "equipment.ExpanderModule",
'EQUIPMENT.FAN': "equipment.Fan",
'EQUIPMENT.FANCONTROL': "equipment.FanControl",
'EQUIPMENT.FANMODULE': "equipment.FanModule",
@@ -527,6 +530,7 @@ class HyperflexClusterProfileRelationship(ModelComposed):
'KUBERNETES.ADDONDEFINITION': "kubernetes.AddonDefinition",
'KUBERNETES.ADDONPOLICY': "kubernetes.AddonPolicy",
'KUBERNETES.ADDONREPOSITORY': "kubernetes.AddonRepository",
+ 'KUBERNETES.BAREMETALNODEPROFILE': "kubernetes.BaremetalNodeProfile",
'KUBERNETES.CATALOG': "kubernetes.Catalog",
'KUBERNETES.CLUSTER': "kubernetes.Cluster",
'KUBERNETES.CLUSTERADDONPROFILE': "kubernetes.ClusterAddonProfile",
@@ -696,6 +700,11 @@ class HyperflexClusterProfileRelationship(ModelComposed):
'RESOURCE.LICENSERESOURCECOUNT': "resource.LicenseResourceCount",
'RESOURCE.MEMBERSHIP': "resource.Membership",
'RESOURCE.MEMBERSHIPHOLDER': "resource.MembershipHolder",
+ 'RESOURCEPOOL.LEASE': "resourcepool.Lease",
+ 'RESOURCEPOOL.LEASERESOURCE': "resourcepool.LeaseResource",
+ 'RESOURCEPOOL.POOL': "resourcepool.Pool",
+ 'RESOURCEPOOL.POOLMEMBER': "resourcepool.PoolMember",
+ 'RESOURCEPOOL.UNIVERSE': "resourcepool.Universe",
'RPROXY.REVERSEPROXY': "rproxy.ReverseProxy",
'SDCARD.POLICY': "sdcard.Policy",
'SDWAN.PROFILE': "sdwan.Profile",
@@ -811,6 +820,7 @@ class HyperflexClusterProfileRelationship(ModelComposed):
'TASK.NETAPPSCOPEDINVENTORY': "task.NetAppScopedInventory",
'TASK.PUBLICCLOUDSCOPEDINVENTORY': "task.PublicCloudScopedInventory",
'TASK.PURESCOPEDINVENTORY': "task.PureScopedInventory",
+ 'TASK.SERVERSCOPEDINVENTORY': "task.ServerScopedInventory",
'TECHSUPPORTMANAGEMENT.COLLECTIONCONTROLPOLICY': "techsupportmanagement.CollectionControlPolicy",
'TECHSUPPORTMANAGEMENT.DOWNLOAD': "techsupportmanagement.Download",
'TECHSUPPORTMANAGEMENT.TECHSUPPORTBUNDLE': "techsupportmanagement.TechSupportBundle",
@@ -842,6 +852,7 @@ class HyperflexClusterProfileRelationship(ModelComposed):
'VIRTUALIZATION.VMWAREVCENTER': "virtualization.VmwareVcenter",
'VIRTUALIZATION.VMWAREVIRTUALDISK': "virtualization.VmwareVirtualDisk",
'VIRTUALIZATION.VMWAREVIRTUALMACHINE': "virtualization.VmwareVirtualMachine",
+ 'VIRTUALIZATION.VMWAREVIRTUALMACHINESNAPSHOT': "virtualization.VmwareVirtualMachineSnapshot",
'VIRTUALIZATION.VMWAREVIRTUALNETWORKINTERFACE': "virtualization.VmwareVirtualNetworkInterface",
'VIRTUALIZATION.VMWAREVIRTUALSWITCH': "virtualization.VmwareVirtualSwitch",
'VMEDIA.POLICY': "vmedia.Policy",
@@ -874,12 +885,14 @@ class HyperflexClusterProfileRelationship(ModelComposed):
'WORKFLOW.TASKDEFINITION': "workflow.TaskDefinition",
'WORKFLOW.TASKINFO': "workflow.TaskInfo",
'WORKFLOW.TASKMETADATA': "workflow.TaskMetadata",
+ 'WORKFLOW.TASKNOTIFICATION': "workflow.TaskNotification",
'WORKFLOW.TEMPLATEEVALUATION': "workflow.TemplateEvaluation",
'WORKFLOW.TEMPLATEFUNCTIONMETA': "workflow.TemplateFunctionMeta",
'WORKFLOW.WORKFLOWDEFINITION': "workflow.WorkflowDefinition",
'WORKFLOW.WORKFLOWINFO': "workflow.WorkflowInfo",
'WORKFLOW.WORKFLOWMETA': "workflow.WorkflowMeta",
'WORKFLOW.WORKFLOWMETADATA': "workflow.WorkflowMetadata",
+ 'WORKFLOW.WORKFLOWNOTIFICATION': "workflow.WorkflowNotification",
},
}
diff --git a/intersight/model/hyperflex_cluster_profile_response.py b/intersight/model/hyperflex_cluster_profile_response.py
index 67ff339e97..1ed5bb96fb 100644
--- a/intersight/model/hyperflex_cluster_profile_response.py
+++ b/intersight/model/hyperflex_cluster_profile_response.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/hyperflex_cluster_relationship.py b/intersight/model/hyperflex_cluster_relationship.py
index 0a8bb4779a..128cfe3647 100644
--- a/intersight/model/hyperflex_cluster_relationship.py
+++ b/intersight/model/hyperflex_cluster_relationship.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
@@ -133,6 +133,8 @@ class HyperflexClusterRelationship(ModelComposed):
},
('object_type',): {
'AAA.AUDITRECORD': "aaa.AuditRecord",
+ 'AAA.RETENTIONCONFIG': "aaa.RetentionConfig",
+ 'AAA.RETENTIONPOLICY': "aaa.RetentionPolicy",
'ACCESS.POLICY': "access.Policy",
'ADAPTER.CONFIGPOLICY': "adapter.ConfigPolicy",
'ADAPTER.EXTETHINTERFACE': "adapter.ExtEthInterface",
@@ -149,6 +151,7 @@ class HyperflexClusterRelationship(ModelComposed):
'APPLIANCE.DATAEXPORTPOLICY': "appliance.DataExportPolicy",
'APPLIANCE.DEVICECERTIFICATE': "appliance.DeviceCertificate",
'APPLIANCE.DEVICECLAIM': "appliance.DeviceClaim",
+ 'APPLIANCE.DEVICEUPGRADEPOLICY': "appliance.DeviceUpgradePolicy",
'APPLIANCE.DIAGSETTING': "appliance.DiagSetting",
'APPLIANCE.EXTERNALSYSLOGSETTING': "appliance.ExternalSyslogSetting",
'APPLIANCE.FILESYSTEMSTATUS': "appliance.FileSystemStatus",
@@ -197,9 +200,12 @@ class HyperflexClusterRelationship(ModelComposed):
'BOOT.UEFISHELLDEVICE': "boot.UefiShellDevice",
'BOOT.USBDEVICE': "boot.UsbDevice",
'BOOT.VMEDIADEVICE': "boot.VmediaDevice",
+ 'BULK.EXPORT': "bulk.Export",
+ 'BULK.EXPORTEDITEM': "bulk.ExportedItem",
'BULK.MOCLONER': "bulk.MoCloner",
'BULK.MOMERGER': "bulk.MoMerger",
'BULK.REQUEST': "bulk.Request",
+ 'BULK.SUBREQUESTOBJ': "bulk.SubRequestObj",
'CAPABILITY.ADAPTERUNITDESCRIPTOR': "capability.AdapterUnitDescriptor",
'CAPABILITY.CATALOG': "capability.Catalog",
'CAPABILITY.CHASSISDESCRIPTOR': "capability.ChassisDescriptor",
@@ -263,10 +269,6 @@ class HyperflexClusterRelationship(ModelComposed):
'COND.HCLSTATUS': "cond.HclStatus",
'COND.HCLSTATUSDETAIL': "cond.HclStatusDetail",
'COND.HCLSTATUSJOB': "cond.HclStatusJob",
- 'CONFIG.EXPORTEDITEM': "config.ExportedItem",
- 'CONFIG.EXPORTER': "config.Exporter",
- 'CONFIG.IMPORTEDITEM': "config.ImportedItem",
- 'CONFIG.IMPORTER': "config.Importer",
'CONNECTORPACK.CONNECTORPACKUPGRADE': "connectorpack.ConnectorPackUpgrade",
'CONNECTORPACK.UPGRADEIMPACT': "connectorpack.UpgradeImpact",
'CRD.CUSTOMRESOURCE': "crd.CustomResource",
@@ -275,6 +277,7 @@ class HyperflexClusterRelationship(ModelComposed):
'EQUIPMENT.CHASSISIDENTITY': "equipment.ChassisIdentity",
'EQUIPMENT.CHASSISOPERATION': "equipment.ChassisOperation",
'EQUIPMENT.DEVICESUMMARY': "equipment.DeviceSummary",
+ 'EQUIPMENT.EXPANDERMODULE': "equipment.ExpanderModule",
'EQUIPMENT.FAN': "equipment.Fan",
'EQUIPMENT.FANCONTROL': "equipment.FanControl",
'EQUIPMENT.FANMODULE': "equipment.FanModule",
@@ -523,6 +526,7 @@ class HyperflexClusterRelationship(ModelComposed):
'KUBERNETES.ADDONDEFINITION': "kubernetes.AddonDefinition",
'KUBERNETES.ADDONPOLICY': "kubernetes.AddonPolicy",
'KUBERNETES.ADDONREPOSITORY': "kubernetes.AddonRepository",
+ 'KUBERNETES.BAREMETALNODEPROFILE': "kubernetes.BaremetalNodeProfile",
'KUBERNETES.CATALOG': "kubernetes.Catalog",
'KUBERNETES.CLUSTER': "kubernetes.Cluster",
'KUBERNETES.CLUSTERADDONPROFILE': "kubernetes.ClusterAddonProfile",
@@ -692,6 +696,11 @@ class HyperflexClusterRelationship(ModelComposed):
'RESOURCE.LICENSERESOURCECOUNT': "resource.LicenseResourceCount",
'RESOURCE.MEMBERSHIP': "resource.Membership",
'RESOURCE.MEMBERSHIPHOLDER': "resource.MembershipHolder",
+ 'RESOURCEPOOL.LEASE': "resourcepool.Lease",
+ 'RESOURCEPOOL.LEASERESOURCE': "resourcepool.LeaseResource",
+ 'RESOURCEPOOL.POOL': "resourcepool.Pool",
+ 'RESOURCEPOOL.POOLMEMBER': "resourcepool.PoolMember",
+ 'RESOURCEPOOL.UNIVERSE': "resourcepool.Universe",
'RPROXY.REVERSEPROXY': "rproxy.ReverseProxy",
'SDCARD.POLICY': "sdcard.Policy",
'SDWAN.PROFILE': "sdwan.Profile",
@@ -807,6 +816,7 @@ class HyperflexClusterRelationship(ModelComposed):
'TASK.NETAPPSCOPEDINVENTORY': "task.NetAppScopedInventory",
'TASK.PUBLICCLOUDSCOPEDINVENTORY': "task.PublicCloudScopedInventory",
'TASK.PURESCOPEDINVENTORY': "task.PureScopedInventory",
+ 'TASK.SERVERSCOPEDINVENTORY': "task.ServerScopedInventory",
'TECHSUPPORTMANAGEMENT.COLLECTIONCONTROLPOLICY': "techsupportmanagement.CollectionControlPolicy",
'TECHSUPPORTMANAGEMENT.DOWNLOAD': "techsupportmanagement.Download",
'TECHSUPPORTMANAGEMENT.TECHSUPPORTBUNDLE': "techsupportmanagement.TechSupportBundle",
@@ -838,6 +848,7 @@ class HyperflexClusterRelationship(ModelComposed):
'VIRTUALIZATION.VMWAREVCENTER': "virtualization.VmwareVcenter",
'VIRTUALIZATION.VMWAREVIRTUALDISK': "virtualization.VmwareVirtualDisk",
'VIRTUALIZATION.VMWAREVIRTUALMACHINE': "virtualization.VmwareVirtualMachine",
+ 'VIRTUALIZATION.VMWAREVIRTUALMACHINESNAPSHOT': "virtualization.VmwareVirtualMachineSnapshot",
'VIRTUALIZATION.VMWAREVIRTUALNETWORKINTERFACE': "virtualization.VmwareVirtualNetworkInterface",
'VIRTUALIZATION.VMWAREVIRTUALSWITCH': "virtualization.VmwareVirtualSwitch",
'VMEDIA.POLICY': "vmedia.Policy",
@@ -870,12 +881,14 @@ class HyperflexClusterRelationship(ModelComposed):
'WORKFLOW.TASKDEFINITION': "workflow.TaskDefinition",
'WORKFLOW.TASKINFO': "workflow.TaskInfo",
'WORKFLOW.TASKMETADATA': "workflow.TaskMetadata",
+ 'WORKFLOW.TASKNOTIFICATION': "workflow.TaskNotification",
'WORKFLOW.TEMPLATEEVALUATION': "workflow.TemplateEvaluation",
'WORKFLOW.TEMPLATEFUNCTIONMETA': "workflow.TemplateFunctionMeta",
'WORKFLOW.WORKFLOWDEFINITION': "workflow.WorkflowDefinition",
'WORKFLOW.WORKFLOWINFO': "workflow.WorkflowInfo",
'WORKFLOW.WORKFLOWMETA': "workflow.WorkflowMeta",
'WORKFLOW.WORKFLOWMETADATA': "workflow.WorkflowMetadata",
+ 'WORKFLOW.WORKFLOWNOTIFICATION': "workflow.WorkflowNotification",
},
}
diff --git a/intersight/model/hyperflex_cluster_replication_network_policy.py b/intersight/model/hyperflex_cluster_replication_network_policy.py
index e7f798402f..abcc730ef2 100644
--- a/intersight/model/hyperflex_cluster_replication_network_policy.py
+++ b/intersight/model/hyperflex_cluster_replication_network_policy.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/hyperflex_cluster_replication_network_policy_all_of.py b/intersight/model/hyperflex_cluster_replication_network_policy_all_of.py
index d8597b6624..5734b939b1 100644
--- a/intersight/model/hyperflex_cluster_replication_network_policy_all_of.py
+++ b/intersight/model/hyperflex_cluster_replication_network_policy_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/hyperflex_cluster_replication_network_policy_deployment.py b/intersight/model/hyperflex_cluster_replication_network_policy_deployment.py
index 7129e8f2a8..f9cdf278c8 100644
--- a/intersight/model/hyperflex_cluster_replication_network_policy_deployment.py
+++ b/intersight/model/hyperflex_cluster_replication_network_policy_deployment.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/hyperflex_cluster_replication_network_policy_deployment_all_of.py b/intersight/model/hyperflex_cluster_replication_network_policy_deployment_all_of.py
index 1abad51791..0c6a153698 100644
--- a/intersight/model/hyperflex_cluster_replication_network_policy_deployment_all_of.py
+++ b/intersight/model/hyperflex_cluster_replication_network_policy_deployment_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/hyperflex_cluster_replication_network_policy_deployment_list.py b/intersight/model/hyperflex_cluster_replication_network_policy_deployment_list.py
index 347c14c071..1ea24fe890 100644
--- a/intersight/model/hyperflex_cluster_replication_network_policy_deployment_list.py
+++ b/intersight/model/hyperflex_cluster_replication_network_policy_deployment_list.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/hyperflex_cluster_replication_network_policy_deployment_list_all_of.py b/intersight/model/hyperflex_cluster_replication_network_policy_deployment_list_all_of.py
index 3c2ffd9553..d608148231 100644
--- a/intersight/model/hyperflex_cluster_replication_network_policy_deployment_list_all_of.py
+++ b/intersight/model/hyperflex_cluster_replication_network_policy_deployment_list_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/hyperflex_cluster_replication_network_policy_deployment_response.py b/intersight/model/hyperflex_cluster_replication_network_policy_deployment_response.py
index b38d3f0b0d..01240eef22 100644
--- a/intersight/model/hyperflex_cluster_replication_network_policy_deployment_response.py
+++ b/intersight/model/hyperflex_cluster_replication_network_policy_deployment_response.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/hyperflex_cluster_replication_network_policy_list.py b/intersight/model/hyperflex_cluster_replication_network_policy_list.py
index 97dec0f116..471244052b 100644
--- a/intersight/model/hyperflex_cluster_replication_network_policy_list.py
+++ b/intersight/model/hyperflex_cluster_replication_network_policy_list.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/hyperflex_cluster_replication_network_policy_list_all_of.py b/intersight/model/hyperflex_cluster_replication_network_policy_list_all_of.py
index fce7d77963..b9ddbc3ad6 100644
--- a/intersight/model/hyperflex_cluster_replication_network_policy_list_all_of.py
+++ b/intersight/model/hyperflex_cluster_replication_network_policy_list_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/hyperflex_cluster_replication_network_policy_response.py b/intersight/model/hyperflex_cluster_replication_network_policy_response.py
index 1ea57d7b3e..91d7d9bbeb 100644
--- a/intersight/model/hyperflex_cluster_replication_network_policy_response.py
+++ b/intersight/model/hyperflex_cluster_replication_network_policy_response.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/hyperflex_cluster_response.py b/intersight/model/hyperflex_cluster_response.py
index 97cdca63a2..52e2dfe93b 100644
--- a/intersight/model/hyperflex_cluster_response.py
+++ b/intersight/model/hyperflex_cluster_response.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/hyperflex_cluster_storage_policy.py b/intersight/model/hyperflex_cluster_storage_policy.py
index 8fc9a6cbd0..c49b73609d 100644
--- a/intersight/model/hyperflex_cluster_storage_policy.py
+++ b/intersight/model/hyperflex_cluster_storage_policy.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/hyperflex_cluster_storage_policy_all_of.py b/intersight/model/hyperflex_cluster_storage_policy_all_of.py
index ec6e2263ce..067cc8a037 100644
--- a/intersight/model/hyperflex_cluster_storage_policy_all_of.py
+++ b/intersight/model/hyperflex_cluster_storage_policy_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/hyperflex_cluster_storage_policy_list.py b/intersight/model/hyperflex_cluster_storage_policy_list.py
index 08bac263eb..1c490c1f7b 100644
--- a/intersight/model/hyperflex_cluster_storage_policy_list.py
+++ b/intersight/model/hyperflex_cluster_storage_policy_list.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/hyperflex_cluster_storage_policy_list_all_of.py b/intersight/model/hyperflex_cluster_storage_policy_list_all_of.py
index 45db1e4750..d0a36de020 100644
--- a/intersight/model/hyperflex_cluster_storage_policy_list_all_of.py
+++ b/intersight/model/hyperflex_cluster_storage_policy_list_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/hyperflex_cluster_storage_policy_relationship.py b/intersight/model/hyperflex_cluster_storage_policy_relationship.py
index f291d1c0f0..df9d36c693 100644
--- a/intersight/model/hyperflex_cluster_storage_policy_relationship.py
+++ b/intersight/model/hyperflex_cluster_storage_policy_relationship.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
@@ -78,6 +78,8 @@ class HyperflexClusterStoragePolicyRelationship(ModelComposed):
},
('object_type',): {
'AAA.AUDITRECORD': "aaa.AuditRecord",
+ 'AAA.RETENTIONCONFIG': "aaa.RetentionConfig",
+ 'AAA.RETENTIONPOLICY': "aaa.RetentionPolicy",
'ACCESS.POLICY': "access.Policy",
'ADAPTER.CONFIGPOLICY': "adapter.ConfigPolicy",
'ADAPTER.EXTETHINTERFACE': "adapter.ExtEthInterface",
@@ -94,6 +96,7 @@ class HyperflexClusterStoragePolicyRelationship(ModelComposed):
'APPLIANCE.DATAEXPORTPOLICY': "appliance.DataExportPolicy",
'APPLIANCE.DEVICECERTIFICATE': "appliance.DeviceCertificate",
'APPLIANCE.DEVICECLAIM': "appliance.DeviceClaim",
+ 'APPLIANCE.DEVICEUPGRADEPOLICY': "appliance.DeviceUpgradePolicy",
'APPLIANCE.DIAGSETTING': "appliance.DiagSetting",
'APPLIANCE.EXTERNALSYSLOGSETTING': "appliance.ExternalSyslogSetting",
'APPLIANCE.FILESYSTEMSTATUS': "appliance.FileSystemStatus",
@@ -142,9 +145,12 @@ class HyperflexClusterStoragePolicyRelationship(ModelComposed):
'BOOT.UEFISHELLDEVICE': "boot.UefiShellDevice",
'BOOT.USBDEVICE': "boot.UsbDevice",
'BOOT.VMEDIADEVICE': "boot.VmediaDevice",
+ 'BULK.EXPORT': "bulk.Export",
+ 'BULK.EXPORTEDITEM': "bulk.ExportedItem",
'BULK.MOCLONER': "bulk.MoCloner",
'BULK.MOMERGER': "bulk.MoMerger",
'BULK.REQUEST': "bulk.Request",
+ 'BULK.SUBREQUESTOBJ': "bulk.SubRequestObj",
'CAPABILITY.ADAPTERUNITDESCRIPTOR': "capability.AdapterUnitDescriptor",
'CAPABILITY.CATALOG': "capability.Catalog",
'CAPABILITY.CHASSISDESCRIPTOR': "capability.ChassisDescriptor",
@@ -208,10 +214,6 @@ class HyperflexClusterStoragePolicyRelationship(ModelComposed):
'COND.HCLSTATUS': "cond.HclStatus",
'COND.HCLSTATUSDETAIL': "cond.HclStatusDetail",
'COND.HCLSTATUSJOB': "cond.HclStatusJob",
- 'CONFIG.EXPORTEDITEM': "config.ExportedItem",
- 'CONFIG.EXPORTER': "config.Exporter",
- 'CONFIG.IMPORTEDITEM': "config.ImportedItem",
- 'CONFIG.IMPORTER': "config.Importer",
'CONNECTORPACK.CONNECTORPACKUPGRADE': "connectorpack.ConnectorPackUpgrade",
'CONNECTORPACK.UPGRADEIMPACT': "connectorpack.UpgradeImpact",
'CRD.CUSTOMRESOURCE': "crd.CustomResource",
@@ -220,6 +222,7 @@ class HyperflexClusterStoragePolicyRelationship(ModelComposed):
'EQUIPMENT.CHASSISIDENTITY': "equipment.ChassisIdentity",
'EQUIPMENT.CHASSISOPERATION': "equipment.ChassisOperation",
'EQUIPMENT.DEVICESUMMARY': "equipment.DeviceSummary",
+ 'EQUIPMENT.EXPANDERMODULE': "equipment.ExpanderModule",
'EQUIPMENT.FAN': "equipment.Fan",
'EQUIPMENT.FANCONTROL': "equipment.FanControl",
'EQUIPMENT.FANMODULE': "equipment.FanModule",
@@ -468,6 +471,7 @@ class HyperflexClusterStoragePolicyRelationship(ModelComposed):
'KUBERNETES.ADDONDEFINITION': "kubernetes.AddonDefinition",
'KUBERNETES.ADDONPOLICY': "kubernetes.AddonPolicy",
'KUBERNETES.ADDONREPOSITORY': "kubernetes.AddonRepository",
+ 'KUBERNETES.BAREMETALNODEPROFILE': "kubernetes.BaremetalNodeProfile",
'KUBERNETES.CATALOG': "kubernetes.Catalog",
'KUBERNETES.CLUSTER': "kubernetes.Cluster",
'KUBERNETES.CLUSTERADDONPROFILE': "kubernetes.ClusterAddonProfile",
@@ -637,6 +641,11 @@ class HyperflexClusterStoragePolicyRelationship(ModelComposed):
'RESOURCE.LICENSERESOURCECOUNT': "resource.LicenseResourceCount",
'RESOURCE.MEMBERSHIP': "resource.Membership",
'RESOURCE.MEMBERSHIPHOLDER': "resource.MembershipHolder",
+ 'RESOURCEPOOL.LEASE': "resourcepool.Lease",
+ 'RESOURCEPOOL.LEASERESOURCE': "resourcepool.LeaseResource",
+ 'RESOURCEPOOL.POOL': "resourcepool.Pool",
+ 'RESOURCEPOOL.POOLMEMBER': "resourcepool.PoolMember",
+ 'RESOURCEPOOL.UNIVERSE': "resourcepool.Universe",
'RPROXY.REVERSEPROXY': "rproxy.ReverseProxy",
'SDCARD.POLICY': "sdcard.Policy",
'SDWAN.PROFILE': "sdwan.Profile",
@@ -752,6 +761,7 @@ class HyperflexClusterStoragePolicyRelationship(ModelComposed):
'TASK.NETAPPSCOPEDINVENTORY': "task.NetAppScopedInventory",
'TASK.PUBLICCLOUDSCOPEDINVENTORY': "task.PublicCloudScopedInventory",
'TASK.PURESCOPEDINVENTORY': "task.PureScopedInventory",
+ 'TASK.SERVERSCOPEDINVENTORY': "task.ServerScopedInventory",
'TECHSUPPORTMANAGEMENT.COLLECTIONCONTROLPOLICY': "techsupportmanagement.CollectionControlPolicy",
'TECHSUPPORTMANAGEMENT.DOWNLOAD': "techsupportmanagement.Download",
'TECHSUPPORTMANAGEMENT.TECHSUPPORTBUNDLE': "techsupportmanagement.TechSupportBundle",
@@ -783,6 +793,7 @@ class HyperflexClusterStoragePolicyRelationship(ModelComposed):
'VIRTUALIZATION.VMWAREVCENTER': "virtualization.VmwareVcenter",
'VIRTUALIZATION.VMWAREVIRTUALDISK': "virtualization.VmwareVirtualDisk",
'VIRTUALIZATION.VMWAREVIRTUALMACHINE': "virtualization.VmwareVirtualMachine",
+ 'VIRTUALIZATION.VMWAREVIRTUALMACHINESNAPSHOT': "virtualization.VmwareVirtualMachineSnapshot",
'VIRTUALIZATION.VMWAREVIRTUALNETWORKINTERFACE': "virtualization.VmwareVirtualNetworkInterface",
'VIRTUALIZATION.VMWAREVIRTUALSWITCH': "virtualization.VmwareVirtualSwitch",
'VMEDIA.POLICY': "vmedia.Policy",
@@ -815,12 +826,14 @@ class HyperflexClusterStoragePolicyRelationship(ModelComposed):
'WORKFLOW.TASKDEFINITION': "workflow.TaskDefinition",
'WORKFLOW.TASKINFO': "workflow.TaskInfo",
'WORKFLOW.TASKMETADATA': "workflow.TaskMetadata",
+ 'WORKFLOW.TASKNOTIFICATION': "workflow.TaskNotification",
'WORKFLOW.TEMPLATEEVALUATION': "workflow.TemplateEvaluation",
'WORKFLOW.TEMPLATEFUNCTIONMETA': "workflow.TemplateFunctionMeta",
'WORKFLOW.WORKFLOWDEFINITION': "workflow.WorkflowDefinition",
'WORKFLOW.WORKFLOWINFO': "workflow.WorkflowInfo",
'WORKFLOW.WORKFLOWMETA': "workflow.WorkflowMeta",
'WORKFLOW.WORKFLOWMETADATA': "workflow.WorkflowMetadata",
+ 'WORKFLOW.WORKFLOWNOTIFICATION': "workflow.WorkflowNotification",
},
}
diff --git a/intersight/model/hyperflex_cluster_storage_policy_response.py b/intersight/model/hyperflex_cluster_storage_policy_response.py
index 11b00f5ca9..6d08073865 100644
--- a/intersight/model/hyperflex_cluster_storage_policy_response.py
+++ b/intersight/model/hyperflex_cluster_storage_policy_response.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/hyperflex_config_result.py b/intersight/model/hyperflex_config_result.py
index b4636247dd..ecb20e9956 100644
--- a/intersight/model/hyperflex_config_result.py
+++ b/intersight/model/hyperflex_config_result.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/hyperflex_config_result_all_of.py b/intersight/model/hyperflex_config_result_all_of.py
index eb83e1975f..eb30cb5c3d 100644
--- a/intersight/model/hyperflex_config_result_all_of.py
+++ b/intersight/model/hyperflex_config_result_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/hyperflex_config_result_entry.py b/intersight/model/hyperflex_config_result_entry.py
index f2617b54b4..dda7c96ebd 100644
--- a/intersight/model/hyperflex_config_result_entry.py
+++ b/intersight/model/hyperflex_config_result_entry.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/hyperflex_config_result_entry_all_of.py b/intersight/model/hyperflex_config_result_entry_all_of.py
index 8e60eb0e05..3fbcbb493b 100644
--- a/intersight/model/hyperflex_config_result_entry_all_of.py
+++ b/intersight/model/hyperflex_config_result_entry_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/hyperflex_config_result_entry_list.py b/intersight/model/hyperflex_config_result_entry_list.py
index 43d2de802d..ce6a30b411 100644
--- a/intersight/model/hyperflex_config_result_entry_list.py
+++ b/intersight/model/hyperflex_config_result_entry_list.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/hyperflex_config_result_entry_list_all_of.py b/intersight/model/hyperflex_config_result_entry_list_all_of.py
index 6a7f59fa9c..38d76d8fc7 100644
--- a/intersight/model/hyperflex_config_result_entry_list_all_of.py
+++ b/intersight/model/hyperflex_config_result_entry_list_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/hyperflex_config_result_entry_relationship.py b/intersight/model/hyperflex_config_result_entry_relationship.py
index 398ecf626e..60f8ef5993 100644
--- a/intersight/model/hyperflex_config_result_entry_relationship.py
+++ b/intersight/model/hyperflex_config_result_entry_relationship.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
@@ -76,6 +76,8 @@ class HyperflexConfigResultEntryRelationship(ModelComposed):
},
('object_type',): {
'AAA.AUDITRECORD': "aaa.AuditRecord",
+ 'AAA.RETENTIONCONFIG': "aaa.RetentionConfig",
+ 'AAA.RETENTIONPOLICY': "aaa.RetentionPolicy",
'ACCESS.POLICY': "access.Policy",
'ADAPTER.CONFIGPOLICY': "adapter.ConfigPolicy",
'ADAPTER.EXTETHINTERFACE': "adapter.ExtEthInterface",
@@ -92,6 +94,7 @@ class HyperflexConfigResultEntryRelationship(ModelComposed):
'APPLIANCE.DATAEXPORTPOLICY': "appliance.DataExportPolicy",
'APPLIANCE.DEVICECERTIFICATE': "appliance.DeviceCertificate",
'APPLIANCE.DEVICECLAIM': "appliance.DeviceClaim",
+ 'APPLIANCE.DEVICEUPGRADEPOLICY': "appliance.DeviceUpgradePolicy",
'APPLIANCE.DIAGSETTING': "appliance.DiagSetting",
'APPLIANCE.EXTERNALSYSLOGSETTING': "appliance.ExternalSyslogSetting",
'APPLIANCE.FILESYSTEMSTATUS': "appliance.FileSystemStatus",
@@ -140,9 +143,12 @@ class HyperflexConfigResultEntryRelationship(ModelComposed):
'BOOT.UEFISHELLDEVICE': "boot.UefiShellDevice",
'BOOT.USBDEVICE': "boot.UsbDevice",
'BOOT.VMEDIADEVICE': "boot.VmediaDevice",
+ 'BULK.EXPORT': "bulk.Export",
+ 'BULK.EXPORTEDITEM': "bulk.ExportedItem",
'BULK.MOCLONER': "bulk.MoCloner",
'BULK.MOMERGER': "bulk.MoMerger",
'BULK.REQUEST': "bulk.Request",
+ 'BULK.SUBREQUESTOBJ': "bulk.SubRequestObj",
'CAPABILITY.ADAPTERUNITDESCRIPTOR': "capability.AdapterUnitDescriptor",
'CAPABILITY.CATALOG': "capability.Catalog",
'CAPABILITY.CHASSISDESCRIPTOR': "capability.ChassisDescriptor",
@@ -206,10 +212,6 @@ class HyperflexConfigResultEntryRelationship(ModelComposed):
'COND.HCLSTATUS': "cond.HclStatus",
'COND.HCLSTATUSDETAIL': "cond.HclStatusDetail",
'COND.HCLSTATUSJOB': "cond.HclStatusJob",
- 'CONFIG.EXPORTEDITEM': "config.ExportedItem",
- 'CONFIG.EXPORTER': "config.Exporter",
- 'CONFIG.IMPORTEDITEM': "config.ImportedItem",
- 'CONFIG.IMPORTER': "config.Importer",
'CONNECTORPACK.CONNECTORPACKUPGRADE': "connectorpack.ConnectorPackUpgrade",
'CONNECTORPACK.UPGRADEIMPACT': "connectorpack.UpgradeImpact",
'CRD.CUSTOMRESOURCE': "crd.CustomResource",
@@ -218,6 +220,7 @@ class HyperflexConfigResultEntryRelationship(ModelComposed):
'EQUIPMENT.CHASSISIDENTITY': "equipment.ChassisIdentity",
'EQUIPMENT.CHASSISOPERATION': "equipment.ChassisOperation",
'EQUIPMENT.DEVICESUMMARY': "equipment.DeviceSummary",
+ 'EQUIPMENT.EXPANDERMODULE': "equipment.ExpanderModule",
'EQUIPMENT.FAN': "equipment.Fan",
'EQUIPMENT.FANCONTROL': "equipment.FanControl",
'EQUIPMENT.FANMODULE': "equipment.FanModule",
@@ -466,6 +469,7 @@ class HyperflexConfigResultEntryRelationship(ModelComposed):
'KUBERNETES.ADDONDEFINITION': "kubernetes.AddonDefinition",
'KUBERNETES.ADDONPOLICY': "kubernetes.AddonPolicy",
'KUBERNETES.ADDONREPOSITORY': "kubernetes.AddonRepository",
+ 'KUBERNETES.BAREMETALNODEPROFILE': "kubernetes.BaremetalNodeProfile",
'KUBERNETES.CATALOG': "kubernetes.Catalog",
'KUBERNETES.CLUSTER': "kubernetes.Cluster",
'KUBERNETES.CLUSTERADDONPROFILE': "kubernetes.ClusterAddonProfile",
@@ -635,6 +639,11 @@ class HyperflexConfigResultEntryRelationship(ModelComposed):
'RESOURCE.LICENSERESOURCECOUNT': "resource.LicenseResourceCount",
'RESOURCE.MEMBERSHIP': "resource.Membership",
'RESOURCE.MEMBERSHIPHOLDER': "resource.MembershipHolder",
+ 'RESOURCEPOOL.LEASE': "resourcepool.Lease",
+ 'RESOURCEPOOL.LEASERESOURCE': "resourcepool.LeaseResource",
+ 'RESOURCEPOOL.POOL': "resourcepool.Pool",
+ 'RESOURCEPOOL.POOLMEMBER': "resourcepool.PoolMember",
+ 'RESOURCEPOOL.UNIVERSE': "resourcepool.Universe",
'RPROXY.REVERSEPROXY': "rproxy.ReverseProxy",
'SDCARD.POLICY': "sdcard.Policy",
'SDWAN.PROFILE': "sdwan.Profile",
@@ -750,6 +759,7 @@ class HyperflexConfigResultEntryRelationship(ModelComposed):
'TASK.NETAPPSCOPEDINVENTORY': "task.NetAppScopedInventory",
'TASK.PUBLICCLOUDSCOPEDINVENTORY': "task.PublicCloudScopedInventory",
'TASK.PURESCOPEDINVENTORY': "task.PureScopedInventory",
+ 'TASK.SERVERSCOPEDINVENTORY': "task.ServerScopedInventory",
'TECHSUPPORTMANAGEMENT.COLLECTIONCONTROLPOLICY': "techsupportmanagement.CollectionControlPolicy",
'TECHSUPPORTMANAGEMENT.DOWNLOAD': "techsupportmanagement.Download",
'TECHSUPPORTMANAGEMENT.TECHSUPPORTBUNDLE': "techsupportmanagement.TechSupportBundle",
@@ -781,6 +791,7 @@ class HyperflexConfigResultEntryRelationship(ModelComposed):
'VIRTUALIZATION.VMWAREVCENTER': "virtualization.VmwareVcenter",
'VIRTUALIZATION.VMWAREVIRTUALDISK': "virtualization.VmwareVirtualDisk",
'VIRTUALIZATION.VMWAREVIRTUALMACHINE': "virtualization.VmwareVirtualMachine",
+ 'VIRTUALIZATION.VMWAREVIRTUALMACHINESNAPSHOT': "virtualization.VmwareVirtualMachineSnapshot",
'VIRTUALIZATION.VMWAREVIRTUALNETWORKINTERFACE': "virtualization.VmwareVirtualNetworkInterface",
'VIRTUALIZATION.VMWAREVIRTUALSWITCH': "virtualization.VmwareVirtualSwitch",
'VMEDIA.POLICY': "vmedia.Policy",
@@ -813,12 +824,14 @@ class HyperflexConfigResultEntryRelationship(ModelComposed):
'WORKFLOW.TASKDEFINITION': "workflow.TaskDefinition",
'WORKFLOW.TASKINFO': "workflow.TaskInfo",
'WORKFLOW.TASKMETADATA': "workflow.TaskMetadata",
+ 'WORKFLOW.TASKNOTIFICATION': "workflow.TaskNotification",
'WORKFLOW.TEMPLATEEVALUATION': "workflow.TemplateEvaluation",
'WORKFLOW.TEMPLATEFUNCTIONMETA': "workflow.TemplateFunctionMeta",
'WORKFLOW.WORKFLOWDEFINITION': "workflow.WorkflowDefinition",
'WORKFLOW.WORKFLOWINFO': "workflow.WorkflowInfo",
'WORKFLOW.WORKFLOWMETA': "workflow.WorkflowMeta",
'WORKFLOW.WORKFLOWMETADATA': "workflow.WorkflowMetadata",
+ 'WORKFLOW.WORKFLOWNOTIFICATION': "workflow.WorkflowNotification",
},
}
diff --git a/intersight/model/hyperflex_config_result_entry_response.py b/intersight/model/hyperflex_config_result_entry_response.py
index e782e6efc6..0161afc755 100644
--- a/intersight/model/hyperflex_config_result_entry_response.py
+++ b/intersight/model/hyperflex_config_result_entry_response.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/hyperflex_config_result_list.py b/intersight/model/hyperflex_config_result_list.py
index 5dacb4b714..12439d7318 100644
--- a/intersight/model/hyperflex_config_result_list.py
+++ b/intersight/model/hyperflex_config_result_list.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/hyperflex_config_result_list_all_of.py b/intersight/model/hyperflex_config_result_list_all_of.py
index e8b8e53d9b..80a45d63d9 100644
--- a/intersight/model/hyperflex_config_result_list_all_of.py
+++ b/intersight/model/hyperflex_config_result_list_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/hyperflex_config_result_relationship.py b/intersight/model/hyperflex_config_result_relationship.py
index bf3290935e..8d3ba3347d 100644
--- a/intersight/model/hyperflex_config_result_relationship.py
+++ b/intersight/model/hyperflex_config_result_relationship.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
@@ -76,6 +76,8 @@ class HyperflexConfigResultRelationship(ModelComposed):
},
('object_type',): {
'AAA.AUDITRECORD': "aaa.AuditRecord",
+ 'AAA.RETENTIONCONFIG': "aaa.RetentionConfig",
+ 'AAA.RETENTIONPOLICY': "aaa.RetentionPolicy",
'ACCESS.POLICY': "access.Policy",
'ADAPTER.CONFIGPOLICY': "adapter.ConfigPolicy",
'ADAPTER.EXTETHINTERFACE': "adapter.ExtEthInterface",
@@ -92,6 +94,7 @@ class HyperflexConfigResultRelationship(ModelComposed):
'APPLIANCE.DATAEXPORTPOLICY': "appliance.DataExportPolicy",
'APPLIANCE.DEVICECERTIFICATE': "appliance.DeviceCertificate",
'APPLIANCE.DEVICECLAIM': "appliance.DeviceClaim",
+ 'APPLIANCE.DEVICEUPGRADEPOLICY': "appliance.DeviceUpgradePolicy",
'APPLIANCE.DIAGSETTING': "appliance.DiagSetting",
'APPLIANCE.EXTERNALSYSLOGSETTING': "appliance.ExternalSyslogSetting",
'APPLIANCE.FILESYSTEMSTATUS': "appliance.FileSystemStatus",
@@ -140,9 +143,12 @@ class HyperflexConfigResultRelationship(ModelComposed):
'BOOT.UEFISHELLDEVICE': "boot.UefiShellDevice",
'BOOT.USBDEVICE': "boot.UsbDevice",
'BOOT.VMEDIADEVICE': "boot.VmediaDevice",
+ 'BULK.EXPORT': "bulk.Export",
+ 'BULK.EXPORTEDITEM': "bulk.ExportedItem",
'BULK.MOCLONER': "bulk.MoCloner",
'BULK.MOMERGER': "bulk.MoMerger",
'BULK.REQUEST': "bulk.Request",
+ 'BULK.SUBREQUESTOBJ': "bulk.SubRequestObj",
'CAPABILITY.ADAPTERUNITDESCRIPTOR': "capability.AdapterUnitDescriptor",
'CAPABILITY.CATALOG': "capability.Catalog",
'CAPABILITY.CHASSISDESCRIPTOR': "capability.ChassisDescriptor",
@@ -206,10 +212,6 @@ class HyperflexConfigResultRelationship(ModelComposed):
'COND.HCLSTATUS': "cond.HclStatus",
'COND.HCLSTATUSDETAIL': "cond.HclStatusDetail",
'COND.HCLSTATUSJOB': "cond.HclStatusJob",
- 'CONFIG.EXPORTEDITEM': "config.ExportedItem",
- 'CONFIG.EXPORTER': "config.Exporter",
- 'CONFIG.IMPORTEDITEM': "config.ImportedItem",
- 'CONFIG.IMPORTER': "config.Importer",
'CONNECTORPACK.CONNECTORPACKUPGRADE': "connectorpack.ConnectorPackUpgrade",
'CONNECTORPACK.UPGRADEIMPACT': "connectorpack.UpgradeImpact",
'CRD.CUSTOMRESOURCE': "crd.CustomResource",
@@ -218,6 +220,7 @@ class HyperflexConfigResultRelationship(ModelComposed):
'EQUIPMENT.CHASSISIDENTITY': "equipment.ChassisIdentity",
'EQUIPMENT.CHASSISOPERATION': "equipment.ChassisOperation",
'EQUIPMENT.DEVICESUMMARY': "equipment.DeviceSummary",
+ 'EQUIPMENT.EXPANDERMODULE': "equipment.ExpanderModule",
'EQUIPMENT.FAN': "equipment.Fan",
'EQUIPMENT.FANCONTROL': "equipment.FanControl",
'EQUIPMENT.FANMODULE': "equipment.FanModule",
@@ -466,6 +469,7 @@ class HyperflexConfigResultRelationship(ModelComposed):
'KUBERNETES.ADDONDEFINITION': "kubernetes.AddonDefinition",
'KUBERNETES.ADDONPOLICY': "kubernetes.AddonPolicy",
'KUBERNETES.ADDONREPOSITORY': "kubernetes.AddonRepository",
+ 'KUBERNETES.BAREMETALNODEPROFILE': "kubernetes.BaremetalNodeProfile",
'KUBERNETES.CATALOG': "kubernetes.Catalog",
'KUBERNETES.CLUSTER': "kubernetes.Cluster",
'KUBERNETES.CLUSTERADDONPROFILE': "kubernetes.ClusterAddonProfile",
@@ -635,6 +639,11 @@ class HyperflexConfigResultRelationship(ModelComposed):
'RESOURCE.LICENSERESOURCECOUNT': "resource.LicenseResourceCount",
'RESOURCE.MEMBERSHIP': "resource.Membership",
'RESOURCE.MEMBERSHIPHOLDER': "resource.MembershipHolder",
+ 'RESOURCEPOOL.LEASE': "resourcepool.Lease",
+ 'RESOURCEPOOL.LEASERESOURCE': "resourcepool.LeaseResource",
+ 'RESOURCEPOOL.POOL': "resourcepool.Pool",
+ 'RESOURCEPOOL.POOLMEMBER': "resourcepool.PoolMember",
+ 'RESOURCEPOOL.UNIVERSE': "resourcepool.Universe",
'RPROXY.REVERSEPROXY': "rproxy.ReverseProxy",
'SDCARD.POLICY': "sdcard.Policy",
'SDWAN.PROFILE': "sdwan.Profile",
@@ -750,6 +759,7 @@ class HyperflexConfigResultRelationship(ModelComposed):
'TASK.NETAPPSCOPEDINVENTORY': "task.NetAppScopedInventory",
'TASK.PUBLICCLOUDSCOPEDINVENTORY': "task.PublicCloudScopedInventory",
'TASK.PURESCOPEDINVENTORY': "task.PureScopedInventory",
+ 'TASK.SERVERSCOPEDINVENTORY': "task.ServerScopedInventory",
'TECHSUPPORTMANAGEMENT.COLLECTIONCONTROLPOLICY': "techsupportmanagement.CollectionControlPolicy",
'TECHSUPPORTMANAGEMENT.DOWNLOAD': "techsupportmanagement.Download",
'TECHSUPPORTMANAGEMENT.TECHSUPPORTBUNDLE': "techsupportmanagement.TechSupportBundle",
@@ -781,6 +791,7 @@ class HyperflexConfigResultRelationship(ModelComposed):
'VIRTUALIZATION.VMWAREVCENTER': "virtualization.VmwareVcenter",
'VIRTUALIZATION.VMWAREVIRTUALDISK': "virtualization.VmwareVirtualDisk",
'VIRTUALIZATION.VMWAREVIRTUALMACHINE': "virtualization.VmwareVirtualMachine",
+ 'VIRTUALIZATION.VMWAREVIRTUALMACHINESNAPSHOT': "virtualization.VmwareVirtualMachineSnapshot",
'VIRTUALIZATION.VMWAREVIRTUALNETWORKINTERFACE': "virtualization.VmwareVirtualNetworkInterface",
'VIRTUALIZATION.VMWAREVIRTUALSWITCH': "virtualization.VmwareVirtualSwitch",
'VMEDIA.POLICY': "vmedia.Policy",
@@ -813,12 +824,14 @@ class HyperflexConfigResultRelationship(ModelComposed):
'WORKFLOW.TASKDEFINITION': "workflow.TaskDefinition",
'WORKFLOW.TASKINFO': "workflow.TaskInfo",
'WORKFLOW.TASKMETADATA': "workflow.TaskMetadata",
+ 'WORKFLOW.TASKNOTIFICATION': "workflow.TaskNotification",
'WORKFLOW.TEMPLATEEVALUATION': "workflow.TemplateEvaluation",
'WORKFLOW.TEMPLATEFUNCTIONMETA': "workflow.TemplateFunctionMeta",
'WORKFLOW.WORKFLOWDEFINITION': "workflow.WorkflowDefinition",
'WORKFLOW.WORKFLOWINFO': "workflow.WorkflowInfo",
'WORKFLOW.WORKFLOWMETA': "workflow.WorkflowMeta",
'WORKFLOW.WORKFLOWMETADATA': "workflow.WorkflowMetadata",
+ 'WORKFLOW.WORKFLOWNOTIFICATION': "workflow.WorkflowNotification",
},
}
diff --git a/intersight/model/hyperflex_config_result_response.py b/intersight/model/hyperflex_config_result_response.py
index e831bb2b32..04ac0e7e99 100644
--- a/intersight/model/hyperflex_config_result_response.py
+++ b/intersight/model/hyperflex_config_result_response.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/hyperflex_data_protection_peer.py b/intersight/model/hyperflex_data_protection_peer.py
index 3c02feac74..774b4f83d7 100644
--- a/intersight/model/hyperflex_data_protection_peer.py
+++ b/intersight/model/hyperflex_data_protection_peer.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/hyperflex_data_protection_peer_all_of.py b/intersight/model/hyperflex_data_protection_peer_all_of.py
index 5d1a5fc4ff..98f6e22edf 100644
--- a/intersight/model/hyperflex_data_protection_peer_all_of.py
+++ b/intersight/model/hyperflex_data_protection_peer_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/hyperflex_data_protection_peer_list.py b/intersight/model/hyperflex_data_protection_peer_list.py
index a9af5c487a..65a79b67e2 100644
--- a/intersight/model/hyperflex_data_protection_peer_list.py
+++ b/intersight/model/hyperflex_data_protection_peer_list.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/hyperflex_data_protection_peer_list_all_of.py b/intersight/model/hyperflex_data_protection_peer_list_all_of.py
index f90eb17825..13b20785c2 100644
--- a/intersight/model/hyperflex_data_protection_peer_list_all_of.py
+++ b/intersight/model/hyperflex_data_protection_peer_list_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/hyperflex_data_protection_peer_relationship.py b/intersight/model/hyperflex_data_protection_peer_relationship.py
index ff0a87a4be..3f145be14a 100644
--- a/intersight/model/hyperflex_data_protection_peer_relationship.py
+++ b/intersight/model/hyperflex_data_protection_peer_relationship.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
@@ -78,6 +78,8 @@ class HyperflexDataProtectionPeerRelationship(ModelComposed):
},
('object_type',): {
'AAA.AUDITRECORD': "aaa.AuditRecord",
+ 'AAA.RETENTIONCONFIG': "aaa.RetentionConfig",
+ 'AAA.RETENTIONPOLICY': "aaa.RetentionPolicy",
'ACCESS.POLICY': "access.Policy",
'ADAPTER.CONFIGPOLICY': "adapter.ConfigPolicy",
'ADAPTER.EXTETHINTERFACE': "adapter.ExtEthInterface",
@@ -94,6 +96,7 @@ class HyperflexDataProtectionPeerRelationship(ModelComposed):
'APPLIANCE.DATAEXPORTPOLICY': "appliance.DataExportPolicy",
'APPLIANCE.DEVICECERTIFICATE': "appliance.DeviceCertificate",
'APPLIANCE.DEVICECLAIM': "appliance.DeviceClaim",
+ 'APPLIANCE.DEVICEUPGRADEPOLICY': "appliance.DeviceUpgradePolicy",
'APPLIANCE.DIAGSETTING': "appliance.DiagSetting",
'APPLIANCE.EXTERNALSYSLOGSETTING': "appliance.ExternalSyslogSetting",
'APPLIANCE.FILESYSTEMSTATUS': "appliance.FileSystemStatus",
@@ -142,9 +145,12 @@ class HyperflexDataProtectionPeerRelationship(ModelComposed):
'BOOT.UEFISHELLDEVICE': "boot.UefiShellDevice",
'BOOT.USBDEVICE': "boot.UsbDevice",
'BOOT.VMEDIADEVICE': "boot.VmediaDevice",
+ 'BULK.EXPORT': "bulk.Export",
+ 'BULK.EXPORTEDITEM': "bulk.ExportedItem",
'BULK.MOCLONER': "bulk.MoCloner",
'BULK.MOMERGER': "bulk.MoMerger",
'BULK.REQUEST': "bulk.Request",
+ 'BULK.SUBREQUESTOBJ': "bulk.SubRequestObj",
'CAPABILITY.ADAPTERUNITDESCRIPTOR': "capability.AdapterUnitDescriptor",
'CAPABILITY.CATALOG': "capability.Catalog",
'CAPABILITY.CHASSISDESCRIPTOR': "capability.ChassisDescriptor",
@@ -208,10 +214,6 @@ class HyperflexDataProtectionPeerRelationship(ModelComposed):
'COND.HCLSTATUS': "cond.HclStatus",
'COND.HCLSTATUSDETAIL': "cond.HclStatusDetail",
'COND.HCLSTATUSJOB': "cond.HclStatusJob",
- 'CONFIG.EXPORTEDITEM': "config.ExportedItem",
- 'CONFIG.EXPORTER': "config.Exporter",
- 'CONFIG.IMPORTEDITEM': "config.ImportedItem",
- 'CONFIG.IMPORTER': "config.Importer",
'CONNECTORPACK.CONNECTORPACKUPGRADE': "connectorpack.ConnectorPackUpgrade",
'CONNECTORPACK.UPGRADEIMPACT': "connectorpack.UpgradeImpact",
'CRD.CUSTOMRESOURCE': "crd.CustomResource",
@@ -220,6 +222,7 @@ class HyperflexDataProtectionPeerRelationship(ModelComposed):
'EQUIPMENT.CHASSISIDENTITY': "equipment.ChassisIdentity",
'EQUIPMENT.CHASSISOPERATION': "equipment.ChassisOperation",
'EQUIPMENT.DEVICESUMMARY': "equipment.DeviceSummary",
+ 'EQUIPMENT.EXPANDERMODULE': "equipment.ExpanderModule",
'EQUIPMENT.FAN': "equipment.Fan",
'EQUIPMENT.FANCONTROL': "equipment.FanControl",
'EQUIPMENT.FANMODULE': "equipment.FanModule",
@@ -468,6 +471,7 @@ class HyperflexDataProtectionPeerRelationship(ModelComposed):
'KUBERNETES.ADDONDEFINITION': "kubernetes.AddonDefinition",
'KUBERNETES.ADDONPOLICY': "kubernetes.AddonPolicy",
'KUBERNETES.ADDONREPOSITORY': "kubernetes.AddonRepository",
+ 'KUBERNETES.BAREMETALNODEPROFILE': "kubernetes.BaremetalNodeProfile",
'KUBERNETES.CATALOG': "kubernetes.Catalog",
'KUBERNETES.CLUSTER': "kubernetes.Cluster",
'KUBERNETES.CLUSTERADDONPROFILE': "kubernetes.ClusterAddonProfile",
@@ -637,6 +641,11 @@ class HyperflexDataProtectionPeerRelationship(ModelComposed):
'RESOURCE.LICENSERESOURCECOUNT': "resource.LicenseResourceCount",
'RESOURCE.MEMBERSHIP': "resource.Membership",
'RESOURCE.MEMBERSHIPHOLDER': "resource.MembershipHolder",
+ 'RESOURCEPOOL.LEASE': "resourcepool.Lease",
+ 'RESOURCEPOOL.LEASERESOURCE': "resourcepool.LeaseResource",
+ 'RESOURCEPOOL.POOL': "resourcepool.Pool",
+ 'RESOURCEPOOL.POOLMEMBER': "resourcepool.PoolMember",
+ 'RESOURCEPOOL.UNIVERSE': "resourcepool.Universe",
'RPROXY.REVERSEPROXY': "rproxy.ReverseProxy",
'SDCARD.POLICY': "sdcard.Policy",
'SDWAN.PROFILE': "sdwan.Profile",
@@ -752,6 +761,7 @@ class HyperflexDataProtectionPeerRelationship(ModelComposed):
'TASK.NETAPPSCOPEDINVENTORY': "task.NetAppScopedInventory",
'TASK.PUBLICCLOUDSCOPEDINVENTORY': "task.PublicCloudScopedInventory",
'TASK.PURESCOPEDINVENTORY': "task.PureScopedInventory",
+ 'TASK.SERVERSCOPEDINVENTORY': "task.ServerScopedInventory",
'TECHSUPPORTMANAGEMENT.COLLECTIONCONTROLPOLICY': "techsupportmanagement.CollectionControlPolicy",
'TECHSUPPORTMANAGEMENT.DOWNLOAD': "techsupportmanagement.Download",
'TECHSUPPORTMANAGEMENT.TECHSUPPORTBUNDLE': "techsupportmanagement.TechSupportBundle",
@@ -783,6 +793,7 @@ class HyperflexDataProtectionPeerRelationship(ModelComposed):
'VIRTUALIZATION.VMWAREVCENTER': "virtualization.VmwareVcenter",
'VIRTUALIZATION.VMWAREVIRTUALDISK': "virtualization.VmwareVirtualDisk",
'VIRTUALIZATION.VMWAREVIRTUALMACHINE': "virtualization.VmwareVirtualMachine",
+ 'VIRTUALIZATION.VMWAREVIRTUALMACHINESNAPSHOT': "virtualization.VmwareVirtualMachineSnapshot",
'VIRTUALIZATION.VMWAREVIRTUALNETWORKINTERFACE': "virtualization.VmwareVirtualNetworkInterface",
'VIRTUALIZATION.VMWAREVIRTUALSWITCH': "virtualization.VmwareVirtualSwitch",
'VMEDIA.POLICY': "vmedia.Policy",
@@ -815,12 +826,14 @@ class HyperflexDataProtectionPeerRelationship(ModelComposed):
'WORKFLOW.TASKDEFINITION': "workflow.TaskDefinition",
'WORKFLOW.TASKINFO': "workflow.TaskInfo",
'WORKFLOW.TASKMETADATA': "workflow.TaskMetadata",
+ 'WORKFLOW.TASKNOTIFICATION': "workflow.TaskNotification",
'WORKFLOW.TEMPLATEEVALUATION': "workflow.TemplateEvaluation",
'WORKFLOW.TEMPLATEFUNCTIONMETA': "workflow.TemplateFunctionMeta",
'WORKFLOW.WORKFLOWDEFINITION': "workflow.WorkflowDefinition",
'WORKFLOW.WORKFLOWINFO': "workflow.WorkflowInfo",
'WORKFLOW.WORKFLOWMETA': "workflow.WorkflowMeta",
'WORKFLOW.WORKFLOWMETADATA': "workflow.WorkflowMetadata",
+ 'WORKFLOW.WORKFLOWNOTIFICATION': "workflow.WorkflowNotification",
},
}
diff --git a/intersight/model/hyperflex_data_protection_peer_response.py b/intersight/model/hyperflex_data_protection_peer_response.py
index cab0d7844e..d2dd41ca94 100644
--- a/intersight/model/hyperflex_data_protection_peer_response.py
+++ b/intersight/model/hyperflex_data_protection_peer_response.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/hyperflex_datastore_info.py b/intersight/model/hyperflex_datastore_info.py
index 8d3e9f6520..5772ce340b 100644
--- a/intersight/model/hyperflex_datastore_info.py
+++ b/intersight/model/hyperflex_datastore_info.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/hyperflex_datastore_info_all_of.py b/intersight/model/hyperflex_datastore_info_all_of.py
index bfdc35941e..24f7fadcc0 100644
--- a/intersight/model/hyperflex_datastore_info_all_of.py
+++ b/intersight/model/hyperflex_datastore_info_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/hyperflex_datastore_statistic.py b/intersight/model/hyperflex_datastore_statistic.py
index c6b436dab1..6f74df4f5b 100644
--- a/intersight/model/hyperflex_datastore_statistic.py
+++ b/intersight/model/hyperflex_datastore_statistic.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/hyperflex_datastore_statistic_all_of.py b/intersight/model/hyperflex_datastore_statistic_all_of.py
index f8d21d6068..98de520446 100644
--- a/intersight/model/hyperflex_datastore_statistic_all_of.py
+++ b/intersight/model/hyperflex_datastore_statistic_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/hyperflex_datastore_statistic_list.py b/intersight/model/hyperflex_datastore_statistic_list.py
index dfe4f0f71f..1cb7b5628c 100644
--- a/intersight/model/hyperflex_datastore_statistic_list.py
+++ b/intersight/model/hyperflex_datastore_statistic_list.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/hyperflex_datastore_statistic_list_all_of.py b/intersight/model/hyperflex_datastore_statistic_list_all_of.py
index a4359311a9..20d49ce33b 100644
--- a/intersight/model/hyperflex_datastore_statistic_list_all_of.py
+++ b/intersight/model/hyperflex_datastore_statistic_list_all_of.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/hyperflex_datastore_statistic_response.py b/intersight/model/hyperflex_datastore_statistic_response.py
index 3a074eba74..83577fea0a 100644
--- a/intersight/model/hyperflex_datastore_statistic_response.py
+++ b/intersight/model/hyperflex_datastore_statistic_response.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501
- The version of the OpenAPI document: 1.0.9-4437
+ The version of the OpenAPI document: 1.0.9-4506
Contact: intersight@cisco.com
Generated by: https://openapi-generator.tech
"""
diff --git a/intersight/model/hyperflex_device_package_download_state.py b/intersight/model/hyperflex_device_package_download_state.py
index 97c5bad17e..e1785d1176 100644
--- a/intersight/model/hyperflex_device_package_download_state.py
+++ b/intersight/model/hyperflex_device_package_download_state.py
@@ -1,9 +1,9 @@
"""
Cisco Intersight
- Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501
+ Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data ce